@moonbeam-network/mrl 1.0.0-dev.223 → 1.0.0-dev.224
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/build/index.d.ts +2 -9
- package/build/index.mjs +5953 -362
- package/build/index.mjs.map +1 -1
- package/package.json +8 -8
package/build/index.d.ts
CHANGED
|
@@ -19,14 +19,7 @@ interface TransferData {
|
|
|
19
19
|
min: AssetAmount;
|
|
20
20
|
moonChain: MoonChainTransferData;
|
|
21
21
|
source: SourceTransferData;
|
|
22
|
-
transfer(params:
|
|
23
|
-
}
|
|
24
|
-
interface TransferParams {
|
|
25
|
-
amount: number | string;
|
|
26
|
-
isAutomatic: boolean;
|
|
27
|
-
signers: Signers;
|
|
28
|
-
statusCallback?: (status: ISubmittableResult) => void;
|
|
29
|
-
sendOnlyRemoteExecution?: boolean;
|
|
22
|
+
transfer(amount: bigint | number | string, isAutomatic: boolean, signers: Signers, statusCallback?: (params: ISubmittableResult) => void, sendOnlyRemoteExecution?: boolean): Promise<string[]>;
|
|
30
23
|
}
|
|
31
24
|
interface SourceTransferData extends SourceChainTransferData {
|
|
32
25
|
destinationFeeBalance: AssetAmount;
|
|
@@ -82,4 +75,4 @@ declare function Mrl(options?: MrlOptions): {
|
|
|
82
75
|
getExecuteTransferData({ txId, chain }: WormholeExecuteTransferParams): Promise<ExecuteTransferData>;
|
|
83
76
|
};
|
|
84
77
|
|
|
85
|
-
export { type ChainTransferData, type DestinationTransferData, type ExecuteTransferData, type MoonChainTransferData, Mrl, type MrlOptions, type Signers, type SourceTransferData, type TransferData
|
|
78
|
+
export { type ChainTransferData, type DestinationTransferData, type ExecuteTransferData, type MoonChainTransferData, Mrl, type MrlOptions, type Signers, type SourceTransferData, type TransferData };
|