@moonbeam-network/mrl 1.0.0-dev.153 → 1.0.0-dev.155
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 +8 -2
- package/build/index.mjs.map +1 -1
- package/package.json +10 -10
package/build/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as _moonbeam_network_xcm_sdk from '@moonbeam-network/xcm-sdk';
|
|
2
|
-
import { SourceChainTransferData } from '@moonbeam-network/xcm-sdk';
|
|
2
|
+
import { SourceChainTransferData, EvmSigner } from '@moonbeam-network/xcm-sdk';
|
|
3
3
|
import * as _wormhole_foundation_sdk_connect from '@wormhole-foundation/sdk-connect';
|
|
4
|
+
import { TokenTransfer } from '@wormhole-foundation/sdk-connect';
|
|
4
5
|
import * as _moonbeam_network_xcm_types from '@moonbeam-network/xcm-types';
|
|
5
6
|
import { AssetAmount, AnyChain, EvmChain, EvmParachain, Ecosystem, AnyAsset } from '@moonbeam-network/xcm-types';
|
|
6
7
|
import { Signer } from '@polkadot/api/types';
|
|
@@ -37,6 +38,11 @@ interface ChainTransferData {
|
|
|
37
38
|
fee: AssetAmount;
|
|
38
39
|
min: AssetAmount;
|
|
39
40
|
}
|
|
41
|
+
type RedeemData = {
|
|
42
|
+
vaa: TokenTransfer.VAA;
|
|
43
|
+
tokenTransfer: TokenTransfer;
|
|
44
|
+
transfer(signer: EvmSigner): Promise<string[]>;
|
|
45
|
+
};
|
|
40
46
|
|
|
41
47
|
interface WormholeRedeemParams {
|
|
42
48
|
txId: string;
|
|
@@ -68,4 +74,4 @@ declare function Mrl(options?: MrlOptions): {
|
|
|
68
74
|
}>;
|
|
69
75
|
};
|
|
70
76
|
|
|
71
|
-
export { Mrl, type MrlOptions };
|
|
77
|
+
export { type ChainTransferData, type DestinationTransferData, type MoonChainTransferData, Mrl, type MrlOptions, type RedeemData, type Signers, type SourceTransferData, type TransferData };
|