@moonbeam-network/xcm-sdk 1.0.0-dev.156 → 1.0.0-dev.158
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/LICENSE +1 -1
- package/README.md +19 -11
- package/build/index.d.ts +167 -301
- package/build/index.mjs +762 -1
- package/build/index.mjs.map +1 -1
- package/package.json +24 -32
- package/build/index.cjs +0 -2
- package/build/index.cjs.map +0 -1
- package/build/index.d.cts +0 -177
package/LICENSE
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Copyright
|
|
1
|
+
Copyright 2024 Moonbeam Foundation
|
|
2
2
|
|
|
3
3
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4
4
|
|
package/README.md
CHANGED
|
@@ -66,20 +66,26 @@ const hash = await dataViaGetTransferDataMethod.transfer('INSERT_TRANSFER_AMOUNT
|
|
|
66
66
|
```bash
|
|
67
67
|
git clone git@github.com:moonbeam-foundation/xcm-sdk.git
|
|
68
68
|
cd xcm-sdk
|
|
69
|
-
|
|
69
|
+
pnpm install
|
|
70
70
|
cd examples/sdk-simple
|
|
71
71
|
|
|
72
72
|
# edit index.ts by adding your accounts
|
|
73
73
|
|
|
74
|
-
|
|
74
|
+
pnpm run start
|
|
75
75
|
```
|
|
76
76
|
|
|
77
77
|
# Contributing
|
|
78
78
|
|
|
79
79
|
```bash
|
|
80
80
|
git clone git@github.com:moonbeam-foundation/xcm-sdk.git
|
|
81
|
-
|
|
82
|
-
|
|
81
|
+
pnpm install
|
|
82
|
+
pnpm run dev
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
Optionally, you can install the `pre-commit` hook to run the linter and tests before committing:
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
pnpm lefthook install
|
|
83
89
|
```
|
|
84
90
|
|
|
85
91
|
# Tests
|
|
@@ -87,7 +93,7 @@ npm run dev
|
|
|
87
93
|
## Unit tests
|
|
88
94
|
|
|
89
95
|
```bash
|
|
90
|
-
|
|
96
|
+
pnpm run test
|
|
91
97
|
```
|
|
92
98
|
|
|
93
99
|
## Acceptance tests
|
|
@@ -96,7 +102,7 @@ npm run test
|
|
|
96
102
|
cp .env.example .env
|
|
97
103
|
# add private key and suri to .env file
|
|
98
104
|
|
|
99
|
-
|
|
105
|
+
pnpm run test:acc
|
|
100
106
|
```
|
|
101
107
|
|
|
102
108
|
# Release
|
|
@@ -106,7 +112,7 @@ To create a dev version go to GitHub actions and run `publish dev versions` work
|
|
|
106
112
|
To create a release version run:
|
|
107
113
|
|
|
108
114
|
```bash
|
|
109
|
-
|
|
115
|
+
pnpm run changeset
|
|
110
116
|
```
|
|
111
117
|
|
|
112
118
|
# Testing the change in the SDK locally
|
|
@@ -114,17 +120,19 @@ npm run changeset
|
|
|
114
120
|
Build the project:
|
|
115
121
|
|
|
116
122
|
```bash
|
|
117
|
-
|
|
123
|
+
pnpm run build
|
|
118
124
|
```
|
|
119
125
|
|
|
126
|
+
Link the SDK:
|
|
127
|
+
|
|
120
128
|
```bash
|
|
121
|
-
|
|
129
|
+
pnpm run clean && pnpm run build && pnpm run link
|
|
122
130
|
```
|
|
123
131
|
|
|
124
132
|
In your project where you would like to test the changes:
|
|
125
133
|
|
|
126
134
|
```bash
|
|
127
|
-
|
|
135
|
+
pnpm link @moonbeam-network/xcm-types @moonbeam-network/xcm-utils @moonbeam-network/xcm-builder @moonbeam-network/xcm-config @moonbeam-network/xcm-sdk
|
|
128
136
|
```
|
|
129
137
|
|
|
130
138
|
If you need you can link other packages too.
|
|
@@ -132,5 +140,5 @@ If you need you can link other packages too.
|
|
|
132
140
|
After testing is done, unlink the SDK:
|
|
133
141
|
|
|
134
142
|
```bash
|
|
135
|
-
|
|
143
|
+
pnpm unlink @moonbeam-network/xcm-types @moonbeam-network/xcm-utils @moonbeam-network/xcm-builder @moonbeam-network/xcm-config @moonbeam-network/xcm-sdk
|
|
136
144
|
```
|
package/build/index.d.ts
CHANGED
|
@@ -1,328 +1,194 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
} from '@
|
|
7
|
-
import {
|
|
8
|
-
IConfigService,
|
|
9
|
-
AssetConfig,
|
|
10
|
-
FeeAssetConfig,
|
|
11
|
-
TransferConfig,
|
|
12
|
-
DestinationFeeConfig,
|
|
13
|
-
} from '@moonbeam-network/xcm-config';
|
|
14
|
-
import {
|
|
15
|
-
AnyParachain,
|
|
16
|
-
Asset,
|
|
17
|
-
AssetAmount,
|
|
18
|
-
ChainAssetId,
|
|
19
|
-
AnyChain,
|
|
20
|
-
EvmParachain,
|
|
21
|
-
Ecosystem,
|
|
22
|
-
} from '@moonbeam-network/xcm-types';
|
|
1
|
+
import { ContractConfig, ExtrinsicConfig, BalanceConfigBuilder, AssetMinConfigBuilder, FeeConfigBuilder, SubstrateQueryConfig, EvmQueryConfig } from '@moonbeam-network/xcm-builder';
|
|
2
|
+
import { AssetRoute, FeeConfig, ConfigService } from '@moonbeam-network/xcm-config';
|
|
3
|
+
import * as _moonbeam_network_xcm_types from '@moonbeam-network/xcm-types';
|
|
4
|
+
import { AssetAmount, AnyChain, AnyParachain, ChainAsset, Asset, EvmChain, EvmParachain, Ecosystem, AnyAsset } from '@moonbeam-network/xcm-types';
|
|
5
|
+
import { Signer, SubmittableExtrinsic } from '@polkadot/api/types';
|
|
6
|
+
import { IKeyringPair, ISubmittableResult } from '@polkadot/types/types';
|
|
7
|
+
import { WalletClient, PublicClient, HttpTransport, Hash } from 'viem';
|
|
23
8
|
import { ApiPromise } from '@polkadot/api';
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import { Signer as Signer$1 } from 'ethers';
|
|
27
|
-
import { WalletClient } from 'viem';
|
|
9
|
+
import { RuntimeDispatchInfo } from '@polkadot/types/interfaces';
|
|
10
|
+
import { HexString } from '@polkadot/util/types';
|
|
28
11
|
|
|
29
|
-
|
|
30
|
-
#private;
|
|
31
|
-
readonly api: ApiPromise;
|
|
32
|
-
readonly chain: AnyParachain;
|
|
33
|
-
readonly configService: IConfigService;
|
|
34
|
-
constructor(
|
|
35
|
-
api: ApiPromise,
|
|
36
|
-
chain: AnyParachain,
|
|
37
|
-
configService: IConfigService,
|
|
38
|
-
);
|
|
39
|
-
static create(
|
|
40
|
-
chain: AnyParachain,
|
|
41
|
-
configService: IConfigService,
|
|
42
|
-
): Promise<PolkadotService>;
|
|
43
|
-
static createMulti(
|
|
44
|
-
chains: AnyParachain[],
|
|
45
|
-
configService: IConfigService,
|
|
46
|
-
): Promise<PolkadotService[]>;
|
|
47
|
-
get decimals(): number;
|
|
48
|
-
get asset(): Asset;
|
|
49
|
-
get existentialDeposit(): AssetAmount;
|
|
50
|
-
getAssetMeta(asset: ChainAssetId): Promise<
|
|
51
|
-
| {
|
|
52
|
-
symbol: string;
|
|
53
|
-
decimals: number;
|
|
54
|
-
}
|
|
55
|
-
| undefined
|
|
56
|
-
>;
|
|
57
|
-
getAssetDecimalsFromQuery(asset: ChainAssetId): Promise<number | undefined>;
|
|
58
|
-
getAssetDecimals(asset: Asset): Promise<number>;
|
|
59
|
-
query(config: SubstrateQueryConfig): Promise<bigint>;
|
|
60
|
-
getFee(account: string, config: ExtrinsicConfig): Promise<bigint>;
|
|
61
|
-
transfer(
|
|
62
|
-
account: string,
|
|
63
|
-
config: ExtrinsicConfig,
|
|
64
|
-
signer: Signer | IKeyringPair,
|
|
65
|
-
): Promise<string>;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
type EvmSigner = Signer$1 | WalletClient;
|
|
12
|
+
type EvmSigner = WalletClient;
|
|
69
13
|
interface Signers {
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
*/
|
|
73
|
-
ethersSigner?: Signer$1;
|
|
74
|
-
evmSigner?: EvmSigner;
|
|
75
|
-
polkadotSigner: Signer | IKeyringPair;
|
|
14
|
+
evmSigner?: EvmSigner;
|
|
15
|
+
polkadotSigner?: Signer | IKeyringPair;
|
|
76
16
|
}
|
|
77
17
|
interface TransferData {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
swap(): Promise<TransferData | undefined>;
|
|
85
|
-
transfer(amount: bigint | number | string): Promise<string>;
|
|
18
|
+
destination: DestinationChainTransferData;
|
|
19
|
+
getEstimate(amount: number | string): AssetAmount;
|
|
20
|
+
max: AssetAmount;
|
|
21
|
+
min: AssetAmount;
|
|
22
|
+
source: SourceChainTransferData;
|
|
23
|
+
transfer(amount: bigint | number | string, signers: Signers): Promise<string>;
|
|
86
24
|
}
|
|
87
25
|
interface SourceChainTransferData extends ChainTransferData {
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
26
|
+
destinationFee: AssetAmount;
|
|
27
|
+
destinationFeeBalance: AssetAmount;
|
|
28
|
+
feeBalance: AssetAmount;
|
|
29
|
+
max: AssetAmount;
|
|
92
30
|
}
|
|
93
31
|
interface SovereignAccountBalance {
|
|
94
|
-
|
|
95
|
-
|
|
32
|
+
feeAssetBalance: bigint | undefined;
|
|
33
|
+
transferAssetBalance: bigint;
|
|
96
34
|
}
|
|
97
35
|
interface DestinationChainTransferData extends ChainTransferData {
|
|
98
|
-
|
|
36
|
+
sovereignAccountBalances?: SovereignAccountBalance;
|
|
99
37
|
}
|
|
100
38
|
interface ChainTransferData {
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
interface BaseParams {
|
|
109
|
-
address: string;
|
|
110
|
-
chain: AnyChain;
|
|
111
|
-
polkadot: PolkadotService;
|
|
112
|
-
}
|
|
113
|
-
interface GetBalancesParams extends BaseParams {
|
|
114
|
-
asset: Asset;
|
|
115
|
-
balanceBuilder: BalanceConfigBuilder;
|
|
116
|
-
decimals: number;
|
|
39
|
+
balance: AssetAmount;
|
|
40
|
+
chain: AnyChain;
|
|
41
|
+
existentialDeposit?: AssetAmount;
|
|
42
|
+
fee: AssetAmount;
|
|
43
|
+
min: AssetAmount;
|
|
117
44
|
}
|
|
118
|
-
interface GetDecimalsParams extends BaseParams {
|
|
119
|
-
asset?: Asset;
|
|
120
|
-
config: AssetConfig | FeeAssetConfig;
|
|
121
|
-
assetBuiltConfig?: SubstrateQueryConfig | ContractConfig;
|
|
122
|
-
}
|
|
123
|
-
declare function getBalance({
|
|
124
|
-
address,
|
|
125
|
-
chain,
|
|
126
|
-
balanceBuilder,
|
|
127
|
-
asset,
|
|
128
|
-
decimals,
|
|
129
|
-
polkadot,
|
|
130
|
-
}: GetBalancesParams): Promise<bigint>;
|
|
131
|
-
declare function getDecimals({
|
|
132
|
-
address,
|
|
133
|
-
asset,
|
|
134
|
-
config,
|
|
135
|
-
polkadot,
|
|
136
|
-
chain,
|
|
137
|
-
assetBuiltConfig,
|
|
138
|
-
}: GetDecimalsParams): Promise<number>;
|
|
139
|
-
declare function getMin(
|
|
140
|
-
config: AssetConfig,
|
|
141
|
-
polkadot: PolkadotService,
|
|
142
|
-
): Promise<bigint>;
|
|
143
|
-
interface ValidateSovereignAccountBalancesProps {
|
|
144
|
-
amount: bigint;
|
|
145
|
-
destination: DestinationChainTransferData;
|
|
146
|
-
source: SourceChainTransferData;
|
|
147
|
-
}
|
|
148
|
-
declare function validateSovereignAccountBalances({
|
|
149
|
-
amount,
|
|
150
|
-
source,
|
|
151
|
-
destination,
|
|
152
|
-
}: ValidateSovereignAccountBalancesProps): void;
|
|
153
45
|
|
|
154
46
|
interface GetSourceDataParams {
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
polkadot: PolkadotService;
|
|
160
|
-
sourceAddress: string;
|
|
47
|
+
route: AssetRoute;
|
|
48
|
+
destinationAddress: string;
|
|
49
|
+
destinationFee: AssetAmount;
|
|
50
|
+
sourceAddress: string;
|
|
161
51
|
}
|
|
162
|
-
declare function getSourceData({
|
|
163
|
-
transferConfig,
|
|
164
|
-
destinationAddress,
|
|
165
|
-
destinationFee,
|
|
166
|
-
polkadot,
|
|
167
|
-
sourceAddress,
|
|
168
|
-
evmSigner,
|
|
169
|
-
}: GetSourceDataParams): Promise<SourceChainTransferData>;
|
|
170
|
-
interface GetFeeBalanceParams extends BaseParams {
|
|
171
|
-
balance: bigint;
|
|
172
|
-
feeConfig: FeeAssetConfig | undefined;
|
|
173
|
-
decimals: number;
|
|
174
|
-
}
|
|
175
|
-
declare function getFeeBalance({
|
|
176
|
-
address,
|
|
177
|
-
balance,
|
|
178
|
-
chain,
|
|
179
|
-
decimals,
|
|
180
|
-
feeConfig,
|
|
181
|
-
polkadot,
|
|
182
|
-
}: GetFeeBalanceParams): Promise<bigint>;
|
|
52
|
+
declare function getSourceData({ route, destinationAddress, destinationFee, sourceAddress, }: GetSourceDataParams): Promise<SourceChainTransferData>;
|
|
183
53
|
interface GetFeeParams {
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
sourceAddress: string;
|
|
195
|
-
}
|
|
196
|
-
declare function getFee({
|
|
197
|
-
balance,
|
|
198
|
-
chain,
|
|
199
|
-
contract,
|
|
200
|
-
decimals,
|
|
201
|
-
destinationFeeConfig,
|
|
202
|
-
destinationFeeBalanceAmount,
|
|
203
|
-
evmSigner,
|
|
204
|
-
extrinsic,
|
|
205
|
-
feeConfig,
|
|
206
|
-
polkadot,
|
|
207
|
-
sourceAddress,
|
|
208
|
-
}: GetFeeParams): Promise<bigint>;
|
|
209
|
-
declare function getContractFee({
|
|
210
|
-
balance,
|
|
211
|
-
config,
|
|
212
|
-
decimals,
|
|
213
|
-
evmSigner,
|
|
214
|
-
chain,
|
|
215
|
-
}: {
|
|
216
|
-
balance: bigint;
|
|
217
|
-
config: ContractConfig;
|
|
218
|
-
decimals: number;
|
|
219
|
-
evmSigner: EvmSigner;
|
|
220
|
-
chain: EvmParachain;
|
|
221
|
-
}): Promise<bigint>;
|
|
222
|
-
declare function getExtrinsicFee(
|
|
223
|
-
balance: bigint,
|
|
224
|
-
extrinsic: ExtrinsicConfig,
|
|
225
|
-
polkadot: PolkadotService,
|
|
226
|
-
sourceAddress: string,
|
|
227
|
-
): Promise<bigint>;
|
|
228
|
-
interface GetMaxParams {
|
|
229
|
-
balanceAmount: AssetAmount;
|
|
230
|
-
existentialDeposit: AssetAmount;
|
|
231
|
-
feeAmount: AssetAmount;
|
|
232
|
-
minAmount: AssetAmount;
|
|
233
|
-
}
|
|
234
|
-
declare function getMax({
|
|
235
|
-
balanceAmount,
|
|
236
|
-
existentialDeposit,
|
|
237
|
-
feeAmount,
|
|
238
|
-
minAmount,
|
|
239
|
-
}: GetMaxParams): AssetAmount;
|
|
54
|
+
balance: AssetAmount;
|
|
55
|
+
feeBalance: AssetAmount;
|
|
56
|
+
contract?: ContractConfig;
|
|
57
|
+
chain: AnyParachain;
|
|
58
|
+
destinationFee: AssetAmount;
|
|
59
|
+
extrinsic?: ExtrinsicConfig;
|
|
60
|
+
feeConfig?: FeeConfig;
|
|
61
|
+
sourceAddress: string;
|
|
62
|
+
}
|
|
63
|
+
declare function getFee({ balance, feeBalance, chain, contract, destinationFee, extrinsic, feeConfig, sourceAddress, }: GetFeeParams): Promise<AssetAmount>;
|
|
240
64
|
interface GetAssetsBalancesParams {
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
65
|
+
address: string;
|
|
66
|
+
chain: AnyParachain;
|
|
67
|
+
routes: AssetRoute[];
|
|
68
|
+
evmSigner?: EvmSigner;
|
|
69
|
+
}
|
|
70
|
+
declare function getAssetsBalances({ address, chain, routes, }: GetAssetsBalancesParams): Promise<AssetAmount[]>;
|
|
71
|
+
|
|
72
|
+
interface GetDestinationDataParams {
|
|
73
|
+
route: AssetRoute;
|
|
74
|
+
destinationAddress: string;
|
|
246
75
|
}
|
|
247
|
-
declare function
|
|
248
|
-
address,
|
|
249
|
-
chain,
|
|
250
|
-
assets,
|
|
251
|
-
polkadot,
|
|
252
|
-
}: GetAssetsBalancesParams): Promise<AssetAmount[]>;
|
|
76
|
+
declare function getDestinationData({ route, destinationAddress, }: GetDestinationDataParams): Promise<DestinationChainTransferData>;
|
|
253
77
|
|
|
254
|
-
interface
|
|
255
|
-
|
|
78
|
+
interface GetBalancesParams {
|
|
79
|
+
address: string;
|
|
80
|
+
asset: ChainAsset;
|
|
81
|
+
builder: BalanceConfigBuilder;
|
|
82
|
+
chain: AnyChain;
|
|
83
|
+
}
|
|
84
|
+
declare function getBalance({ address, asset, builder, chain, }: GetBalancesParams): Promise<AssetAmount>;
|
|
85
|
+
interface GetMinParams {
|
|
86
|
+
asset: Asset;
|
|
87
|
+
builder?: AssetMinConfigBuilder;
|
|
88
|
+
chain: AnyChain;
|
|
89
|
+
}
|
|
90
|
+
declare function getAssetMin({ asset, builder, chain, }: GetMinParams): Promise<AssetAmount>;
|
|
91
|
+
declare function getMin({ balance, existentialDeposit, fee, min, }: DestinationChainTransferData): AssetAmount;
|
|
92
|
+
interface GetMaxParams {
|
|
93
|
+
balance: AssetAmount;
|
|
94
|
+
existentialDeposit?: AssetAmount;
|
|
95
|
+
fee: AssetAmount;
|
|
96
|
+
min: AssetAmount;
|
|
97
|
+
}
|
|
98
|
+
declare function getMax({ balance, existentialDeposit, fee, min, }: GetMaxParams): AssetAmount;
|
|
99
|
+
interface GetDestinationFeeParams {
|
|
100
|
+
address: string;
|
|
101
|
+
asset: Asset;
|
|
102
|
+
feeAsset: Asset;
|
|
103
|
+
destination: AnyChain;
|
|
104
|
+
fee: number | FeeConfigBuilder;
|
|
105
|
+
}
|
|
106
|
+
declare function getDestinationFee({ address, asset, destination, fee, feeAsset, }: GetDestinationFeeParams): Promise<AssetAmount>;
|
|
107
|
+
interface ConvertToChainDecimalsParams {
|
|
108
|
+
asset: AssetAmount;
|
|
109
|
+
target: ChainAsset;
|
|
110
|
+
}
|
|
111
|
+
declare function convertToChainDecimals({ asset, target, }: ConvertToChainDecimalsParams): AssetAmount;
|
|
112
|
+
declare function getExistentialDeposit(chain: AnyChain): Promise<AssetAmount | undefined>;
|
|
113
|
+
interface GetDestinationFeeBalanceParams {
|
|
114
|
+
balance: AssetAmount;
|
|
115
|
+
feeBalance: AssetAmount;
|
|
116
|
+
route: AssetRoute;
|
|
117
|
+
sourceAddress: string;
|
|
118
|
+
}
|
|
119
|
+
declare function getDestinationFeeBalance({ balance, feeBalance, route, sourceAddress, }: GetDestinationFeeBalanceParams): Promise<AssetAmount>;
|
|
120
|
+
interface GetExtrinsicFeeParams {
|
|
121
|
+
address: string;
|
|
122
|
+
balance: AssetAmount;
|
|
123
|
+
chain: AnyParachain;
|
|
124
|
+
extrinsic: ExtrinsicConfig;
|
|
125
|
+
feeBalance: AssetAmount;
|
|
126
|
+
feeConfig?: FeeConfig;
|
|
127
|
+
}
|
|
128
|
+
declare function getExtrinsicFee({ address, balance, chain, extrinsic, feeBalance, feeConfig, }: GetExtrinsicFeeParams): Promise<AssetAmount>;
|
|
129
|
+
interface GetContractFeeParams {
|
|
130
|
+
address: string;
|
|
131
|
+
chain: EvmChain | EvmParachain;
|
|
132
|
+
contract: ContractConfig;
|
|
133
|
+
destinationFee: AssetAmount;
|
|
134
|
+
feeBalance: AssetAmount;
|
|
135
|
+
feeConfig?: FeeConfig;
|
|
136
|
+
}
|
|
137
|
+
declare function getContractFee({ address, chain, contract, destinationFee, feeBalance, feeConfig, }: GetContractFeeParams): Promise<AssetAmount>;
|
|
138
|
+
interface ValidateSovereignAccountBalancesProps {
|
|
139
|
+
amount: bigint;
|
|
140
|
+
destinationData: DestinationChainTransferData;
|
|
141
|
+
sourceData: SourceChainTransferData;
|
|
256
142
|
}
|
|
257
|
-
declare function
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
143
|
+
declare function validateSovereignAccountBalances({ amount, sourceData, destinationData, }: ValidateSovereignAccountBalancesProps): void;
|
|
144
|
+
|
|
145
|
+
interface SdkOptions {
|
|
146
|
+
configService?: ConfigService;
|
|
147
|
+
ecosystem?: Ecosystem;
|
|
148
|
+
}
|
|
149
|
+
declare function Sdk({ configService, ecosystem }?: SdkOptions): {
|
|
150
|
+
assets: _moonbeam_network_xcm_types.Asset[];
|
|
151
|
+
setAsset(asset: string | AnyAsset): {
|
|
152
|
+
sources: AnyChain[];
|
|
153
|
+
setSource(source: string | AnyChain): {
|
|
154
|
+
destinations: AnyChain[];
|
|
155
|
+
setDestination(destination: string | AnyChain): {
|
|
156
|
+
setAddresses({ sourceAddress, destinationAddress, }: {
|
|
157
|
+
sourceAddress: string;
|
|
158
|
+
destinationAddress: string;
|
|
159
|
+
}): Promise<TransferData>;
|
|
160
|
+
};
|
|
270
161
|
};
|
|
271
|
-
};
|
|
272
162
|
};
|
|
273
|
-
};
|
|
274
|
-
getTransferData({
|
|
275
|
-
destinationAddress,
|
|
276
|
-
destinationKeyOrChain,
|
|
277
|
-
ethersSigner,
|
|
278
|
-
evmSigner,
|
|
279
|
-
keyOrAsset,
|
|
280
|
-
polkadotSigner,
|
|
281
|
-
sourceAddress,
|
|
282
|
-
sourceKeyOrChain,
|
|
283
|
-
}: SdkTransferParams): Promise<TransferData>;
|
|
284
163
|
};
|
|
285
|
-
declare function getParachainBalances(
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
164
|
+
declare function getParachainBalances(chain: AnyParachain, address: string, service?: ConfigService): Promise<AssetAmount[]>;
|
|
165
|
+
|
|
166
|
+
declare class PolkadotService {
|
|
167
|
+
#private;
|
|
168
|
+
readonly api: ApiPromise;
|
|
169
|
+
readonly chain: AnyParachain;
|
|
170
|
+
constructor(api: ApiPromise, chain: AnyParachain);
|
|
171
|
+
static create(chain: AnyParachain): Promise<PolkadotService>;
|
|
172
|
+
static createMulti(chains: AnyParachain[]): Promise<PolkadotService[]>;
|
|
173
|
+
get decimals(): number;
|
|
174
|
+
get existentialDeposit(): AssetAmount;
|
|
175
|
+
query(config: SubstrateQueryConfig): Promise<bigint>;
|
|
176
|
+
getExtrinsic(config: ExtrinsicConfig): SubmittableExtrinsic<'promise', ISubmittableResult>;
|
|
177
|
+
getExtrinsicCallHash(config: ExtrinsicConfig): HexString;
|
|
178
|
+
getPaymentInfo(account: string, config: ExtrinsicConfig): Promise<RuntimeDispatchInfo>;
|
|
179
|
+
getFee(account: string, config: ExtrinsicConfig): Promise<bigint>;
|
|
180
|
+
transfer(account: string, config: ExtrinsicConfig, signer: Signer | IKeyringPair, statusCallback?: (params: ISubmittableResult) => void): Promise<string>;
|
|
295
181
|
}
|
|
296
182
|
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
Sdk,
|
|
310
|
-
type SdkOptions,
|
|
311
|
-
type SdkTransferParams,
|
|
312
|
-
type Signers,
|
|
313
|
-
type SourceChainTransferData,
|
|
314
|
-
type SovereignAccountBalance,
|
|
315
|
-
type TransferData,
|
|
316
|
-
getAssetsBalances,
|
|
317
|
-
getBalance,
|
|
318
|
-
getContractFee,
|
|
319
|
-
getDecimals,
|
|
320
|
-
getExtrinsicFee,
|
|
321
|
-
getFee,
|
|
322
|
-
getFeeBalance,
|
|
323
|
-
getMax,
|
|
324
|
-
getMin,
|
|
325
|
-
getParachainBalances,
|
|
326
|
-
getSourceData,
|
|
327
|
-
validateSovereignAccountBalances,
|
|
328
|
-
};
|
|
183
|
+
declare class EvmService {
|
|
184
|
+
readonly chain: EvmChain | EvmParachain;
|
|
185
|
+
readonly client: PublicClient<HttpTransport>;
|
|
186
|
+
static create(chain: EvmChain | EvmParachain): EvmService;
|
|
187
|
+
constructor(chain: EvmChain | EvmParachain);
|
|
188
|
+
query(query: EvmQueryConfig): Promise<bigint>;
|
|
189
|
+
getFee(address: string, contract: ContractConfig): Promise<bigint>;
|
|
190
|
+
getBalance(address: string, contract: ContractConfig): Promise<bigint>;
|
|
191
|
+
transfer(signer: EvmSigner, contract: ContractConfig): Promise<Hash>;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
export { type ChainTransferData, type ConvertToChainDecimalsParams, type DestinationChainTransferData, EvmService, type EvmSigner, type GetAssetsBalancesParams, type GetBalancesParams, type GetContractFeeParams, type GetDestinationDataParams, type GetDestinationFeeBalanceParams, type GetDestinationFeeParams, type GetExtrinsicFeeParams, type GetFeeParams, type GetMaxParams, type GetMinParams, type GetSourceDataParams, PolkadotService, Sdk, type SdkOptions, type Signers, type SourceChainTransferData, type SovereignAccountBalance, type TransferData, convertToChainDecimals, getAssetMin, getAssetsBalances, getBalance, getContractFee, getDestinationData, getDestinationFee, getDestinationFeeBalance, getExistentialDeposit, getExtrinsicFee, getFee, getMax, getMin, getParachainBalances, getSourceData, validateSovereignAccountBalances };
|