@myx-trade/sdk 0.1.267-beta.63 → 0.1.267-beta.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -937,10 +937,10 @@ declare const withdrawableLpAmount$1: (params: {
|
|
|
937
937
|
}) => Promise<bigint | undefined>;
|
|
938
938
|
declare const withdraw$1: (params: WithdrawParams) => Promise<ethers.ContractTransactionReceipt | null | undefined>;
|
|
939
939
|
|
|
940
|
-
declare const getRewards$1: (params: RewardsParams) => Promise<
|
|
940
|
+
declare const getRewards$1: (params: RewardsParams) => Promise<{
|
|
941
941
|
rebates: bigint;
|
|
942
942
|
genesisRebates: bigint;
|
|
943
|
-
}
|
|
943
|
+
} | undefined>;
|
|
944
944
|
|
|
945
945
|
declare const previewUserWithdrawData: ({ chainId, account, poolId, amount }: PreviewWithdrawDataParams) => Promise<{
|
|
946
946
|
baseAmountOut: bigint;
|
package/dist/index.d.ts
CHANGED
|
@@ -937,10 +937,10 @@ declare const withdrawableLpAmount$1: (params: {
|
|
|
937
937
|
}) => Promise<bigint | undefined>;
|
|
938
938
|
declare const withdraw$1: (params: WithdrawParams) => Promise<ethers.ContractTransactionReceipt | null | undefined>;
|
|
939
939
|
|
|
940
|
-
declare const getRewards$1: (params: RewardsParams) => Promise<
|
|
940
|
+
declare const getRewards$1: (params: RewardsParams) => Promise<{
|
|
941
941
|
rebates: bigint;
|
|
942
942
|
genesisRebates: bigint;
|
|
943
|
-
}
|
|
943
|
+
} | undefined>;
|
|
944
944
|
|
|
945
945
|
declare const previewUserWithdrawData: ({ chainId, account, poolId, amount }: PreviewWithdrawDataParams) => Promise<{
|
|
946
946
|
baseAmountOut: bigint;
|