@paraspell/sdk-core 8.1.0 → 8.2.0
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.cjs +416 -129
- package/dist/index.d.ts +3 -2
- package/dist/index.mjs +416 -129
- package/package.json +10 -10
package/dist/index.d.ts
CHANGED
|
@@ -145,9 +145,9 @@ declare class Interlay<TApi, TRes> extends ParachainNode<TApi, TRes> implements
|
|
|
145
145
|
transferXTokens<TApi, TRes>(input: TXTokensTransferOptions<TApi, TRes>): TRes;
|
|
146
146
|
}
|
|
147
147
|
|
|
148
|
-
declare class Litentry<TApi, TRes> extends ParachainNode<TApi, TRes> implements
|
|
148
|
+
declare class Litentry<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
149
149
|
constructor();
|
|
150
|
-
|
|
150
|
+
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
151
151
|
}
|
|
152
152
|
|
|
153
153
|
declare class Moonbeam<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
@@ -1289,6 +1289,7 @@ interface IPolkadotApi<TApi, TRes> {
|
|
|
1289
1289
|
createAccountId(address: string): string;
|
|
1290
1290
|
accountToHex(address: string, isPrefixed?: boolean): string;
|
|
1291
1291
|
callTxMethod(serializedCall: TSerializedApiCall): TRes;
|
|
1292
|
+
callBatchMethod(calls: TRes[], mode: BatchMode): TRes;
|
|
1292
1293
|
calculateTransactionFee(tx: TRes, address: string): Promise<bigint>;
|
|
1293
1294
|
getBalanceNative(address: string): Promise<bigint>;
|
|
1294
1295
|
getBalanceNativeAcala(address: string, symbol: string): Promise<bigint>;
|