git.delta.rocks / unique-network / refs/commits / 0877b7a94cc4

difftreelog

test replace references to __dirname/__filename with import.meta

Yaroslav Bolyukin2023-03-29parent: #e077b06.patch.diff
in: master

121 files changed

modifiedtests/src/addCollectionAdmin.test.tsdiffbeforeafterboth
2222
23 before(async () => {23 before(async () => {
24 await usingPlaygrounds(async (_, privateKey) => {24 await usingPlaygrounds(async (_, privateKey) => {
25 donor = await privateKey({filename: __filename});25 donor = await privateKey({url: import.meta.url});
26 });26 });
27 });27 });
2828
4545
46 before(async () => {46 before(async () => {
47 await usingPlaygrounds(async (_, privateKey) => {47 await usingPlaygrounds(async (_, privateKey) => {
48 donor = await privateKey({filename: __filename});48 donor = await privateKey({url: import.meta.url});
49 });49 });
50 });50 });
5151
modifiedtests/src/adminTransferAndBurn.test.tsdiffbeforeafterboth
2424
25 before(async () => {25 before(async () => {
26 await usingPlaygrounds(async (helper, privateKey) => {26 await usingPlaygrounds(async (helper, privateKey) => {
27 const donor = await privateKey({filename: __filename});27 const donor = await privateKey({url: import.meta.url});
28 [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);28 [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);
29 });29 });
30 });30 });
modifiedtests/src/allowLists.test.tsdiffbeforeafterboth
2525
26 before(async () => {26 before(async () => {
27 await usingPlaygrounds(async (helper, privateKey) => {27 await usingPlaygrounds(async (helper, privateKey) => {
28 const donor = await privateKey({filename: __filename});28 const donor = await privateKey({url: import.meta.url});
29 [alice, bob, charlie] = await helper.arrange.createAccounts([30n, 10n, 10n], donor);29 [alice, bob, charlie] = await helper.arrange.createAccounts([30n, 10n, 10n], donor);
30 });30 });
31 });31 });
8787
88 before(async () => {88 before(async () => {
89 await usingPlaygrounds(async (helper, privateKey) => {89 await usingPlaygrounds(async (helper, privateKey) => {
90 const donor = await privateKey({filename: __filename});90 const donor = await privateKey({url: import.meta.url});
91 [alice, bob, charlie] = await helper.arrange.createAccounts([30n, 10n, 10n], donor);91 [alice, bob, charlie] = await helper.arrange.createAccounts([30n, 10n, 10n], donor);
92 });92 });
93 });93 });
163163
164 before(async () => {164 before(async () => {
165 await usingPlaygrounds(async (helper, privateKey) => {165 await usingPlaygrounds(async (helper, privateKey) => {
166 const donor = await privateKey({filename: __filename});166 const donor = await privateKey({url: import.meta.url});
167 [alice, bob, charlie] = await helper.arrange.createAccounts([30n, 10n, 10n], donor);167 [alice, bob, charlie] = await helper.arrange.createAccounts([30n, 10n, 10n], donor);
168 });168 });
169 });169 });
291291
292 before(async () => {292 before(async () => {
293 await usingPlaygrounds(async (helper, privateKey) => {293 await usingPlaygrounds(async (helper, privateKey) => {
294 const donor = await privateKey({filename: __filename});294 const donor = await privateKey({url: import.meta.url});
295 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);295 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
296 });296 });
297 });297 });
modifiedtests/src/approve.test.tsdiffbeforeafterboth
3131
32 before(async () => {32 before(async () => {
33 await usingPlaygrounds(async (helper, privateKey) => {33 await usingPlaygrounds(async (helper, privateKey) => {
34 const donor = await privateKey({filename: __filename});34 const donor = await privateKey({url: import.meta.url});
35 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);35 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
36 });36 });
37 });37 });
110110
111 before(async () => {111 before(async () => {
112 await usingPlaygrounds(async (helper, privateKey) => {112 await usingPlaygrounds(async (helper, privateKey) => {
113 const donor = await privateKey({filename: __filename});113 const donor = await privateKey({url: import.meta.url});
114 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);114 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
115 });115 });
116 });116 });
147147
148 before(async () => {148 before(async () => {
149 await usingPlaygrounds(async (helper, privateKey) => {149 await usingPlaygrounds(async (helper, privateKey) => {
150 const donor = await privateKey({filename: __filename});150 const donor = await privateKey({url: import.meta.url});
151 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);151 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
152 });152 });
153 });153 });
190190
191 before(async () => {191 before(async () => {
192 await usingPlaygrounds(async (helper, privateKey) => {192 await usingPlaygrounds(async (helper, privateKey) => {
193 const donor = await privateKey({filename: __filename});193 const donor = await privateKey({url: import.meta.url});
194 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);194 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
195 });195 });
196 });196 });
241241
242 before(async () => {242 before(async () => {
243 await usingPlaygrounds(async (helper, privateKey) => {243 await usingPlaygrounds(async (helper, privateKey) => {
244 const donor = await privateKey({filename: __filename});244 const donor = await privateKey({url: import.meta.url});
245 [alice, bob, charlie, dave] = await helper.arrange.createAccounts([100n, 100n, 100n, 100n], donor);245 [alice, bob, charlie, dave] = await helper.arrange.createAccounts([100n, 100n, 100n, 100n], donor);
246 });246 });
247 });247 });
271271
272 before(async () => {272 before(async () => {
273 await usingPlaygrounds(async (helper, privateKey) => {273 await usingPlaygrounds(async (helper, privateKey) => {
274 const donor = await privateKey({filename: __filename});274 const donor = await privateKey({url: import.meta.url});
275 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);275 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
276 });276 });
277 });277 });
326326
327 before(async () => {327 before(async () => {
328 await usingPlaygrounds(async (helper, privateKey) => {328 await usingPlaygrounds(async (helper, privateKey) => {
329 const donor = await privateKey({filename: __filename});329 const donor = await privateKey({url: import.meta.url});
330 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);330 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
331 });331 });
332 });332 });
362362
363 before(async () => {363 before(async () => {
364 await usingPlaygrounds(async (helper, privateKey) => {364 await usingPlaygrounds(async (helper, privateKey) => {
365 const donor = await privateKey({filename: __filename});365 const donor = await privateKey({url: import.meta.url});
366 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);366 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
367 });367 });
368 });368 });
383383
384 before(async () => {384 before(async () => {
385 await usingPlaygrounds(async (helper, privateKey) => {385 await usingPlaygrounds(async (helper, privateKey) => {
386 const donor = await privateKey({filename: __filename});386 const donor = await privateKey({url: import.meta.url});
387 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);387 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
388 });388 });
389 });389 });
498498
499 before(async () => {499 before(async () => {
500 await usingPlaygrounds(async (helper, privateKey) => {500 await usingPlaygrounds(async (helper, privateKey) => {
501 const donor = await privateKey({filename: __filename});501 const donor = await privateKey({url: import.meta.url});
502 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);502 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
503 });503 });
504 });504 });
542542
543 before(async () => {543 before(async () => {
544 await usingPlaygrounds(async (helper, privateKey) => {544 await usingPlaygrounds(async (helper, privateKey) => {
545 const donor = await privateKey({filename: __filename});545 const donor = await privateKey({url: import.meta.url});
546 [alice, bob, charlie, dave] = await helper.arrange.createAccounts([100n, 100n, 100n, 100n], donor);546 [alice, bob, charlie, dave] = await helper.arrange.createAccounts([100n, 100n, 100n, 100n], donor);
547 });547 });
548 });548 });
608608
609 before(async () => {609 before(async () => {
610 await usingPlaygrounds(async (helper, privateKey) => {610 await usingPlaygrounds(async (helper, privateKey) => {
611 const donor = await privateKey({filename: __filename});611 const donor = await privateKey({url: import.meta.url});
612 [alice, bob, charlie, dave] = await helper.arrange.createAccounts([100n, 100n, 100n, 100n], donor);612 [alice, bob, charlie, dave] = await helper.arrange.createAccounts([100n, 100n, 100n, 100n], donor);
613 });613 });
614 });614 });
modifiedtests/src/benchmarks/mintFee/index.tsdiffbeforeafterboth
8import {Contract} from 'web3-eth-contract';8import {Contract} from 'web3-eth-contract';
9import {createObjectCsvWriter} from 'csv-writer';9import {createObjectCsvWriter} from 'csv-writer';
10import {convertToTokens, createCollectionForBenchmarks, PERMISSIONS, PROPERTIES} from '../utils/common';10import {convertToTokens, createCollectionForBenchmarks, PERMISSIONS, PROPERTIES} from '../utils/common';
11import {makeNames} from '../utils';
11import {ContractImports} from '../../eth/util/playgrounds/types';12import {ContractImports} from '../../eth/util/playgrounds/types';
13
14const {dirname} = makeNames(import.meta.url);
1215
13export const CONTRACT_IMPORT: ContractImports[] = [16export const CONTRACT_IMPORT: ContractImports[] = [
14 {17 {
15 fsPath: `${__dirname}/../../eth/api/CollectionHelpers.sol`,18 fsPath: `${dirname}/../../eth/api/CollectionHelpers.sol`,
16 solPath: 'eth/api/CollectionHelpers.sol',19 solPath: 'eth/api/CollectionHelpers.sol',
17 },20 },
18 {21 {
19 fsPath: `${__dirname}/../../eth/api/ContractHelpers.sol`,22 fsPath: `${dirname}/../../eth/api/ContractHelpers.sol`,
20 solPath: 'eth/api/ContractHelpers.sol',23 solPath: 'eth/api/ContractHelpers.sol',
21 },24 },
22 {25 {
23 fsPath: `${__dirname}/../../eth/api/UniqueRefungibleToken.sol`,26 fsPath: `${dirname}/../../eth/api/UniqueRefungibleToken.sol`,
24 solPath: 'eth/api/UniqueRefungibleToken.sol',27 solPath: 'eth/api/UniqueRefungibleToken.sol',
25 },28 },
26 {29 {
27 fsPath: `${__dirname}/../../eth/api/UniqueRefungible.sol`,30 fsPath: `${dirname}/../../eth/api/UniqueRefungible.sol`,
28 solPath: 'eth/api/UniqueRefungible.sol',31 solPath: 'eth/api/UniqueRefungible.sol',
29 },32 },
30 {33 {
31 fsPath: `${__dirname}/../../eth/api/UniqueNFT.sol`,34 fsPath: `${dirname}/../../eth/api/UniqueNFT.sol`,
32 solPath: 'eth/api/UniqueNFT.sol',35 solPath: 'eth/api/UniqueNFT.sol',
33 },36 },
34];37];
6568
66 await usingEthPlaygrounds(async (helper, privateKey) => {69 await usingEthPlaygrounds(async (helper, privateKey) => {
67 const CONTRACT_SOURCE = (70 const CONTRACT_SOURCE = (
68 await readFile(`${__dirname}/proxyContract.sol`)71 await readFile(`${dirname}/proxyContract.sol`)
69 ).toString();72 ).toString();
7073
71 const donor = await privateKey('//Alice'); // Seed from account with balance on this network74 const donor = await privateKey('//Alice'); // Seed from account with balance on this network
modifiedtests/src/benchmarks/opsFee/index.tsdiffbeforeafterboth
7474
75 const helperContract = await helper.ethNativeContract.collectionHelpers(ethSigner);75 const helperContract = await helper.ethNativeContract.collectionHelpers(ethSigner);
76 let zeppelelinContract: Contract | null = null;76 let zeppelelinContract: Contract | null = null;
77 const ZEPPELIN_OBJECT = '0x' + (await readFile(`${__dirname}/../utils/openZeppelin/ERC721/bin/ZeppelinContract.bin`)).toString();77 const ZEPPELIN_OBJECT = '0x' + (await readFile(`${dirname}/../utils/openZeppelin/ERC721/bin/ZeppelinContract.bin`)).toString();
78 const ZEPPELIN_ABI = JSON.parse((await readFile(`${__dirname}/../utils/openZeppelin/ERC721/bin/ZeppelinContract.abi`)).toString());78 const ZEPPELIN_ABI = JSON.parse((await readFile(`${dirname}/../utils/openZeppelin/ERC721/bin/ZeppelinContract.abi`)).toString());
7979
80 const evmContract = await helper.ethNativeContract.collection(80 const evmContract = await helper.ethNativeContract.collection(
81 helper.ethAddress.fromCollectionId(collection.collectionId),81 helper.ethAddress.fromCollectionId(collection.collectionId),
534534
535 const helperContract = await helper.ethNativeContract.collectionHelpers(ethSigner);535 const helperContract = await helper.ethNativeContract.collectionHelpers(ethSigner);
536 let zeppelelinContract: Contract | null = null;536 let zeppelelinContract: Contract | null = null;
537 const ZEPPELIN_OBJECT = '0x' + (await readFile(`${__dirname}/../utils/openZeppelin/ERC20/bin/ZeppelinContract.bin`)).toString();537 const ZEPPELIN_OBJECT = '0x' + (await readFile(`${dirname}/../utils/openZeppelin/ERC20/bin/ZeppelinContract.bin`)).toString();
538 const ZEPPELIN_ABI = JSON.parse((await readFile(`${__dirname}/../utils/openZeppelin/ERC20/bin/ZeppelinContract.abi`)).toString());538 const ZEPPELIN_ABI = JSON.parse((await readFile(`${dirname}/../utils/openZeppelin/ERC20/bin/ZeppelinContract.abi`)).toString());
539539
540 const evmContract = await helper.ethNativeContract.collection(540 const evmContract = await helper.ethNativeContract.collection(
541 helper.ethAddress.fromCollectionId(collection.collectionId),541 helper.ethAddress.fromCollectionId(collection.collectionId),
modifiedtests/src/burnItem.test.tsdiffbeforeafterboth
2424
25 before(async () => {25 before(async () => {
26 await usingPlaygrounds(async (helper, privateKey) => {26 await usingPlaygrounds(async (helper, privateKey) => {
27 donor = await privateKey({filename: __filename});27 donor = await privateKey({url: import.meta.url});
28 [alice] = await helper.arrange.createAccounts([100n], donor);28 [alice] = await helper.arrange.createAccounts([100n], donor);
29 });29 });
30 });30 });
5353
54 before(async () => {54 before(async () => {
55 await usingPlaygrounds(async (helper, privateKey) => {55 await usingPlaygrounds(async (helper, privateKey) => {
56 donor = await privateKey({filename: __filename});56 donor = await privateKey({url: import.meta.url});
57 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);57 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
58 });58 });
59 });59 });
8686
87 before(async () => {87 before(async () => {
88 await usingPlaygrounds(async (helper, privateKey) => {88 await usingPlaygrounds(async (helper, privateKey) => {
89 donor = await privateKey({filename: __filename});89 donor = await privateKey({url: import.meta.url});
90 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);90 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
91 });91 });
92 });92 });
modifiedtests/src/calibrateApply.tsdiffbeforeafterboth
1import {readFile, writeFile} from 'fs/promises';1import {readFile, writeFile} from 'fs/promises';
2import path from 'path';2import path from 'path';
3import usingApi from './.outdated/substrate/substrate-api';3import usingApi from './.outdated/substrate/substrate-api';
4import {makeNames} from './util';
5
6const {dirname} = makeNames(import.meta.url);
47
5const formatNumber = (num: string): string => num.split('').reverse().join('').replace(/([0-9]{3})/g, '$1_').split('').reverse().join('').replace(/^_/, '');8const formatNumber = (num: string): string => num.split('').reverse().join('').replace(/([0-9]{3})/g, '$1_').split('').reverse().join('').replace(/^_/, '');
69
11 weightToFeeCoefficientOverride = (await api.query.configuration.weightToFeeCoefficientOverride() as any).toBigInt().toString();14 weightToFeeCoefficientOverride = (await api.query.configuration.weightToFeeCoefficientOverride() as any).toBigInt().toString();
12 minGasPriceOverride = (await api.query.configuration.minGasPriceOverride() as any).toBigInt().toString();15 minGasPriceOverride = (await api.query.configuration.minGasPriceOverride() as any).toBigInt().toString();
13 });16 });
14 const constantsFile = path.resolve(__dirname, '../../primitives/common/src/constants.rs');17 const constantsFile = path.resolve(dirname, '../../primitives/common/src/constants.rs');
15 let constants = (await readFile(constantsFile)).toString();18 let constants = (await readFile(constantsFile)).toString();
1619
17 let weight2feeFound = false;20 let weight2feeFound = false;
modifiedtests/src/change-collection-owner.test.tsdiffbeforeafterboth
2323
24 before(async () => {24 before(async () => {
25 await usingPlaygrounds(async (helper, privateKey) => {25 await usingPlaygrounds(async (helper, privateKey) => {
26 const donor = await privateKey({filename: __filename});26 const donor = await privateKey({url: import.meta.url});
27 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);27 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
28 });28 });
29 });29 });
4646
47 before(async () => {47 before(async () => {
48 await usingPlaygrounds(async (helper, privateKey) => {48 await usingPlaygrounds(async (helper, privateKey) => {
49 const donor = await privateKey({filename: __filename});49 const donor = await privateKey({url: import.meta.url});
50 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);50 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
51 });51 });
52 });52 });
108108
109 before(async () => {109 before(async () => {
110 await usingPlaygrounds(async (helper, privateKey) => {110 await usingPlaygrounds(async (helper, privateKey) => {
111 const donor = await privateKey({filename: __filename});111 const donor = await privateKey({url: import.meta.url});
112 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);112 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
113 });113 });
114 });114 });
modifiedtests/src/check-event/burnItemEvent.test.tsdiffbeforeafterboth
24 let alice: IKeyringPair;24 let alice: IKeyringPair;
25 before(async () => {25 before(async () => {
26 await usingPlaygrounds(async (helper, privateKey) => {26 await usingPlaygrounds(async (helper, privateKey) => {
27 const donor = await privateKey({filename: __filename});27 const donor = await privateKey({url: import.meta.url});
28 [alice] = await helper.arrange.createAccounts([10n], donor);28 [alice] = await helper.arrange.createAccounts([10n], donor);
29 });29 });
30 });30 });
modifiedtests/src/check-event/createCollectionEvent.test.tsdiffbeforeafterboth
23 let alice: IKeyringPair;23 let alice: IKeyringPair;
24 before(async () => {24 before(async () => {
25 await usingPlaygrounds(async (helper, privateKey) => {25 await usingPlaygrounds(async (helper, privateKey) => {
26 const donor = await privateKey({filename: __filename});26 const donor = await privateKey({url: import.meta.url});
27 [alice] = await helper.arrange.createAccounts([10n], donor);27 [alice] = await helper.arrange.createAccounts([10n], donor);
28 });28 });
29 });29 });
modifiedtests/src/check-event/createItemEvent.test.tsdiffbeforeafterboth
23 let alice: IKeyringPair;23 let alice: IKeyringPair;
24 before(async () => {24 before(async () => {
25 await usingPlaygrounds(async (helper, privateKey) => {25 await usingPlaygrounds(async (helper, privateKey) => {
26 const donor = await privateKey({filename: __filename});26 const donor = await privateKey({url: import.meta.url});
27 [alice] = await helper.arrange.createAccounts([10n], donor);27 [alice] = await helper.arrange.createAccounts([10n], donor);
28 });28 });
29 });29 });
modifiedtests/src/check-event/createMultipleItemsEvent.test.tsdiffbeforeafterboth
23 let alice: IKeyringPair;23 let alice: IKeyringPair;
24 before(async () => {24 before(async () => {
25 await usingPlaygrounds(async (helper, privateKey) => {25 await usingPlaygrounds(async (helper, privateKey) => {
26 const donor = await privateKey({filename: __filename});26 const donor = await privateKey({url: import.meta.url});
27 [alice] = await helper.arrange.createAccounts([10n], donor);27 [alice] = await helper.arrange.createAccounts([10n], donor);
28 });28 });
29 });29 });
modifiedtests/src/check-event/destroyCollectionEvent.test.tsdiffbeforeafterboth
23 let alice: IKeyringPair;23 let alice: IKeyringPair;
24 before(async () => {24 before(async () => {
25 await usingPlaygrounds(async (helper, privateKey) => {25 await usingPlaygrounds(async (helper, privateKey) => {
26 const donor = await privateKey({filename: __filename});26 const donor = await privateKey({url: import.meta.url});
27 [alice] = await helper.arrange.createAccounts([10n], donor);27 [alice] = await helper.arrange.createAccounts([10n], donor);
28 });28 });
29 });29 });
modifiedtests/src/check-event/transferEvent.test.tsdiffbeforeafterboth
2525
26 before(async () => {26 before(async () => {
27 await usingPlaygrounds(async (helper, privateKey) => {27 await usingPlaygrounds(async (helper, privateKey) => {
28 const donor = await privateKey({filename: __filename});28 const donor = await privateKey({url: import.meta.url});
29 [alice, bob] = await helper.arrange.createAccounts([10n, 10n], donor);29 [alice, bob] = await helper.arrange.createAccounts([10n, 10n], donor);
30 });30 });
31 });31 });
modifiedtests/src/check-event/transferFromEvent.test.tsdiffbeforeafterboth
24 let bob: IKeyringPair;24 let bob: IKeyringPair;
25 before(async () => {25 before(async () => {
26 await usingPlaygrounds(async (helper, privateKey) => {26 await usingPlaygrounds(async (helper, privateKey) => {
27 const donor = await privateKey({filename: __filename});27 const donor = await privateKey({url: import.meta.url});
28 [alice, bob] = await helper.arrange.createAccounts([10n, 10n], donor);28 [alice, bob] = await helper.arrange.createAccounts([10n, 10n], donor);
29 });29 });
30 });30 });
modifiedtests/src/confirmSponsorship.test.tsdiffbeforeafterboth
3737
38 before(async () => {38 before(async () => {
39 await usingPlaygrounds(async (helper, privateKey) => {39 await usingPlaygrounds(async (helper, privateKey) => {
40 const donor = await privateKey({filename: __filename});40 const donor = await privateKey({url: import.meta.url});
41 [alice, bob, charlie, zeroBalance] = await helper.arrange.createAccounts([100n, 100n, 100n, 0n], donor);41 [alice, bob, charlie, zeroBalance] = await helper.arrange.createAccounts([100n, 100n, 100n, 0n], donor);
42 });42 });
43 });43 });
192192
193 before(async () => {193 before(async () => {
194 await usingPlaygrounds(async (helper, privateKey) => {194 await usingPlaygrounds(async (helper, privateKey) => {
195 const donor = await privateKey({filename: __filename});195 const donor = await privateKey({url: import.meta.url});
196 [alice, bob, charlie, ownerZeroBalance, senderZeroBalance] = await helper.arrange.createAccounts([100n, 100n, 100n, 0n, 0n], donor);196 [alice, bob, charlie, ownerZeroBalance, senderZeroBalance] = await helper.arrange.createAccounts([100n, 100n, 100n, 0n, 0n], donor);
197 });197 });
198 });198 });
modifiedtests/src/createCollection.test.tsdiffbeforeafterboth
4949
50 before(async () => {50 before(async () => {
51 await usingPlaygrounds(async (helper, privateKey) => {51 await usingPlaygrounds(async (helper, privateKey) => {
52 const donor = await privateKey({filename: __filename});52 const donor = await privateKey({url: import.meta.url});
53 [alice] = await helper.arrange.createAccounts([100n], donor);53 [alice] = await helper.arrange.createAccounts([100n], donor);
54 });54 });
55 });55 });
110110
111 before(async () => {111 before(async () => {
112 await usingPlaygrounds(async (helper, privateKey) => {112 await usingPlaygrounds(async (helper, privateKey) => {
113 const donor = await privateKey({filename: __filename});113 const donor = await privateKey({url: import.meta.url});
114 [alice] = await helper.arrange.createAccounts([100n], donor);114 [alice] = await helper.arrange.createAccounts([100n], donor);
115 });115 });
116 });116 });
modifiedtests/src/createItem.test.tsdiffbeforeafterboth
5050
51 before(async () => {51 before(async () => {
52 await usingPlaygrounds(async (helper, privateKey) => {52 await usingPlaygrounds(async (helper, privateKey) => {
53 const donor = await privateKey({filename: __filename});53 const donor = await privateKey({url: import.meta.url});
54 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);54 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
55 });55 });
56 });56 });
179179
180 before(async () => {180 before(async () => {
181 await usingPlaygrounds(async (helper, privateKey) => {181 await usingPlaygrounds(async (helper, privateKey) => {
182 const donor = await privateKey({filename: __filename});182 const donor = await privateKey({url: import.meta.url});
183 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);183 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
184 });184 });
185 });185 });
modifiedtests/src/createMultipleItems.test.tsdiffbeforeafterboth
2222
23 before(async () => {23 before(async () => {
24 await usingPlaygrounds(async (helper, privateKey) => {24 await usingPlaygrounds(async (helper, privateKey) => {
25 const donor = await privateKey({filename: __filename});25 const donor = await privateKey({url: import.meta.url});
26 [alice] = await helper.arrange.createAccounts([100n], donor);26 [alice] = await helper.arrange.createAccounts([100n], donor);
27 });27 });
28 });28 });
168168
169 before(async () => {169 before(async () => {
170 await usingPlaygrounds(async (helper, privateKey) => {170 await usingPlaygrounds(async (helper, privateKey) => {
171 const donor = await privateKey({filename: __filename});171 const donor = await privateKey({url: import.meta.url});
172 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);172 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
173 });173 });
174 });174 });
modifiedtests/src/createMultipleItemsEx.test.tsdiffbeforeafterboth
2525
26 before(async () => {26 before(async () => {
27 await usingPlaygrounds(async (helper, privateKey) => {27 await usingPlaygrounds(async (helper, privateKey) => {
28 const donor = await privateKey({filename: __filename});28 const donor = await privateKey({url: import.meta.url});
29 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);29 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
30 });30 });
31 });31 });
264264
265 before(async () => {265 before(async () => {
266 await usingPlaygrounds(async (helper, privateKey) => {266 await usingPlaygrounds(async (helper, privateKey) => {
267 const donor = await privateKey({filename: __filename});267 const donor = await privateKey({url: import.meta.url});
268 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);268 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
269 });269 });
270 });270 });
modifiedtests/src/creditFeesToTreasury.seqtest.tsdiffbeforeafterboth
5050
51 before(async () => {51 before(async () => {
52 await usingPlaygrounds(async (helper, privateKey) => {52 await usingPlaygrounds(async (helper, privateKey) => {
53 const donor = await privateKey({filename: __filename});53 const donor = await privateKey({url: import.meta.url});
54 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);54 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
55 });55 });
56 });56 });
modifiedtests/src/destroyCollection.test.tsdiffbeforeafterboth
2222
23 before(async () => {23 before(async () => {
24 await usingPlaygrounds(async (helper, privateKey) => {24 await usingPlaygrounds(async (helper, privateKey) => {
25 const donor = await privateKey({filename: __filename});25 const donor = await privateKey({url: import.meta.url});
26 [alice] = await helper.arrange.createAccounts([100n], donor);26 [alice] = await helper.arrange.createAccounts([100n], donor);
27 });27 });
28 });28 });
6262
63 before(async () => {63 before(async () => {
64 await usingPlaygrounds(async (helper, privateKey) => {64 await usingPlaygrounds(async (helper, privateKey) => {
65 const donor = await privateKey({filename: __filename});65 const donor = await privateKey({url: import.meta.url});
66 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);66 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
67 });67 });
68 });68 });
modifiedtests/src/enableDisableTransfer.test.tsdiffbeforeafterboth
2323
24 before(async () => {24 before(async () => {
25 await usingPlaygrounds(async (helper, privateKey) => {25 await usingPlaygrounds(async (helper, privateKey) => {
26 const donor = await privateKey({filename: __filename});26 const donor = await privateKey({url: import.meta.url});
27 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);27 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
28 });28 });
29 });29 });
6262
63 before(async () => {63 before(async () => {
64 await usingPlaygrounds(async (helper, privateKey) => {64 await usingPlaygrounds(async (helper, privateKey) => {
65 const donor = await privateKey({filename: __filename});65 const donor = await privateKey({url: import.meta.url});
66 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);66 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
67 });67 });
68 });68 });
modifiedtests/src/eth/allowlist.test.tsdiffbeforeafterboth
2323
24 before(async function() {24 before(async function() {
25 await usingEthPlaygrounds(async (_helper, privateKey) => {25 await usingEthPlaygrounds(async (_helper, privateKey) => {
26 donor = await privateKey({filename: __filename});26 donor = await privateKey({url: import.meta.url});
27 });27 });
28 });28 });
2929
7171
72 before(async function() {72 before(async function() {
73 await usingEthPlaygrounds(async (_helper, privateKey) => {73 await usingEthPlaygrounds(async (_helper, privateKey) => {
74 donor = await privateKey({filename: __filename});74 donor = await privateKey({url: import.meta.url});
75 });75 });
76 });76 });
7777
modifiedtests/src/eth/base.test.tsdiffbeforeafterboth
2323
24 before(async function () {24 before(async function () {
25 await usingEthPlaygrounds(async (_helper, privateKey) => {25 await usingEthPlaygrounds(async (_helper, privateKey) => {
26 donor = await privateKey({filename: __filename});26 donor = await privateKey({url: import.meta.url});
27 });27 });
28 });28 });
2929
8888
89 before(async () => {89 before(async () => {
90 await usingEthPlaygrounds(async (helper, privateKey) => {90 await usingEthPlaygrounds(async (helper, privateKey) => {
91 const donor = await privateKey({filename: __filename});91 const donor = await privateKey({url: import.meta.url});
92 const [alice] = await helper.arrange.createAccounts([10n], donor);92 const [alice] = await helper.arrange.createAccounts([10n], donor);
93 ({collectionId: simpleNftCollectionId} = await helper.nft.mintCollection(alice, {name: 'test', description: 'test', tokenPrefix: 'test'}));93 ({collectionId: simpleNftCollectionId} = await helper.nft.mintCollection(alice, {name: 'test', description: 'test', tokenPrefix: 'test'}));
94 minter = await helper.eth.createAccountWithBalance(donor);94 minter = await helper.eth.createAccountWithBalance(donor);
modifiedtests/src/eth/collectionAdmin.test.tsdiffbeforeafterboth
3636
37 before(async function() {37 before(async function() {
38 await usingEthPlaygrounds(async (_helper, privateKey) => {38 await usingEthPlaygrounds(async (_helper, privateKey) => {
39 donor = await privateKey({filename: __filename});39 donor = await privateKey({url: import.meta.url});
40 });40 });
41 });41 });
4242
227227
228 before(async function() {228 before(async function() {
229 await usingEthPlaygrounds(async (_helper, privateKey) => {229 await usingEthPlaygrounds(async (_helper, privateKey) => {
230 donor = await privateKey({filename: __filename});230 donor = await privateKey({url: import.meta.url});
231 });231 });
232 });232 });
233233
374374
375 before(async function() {375 before(async function() {
376 await usingEthPlaygrounds(async (_helper, privateKey) => {376 await usingEthPlaygrounds(async (_helper, privateKey) => {
377 donor = await privateKey({filename: __filename});377 donor = await privateKey({url: import.meta.url});
378 });378 });
379 });379 });
380380
416416
417 before(async function() {417 before(async function() {
418 await usingEthPlaygrounds(async (_helper, privateKey) => {418 await usingEthPlaygrounds(async (_helper, privateKey) => {
419 donor = await privateKey({filename: __filename});419 donor = await privateKey({url: import.meta.url});
420 });420 });
421 });421 });
422422
modifiedtests/src/eth/collectionHelperAddress.test.tsdiffbeforeafterboth
2323
24 before(async function() {24 before(async function() {
25 await usingEthPlaygrounds(async (helper, privateKey) => {25 await usingEthPlaygrounds(async (helper, privateKey) => {
26 donor = await privateKey({filename: __filename});26 donor = await privateKey({url: import.meta.url});
27 });27 });
28 });28 });
2929
modifiedtests/src/eth/collectionLimits.test.tsdiffbeforeafterboth
99
10 before(async () => {10 before(async () => {
11 await usingEthPlaygrounds(async (_helper, privateKey) => {11 await usingEthPlaygrounds(async (_helper, privateKey) => {
12 donor = await privateKey({filename: __filename});12 donor = await privateKey({url: import.meta.url});
13 });13 });
14 });14 });
1515
8080
81 before(async () => {81 before(async () => {
82 await usingEthPlaygrounds(async (_helper, privateKey) => {82 await usingEthPlaygrounds(async (_helper, privateKey) => {
83 donor = await privateKey({filename: __filename});83 donor = await privateKey({url: import.meta.url});
84 });84 });
85 });85 });
8686
modifiedtests/src/eth/collectionProperties.test.tsdiffbeforeafterboth
2525
26 before(async function() {26 before(async function() {
27 await usingEthPlaygrounds(async (_helper, privateKey) => {27 await usingEthPlaygrounds(async (_helper, privateKey) => {
28 donor = await privateKey({filename: __filename});28 donor = await privateKey({url: import.meta.url});
29 [alice] = await _helper.arrange.createAccounts([50n], donor);29 [alice] = await _helper.arrange.createAccounts([50n], donor);
30 });30 });
31 });31 });
139139
140 before(async function() {140 before(async function() {
141 await usingEthPlaygrounds(async (_helper, privateKey) => {141 await usingEthPlaygrounds(async (_helper, privateKey) => {
142 donor = await privateKey({filename: __filename});142 donor = await privateKey({url: import.meta.url});
143 });143 });
144 });144 });
145145
modifiedtests/src/eth/collectionSponsoring.test.tsdiffbeforeafterboth
2525
26 before(async () => {26 before(async () => {
27 await usingPlaygrounds(async (helper, privateKey) => {27 await usingPlaygrounds(async (helper, privateKey) => {
28 donor = await privateKey({filename: __filename});28 donor = await privateKey({url: import.meta.url});
29 [alice] = await helper.arrange.createAccounts([100n], donor);29 [alice] = await helper.arrange.createAccounts([100n], donor);
30 nominal = helper.balance.getOneTokenNominal();30 nominal = helper.balance.getOneTokenNominal();
31 });31 });
327 before(async function() {327 before(async function() {
328 await usingPlaygrounds(async (helper, privateKey) => {328 await usingPlaygrounds(async (helper, privateKey) => {
329 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);329 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
330 donor = await privateKey({filename: __filename});330 donor = await privateKey({url: import.meta.url});
331 [alice] = await helper.arrange.createAccounts([100n], donor);331 [alice] = await helper.arrange.createAccounts([100n], donor);
332 nominal = helper.balance.getOneTokenNominal();332 nominal = helper.balance.getOneTokenNominal();
333 });333 });
739 before(async function() {739 before(async function() {
740 await usingPlaygrounds(async (helper, privateKey) => {740 await usingPlaygrounds(async (helper, privateKey) => {
741 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);741 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
742 donor = await privateKey({filename: __filename});742 donor = await privateKey({url: import.meta.url});
743 });743 });
744 });744 });
745745
modifiedtests/src/eth/contractSponsoring.test.tsdiffbeforeafterboth
2626
27 before(async () => {27 before(async () => {
28 await usingPlaygrounds(async (helper, privateKey) => {28 await usingPlaygrounds(async (helper, privateKey) => {
29 donor = await privateKey({filename: __filename});29 donor = await privateKey({url: import.meta.url});
30 nominal = helper.balance.getOneTokenNominal();30 nominal = helper.balance.getOneTokenNominal();
31 });31 });
32 });32 });
444444
445 before(async () => {445 before(async () => {
446 await usingEthPlaygrounds(async (helper, privateKey) => {446 await usingEthPlaygrounds(async (helper, privateKey) => {
447 donor = await privateKey({filename: __filename});447 donor = await privateKey({url: import.meta.url});
448 [alice] = await helper.arrange.createAccounts([100n], donor);448 [alice] = await helper.arrange.createAccounts([100n], donor);
449 });449 });
450 });450 });
modifiedtests/src/eth/createFTCollection.seqtest.tsdiffbeforeafterboth
26 before(async function() {26 before(async function() {
27 await usingEthPlaygrounds(async (helper, privateKey) => {27 await usingEthPlaygrounds(async (helper, privateKey) => {
28 requirePalletsOrSkip(this, helper, [Pallets.Fungible]);28 requirePalletsOrSkip(this, helper, [Pallets.Fungible]);
29 donor = await privateKey({filename: __filename});29 donor = await privateKey({url: import.meta.url});
30 });30 });
31 });31 });
3232
modifiedtests/src/eth/createFTCollection.test.tsdiffbeforeafterboth
28 before(async function() {28 before(async function() {
29 await usingEthPlaygrounds(async (helper, privateKey) => {29 await usingEthPlaygrounds(async (helper, privateKey) => {
30 requirePalletsOrSkip(this, helper, [Pallets.Fungible]);30 requirePalletsOrSkip(this, helper, [Pallets.Fungible]);
31 donor = await privateKey({filename: __filename});31 donor = await privateKey({url: import.meta.url});
32 });32 });
33 });33 });
3434
136 before(async function() {136 before(async function() {
137 await usingEthPlaygrounds(async (helper, privateKey) => {137 await usingEthPlaygrounds(async (helper, privateKey) => {
138 requirePalletsOrSkip(this, helper, [Pallets.Fungible]);138 requirePalletsOrSkip(this, helper, [Pallets.Fungible]);
139 donor = await privateKey({filename: __filename});139 donor = await privateKey({url: import.meta.url});
140 nominal = helper.balance.getOneTokenNominal();140 nominal = helper.balance.getOneTokenNominal();
141 });141 });
142 });142 });
modifiedtests/src/eth/createNFTCollection.seqtest.tsdiffbeforeafterboth
2323
24 before(async function () {24 before(async function () {
25 await usingEthPlaygrounds(async (_helper, privateKey) => {25 await usingEthPlaygrounds(async (_helper, privateKey) => {
26 donor = await privateKey({filename: __filename});26 donor = await privateKey({url: import.meta.url});
27 });27 });
28 });28 });
2929
modifiedtests/src/eth/createNFTCollection.test.tsdiffbeforeafterboth
2626
27 before(async function () {27 before(async function () {
28 await usingEthPlaygrounds(async (_helper, privateKey) => {28 await usingEthPlaygrounds(async (_helper, privateKey) => {
29 donor = await privateKey({filename: __filename});29 donor = await privateKey({url: import.meta.url});
30 });30 });
31 });31 });
3232
149149
150 before(async function () {150 before(async function () {
151 await usingEthPlaygrounds(async (helper, privateKey) => {151 await usingEthPlaygrounds(async (helper, privateKey) => {
152 donor = await privateKey({filename: __filename});152 donor = await privateKey({url: import.meta.url});
153 nominal = helper.balance.getOneTokenNominal();153 nominal = helper.balance.getOneTokenNominal();
154 });154 });
155 });155 });
modifiedtests/src/eth/createRFTCollection.test.tsdiffbeforeafterboth
27 before(async function() {27 before(async function() {
28 await usingEthPlaygrounds(async (helper, privateKey) => {28 await usingEthPlaygrounds(async (helper, privateKey) => {
29 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);29 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
30 donor = await privateKey({filename: __filename});30 donor = await privateKey({url: import.meta.url});
31 });31 });
32 });32 });
3333
160 before(async function() {160 before(async function() {
161 await usingEthPlaygrounds(async (helper, privateKey) => {161 await usingEthPlaygrounds(async (helper, privateKey) => {
162 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);162 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
163 donor = await privateKey({filename: __filename});163 donor = await privateKey({url: import.meta.url});
164 nominal = helper.balance.getOneTokenNominal();164 nominal = helper.balance.getOneTokenNominal();
165 });165 });
166 });166 });
modifiedtests/src/eth/crossTransfer.test.tsdiffbeforeafterboth
2626
27 before(async function() {27 before(async function() {
28 await usingEthPlaygrounds(async (helper, privateKey) => {28 await usingEthPlaygrounds(async (helper, privateKey) => {
29 donor = await privateKey({filename: __filename});29 donor = await privateKey({url: import.meta.url});
30 [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);30 [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);
31 });31 });
32 });32 });
6969
70 before(async function() {70 before(async function() {
71 await usingEthPlaygrounds(async (helper, privateKey) => {71 await usingEthPlaygrounds(async (helper, privateKey) => {
72 donor = await privateKey({filename: __filename});72 donor = await privateKey({url: import.meta.url});
73 [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);73 [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);
74 });74 });
75 });75 });
modifiedtests/src/eth/destroyCollection.test.tsdiffbeforeafterboth
2828
29 before(async function() {29 before(async function() {
30 await usingEthPlaygrounds(async (_, privateKey) => {30 await usingEthPlaygrounds(async (_, privateKey) => {
31 donor = await privateKey({filename: __filename});31 donor = await privateKey({url: import.meta.url});
32 });32 });
33 });33 });
3434
modifiedtests/src/eth/ethFeesAreCorrect.test.tsdiffbeforeafterboth
2424
25 before(async () => {25 before(async () => {
26 await usingEthPlaygrounds(async (helper, privateKey) => {26 await usingEthPlaygrounds(async (helper, privateKey) => {
27 donor = await privateKey({filename: __filename});27 donor = await privateKey({url: import.meta.url});
28 [minter, alice] = await helper.arrange.createAccounts([100n, 200n], donor);28 [minter, alice] = await helper.arrange.createAccounts([100n, 200n], donor);
29 });29 });
30 });30 });
modifiedtests/src/eth/events.test.tsdiffbeforeafterboth
2525
26before(async function () {26before(async function () {
27 await usingEthPlaygrounds(async (_helper, privateKey) => {27 await usingEthPlaygrounds(async (_helper, privateKey) => {
28 donor = await privateKey({filename: __filename});28 donor = await privateKey({url: import.meta.url});
29 });29 });
30});30});
3131
499 before(async function() {499 before(async function() {
500 await usingEthPlaygrounds(async (helper, privateKey) => {500 await usingEthPlaygrounds(async (helper, privateKey) => {
501 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);501 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
502 const _donor = await privateKey({filename: __filename});502 const _donor = await privateKey({url: import.meta.url});
503 });503 });
504 });504 });
505505
modifiedtests/src/eth/evmCoder.test.tsdiffbeforeafterboth
5959
60 before(async function() {60 before(async function() {
61 await usingEthPlaygrounds(async (_helper, privateKey) => {61 await usingEthPlaygrounds(async (_helper, privateKey) => {
62 donor = await privateKey({filename: __filename});62 donor = await privateKey({url: import.meta.url});
63 });63 });
64 });64 });
6565
modifiedtests/src/eth/fractionalizer/fractionalizer.test.tsdiffbeforeafterboth
2424
25import {usingEthPlaygrounds, expect, itEth, EthUniqueHelper} from '../util';25import {usingEthPlaygrounds, expect, itEth, EthUniqueHelper} from '../util';
26import {CompiledContract} from '../util/playgrounds/types';26import {CompiledContract} from '../util/playgrounds/types';
27import {requirePalletsOrSkip, Pallets} from '../../util';27import {requirePalletsOrSkip, Pallets, makeNames} from '../../util';
2828
29const {dirname} = makeNames(import.meta.url);
2930
30let compiledFractionalizer: CompiledContract;31let compiledFractionalizer: CompiledContract;
3132
32const compileContract = async (helper: EthUniqueHelper): Promise<CompiledContract> => {33const compileContract = async (helper: EthUniqueHelper): Promise<CompiledContract> => {
33 if(!compiledFractionalizer) {34 if(!compiledFractionalizer) {
34 compiledFractionalizer = await helper.ethContract.compile('Fractionalizer', (await readFile(`${__dirname}/Fractionalizer.sol`)).toString(), [35 compiledFractionalizer = await helper.ethContract.compile('Fractionalizer', (await readFile(`${dirname}/Fractionalizer.sol`)).toString(), [
35 {solPath: 'api/CollectionHelpers.sol', fsPath: `${__dirname}/../api/CollectionHelpers.sol`},36 {solPath: 'api/CollectionHelpers.sol', fsPath: `${dirname}/../api/CollectionHelpers.sol`},
36 {solPath: 'api/ContractHelpers.sol', fsPath: `${__dirname}/../api/ContractHelpers.sol`},37 {solPath: 'api/ContractHelpers.sol', fsPath: `${dirname}/../api/ContractHelpers.sol`},
37 {solPath: 'api/UniqueRefungibleToken.sol', fsPath: `${__dirname}/../api/UniqueRefungibleToken.sol`},38 {solPath: 'api/UniqueRefungibleToken.sol', fsPath: `${dirname}/../api/UniqueRefungibleToken.sol`},
38 {solPath: 'api/UniqueRefungible.sol', fsPath: `${__dirname}/../api/UniqueRefungible.sol`},39 {solPath: 'api/UniqueRefungible.sol', fsPath: `${dirname}/../api/UniqueRefungible.sol`},
39 {solPath: 'api/UniqueNFT.sol', fsPath: `${__dirname}/../api/UniqueNFT.sol`},40 {solPath: 'api/UniqueNFT.sol', fsPath: `${dirname}/../api/UniqueNFT.sol`},
40 ]);41 ]);
41 }42 }
42 return compiledFractionalizer;43 return compiledFractionalizer;
85 before(async function() {86 before(async function() {
86 await usingEthPlaygrounds(async (helper: EthUniqueHelper, privateKey) => {87 await usingEthPlaygrounds(async (helper: EthUniqueHelper, privateKey) => {
87 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);88 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
88 donor = await privateKey({filename: __filename});89 donor = await privateKey({url: import.meta.url});
89 });90 });
90 });91 });
9192
226 before(async function() {227 before(async function() {
227 await usingEthPlaygrounds(async (helper: EthUniqueHelper, privateKey) => {228 await usingEthPlaygrounds(async (helper: EthUniqueHelper, privateKey) => {
228 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);229 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
229 donor = await privateKey({filename: __filename});230 donor = await privateKey({url: import.meta.url});
230 });231 });
231 });232 });
232233
modifiedtests/src/eth/fungible.test.tsdiffbeforeafterboth
2424
25 before(async function() {25 before(async function() {
26 await usingEthPlaygrounds(async (helper, privateKey) => {26 await usingEthPlaygrounds(async (helper, privateKey) => {
27 donor = await privateKey({filename: __filename});27 donor = await privateKey({url: import.meta.url});
28 [alice, owner] = await helper.arrange.createAccounts([30n, 20n], donor);28 [alice, owner] = await helper.arrange.createAccounts([30n, 20n], donor);
29 });29 });
30 });30 });
435435
436 before(async function() {436 before(async function() {
437 await usingEthPlaygrounds(async (helper, privateKey) => {437 await usingEthPlaygrounds(async (helper, privateKey) => {
438 donor = await privateKey({filename: __filename});438 donor = await privateKey({url: import.meta.url});
439 [alice] = await helper.arrange.createAccounts([20n], donor);439 [alice] = await helper.arrange.createAccounts([20n], donor);
440 });440 });
441 });441 });
489489
490 before(async function() {490 before(async function() {
491 await usingEthPlaygrounds(async (helper, privateKey) => {491 await usingEthPlaygrounds(async (helper, privateKey) => {
492 donor = await privateKey({filename: __filename});492 donor = await privateKey({url: import.meta.url});
493 [alice, owner] = await helper.arrange.createAccounts([20n, 20n], donor);493 [alice, owner] = await helper.arrange.createAccounts([20n, 20n], donor);
494 });494 });
495 });495 });
modifiedtests/src/eth/getCode.test.tsdiffbeforeafterboth
2323
24 before(async function() {24 before(async function() {
25 await usingEthPlaygrounds(async (helper, privateKey) => {25 await usingEthPlaygrounds(async (helper, privateKey) => {
26 donor = await privateKey({filename: __filename});26 donor = await privateKey({url: import.meta.url});
27 });27 });
28 });28 });
2929
modifiedtests/src/eth/helpersSmoke.test.tsdiffbeforeafterboth
2222
23 before(async function() {23 before(async function() {
24 await usingEthPlaygrounds(async (_helper, privateKey) => {24 await usingEthPlaygrounds(async (_helper, privateKey) => {
25 donor = await privateKey({filename: __filename});25 donor = await privateKey({url: import.meta.url});
26 });26 });
27 });27 });
2828
modifiedtests/src/eth/marketplace/marketplace.test.tsdiffbeforeafterboth
17import {IKeyringPair} from '@polkadot/types/types';17import {IKeyringPair} from '@polkadot/types/types';
18import {readFile} from 'fs/promises';18import {readFile} from 'fs/promises';
19import {itEth, usingEthPlaygrounds, expect, SponsoringMode} from '../util';19import {itEth, usingEthPlaygrounds, expect, SponsoringMode} from '../util';
20import {makeNames} from '../../util';
21
22const {dirname} = makeNames(import.meta.url);
2023
21describe('Matcher contract usage', () => {24describe('Matcher contract usage', () => {
22 const PRICE = 2000n;25 const PRICE = 2000n;
2932
30 before(async () => {33 before(async () => {
31 await usingEthPlaygrounds(async (_helper, privateKey) => {34 await usingEthPlaygrounds(async (_helper, privateKey) => {
32 donor = await privateKey({filename: __filename});35 donor = await privateKey({url: import.meta.url});
33 });36 });
34 });37 });
3538
4750
48 itEth('With UNQ', async ({helper}) => {51 itEth('With UNQ', async ({helper}) => {
49 const matcherOwner = await helper.eth.createAccountWithBalance(donor);52 const matcherOwner = await helper.eth.createAccountWithBalance(donor);
50 const matcher = await helper.ethContract.deployByCode(matcherOwner, 'MarketPlace', (await readFile(`${__dirname}/MarketPlace.sol`)).toString(), [{solPath: 'api/UniqueNFT.sol', fsPath: `${__dirname}/../api/UniqueNFT.sol`}], helper.eth.DEFAULT_GAS * 2);53 const matcher = await helper.ethContract.deployByCode(matcherOwner, 'MarketPlace', (await readFile(`${dirname}/MarketPlace.sol`)).toString(), [{solPath: 'api/UniqueNFT.sol', fsPath: `${dirname}/../api/UniqueNFT.sol`}], helper.eth.DEFAULT_GAS * 2);
5154
52 const sponsor = await helper.eth.createAccountWithBalance(donor);55 const sponsor = await helper.eth.createAccountWithBalance(donor);
53 const helpers = await helper.ethNativeContract.contractHelpers(matcherOwner);56 const helpers = await helper.ethNativeContract.contractHelpers(matcherOwner);
99102
100 itEth('With escrow', async ({helper}) => {103 itEth('With escrow', async ({helper}) => {
101 const matcherOwner = await helper.eth.createAccountWithBalance(donor);104 const matcherOwner = await helper.eth.createAccountWithBalance(donor);
102 const matcher = await helper.ethContract.deployByCode(matcherOwner, 'MarketPlace', (await readFile(`${__dirname}/MarketPlace.sol`)).toString(), [{solPath: 'api/UniqueNFT.sol', fsPath: `${__dirname}/../api/UniqueNFT.sol`}], helper.eth.DEFAULT_GAS * 2);105 const matcher = await helper.ethContract.deployByCode(matcherOwner, 'MarketPlace', (await readFile(`${dirname}/MarketPlace.sol`)).toString(), [{solPath: 'api/UniqueNFT.sol', fsPath: `${dirname}/../api/UniqueNFT.sol`}], helper.eth.DEFAULT_GAS * 2);
103106
104 const sponsor = await helper.eth.createAccountWithBalance(donor);107 const sponsor = await helper.eth.createAccountWithBalance(donor);
105 const escrow = await helper.eth.createAccountWithBalance(donor);108 const escrow = await helper.eth.createAccountWithBalance(donor);
163166
164 itEth('Sell tokens from substrate user via EVM contract', async ({helper}) => {167 itEth('Sell tokens from substrate user via EVM contract', async ({helper}) => {
165 const matcherOwner = await helper.eth.createAccountWithBalance(donor);168 const matcherOwner = await helper.eth.createAccountWithBalance(donor);
166 const matcher = await helper.ethContract.deployByCode(matcherOwner, 'MarketPlace', (await readFile(`${__dirname}/MarketPlace.sol`)).toString(), [{solPath: 'api/UniqueNFT.sol', fsPath: `${__dirname}/../api/UniqueNFT.sol`}], helper.eth.DEFAULT_GAS * 2);169 const matcher = await helper.ethContract.deployByCode(matcherOwner, 'MarketPlace', (await readFile(`${dirname}/MarketPlace.sol`)).toString(), [{solPath: 'api/UniqueNFT.sol', fsPath: `${dirname}/../api/UniqueNFT.sol`}], helper.eth.DEFAULT_GAS * 2);
167170
168 await helper.eth.transferBalanceFromSubstrate(donor, matcher.options.address);171 await helper.eth.transferBalanceFromSubstrate(donor, matcher.options.address);
169172
modifiedtests/src/eth/nesting/nest.test.tsdiffbeforeafterboth
2121
22 before(async function() {22 before(async function() {
23 await usingEthPlaygrounds(async (_, privateKey) => {23 await usingEthPlaygrounds(async (_, privateKey) => {
24 donor = await privateKey({filename: __filename});24 donor = await privateKey({url: import.meta.url});
25 });25 });
26 });26 });
2727
modifiedtests/src/eth/nonFungible.test.tsdiffbeforeafterboth
2424
25 before(async function() {25 before(async function() {
26 await usingEthPlaygrounds(async (_helper, privateKey) => {26 await usingEthPlaygrounds(async (_helper, privateKey) => {
27 donor = await privateKey({filename: __filename});27 donor = await privateKey({url: import.meta.url});
28 });28 });
29 });29 });
3030
8383
84 before(async function() {84 before(async function() {
85 await usingEthPlaygrounds(async (helper, privateKey) => {85 await usingEthPlaygrounds(async (helper, privateKey) => {
86 donor = await privateKey({filename: __filename});86 donor = await privateKey({url: import.meta.url});
87 [minter, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);87 [minter, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
88 });88 });
89 });89 });
660660
661 before(async function() {661 before(async function() {
662 await usingEthPlaygrounds(async (helper, privateKey) => {662 await usingEthPlaygrounds(async (helper, privateKey) => {
663 donor = await privateKey({filename: __filename});663 donor = await privateKey({url: import.meta.url});
664 [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);664 [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);
665 });665 });
666 });666 });
747747
748 before(async function() {748 before(async function() {
749 await usingEthPlaygrounds(async (helper, privateKey) => {749 await usingEthPlaygrounds(async (helper, privateKey) => {
750 donor = await privateKey({filename: __filename});750 donor = await privateKey({url: import.meta.url});
751 [alice] = await helper.arrange.createAccounts([20n], donor);751 [alice] = await helper.arrange.createAccounts([20n], donor);
752 });752 });
753 });753 });
880880
881 before(async function() {881 before(async function() {
882 await usingEthPlaygrounds(async (helper, privateKey) => {882 await usingEthPlaygrounds(async (helper, privateKey) => {
883 donor = await privateKey({filename: __filename});883 donor = await privateKey({url: import.meta.url});
884 [alice] = await helper.arrange.createAccounts([20n], donor);884 [alice] = await helper.arrange.createAccounts([20n], donor);
885 });885 });
886 });886 });
943943
944 before(async function() {944 before(async function() {
945 await usingEthPlaygrounds(async (helper, privateKey) => {945 await usingEthPlaygrounds(async (helper, privateKey) => {
946 donor = await privateKey({filename: __filename});946 donor = await privateKey({url: import.meta.url});
947 [minter, alice] = await helper.arrange.createAccounts([100n, 100n], donor);947 [minter, alice] = await helper.arrange.createAccounts([100n, 100n], donor);
948 });948 });
949 });949 });
modifiedtests/src/eth/payable.test.tsdiffbeforeafterboth
17import {IKeyringPair} from '@polkadot/types/types';17import {IKeyringPair} from '@polkadot/types/types';
1818
19import {itEth, expect, usingEthPlaygrounds, EthUniqueHelper} from './util';19import {itEth, expect, usingEthPlaygrounds, EthUniqueHelper} from './util';
20import {makeNames} from '../util';
21
22const {dirname} = makeNames(import.meta.url);
2023
21describe('EVM payable contracts', () => {24describe('EVM payable contracts', () => {
22 let donor: IKeyringPair;25 let donor: IKeyringPair;
2326
24 before(async function() {27 before(async function() {
25 await usingEthPlaygrounds(async (_, privateKey) => {28 await usingEthPlaygrounds(async (_, privateKey) => {
26 donor = await privateKey({filename: __filename});29 donor = await privateKey({url: import.meta.url});
27 });30 });
28 });31 });
2932
110113
111 before(async function() {114 before(async function() {
112 await usingEthPlaygrounds(async (_, privateKey) => {115 await usingEthPlaygrounds(async (_, privateKey) => {
113 donor = await privateKey({filename: __filename});116 donor = await privateKey({url: import.meta.url});
114 });117 });
115 });118 });
116119
257 [260 [
258 {261 {
259 solPath: 'api/CollectionHelpers.sol',262 solPath: 'api/CollectionHelpers.sol',
260 fsPath: `${__dirname}/api/CollectionHelpers.sol`,263 fsPath: `${dirname}/api/CollectionHelpers.sol`,
261 },264 },
262 {265 {
263 solPath: 'api/UniqueNFT.sol',266 solPath: 'api/UniqueNFT.sol',
264 fsPath: `${__dirname}/api/UniqueNFT.sol`,267 fsPath: `${dirname}/api/UniqueNFT.sol`,
265 },268 },
266 ],269 ],
267 );270 );
modifiedtests/src/eth/precompile.test.tsdiffbeforeafterboth
2323
24 before(async function() {24 before(async function() {
25 await usingEthPlaygrounds(async (_, privateKey) => {25 await usingEthPlaygrounds(async (_, privateKey) => {
26 donor = await privateKey({filename: __filename});26 donor = await privateKey({url: import.meta.url});
27 });27 });
28 });28 });
2929
modifiedtests/src/eth/proxy/fungibleProxy.test.tsdiffbeforeafterboth
18import {readFile} from 'fs/promises';18import {readFile} from 'fs/promises';
19import {IKeyringPair} from '@polkadot/types/types';19import {IKeyringPair} from '@polkadot/types/types';
20import {EthUniqueHelper, itEth, usingEthPlaygrounds} from '../util';20import {EthUniqueHelper, itEth, usingEthPlaygrounds} from '../util';
21import {makeNames} from '../../util';
22
23const {dirname} = makeNames(import.meta.url);
2124
22async function proxyWrap(helper: EthUniqueHelper, wrapped: any, donor: IKeyringPair) {25async function proxyWrap(helper: EthUniqueHelper, wrapped: any, donor: IKeyringPair) {
23 // Proxy owner has no special privilegies, we don't need to reuse them26 // Proxy owner has no special privilegies, we don't need to reuse them
24 const owner = await helper.eth.createAccountWithBalance(donor);27 const owner = await helper.eth.createAccountWithBalance(donor);
25 const web3 = helper.getWeb3();28 const web3 = helper.getWeb3();
26 const proxyContract = new web3.eth.Contract(JSON.parse((await readFile(`${__dirname}/UniqueFungibleProxy.abi`)).toString()), undefined, {29 const proxyContract = new web3.eth.Contract(JSON.parse((await readFile(`${dirname}/UniqueFungibleProxy.abi`)).toString()), undefined, {
27 from: owner,30 from: owner,
28 gas: helper.eth.DEFAULT_GAS,31 gas: helper.eth.DEFAULT_GAS,
29 });32 });
30 const proxy = await proxyContract.deploy({data: (await readFile(`${__dirname}/UniqueFungibleProxy.bin`)).toString(), arguments: [wrapped.options.address]}).send({from: owner});33 const proxy = await proxyContract.deploy({data: (await readFile(`${dirname}/UniqueFungibleProxy.bin`)).toString(), arguments: [wrapped.options.address]}).send({from: owner});
31 return proxy;34 return proxy;
32}35}
3336
3740
38 before(async function() {41 before(async function() {
39 await usingEthPlaygrounds(async (helper, privateKey) => {42 await usingEthPlaygrounds(async (helper, privateKey) => {
40 donor = await privateKey({filename: __filename});43 donor = await privateKey({url: import.meta.url});
41 [alice] = await helper.arrange.createAccounts([10n], donor);44 [alice] = await helper.arrange.createAccounts([10n], donor);
42 });45 });
43 });46 });
7679
77 before(async function() {80 before(async function() {
78 await usingEthPlaygrounds(async (helper, privateKey) => {81 await usingEthPlaygrounds(async (helper, privateKey) => {
79 donor = await privateKey({filename: __filename});82 donor = await privateKey({url: import.meta.url});
80 [alice] = await helper.arrange.createAccounts([10n], donor);83 [alice] = await helper.arrange.createAccounts([10n], donor);
81 });84 });
82 });85 });
modifiedtests/src/eth/proxy/nonFungibleProxy.test.tsdiffbeforeafterboth
17import {readFile} from 'fs/promises';17import {readFile} from 'fs/promises';
18import {IKeyringPair} from '@polkadot/types/types';18import {IKeyringPair} from '@polkadot/types/types';
19import {EthUniqueHelper, itEth, usingEthPlaygrounds, expect} from '../util';19import {EthUniqueHelper, itEth, usingEthPlaygrounds, expect} from '../util';
20import {makeNames} from '../../util';
21
22const {dirname} = makeNames(import.meta.url);
2023
2124
22async function proxyWrap(helper: EthUniqueHelper, wrapped: any, donor: IKeyringPair) {25async function proxyWrap(helper: EthUniqueHelper, wrapped: any, donor: IKeyringPair) {
23 // Proxy owner has no special privilegies, we don't need to reuse them26 // Proxy owner has no special privilegies, we don't need to reuse them
24 const owner = await helper.eth.createAccountWithBalance(donor);27 const owner = await helper.eth.createAccountWithBalance(donor);
25 const web3 = helper.getWeb3();28 const web3 = helper.getWeb3();
26 const proxyContract = new web3.eth.Contract(JSON.parse((await readFile(`${__dirname}/UniqueNFTProxy.abi`)).toString()), undefined, {29 const proxyContract = new web3.eth.Contract(JSON.parse((await readFile(`${dirname}/UniqueNFTProxy.abi`)).toString()), undefined, {
27 from: owner,30 from: owner,
28 gas: helper.eth.DEFAULT_GAS,31 gas: helper.eth.DEFAULT_GAS,
29 });32 });
30 const proxy = await proxyContract.deploy({data: (await readFile(`${__dirname}/UniqueNFTProxy.bin`)).toString(), arguments: [wrapped.options.address]}).send({from: owner});33 const proxy = await proxyContract.deploy({data: (await readFile(`${dirname}/UniqueNFTProxy.bin`)).toString(), arguments: [wrapped.options.address]}).send({from: owner});
31 return proxy;34 return proxy;
32}35}
3336
3740
38 before(async function() {41 before(async function() {
39 await usingEthPlaygrounds(async (helper, privateKey) => {42 await usingEthPlaygrounds(async (helper, privateKey) => {
40 donor = await privateKey({filename: __filename});43 donor = await privateKey({url: import.meta.url});
41 [alice] = await helper.arrange.createAccounts([10n], donor);44 [alice] = await helper.arrange.createAccounts([10n], donor);
42 });45 });
43 });46 });
9497
95 before(async function() {98 before(async function() {
96 await usingEthPlaygrounds(async (helper, privateKey) => {99 await usingEthPlaygrounds(async (helper, privateKey) => {
97 donor = await privateKey({filename: __filename});100 donor = await privateKey({url: import.meta.url});
98 [alice] = await helper.arrange.createAccounts([10n], donor);101 [alice] = await helper.arrange.createAccounts([10n], donor);
99 });102 });
100 });103 });
modifiedtests/src/eth/proxyContract.test.tsdiffbeforeafterboth
2323
24 before(async function() {24 before(async function() {
25 await usingEthPlaygrounds(async (_, privateKey) => {25 await usingEthPlaygrounds(async (_, privateKey) => {
26 donor = await privateKey({filename: __filename});26 donor = await privateKey({url: import.meta.url});
27 });27 });
28 });28 });
2929
modifiedtests/src/eth/reFungible.test.tsdiffbeforeafterboth
29 await usingEthPlaygrounds(async (helper, privateKey) => {29 await usingEthPlaygrounds(async (helper, privateKey) => {
30 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);30 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
3131
32 donor = await privateKey({filename: __filename});32 donor = await privateKey({url: import.meta.url});
33 [minter, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);33 [minter, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
34 });34 });
35 });35 });
593 await usingEthPlaygrounds(async (helper, privateKey) => {593 await usingEthPlaygrounds(async (helper, privateKey) => {
594 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);594 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
595595
596 donor = await privateKey({filename: __filename});596 donor = await privateKey({url: import.meta.url});
597 });597 });
598 });598 });
599599
634 await usingEthPlaygrounds(async (helper, privateKey) => {634 await usingEthPlaygrounds(async (helper, privateKey) => {
635 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);635 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
636636
637 donor = await privateKey({filename: __filename});637 donor = await privateKey({url: import.meta.url});
638 [alice] = await helper.arrange.createAccounts([20n], donor);638 [alice] = await helper.arrange.createAccounts([20n], donor);
639 });639 });
640 });640 });
699 await usingEthPlaygrounds(async (helper, privateKey) => {699 await usingEthPlaygrounds(async (helper, privateKey) => {
700 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);700 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
701701
702 donor = await privateKey({filename: __filename});702 donor = await privateKey({url: import.meta.url});
703 [minter, alice] = await helper.arrange.createAccounts([100n, 100n], donor);703 [minter, alice] = await helper.arrange.createAccounts([100n, 100n], donor);
704 });704 });
705 });705 });
modifiedtests/src/eth/reFungibleToken.test.tsdiffbeforeafterboth
27 await usingEthPlaygrounds(async (helper, privateKey) => {27 await usingEthPlaygrounds(async (helper, privateKey) => {
28 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);28 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
2929
30 donor = await privateKey({filename: __filename});30 donor = await privateKey({url: import.meta.url});
31 });31 });
32 });32 });
3333
86 await usingEthPlaygrounds(async (helper, privateKey) => {86 await usingEthPlaygrounds(async (helper, privateKey) => {
87 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);87 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
8888
89 donor = await privateKey({filename: __filename});89 donor = await privateKey({url: import.meta.url});
90 [alice] = await helper.arrange.createAccounts([50n], donor);90 [alice] = await helper.arrange.createAccounts([50n], donor);
91 });91 });
92 });92 });
476 await usingEthPlaygrounds(async (helper, privateKey) => {476 await usingEthPlaygrounds(async (helper, privateKey) => {
477 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);477 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
478478
479 donor = await privateKey({filename: __filename});479 donor = await privateKey({url: import.meta.url});
480 [alice] = await helper.arrange.createAccounts([50n], donor);480 [alice] = await helper.arrange.createAccounts([50n], donor);
481 });481 });
482 });482 });
531 await usingEthPlaygrounds(async (helper, privateKey) => {531 await usingEthPlaygrounds(async (helper, privateKey) => {
532 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);532 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
533533
534 donor = await privateKey({filename: __filename});534 donor = await privateKey({url: import.meta.url});
535 [alice] = await helper.arrange.createAccounts([50n], donor);535 [alice] = await helper.arrange.createAccounts([50n], donor);
536 });536 });
537 });537 });
625 await usingEthPlaygrounds(async (helper, privateKey) => {625 await usingEthPlaygrounds(async (helper, privateKey) => {
626 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);626 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
627627
628 donor = await privateKey({filename: __filename});628 donor = await privateKey({url: import.meta.url});
629 });629 });
630 });630 });
631631
modifiedtests/src/eth/scheduling.test.tsdiffbeforeafterboth
27 });27 });
2828
29 itSchedEth.ifWithPallets('Successfully schedules and periodically executes an EVM contract', [Pallets.Scheduler], async (scheduleKind, {helper, privateKey}) => {29 itSchedEth.ifWithPallets('Successfully schedules and periodically executes an EVM contract', [Pallets.Scheduler], async (scheduleKind, {helper, privateKey}) => {
30 const donor = await privateKey({filename: __filename});30 const donor = await privateKey({url: import.meta.url});
31 const [alice] = await helper.arrange.createAccounts([1000n], donor);31 const [alice] = await helper.arrange.createAccounts([1000n], donor);
3232
33 const scheduledId = scheduleKind == 'named' ? helper.arrange.makeScheduledId() : undefined;33 const scheduledId = scheduleKind == 'named' ? helper.arrange.makeScheduledId() : undefined;
modifiedtests/src/eth/sponsoring.test.tsdiffbeforeafterboth
2323
24 before(async () => {24 before(async () => {
25 await usingPlaygrounds(async (_helper, privateKey) => {25 await usingPlaygrounds(async (_helper, privateKey) => {
26 donor = await privateKey({filename: __filename});26 donor = await privateKey({url: import.meta.url});
27 });27 });
28 });28 });
2929
modifiedtests/src/eth/tokenProperties.test.tsdiffbeforeafterboth
2828
29 before(async function() {29 before(async function() {
30 await usingEthPlaygrounds(async (helper, privateKey) => {30 await usingEthPlaygrounds(async (helper, privateKey) => {
31 donor = await privateKey({filename: __filename});31 donor = await privateKey({url: import.meta.url});
32 [alice] = await helper.arrange.createAccounts([100n], donor);32 [alice] = await helper.arrange.createAccounts([100n], donor);
33 });33 });
34 });34 });
347347
348 before(async function() {348 before(async function() {
349 await usingEthPlaygrounds(async (helper, privateKey) => {349 await usingEthPlaygrounds(async (helper, privateKey) => {
350 donor = await privateKey({filename: __filename});350 donor = await privateKey({url: import.meta.url});
351 [alice] = await helper.arrange.createAccounts([100n], donor);351 [alice] = await helper.arrange.createAccounts([100n], donor);
352 });352 });
353 });353 });
modifiedtests/src/eth/tokens/callMethodsERC20.test.tsdiffbeforeafterboth
28 before(async function() {28 before(async function() {
29 await usingEthPlaygrounds(async (helper, privateKey) => {29 await usingEthPlaygrounds(async (helper, privateKey) => {
30 requirePalletsOrSkip(this, helper, testCase.requiredPallets);30 requirePalletsOrSkip(this, helper, testCase.requiredPallets);
31 donor = await privateKey({filename: __filename});31 donor = await privateKey({url: import.meta.url});
32 });32 });
33 });33 });
3434
modifiedtests/src/eth/tokens/callMethodsERC721.test.tsdiffbeforeafterboth
2424
25 before(async function() {25 before(async function() {
26 await usingEthPlaygrounds(async (helper, privateKey) => {26 await usingEthPlaygrounds(async (helper, privateKey) => {
27 donor = await privateKey({filename: __filename});27 donor = await privateKey({url: import.meta.url});
28 });28 });
29 });29 });
3030
modifiedtests/src/eth/tokens/minting.test.tsdiffbeforeafterboth
2525
26 before(async function() {26 before(async function() {
27 await usingEthPlaygrounds(async (helper, privateKey) => {27 await usingEthPlaygrounds(async (helper, privateKey) => {
28 donor = await privateKey({filename: __filename});28 donor = await privateKey({url: import.meta.url});
29 [alice] = await helper.arrange.createAccounts([30n, 20n], donor);29 [alice] = await helper.arrange.createAccounts([30n, 20n], donor);
30 });30 });
31 });31 });
modifiedtests/src/eth/util/index.tsdiffbeforeafterboth
88
9import {EthUniqueHelper} from './playgrounds/unique.dev';9import {EthUniqueHelper} from './playgrounds/unique.dev';
10import {SilentLogger, SilentConsole} from '../../util/playgrounds/unique.dev';10import {SilentLogger, SilentConsole} from '../../util/playgrounds/unique.dev';
11import {SchedKind} from '../../util';11import {SchedKind, makeNames} from '../../util';
1212
13export {EthUniqueHelper} from './playgrounds/unique.dev';13export {EthUniqueHelper} from './playgrounds/unique.dev';
1414
27 Generous = 2,27 Generous = 2,
28}28}
29
30type PrivateKeyFn = (seed: string | {filename?: string, url?: string}) => Promise<IKeyringPair>;
2931
30export const usingEthPlaygrounds = async (code: (helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair>) => Promise<void>) => {32export const usingEthPlaygrounds = async (code: (helper: EthUniqueHelper, privateKey: PrivateKeyFn) => Promise<void>) => {
31 const silentConsole = new SilentConsole();33 const silentConsole = new SilentConsole();
32 silentConsole.enable();34 silentConsole.enable();
3335
37 await helper.connect(config.substrateUrl);39 await helper.connect(config.substrateUrl);
38 await helper.connectWeb3(config.substrateUrl);40 await helper.connectWeb3(config.substrateUrl);
39 const ss58Format = helper.chain.getChainProperties().ss58Format;41 const ss58Format = helper.chain.getChainProperties().ss58Format;
40 const privateKey = async (seed: string | {filename: string}) => {42 const privateKey: PrivateKeyFn = async (seed) => {
41 if (typeof seed === 'string') {43 if (typeof seed === 'string') {
42 return helper.util.fromSeed(seed, ss58Format);44 return helper.util.fromSeed(seed, ss58Format);
43 }45 }
44 else {46 if (seed.url) {
47 const {filename} = makeNames(seed.url);
48 seed.filename = filename;
49 } else if (seed.filename) {
50 // Pass
51 } else {
52 throw new Error('no url nor filename set');
53 }
45 const actualSeed = getTestSeed(seed.filename);54 const actualSeed = getTestSeed(seed.filename);
46 let account = helper.util.fromSeed(actualSeed, ss58Format);55 let account = helper.util.fromSeed(actualSeed, ss58Format);
47 if (await helper.balance.getSubstrate(account.address) < MINIMUM_DONOR_FUND) {56 if (await helper.balance.getSubstrate(account.address) < MINIMUM_DONOR_FUND) {
48 console.warn(`${path.basename(seed.filename)}: Not enough funds present on the filename account. Using the default one as the donor instead.`);57 console.warn(`${path.basename(seed.filename)}: Not enough funds present on the filename account. Using the default one as the donor instead.`);
49 account = helper.util.fromSeed('//Alice', ss58Format);58 account = helper.util.fromSeed('//Alice', ss58Format);
50 }59 }
51 return account;60 return account;
52 }
53 };61 };
54 await code(helper, privateKey);62 await code(helper, privateKey);
55 }63 }
59 }67 }
60};68};
6169
62export function itEth(name: string, cb: (apis: { helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair> }) => any, opts: { only?: boolean, skip?: boolean, requiredPallets?: string[] } = {}) {70export function itEth(name: string, cb: (apis: { helper: EthUniqueHelper, privateKey: PrivateKeyFn }) => any, opts: { only?: boolean, skip?: boolean, requiredPallets?: string[] } = {}) {
63 (opts.only ? it.only :71 (opts.only ? it.only :
64 opts.skip ? it.skip : it)(name, async function() {72 opts.skip ? it.skip : it)(name, async function() {
65 await usingEthPlaygrounds(async (helper, privateKey) => {73 await usingEthPlaygrounds(async (helper, privateKey) => {
72 });80 });
73}81}
7482
75export function itEthIfWithPallet(name: string, required: string[], cb: (apis: { helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair> }) => any, opts: { only?: boolean, skip?: boolean, requiredPallets?: string[] } = {}) {83export function itEthIfWithPallet(name: string, required: string[], cb: (apis: { helper: EthUniqueHelper, privateKey: PrivateKeyFn }) => any, opts: { only?: boolean, skip?: boolean, requiredPallets?: string[] } = {}) {
76 return itEth(name, cb, {requiredPallets: required, ...opts});84 return itEth(name, cb, {requiredPallets: required, ...opts});
77}85}
7886
79itEth.only = (name: string, cb: (apis: { helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair> }) => any) => itEth(name, cb, {only: true});87itEth.only = (name: string, cb: (apis: { helper: EthUniqueHelper, privateKey: PrivateKeyFn }) => any) => itEth(name, cb, {only: true});
80itEth.skip = (name: string, cb: (apis: { helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair> }) => any) => itEth(name, cb, {skip: true});88itEth.skip = (name: string, cb: (apis: { helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair> }) => any) => itEth(name, cb, {skip: true});
8189
82itEthIfWithPallet.only = (name: string, required: string[], cb: (apis: { helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair> }) => any) => itEthIfWithPallet(name, required, cb, {only: true});90itEthIfWithPallet.only = (name: string, required: string[], cb: (apis: { helper: EthUniqueHelper, privateKey: PrivateKeyFn }) => any) => itEthIfWithPallet(name, required, cb, {only: true});
83itEthIfWithPallet.skip = (name: string, required: string[], cb: (apis: { helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair> }) => any) => itEthIfWithPallet(name, required, cb, {skip: true});91itEthIfWithPallet.skip = (name: string, required: string[], cb: (apis: { helper: EthUniqueHelper, privateKey: PrivateKeyFn }) => any) => itEthIfWithPallet(name, required, cb, {skip: true});
84itEth.ifWithPallets = itEthIfWithPallet;92itEth.ifWithPallets = itEthIfWithPallet;
8593
86export function itSchedEth(94export function itSchedEth(
87 name: string,95 name: string,
88 cb: (schedKind: SchedKind, apis: { helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair> }) => any,96 cb: (schedKind: SchedKind, apis: { helper: EthUniqueHelper, privateKey: PrivateKeyFn }) => any,
89 opts: { only?: boolean, skip?: boolean, requiredPallets?: string[] } = {},97 opts: { only?: boolean, skip?: boolean, requiredPallets?: string[] } = {},
90) {98) {
91 itEth(name + ' (anonymous scheduling)', (apis) => cb('anon', apis), opts);99 itEth(name + ' (anonymous scheduling)', (apis) => cb('anon', apis), opts);
95itSchedEth.skip = (name: string, cb: (schedKind: SchedKind, apis: { helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair> }) => any) => itSchedEth(name, cb, {skip: true});103itSchedEth.skip = (name: string, cb: (schedKind: SchedKind, apis: { helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair> }) => any) => itSchedEth(name, cb, {skip: true});
96itSchedEth.ifWithPallets = itSchedIfWithPallets;104itSchedEth.ifWithPallets = itSchedIfWithPallets;
97105
98function itSchedIfWithPallets(name: string, required: string[], cb: (schedKind: SchedKind, apis: { helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair> }) => any, opts: { only?: boolean, skip?: boolean, requiredPallets?: string[] } = {}) {106function itSchedIfWithPallets(name: string, required: string[], cb: (schedKind: SchedKind, apis: { helper: EthUniqueHelper, privateKey: PrivateKeyFn }) => any, opts: { only?: boolean, skip?: boolean, requiredPallets?: string[] } = {}) {
99 return itSchedEth(name, cb, {requiredPallets: required, ...opts});107 return itSchedEth(name, cb, {requiredPallets: required, ...opts});
100}108}
101109
modifiedtests/src/eth/util/playgrounds/unique.dev.tsdiffbeforeafterboth
11import {WebsocketProvider} from 'web3-core';11import {WebsocketProvider} from 'web3-core';
12import {Contract} from 'web3-eth-contract';12import {Contract} from 'web3-eth-contract';
1313
14import * as solc from 'solc';14import solc from 'solc';
1515
16import {evmToAddress} from '@polkadot/util-crypto';16import {evmToAddress} from '@polkadot/util-crypto';
17import {IKeyringPair} from '@polkadot/types/types';17import {IKeyringPair} from '@polkadot/types/types';
21import {ContractImports, CompiledContract, CrossAddress, NormalizedEvent, EthProperty} from './types';21import {ContractImports, CompiledContract, CrossAddress, NormalizedEvent, EthProperty} from './types';
2222
23// Native contracts ABI23// Native contracts ABI
24import collectionHelpersAbi from '../../abi/collectionHelpers.json';24import collectionHelpersAbi from '../../abi/collectionHelpers.json' assert {type: 'json'};
25import fungibleAbi from '../../abi/fungible.json';25import fungibleAbi from '../../abi/fungible.json' assert {type: 'json'};
26import fungibleDeprecatedAbi from '../../abi/fungibleDeprecated.json';26import fungibleDeprecatedAbi from '../../abi/fungibleDeprecated.json' assert {type: 'json'};
27import nonFungibleAbi from '../../abi/nonFungible.json';27import nonFungibleAbi from '../../abi/nonFungible.json' assert {type: 'json'};
28import nonFungibleDeprecatedAbi from '../../abi/nonFungibleDeprecated.json';28import nonFungibleDeprecatedAbi from '../../abi/nonFungibleDeprecated.json' assert {type: 'json'};
29import refungibleAbi from '../../abi/reFungible.json';29import refungibleAbi from '../../abi/reFungible.json' assert {type: 'json'};
30import refungibleDeprecatedAbi from '../../abi/reFungibleDeprecated.json';30import refungibleDeprecatedAbi from '../../abi/reFungibleDeprecated.json' assert {type: 'json'};
31import refungibleTokenAbi from '../../abi/reFungibleToken.json';31import refungibleTokenAbi from '../../abi/reFungibleToken.json' assert {type: 'json'};
32import refungibleTokenDeprecatedAbi from '../../abi/reFungibleTokenDeprecated.json';32import refungibleTokenDeprecatedAbi from '../../abi/reFungibleTokenDeprecated.json' assert {type: 'json'};
33import contractHelpersAbi from '../../abi/contractHelpers.json';33import contractHelpersAbi from '../../abi/contractHelpers.json' assert {type: 'json'};
34import {ICrossAccountId, TEthereumAccount} from '../../../util/playgrounds/types';34import {ICrossAccountId, TEthereumAccount} from '../../../util/playgrounds/types';
35import {TCollectionMode} from '../../../util/playgrounds/types';35import {TCollectionMode} from '../../../util/playgrounds/types';
3636
modifiedtests/src/fungible.test.tsdiffbeforeafterboth
2626
27 before(async () => {27 before(async () => {
28 await usingPlaygrounds(async (helper, privateKey) => {28 await usingPlaygrounds(async (helper, privateKey) => {
29 donor = await privateKey({filename: __filename});29 donor = await privateKey({url: import.meta.url});
30 [alice, bob] = await helper.arrange.createAccounts([100n, 10n], donor);30 [alice, bob] = await helper.arrange.createAccounts([100n, 10n], donor);
31 });31 });
32 });32 });
156 await usingPlaygrounds(async (helper, privateKey) => {156 await usingPlaygrounds(async (helper, privateKey) => {
157 requirePalletsOrSkip(this, helper, [Pallets.Fungible]);157 requirePalletsOrSkip(this, helper, [Pallets.Fungible]);
158158
159 donor = await privateKey({filename: __filename});159 donor = await privateKey({url: import.meta.url});
160 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);160 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
161 });161 });
162 });162 });
modifiedtests/src/generateEnv.tsdiffbeforeafterboth
1import {ApiPromise, WsProvider} from '@polkadot/api';1import {ApiPromise, WsProvider} from '@polkadot/api';
2import {readFile} from 'fs/promises';2import {readFile} from 'fs/promises';
3import {join} from 'path';3import {join} from 'path';
4import {makeNames} from './util';
5
6const {dirname} = makeNames(import.meta.url);
47
5async function fetchVersion(chain: string): Promise<string> {8async function fetchVersion(chain: string): Promise<string> {
6 const api = await ApiPromise.create({provider: new WsProvider(chain)});9 const api = await ApiPromise.create({provider: new WsProvider(chain)});
29}32}
3033
31(async () => {34(async () => {
32 let env = (await readFile(join(__dirname, '../../.env'))).toString();35 let env = (await readFile(join(dirname, '../../.env'))).toString();
33 await Promise.all([36 await Promise.all([
34 ff('wss://rpc.polkadot.io/', /^(.)(..)(.)$/, 'release-v0.$1.$2').then(v => env = setVar(env, 'POLKADOT_MAINNET_BRANCH', v)),37 ff('wss://rpc.polkadot.io/', /^(.)(..)(.)$/, 'release-v0.$1.$2').then(v => env = setVar(env, 'POLKADOT_MAINNET_BRANCH', v)),
35 ff('wss://statemint-rpc.polkadot.io/', /^(....)$/, 'release-parachains-v$1').then(v => env = setVar(env, 'STATEMINT_BUILD_BRANCH', v)),38 ff('wss://statemint-rpc.polkadot.io/', /^(....)$/, 'release-parachains-v$1').then(v => env = setVar(env, 'STATEMINT_BUILD_BRANCH', v)),
modifiedtests/src/getPropertiesRpc.test.tsdiffbeforeafterboth
6363
64 before(async () => {64 before(async () => {
65 await usingPlaygrounds(async (_, privateKey) => {65 await usingPlaygrounds(async (_, privateKey) => {
66 alice = await privateKey({filename: __filename});66 alice = await privateKey({url: import.meta.url});
67 });67 });
68 });68 });
6969
modifiedtests/src/interfaces/appPromotion/index.tsdiffbeforeafterboth
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2/* eslint-disable */2/* eslint-disable */
33
4export * from './types';4export * from './types.js';
55
modifiedtests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth
9import type { Option, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { Option, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
10import type { Codec } from '@polkadot/types-codec/types';10import type { Codec } from '@polkadot/types-codec/types';
11import type { H160, Perbill, Permill } from '@polkadot/types/interfaces/runtime';11import type { H160, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
12import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, UpDataStructsCollectionLimits, XcmV1MultiLocation } from '@polkadot/types/lookup';12import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, XcmV3MultiLocation } from '@polkadot/types/lookup';
1313
14export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;14export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
1515
41 **/41 **/
42 [key: string]: Codec;42 [key: string]: Codec;
43 };43 };
44 authorship: {
45 /**
46 * The number of blocks back we should accept uncles.
47 * This means that we will deal with uncle-parents that are
48 * `UncleGenerations + 1` before `now`.
49 **/
50 uncleGenerations: u32 & AugmentedConst<ApiType>;
51 /**
52 * Generic const
53 **/
54 [key: string]: Codec;
55 };
56 balances: {44 balances: {
57 /**45 /**
58 * The minimum amount required to keep an account open.46 * The minimum amount required to keep an account open.
358 * The actually weight for an XCM message is `T::BaseXcmWeight +346 * The actually weight for an XCM message is `T::BaseXcmWeight +
359 * T::Weigher::weight(&msg)`.347 * T::Weigher::weight(&msg)`.
360 **/348 **/
361 baseXcmWeight: u64 & AugmentedConst<ApiType>;349 baseXcmWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
362 /**350 /**
363 * Self chain location.351 * Self chain location.
364 **/352 **/
365 selfLocation: XcmV1MultiLocation & AugmentedConst<ApiType>;353 selfLocation: XcmV3MultiLocation & AugmentedConst<ApiType>;
366 /**354 /**
367 * Generic const355 * Generic const
368 **/356 **/
modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
45 **/45 **/
46 [key: string]: AugmentedError<ApiType>;46 [key: string]: AugmentedError<ApiType>;
47 };47 };
48 authorship: {
49 /**
50 * The uncle is genesis.
51 **/
52 GenesisUncle: AugmentedError<ApiType>;
53 /**
54 * The uncle parent not in the chain.
55 **/
56 InvalidUncleParent: AugmentedError<ApiType>;
57 /**
58 * The uncle isn't recent enough to be included.
59 **/
60 OldUncle: AugmentedError<ApiType>;
61 /**
62 * The uncle is too high in chain.
63 **/
64 TooHighUncle: AugmentedError<ApiType>;
65 /**
66 * Too many uncles.
67 **/
68 TooManyUncles: AugmentedError<ApiType>;
69 /**
70 * The uncle is already included.
71 **/
72 UncleAlreadyIncluded: AugmentedError<ApiType>;
73 /**
74 * Uncles already set in the block.
75 **/
76 UnclesAlreadySet: AugmentedError<ApiType>;
77 /**
78 * Generic error
79 **/
80 [key: string]: AugmentedError<ApiType>;
81 };
82 balances: {48 balances: {
83 /**49 /**
84 * Beneficiary account must pre-exist50 * Beneficiary account must pre-exist
663 [key: string]: AugmentedError<ApiType>;629 [key: string]: AugmentedError<ApiType>;
664 };630 };
665 polkadotXcm: {631 polkadotXcm: {
632 /**
633 * The given account is not an identifiable sovereign account for any location.
634 **/
635 AccountNotSovereign: AugmentedError<ApiType>;
666 /**636 /**
667 * The location is invalid since it already has a subscription from us.637 * The location is invalid since it already has a subscription from us.
668 **/638 **/
688 * The assets to be sent are empty.658 * The assets to be sent are empty.
689 **/659 **/
690 Empty: AugmentedError<ApiType>;660 Empty: AugmentedError<ApiType>;
661 /**
662 * The operation required fees to be paid which the initiator could not meet.
663 **/
664 FeesNotMet: AugmentedError<ApiType>;
691 /**665 /**
692 * The message execution fails the filter.666 * The message execution fails the filter.
693 **/667 **/
694 Filtered: AugmentedError<ApiType>;668 Filtered: AugmentedError<ApiType>;
669 /**
670 * The unlock operation cannot succeed because there are still users of the lock.
671 **/
672 InUse: AugmentedError<ApiType>;
673 /**
674 * Invalid asset for the operation.
675 **/
676 InvalidAsset: AugmentedError<ApiType>;
695 /**677 /**
696 * Origin is invalid for sending.678 * Origin is invalid for sending.
697 **/679 **/
698 InvalidOrigin: AugmentedError<ApiType>;680 InvalidOrigin: AugmentedError<ApiType>;
681 /**
682 * A remote lock with the corresponding data could not be found.
683 **/
684 LockNotFound: AugmentedError<ApiType>;
685 /**
686 * The owner does not own (all) of the asset that they wish to do the operation on.
687 **/
688 LowBalance: AugmentedError<ApiType>;
699 /**689 /**
700 * The referenced subscription could not be found.690 * The referenced subscription could not be found.
701 **/691 **/
709 * Too many assets have been attempted for transfer.699 * Too many assets have been attempted for transfer.
710 **/700 **/
711 TooManyAssets: AugmentedError<ApiType>;701 TooManyAssets: AugmentedError<ApiType>;
702 /**
703 * The asset owner has too many locks on the asset.
704 **/
705 TooManyLocks: AugmentedError<ApiType>;
712 /**706 /**
713 * The desired destination was unreachable, generally because there is a no way of routing707 * The desired destination was unreachable, generally because there is a no way of routing
714 * to it.708 * to it.
modifiedtests/src/interfaces/augment-api-events.tsdiffbeforeafterboth
8import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';
9import type { Bytes, Null, Option, Result, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';9import type { Bytes, Null, Option, Result, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';
10import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';10import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
11import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, SpRuntimeDispatchError, SpWeightsWeightV2Weight, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';11import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, SpRuntimeDispatchError, SpWeightsWeightV2Weight, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetMultiAssets, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
1212
13export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;13export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;
1414
220 * Downward message executed with the given outcome.220 * Downward message executed with the given outcome.
221 * \[ id, outcome \]221 * \[ id, outcome \]
222 **/222 **/
223 ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV2TraitsOutcome]>;223 ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV3TraitsOutcome]>;
224 /**224 /**
225 * Downward message is invalid XCM.225 * Downward message is invalid XCM.
226 * \[ id \]226 * \[ id \]
240 /**240 /**
241 * Downward message executed with the given outcome.241 * Downward message executed with the given outcome.
242 **/242 **/
243 ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV2TraitsOutcome], { messageId: U8aFixed, outcome: XcmV2TraitsOutcome }>;243 ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV3TraitsOutcome], { messageId: U8aFixed, outcome: XcmV3TraitsOutcome }>;
244 /**244 /**
245 * Downward message is invalid XCM.245 * Downward message is invalid XCM.
246 **/246 **/
247 InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;247 InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;
248 /**
249 * The maximum number of downward messages was.
250 **/
251 MaxMessagesExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;
248 /**252 /**
249 * Downward message is overweight and was placed in the overweight queue.253 * Downward message is overweight and was placed in the overweight queue.
250 **/254 **/
342 /**346 /**
343 * The foreign asset registered.347 * The foreign asset registered.
344 **/348 **/
345 ForeignAssetRegistered: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;349 ForeignAssetRegistered: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;
346 /**350 /**
347 * The foreign asset updated.351 * The foreign asset updated.
348 **/352 **/
349 ForeignAssetUpdated: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;353 ForeignAssetUpdated: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;
350 /**354 /**
351 * Generic event355 * Generic event
352 **/356 **/
432 * An upgrade has been authorized.436 * An upgrade has been authorized.
433 **/437 **/
434 UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;438 UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;
439 /**
440 * An upward message was sent to the relay chain.
441 **/
442 UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;
435 /**443 /**
436 * The validation function was applied as of the contained relay chain block number.444 * The validation function was applied as of the contained relay chain block number.
437 **/445 **/
455 * 463 *
456 * \[ hash, origin, assets \]464 * \[ hash, origin, assets \]
457 **/465 **/
458 AssetsClaimed: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;466 AssetsClaimed: AugmentedEvent<ApiType, [H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;
459 /**467 /**
460 * Some assets have been placed in an asset trap.468 * Some assets have been placed in an asset trap.
461 * 469 *
462 * \[ hash, origin, assets \]470 * \[ hash, origin, assets \]
463 **/471 **/
464 AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;472 AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;
465 /**473 /**
466 * Execution of an XCM message was attempted.474 * Execution of an XCM message was attempted.
467 * 475 *
468 * \[ outcome \]476 * \[ outcome \]
469 **/477 **/
470 Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;478 Attempted: AugmentedEvent<ApiType, [XcmV3TraitsOutcome]>;
479 /**
480 * Fees were paid from a location for an operation (often for using `SendXcm`).
481 *
482 * \[ paying location, fees \]
483 **/
484 FeesPaid: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
485 /**
486 * Expected query response has been received but the querier location of the response does
487 * not match the expected. The query remains registered for a later, valid, response to
488 * be received and acted upon.
489 *
490 * \[ origin location, id, expected querier, maybe actual querier \]
491 **/
492 InvalidQuerier: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, XcmV3MultiLocation, Option<XcmV3MultiLocation>]>;
493 /**
494 * Expected query response has been received but the expected querier location placed in
495 * storage by this runtime previously cannot be decoded. The query remains registered.
496 *
497 * This is unexpected (since a location placed in storage in a previously executing
498 * runtime should be readable prior to query timeout) and dangerous since the possibly
499 * valid response will be dropped. Manual governance intervention is probably going to be
500 * needed.
501 *
502 * \[ origin location, id \]
503 **/
504 InvalidQuerierVersion: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>;
471 /**505 /**
472 * Expected query response has been received but the origin location of the response does506 * Expected query response has been received but the origin location of the response does
473 * not match that expected. The query remains registered for a later, valid, response to507 * not match that expected. The query remains registered for a later, valid, response to
474 * be received and acted upon.508 * be received and acted upon.
475 * 509 *
476 * \[ origin location, id, expected location \]510 * \[ origin location, id, expected location \]
477 **/511 **/
478 InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;512 InvalidResponder: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, Option<XcmV3MultiLocation>]>;
479 /**513 /**
480 * Expected query response has been received but the expected origin location placed in514 * Expected query response has been received but the expected origin location placed in
481 * storage by this runtime previously cannot be decoded. The query remains registered.515 * storage by this runtime previously cannot be decoded. The query remains registered.
487 * 521 *
488 * \[ origin location, id \]522 * \[ origin location, id \]
489 **/523 **/
490 InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;524 InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>;
491 /**525 /**
492 * Query response has been received and query is removed. The registered notification has526 * Query response has been received and query is removed. The registered notification has
493 * been dispatched and executed successfully.527 * been dispatched and executed successfully.
531 * 565 *
532 * \[ location, query ID, error \]566 * \[ location, query ID, error \]
533 **/567 **/
534 NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;568 NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, XcmV3TraitsError]>;
535 /**569 /**
536 * Query response has been received and is ready for taking with `take_response`. There is570 * Query response has been received and is ready for taking with `take_response`. There is
537 * no registered notification call.571 * no registered notification call.
538 * 572 *
539 * \[ id, response \]573 * \[ id, response \]
540 **/574 **/
541 ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;575 ResponseReady: AugmentedEvent<ApiType, [u64, XcmV3Response]>;
542 /**576 /**
543 * Received query response has been read and removed.577 * Received query response has been read and removed.
544 * 578 *
550 * 584 *
551 * \[ origin, destination, message \]585 * \[ origin, destination, message \]
552 **/586 **/
553 Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;587 Sent: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiLocation, XcmV3Xcm]>;
554 /**588 /**
555 * The supported version of a location has been changed. This might be through an589 * The supported version of a location has been changed. This might be through an
556 * automatic notification or a manual intervention.590 * automatic notification or a manual intervention.
557 * 591 *
558 * \[ location, XCM version \]592 * \[ location, XCM version \]
559 **/593 **/
560 SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;594 SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV3MultiLocation, u32]>;
561 /**595 /**
562 * Query response received which does not match a registered query. This may be because a596 * Query response received which does not match a registered query. This may be because a
563 * matching query was never registered, it may be because it is a duplicate response, or597 * matching query was never registered, it may be because it is a duplicate response, or
564 * because the query timed out.598 * because the query timed out.
565 * 599 *
566 * \[ origin location, id \]600 * \[ origin location, id \]
567 **/601 **/
568 UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;602 UnexpectedResponse: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>;
569 /**603 /**
570 * An XCM version change notification message has been attempted to be sent.604 * An XCM version change notification message has been attempted to be sent.
571 * 605 *
572 * \[ destination, result \]606 * The cost of sending it (borne by the chain) is included.
607 *
608 * \[ destination, result, cost \]
573 **/609 **/
574 VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;610 VersionChangeNotified: AugmentedEvent<ApiType, [XcmV3MultiLocation, u32, XcmV3MultiassetMultiAssets]>;
611 /**
612 * We have requested that a remote chain sends us XCM version change notifications.
613 *
614 * \[ destination location, cost \]
615 **/
616 VersionNotifyRequested: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
617 /**
618 * A remote has requested XCM version change notification from us and we have honored it.
619 * A version information message is sent to them and its cost is included.
620 *
621 * \[ destination location, cost \]
622 **/
623 VersionNotifyStarted: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
624 /**
625 * We have requested that a remote chain stops sending us XCM version change notifications.
626 *
627 * \[ destination location, cost \]
628 **/
629 VersionNotifyUnrequested: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
575 /**630 /**
576 * Generic event631 * Generic event
577 **/632 **/
691 * An account was created with some free balance.746 * An account was created with some free balance.
692 **/747 **/
693 Endowed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;748 Endowed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;
749 /**
750 * Some free balance was locked.
751 **/
752 Locked: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;
694 /**753 /**
695 * Some locked funds were unlocked754 * Some locked funds were unlocked
696 **/755 **/
720 * Transfer succeeded.779 * Transfer succeeded.
721 **/780 **/
722 Transfer: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128 }>;781 Transfer: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128 }>;
782 /**
783 * Some locked balance was freed.
784 **/
785 Unlocked: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;
723 /**786 /**
724 * Some balance was unreserved (moved from reserved to free).787 * Some balance was unreserved (moved from reserved to free).
725 **/788 **/
808 /**871 /**
809 * Bad XCM format used.872 * Bad XCM format used.
810 **/873 **/
811 BadFormat: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;874 BadFormat: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;
812 /**875 /**
813 * Bad XCM version used.876 * Bad XCM version used.
814 **/877 **/
815 BadVersion: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;878 BadVersion: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;
816 /**879 /**
817 * Some XCM failed.880 * Some XCM failed.
818 **/881 **/
819 Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: SpWeightsWeightV2Weight], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: SpWeightsWeightV2Weight }>;882 Fail: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>, error: XcmV3TraitsError, weight: SpWeightsWeightV2Weight], { messageHash: Option<U8aFixed>, error: XcmV3TraitsError, weight: SpWeightsWeightV2Weight }>;
820 /**883 /**
821 * An XCM exceeded the individual message weight budget.884 * An XCM exceeded the individual message weight budget.
822 **/885 **/
828 /**891 /**
829 * Some XCM was executed ok.892 * Some XCM was executed ok.
830 **/893 **/
831 Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: SpWeightsWeightV2Weight], { messageHash: Option<H256>, weight: SpWeightsWeightV2Weight }>;894 Success: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>, weight: SpWeightsWeightV2Weight], { messageHash: Option<U8aFixed>, weight: SpWeightsWeightV2Weight }>;
832 /**
833 * An upward message was sent to the relay chain.
834 **/
835 UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;
836 /**895 /**
837 * An HRMP message was sent to a sibling parachain.896 * An HRMP message was sent to a sibling parachain.
838 **/897 **/
839 XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;898 XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;
840 /**899 /**
841 * Generic event900 * Generic event
842 **/901 **/
846 /**905 /**
847 * Transferred `MultiAsset` with fee.906 * Transferred `MultiAsset` with fee.
848 **/907 **/
849 TransferredMultiAssets: AugmentedEvent<ApiType, [sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation], { sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation }>;908 TransferredMultiAssets: AugmentedEvent<ApiType, [sender: AccountId32, assets: XcmV3MultiassetMultiAssets, fee: XcmV3MultiAsset, dest: XcmV3MultiLocation], { sender: AccountId32, assets: XcmV3MultiassetMultiAssets, fee: XcmV3MultiAsset, dest: XcmV3MultiLocation }>;
850 /**909 /**
851 * Generic event910 * Generic event
852 **/911 **/
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
10import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';10import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
11import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';11import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
12import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';12import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
13import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletNonfungibleItemData, PalletPreimageRequestStatus, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';13import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletNonfungibleItemData, PalletPreimageRequestStatus, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV3MultiLocation, XcmVersionedAssetId, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
14import type { Observable } from '@polkadot/types/types';14import type { Observable } from '@polkadot/types/types';
1515
16export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;16export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
61 **/61 **/
62 [key: string]: QueryableStorageEntry<ApiType>;62 [key: string]: QueryableStorageEntry<ApiType>;
63 };63 };
64 authorship: {64 aura: {
65 /**65 /**
66 * Author of current block.66 * The current authority set.
67 **/67 **/
68 author: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;68 authorities: AugmentedQuery<ApiType, () => Observable<Vec<SpConsensusAuraSr25519AppSr25519Public>>, []> & QueryableStorageEntry<ApiType, []>;
69 /**69 /**
70 * Whether uncles were already set in this block.70 * The current slot of this block.
71 **/71 *
72 * This will be set in `on_initialize`.
73 **/
72 didSetUncles: AugmentedQuery<ApiType, () => Observable<bool>, []> & QueryableStorageEntry<ApiType, []>;74 currentSlot: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;
73 /**
74 * Uncles
75 **/
76 uncles: AugmentedQuery<ApiType, () => Observable<Vec<PalletAuthorshipUncleEntryItem>>, []> & QueryableStorageEntry<ApiType, []>;
77 /**75 /**
78 * Generic query76 * Generic query
79 **/77 **/
80 [key: string]: QueryableStorageEntry<ApiType>;78 [key: string]: QueryableStorageEntry<ApiType>;
81 };79 };
80 auraExt: {
81 /**
82 * Serves as cache for the authorities.
83 *
84 * The authorities in AuRa are overwritten in `on_initialize` when we switch to a new session,
85 * but we require the old authorities to verify the seal when validating a PoV. This will always
86 * be updated to the latest AuRa authorities in `on_finalize`.
87 **/
88 authorities: AugmentedQuery<ApiType, () => Observable<Vec<SpConsensusAuraSr25519AppSr25519Public>>, []> & QueryableStorageEntry<ApiType, []>;
89 /**
90 * Generic query
91 **/
92 [key: string]: QueryableStorageEntry<ApiType>;
93 };
94 authorship: {
95 /**
96 * Author of current block.
97 **/
98 author: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
99 /**
100 * Generic query
101 **/
102 [key: string]: QueryableStorageEntry<ApiType>;
103 };
82 balances: {104 balances: {
83 /**105 /**
84 * The Balances pallet example of storing the balance of an account.106 * The Balances pallet example of storing the balance of an account.
177 /**199 /**
178 * Storage of token property permissions of a collection.200 * Storage of token property permissions of a collection.
179 **/201 **/
180 collectionPropertyPermissions: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<BTreeMap<Bytes, UpDataStructsPropertyPermission>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;202 collectionPropertyPermissions: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<UpDataStructsPropertiesMapPropertyPermission>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
181 /**203 /**
182 * Storage of the count of created collections. Essentially contains the last collection ID.204 * Storage of the count of created collections. Essentially contains the last collection ID.
183 **/205 **/
206 collatorSelectionLicenseBondOverride: AugmentedQuery<ApiType, () => Observable<u128>, []> & QueryableStorageEntry<ApiType, []>;228 collatorSelectionLicenseBondOverride: AugmentedQuery<ApiType, () => Observable<u128>, []> & QueryableStorageEntry<ApiType, []>;
207 minGasPriceOverride: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;229 minGasPriceOverride: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;
208 weightToFeeCoefficientOverride: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;230 weightToFeeCoefficientOverride: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;
209 xcmAllowedLocationsOverride: AugmentedQuery<ApiType, () => Observable<Option<Vec<XcmV1MultiLocation>>>, []> & QueryableStorageEntry<ApiType, []>;
210 /**231 /**
211 * Generic query232 * Generic query
212 **/233 **/
217 * The configuration.238 * The configuration.
218 **/239 **/
219 configuration: AugmentedQuery<ApiType, () => Observable<CumulusPalletDmpQueueConfigData>, []> & QueryableStorageEntry<ApiType, []>;240 configuration: AugmentedQuery<ApiType, () => Observable<CumulusPalletDmpQueueConfigData>, []> & QueryableStorageEntry<ApiType, []>;
241 /**
242 * Counter for the related counted storage map
243 **/
244 counterForOverweight: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
220 /**245 /**
221 * The overweight messages.246 * The overweight messages.
222 **/247 **/
274 **/299 **/
275 [key: string]: QueryableStorageEntry<ApiType>;300 [key: string]: QueryableStorageEntry<ApiType>;
276 };301 };
277 evmCoderSubstrate: {
278 /**
279 * Generic query
280 **/
281 [key: string]: QueryableStorageEntry<ApiType>;
282 };
283 evmContractHelpers: {302 evmContractHelpers: {
284 /**303 /**
285 * Storage for users that allowed for sponsorship.304 * Storage for users that allowed for sponsorship.
375 * 394 *
376 * ForeignAssetLocations: map ForeignAssetId => Option<MultiLocation>395 * ForeignAssetLocations: map ForeignAssetId => Option<MultiLocation>
377 **/396 **/
378 foreignAssetLocations: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<XcmV1MultiLocation>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;397 foreignAssetLocations: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<XcmV3MultiLocation>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
379 /**398 /**
380 * The storages for CurrencyIds.399 * The storages for CurrencyIds.
381 * 400 *
382 * LocationToCurrencyIds: map MultiLocation => Option<ForeignAssetId>401 * LocationToCurrencyIds: map MultiLocation => Option<ForeignAssetId>
383 **/402 **/
384 locationToCurrencyIds: AugmentedQuery<ApiType, (arg: XcmV1MultiLocation | { parents?: any; interior?: any } | string | Uint8Array) => Observable<Option<u32>>, [XcmV1MultiLocation]> & QueryableStorageEntry<ApiType, [XcmV1MultiLocation]>;403 locationToCurrencyIds: AugmentedQuery<ApiType, (arg: XcmV3MultiLocation | { parents?: any; interior?: any } | string | Uint8Array) => Observable<Option<u32>>, [XcmV3MultiLocation]> & QueryableStorageEntry<ApiType, [XcmV3MultiLocation]>;
385 /**404 /**
386 * Next available Foreign AssetId ID.405 * Next available Foreign AssetId ID.
387 * 406 *
679 **/698 **/
680 [key: string]: QueryableStorageEntry<ApiType>;699 [key: string]: QueryableStorageEntry<ApiType>;
681 };700 };
701 polkadotXcm: {
702 /**
703 * The existing asset traps.
704 *
705 * Key is the blake2 256 hash of (origin, versioned `MultiAssets`) pair. Value is the number of
706 * times this pair has been trapped (usually just 1 if it exists at all).
707 **/
708 assetTraps: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<u32>, [H256]> & QueryableStorageEntry<ApiType, [H256]>;
709 /**
710 * The current migration's stage, if any.
711 **/
712 currentMigration: AugmentedQuery<ApiType, () => Observable<Option<PalletXcmVersionMigrationStage>>, []> & QueryableStorageEntry<ApiType, []>;
713 /**
714 * Fungible assets which we know are locked on this chain.
715 **/
716 lockedFungibles: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<Vec<ITuple<[u128, XcmVersionedMultiLocation]>>>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
717 /**
718 * The ongoing queries.
719 **/
720 queries: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<PalletXcmQueryStatus>>, [u64]> & QueryableStorageEntry<ApiType, [u64]>;
721 /**
722 * The latest available query index.
723 **/
724 queryCounter: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;
725 /**
726 * Fungible assets which we know are locked on a remote chain.
727 **/
728 remoteLockedFungibles: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array, arg3: XcmVersionedAssetId | { V3: any } | string | Uint8Array) => Observable<Option<PalletXcmRemoteLockedFungibleRecord>>, [u32, AccountId32, XcmVersionedAssetId]> & QueryableStorageEntry<ApiType, [u32, AccountId32, XcmVersionedAssetId]>;
729 /**
730 * Default version to encode XCM when latest version of destination is unknown. If `None`,
731 * then the destinations whose XCM version is unknown are considered unreachable.
732 **/
733 safeXcmVersion: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;
734 /**
735 * The Latest versions that we know various locations support.
736 **/
737 supportedVersion: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => Observable<Option<u32>>, [u32, XcmVersionedMultiLocation]> & QueryableStorageEntry<ApiType, [u32, XcmVersionedMultiLocation]>;
738 /**
739 * Destinations whose latest XCM version we would like to know. Duplicates not allowed, and
740 * the `u32` counter is the number of times that a send to the destination has been attempted,
741 * which is used as a prioritization.
742 **/
743 versionDiscoveryQueue: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[XcmVersionedMultiLocation, u32]>>>, []> & QueryableStorageEntry<ApiType, []>;
744 /**
745 * All locations that we have requested version notifications from.
746 **/
747 versionNotifiers: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => Observable<Option<u64>>, [u32, XcmVersionedMultiLocation]> & QueryableStorageEntry<ApiType, [u32, XcmVersionedMultiLocation]>;
748 /**
749 * The target locations that are subscribed to our version changes, as well as the most recent
750 * of our versions we informed them of.
751 **/
752 versionNotifyTargets: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => Observable<Option<ITuple<[u64, SpWeightsWeightV2Weight, u32]>>>, [u32, XcmVersionedMultiLocation]> & QueryableStorageEntry<ApiType, [u32, XcmVersionedMultiLocation]>;
753 /**
754 * Generic query
755 **/
756 [key: string]: QueryableStorageEntry<ApiType>;
757 };
682 preimage: {758 preimage: {
683 preimageFor: AugmentedQuery<ApiType, (arg: ITuple<[H256, u32]> | [H256 | string | Uint8Array, u32 | AnyNumber | Uint8Array]) => Observable<Option<Bytes>>, [ITuple<[H256, u32]>]> & QueryableStorageEntry<ApiType, [ITuple<[H256, u32]>]>;759 preimageFor: AugmentedQuery<ApiType, (arg: ITuple<[H256, u32]> | [H256 | string | Uint8Array, u32 | AnyNumber | Uint8Array]) => Observable<Option<Bytes>>, [ITuple<[H256, u32]>]> & QueryableStorageEntry<ApiType, [ITuple<[H256, u32]>]>;
684 /**760 /**
690 **/766 **/
691 [key: string]: QueryableStorageEntry<ApiType>;767 [key: string]: QueryableStorageEntry<ApiType>;
692 };768 };
693 randomnessCollectiveFlip: {
694 /**
695 * Series of block headers from the last 81 blocks that acts as random seed material. This
696 * is arranged as a ring buffer with `block_number % 81` being the index into the `Vec` of
697 * the oldest hash.
698 **/
699 randomMaterial: AugmentedQuery<ApiType, () => Observable<Vec<H256>>, []> & QueryableStorageEntry<ApiType, []>;
700 /**
701 * Generic query
702 **/
703 [key: string]: QueryableStorageEntry<ApiType>;
704 };
705 refungible: {769 refungible: {
706 /**770 /**
707 * Amount of tokens (not pieces) partially owned by an account within a collection.771 * Amount of tokens (not pieces) partially owned by an account within a collection.
784 **/848 **/
785 [key: string]: QueryableStorageEntry<ApiType>;849 [key: string]: QueryableStorageEntry<ApiType>;
786 };850 };
787 structure: {
788 /**
789 * Generic query
790 **/
791 [key: string]: QueryableStorageEntry<ApiType>;
792 };
793 sudo: {851 sudo: {
794 /**852 /**
795 * The `AccountId` of the sudo key.853 * The `AccountId` of the sudo key.
1027 [key: string]: QueryableStorageEntry<ApiType>;1085 [key: string]: QueryableStorageEntry<ApiType>;
1028 };1086 };
1029 xcmpQueue: {1087 xcmpQueue: {
1088 /**
1089 * Counter for the related counted storage map
1090 **/
1091 counterForOverweight: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
1030 /**1092 /**
1031 * Inbound aggregate XCMP messages. It can only be one per ParaId/block.1093 * Inbound aggregate XCMP messages. It can only be one per ParaId/block.
1032 **/1094 **/
modifiedtests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth
22import type { EthAccount, EthCallRequest, EthFeeHistory, EthFilter, EthFilterChanges, EthLog, EthReceipt, EthRichBlock, EthSubKind, EthSubParams, EthSyncStatus, EthTransaction, EthTransactionRequest, EthWork } from '@polkadot/types/interfaces/eth';22import type { EthAccount, EthCallRequest, EthFeeHistory, EthFilter, EthFilterChanges, EthLog, EthReceipt, EthRichBlock, EthSubKind, EthSubParams, EthSyncStatus, EthTransaction, EthTransactionRequest, EthWork } from '@polkadot/types/interfaces/eth';
23import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';23import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';
24import type { EncodedFinalityProofs, JustificationNotification, ReportedRoundStates } from '@polkadot/types/interfaces/grandpa';24import type { EncodedFinalityProofs, JustificationNotification, ReportedRoundStates } from '@polkadot/types/interfaces/grandpa';
25import type { MmrLeafBatchProof, MmrLeafProof } from '@polkadot/types/interfaces/mmr';25import type { MmrHash, MmrLeafBatchProof } from '@polkadot/types/interfaces/mmr';
26import type { StorageKind } from '@polkadot/types/interfaces/offchain';26import type { StorageKind } from '@polkadot/types/interfaces/offchain';
27import type { FeeDetails, RuntimeDispatchInfoV1 } from '@polkadot/types/interfaces/payment';27import type { FeeDetails, RuntimeDispatchInfoV1 } from '@polkadot/types/interfaces/payment';
28import type { RpcMethods } from '@polkadot/types/interfaces/rpc';28import type { RpcMethods } from '@polkadot/types/interfaces/rpc';
294 /**294 /**
295 * Returns the number of transactions sent from given address at given time (block number).295 * Returns the number of transactions sent from given address at given time (block number).
296 **/296 **/
297 getTransactionCount: AugmentedRpc<(hash: H256 | string | Uint8Array, number?: BlockNumber | AnyNumber | Uint8Array) => Observable<U256>>;297 getTransactionCount: AugmentedRpc<(address: H160 | string | Uint8Array, number?: BlockNumber | AnyNumber | Uint8Array) => Observable<U256>>;
298 /**298 /**
299 * Returns transaction receipt by transaction hash.299 * Returns transaction receipt by transaction hash.
300 **/300 **/
391 subscribeJustifications: AugmentedRpc<() => Observable<JustificationNotification>>;391 subscribeJustifications: AugmentedRpc<() => Observable<JustificationNotification>>;
392 };392 };
393 mmr: {393 mmr: {
394 /**394 /**
395 * Generate MMR proof for the given leaf indices.395 * Generate MMR proof for the given block numbers.
396 **/396 **/
397 generateBatchProof: AugmentedRpc<(leafIndices: Vec<u64> | (u64 | AnyNumber | Uint8Array)[], at?: BlockHash | string | Uint8Array) => Observable<MmrLeafProof>>;397 generateProof: AugmentedRpc<(blockNumbers: Vec<u64> | (u64 | AnyNumber | Uint8Array)[], bestKnownBlockNumber?: u64 | AnyNumber | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<MmrLeafBatchProof>>;
398 /**398 /**
399 * Generate MMR proof for given leaf index.399 * Get the MMR root hash for the current best block.
400 **/400 **/
401 root: AugmentedRpc<(at?: BlockHash | string | Uint8Array) => Observable<MmrHash>>;
402 /**
403 * Verify an MMR proof
404 **/
405 verifyProof: AugmentedRpc<(proof: MmrLeafBatchProof | { blockHash?: any; leaves?: any; proof?: any } | string | Uint8Array) => Observable<bool>>;
406 /**
407 * Verify an MMR proof statelessly given an mmr_root
408 **/
401 generateProof: AugmentedRpc<(leafIndex: u64 | AnyNumber | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<MmrLeafBatchProof>>;409 verifyProofStateless: AugmentedRpc<(root: MmrHash | string | Uint8Array, proof: MmrLeafBatchProof | { blockHash?: any; leaves?: any; proof?: any } | string | Uint8Array) => Observable<bool>>;
402 };410 };
403 net: {411 net: {
404 /**412 /**
modifiedtests/src/interfaces/augment-api-runtime.tsdiffbeforeafterboth
17import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';17import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';
18import type { OpaqueMetadata } from '@polkadot/types/interfaces/metadata';18import type { OpaqueMetadata } from '@polkadot/types/interfaces/metadata';
19import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';19import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
20import type { AccountId, Block, H160, H256, Header, Index, KeyTypeId, Permill, SlotDuration } from '@polkadot/types/interfaces/runtime';20import type { AccountId, Balance, Block, H160, H256, Header, Index, KeyTypeId, Permill, SlotDuration, Weight } from '@polkadot/types/interfaces/runtime';
21import type { RuntimeVersion } from '@polkadot/types/interfaces/state';21import type { RuntimeVersion } from '@polkadot/types/interfaces/state';
22import type { ApplyExtrinsicResult, DispatchError } from '@polkadot/types/interfaces/system';22import type { ApplyExtrinsicResult, DispatchError } from '@polkadot/types/interfaces/system';
23import type { TransactionSource, TransactionValidity } from '@polkadot/types/interfaces/txqueue';23import type { TransactionSource, TransactionValidity } from '@polkadot/types/interfaces/txqueue';
229 **/229 **/
230 [key: string]: DecoratedCallBase<ApiType>;230 [key: string]: DecoratedCallBase<ApiType>;
231 };231 };
232 /** 0x37c8bb1350a9a2a8/2 */232 /** 0x37c8bb1350a9a2a8/3 */
233 transactionPaymentApi: {233 transactionPaymentApi: {
234 /**234 /**
235 * The transaction fee details235 * The transaction fee details
239 * The transaction info239 * The transaction info
240 **/240 **/
241 queryInfo: AugmentedCall<ApiType, (uxt: Extrinsic | IExtrinsic | string | Uint8Array, len: u32 | AnyNumber | Uint8Array) => Observable<RuntimeDispatchInfo>>;241 queryInfo: AugmentedCall<ApiType, (uxt: Extrinsic | IExtrinsic | string | Uint8Array, len: u32 | AnyNumber | Uint8Array) => Observable<RuntimeDispatchInfo>>;
242 /**
243 * Query the output of the current LengthToFee given some input
244 **/
245 queryLengthToFee: AugmentedCall<ApiType, (length: u32 | AnyNumber | Uint8Array) => Observable<Balance>>;
246 /**
247 * Query the output of the current WeightToFee given some input
248 **/
249 queryWeightToFee: AugmentedCall<ApiType, (weight: Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => Observable<Balance>>;
242 /**250 /**
243 * Generic call251 * Generic call
244 **/252 **/
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
10import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';10import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
11import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';11import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
12import type { AccountId32, Call, H160, H256, MultiAddress } from '@polkadot/types/interfaces/runtime';12import type { AccountId32, Call, H160, H256, MultiAddress } from '@polkadot/types/interfaces/runtime';
13import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OpalRuntimeRuntimeCommonSessionKeys, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityBitFlags, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistration, SpRuntimeHeader, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';13import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OpalRuntimeRuntimeCommonSessionKeys, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityBitFlags, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistration, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV3MultiLocation, XcmV3WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
1414
15export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;15export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
16export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;16export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
130 **/130 **/
131 [key: string]: SubmittableExtrinsicFunction<ApiType>;131 [key: string]: SubmittableExtrinsicFunction<ApiType>;
132 };132 };
133 authorship: {
134 /**
135 * Provide a set of uncles.
136 **/
137 setUncles: AugmentedSubmittable<(newUncles: Vec<SpRuntimeHeader> | (SpRuntimeHeader | { parentHash?: any; number?: any; stateRoot?: any; extrinsicsRoot?: any; digest?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<SpRuntimeHeader>]>;
138 /**
139 * Generic tx
140 **/
141 [key: string]: SubmittableExtrinsicFunction<ApiType>;
142 };
143 balances: {133 balances: {
144 /**134 /**
145 * Exactly as `transfer`, except the origin must be root and the source account may be135 * Exactly as `transfer`, except the origin must be root and the source account may be
146 * specified.136 * specified.
147 * # <weight>137 * ## Complexity
148 * - Same as transfer, but additional read and write because the source account is not138 * - Same as transfer, but additional read and write because the source account is not
149 * assumed to be in the overlay.139 * assumed to be in the overlay.
150 * # </weight>140 **/
151 **/
152 forceTransfer: AugmentedSubmittable<(source: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Compact<u128>]>;141 forceTransfer: AugmentedSubmittable<(source: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Compact<u128>]>;
153 /**142 /**
154 * Unreserve some balance from a user by force.143 * Unreserve some balance from a user by force.
167 * The dispatch origin for this call is `root`.156 * The dispatch origin for this call is `root`.
168 **/157 **/
169 setBalance: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array, newReserved: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>, Compact<u128>]>;158 setBalance: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array, newReserved: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>, Compact<u128>]>;
170 /**159 /**
171 * Transfer some liquid free balance to another account.160 * Transfer some liquid free balance to another account.
172 * 161 *
173 * `transfer` will set the `FreeBalance` of the sender and receiver.162 * `transfer` will set the `FreeBalance` of the sender and receiver.
174 * If the sender's account is below the existential deposit as a result163 * If the sender's account is below the existential deposit as a result
175 * of the transfer, the account will be reaped.164 * of the transfer, the account will be reaped.
176 * 165 *
177 * The dispatch origin for this call must be `Signed` by the transactor.166 * The dispatch origin for this call must be `Signed` by the transactor.
178 * 167 *
179 * # <weight>168 * ## Complexity
180 * - Dependent on arguments but not critical, given proper implementations for input config169 * - Dependent on arguments but not critical, given proper implementations for input config
181 * types. See related functions below.170 * types. See related functions below.
182 * - It contains a limited number of reads and writes internally and no complex171 * - It contains a limited number of reads and writes internally and no complex
183 * computation.172 * computation.
184 * 173 *
185 * Related functions:174 * Related functions:
186 * 175 *
187 * - `ensure_can_withdraw` is always called internally but has a bounded complexity.176 * - `ensure_can_withdraw` is always called internally but has a bounded complexity.
188 * - Transferring balances to accounts that did not exist before will cause177 * - Transferring balances to accounts that did not exist before will cause
189 * `T::OnNewAccount::on_new_account` to be called.178 * `T::OnNewAccount::on_new_account` to be called.
190 * - Removing enough funds from an account will trigger `T::DustRemoval::on_unbalanced`.179 * - Removing enough funds from an account will trigger `T::DustRemoval::on_unbalanced`.
191 * - `transfer_keep_alive` works the same way as `transfer`, but has an additional check180 * - `transfer_keep_alive` works the same way as `transfer`, but has an additional check
192 * that the transfer will not kill the origin account.181 * that the transfer will not kill the origin account.
193 * ---------------------------------
194 * - Origin account is already in memory, so no DB operations for them.
195 * # </weight>182 **/
196 **/
197 transfer: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;183 transfer: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
198 /**184 /**
199 * Transfer the entire transferable balance from the caller account.185 * Transfer the entire transferable balance from the caller account.
200 * 186 *
201 * NOTE: This function only attempts to transfer _transferable_ balances. This means that187 * NOTE: This function only attempts to transfer _transferable_ balances. This means that
202 * any locked, reserved, or existential deposits (when `keep_alive` is `true`), will not be188 * any locked, reserved, or existential deposits (when `keep_alive` is `true`), will not be
203 * transferred by this function. To ensure that this function results in a killed account,189 * transferred by this function. To ensure that this function results in a killed account,
204 * you might need to prepare the account by removing any reference counters, storage190 * you might need to prepare the account by removing any reference counters, storage
205 * deposits, etc...191 * deposits, etc...
206 * 192 *
207 * The dispatch origin of this call must be Signed.193 * The dispatch origin of this call must be Signed.
208 * 194 *
209 * - `dest`: The recipient of the transfer.195 * - `dest`: The recipient of the transfer.
210 * - `keep_alive`: A boolean to determine if the `transfer_all` operation should send all196 * - `keep_alive`: A boolean to determine if the `transfer_all` operation should send all
211 * of the funds the account has, causing the sender account to be killed (false), or197 * of the funds the account has, causing the sender account to be killed (false), or
212 * transfer everything except at least the existential deposit, which will guarantee to198 * transfer everything except at least the existential deposit, which will guarantee to
213 * keep the sender account alive (true). # <weight>199 * keep the sender account alive (true). ## Complexity
214 * - O(1). Just like transfer, but reading the user's transferable balance first.200 * - O(1). Just like transfer, but reading the user's transferable balance first.
215 * #</weight>201 **/
216 **/
217 transferAll: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, bool]>;202 transferAll: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, bool]>;
218 /**203 /**
219 * Same as the [`transfer`] call, but with a check that the transfer will not kill the204 * Same as the [`transfer`] call, but with a check that the transfer will not kill the
290 setCollatorSelectionLicenseBond: AugmentedSubmittable<(amount: Option<u128> | null | Uint8Array | u128 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u128>]>;275 setCollatorSelectionLicenseBond: AugmentedSubmittable<(amount: Option<u128> | null | Uint8Array | u128 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u128>]>;
291 setMinGasPriceOverride: AugmentedSubmittable<(coeff: Option<u64> | null | Uint8Array | u64 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u64>]>;276 setMinGasPriceOverride: AugmentedSubmittable<(coeff: Option<u64> | null | Uint8Array | u64 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u64>]>;
292 setWeightToFeeCoefficientOverride: AugmentedSubmittable<(coeff: Option<u64> | null | Uint8Array | u64 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u64>]>;277 setWeightToFeeCoefficientOverride: AugmentedSubmittable<(coeff: Option<u64> | null | Uint8Array | u64 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u64>]>;
293 setXcmAllowedLocations: AugmentedSubmittable<(locations: Option<Vec<XcmV1MultiLocation>> | null | Uint8Array | Vec<XcmV1MultiLocation> | (XcmV1MultiLocation | { parents?: any; interior?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Option<Vec<XcmV1MultiLocation>>]>;
294 /**278 /**
295 * Generic tx279 * Generic tx
296 **/280 **/
303 [key: string]: SubmittableExtrinsicFunction<ApiType>;287 [key: string]: SubmittableExtrinsicFunction<ApiType>;
304 };288 };
305 dmpQueue: {289 dmpQueue: {
306 /**290 /**
307 * Service a single overweight message.291 * Service a single overweight message.
308 * 292 **/
309 * - `origin`: Must pass `ExecuteOverweightOrigin`.
310 * - `index`: The index of the overweight message to service.
311 * - `weight_limit`: The amount of weight that message execution may take.
312 *
313 * Errors:
314 * - `Unknown`: Message of `index` is unknown.
315 * - `OverLimit`: Message execution may use greater than `weight_limit`.
316 *
317 * Events:
318 * - `OverweightServiced`: On success.
319 **/
320 serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, u64]>;293 serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, SpWeightsWeightV2Weight]>;
321 /**294 /**
322 * Generic tx295 * Generic tx
323 **/296 **/
356 **/329 **/
357 [key: string]: SubmittableExtrinsicFunction<ApiType>;330 [key: string]: SubmittableExtrinsicFunction<ApiType>;
358 };331 };
332 evmCoderSubstrate: {
333 emptyCall: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
334 /**
335 * Generic tx
336 **/
337 [key: string]: SubmittableExtrinsicFunction<ApiType>;
338 };
339 evmContractHelpers: {
340 /**
341 * Migrate contract to use `SponsoringMode` storage instead of `SelfSponsoring`
342 **/
343 migrateFromSelfSponsoring: AugmentedSubmittable<(addresses: Vec<H160> | (H160 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<H160>]>;
344 /**
345 * Generic tx
346 **/
347 [key: string]: SubmittableExtrinsicFunction<ApiType>;
348 };
359 evmMigration: {349 evmMigration: {
360 /**350 /**
361 * Start contract migration, inserts contract stub at target address,351 * Start contract migration, inserts contract stub at target address,
391 [key: string]: SubmittableExtrinsicFunction<ApiType>;381 [key: string]: SubmittableExtrinsicFunction<ApiType>;
392 };382 };
393 foreignAssets: {383 foreignAssets: {
394 registerForeignAsset: AugmentedSubmittable<(owner: AccountId32 | string | Uint8Array, location: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, metadata: PalletForeignAssetsModuleAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, XcmVersionedMultiLocation, PalletForeignAssetsModuleAssetMetadata]>;384 registerForeignAsset: AugmentedSubmittable<(owner: AccountId32 | string | Uint8Array, location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, metadata: PalletForeignAssetsModuleAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, XcmVersionedMultiLocation, PalletForeignAssetsModuleAssetMetadata]>;
395 updateForeignAsset: AugmentedSubmittable<(foreignAssetId: u32 | AnyNumber | Uint8Array, location: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, metadata: PalletForeignAssetsModuleAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, XcmVersionedMultiLocation, PalletForeignAssetsModuleAssetMetadata]>;385 updateForeignAsset: AugmentedSubmittable<(foreignAssetId: u32 | AnyNumber | Uint8Array, location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, metadata: PalletForeignAssetsModuleAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, XcmVersionedMultiLocation, PalletForeignAssetsModuleAssetMetadata]>;
396 /**386 /**
397 * Generic tx387 * Generic tx
398 **/388 **/
725 **/715 **/
726 [key: string]: SubmittableExtrinsicFunction<ApiType>;716 [key: string]: SubmittableExtrinsicFunction<ApiType>;
727 };717 };
718 parachainInfo: {
719 /**
720 * Generic tx
721 **/
722 [key: string]: SubmittableExtrinsicFunction<ApiType>;
723 };
728 parachainSystem: {724 parachainSystem: {
729 authorizeUpgrade: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256]>;725 authorizeUpgrade: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256]>;
730 enactAuthorizedUpgrade: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;726 enactAuthorizedUpgrade: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
760 * NOTE: A successful return to this does *not* imply that the `msg` was executed successfully756 * NOTE: A successful return to this does *not* imply that the `msg` was executed successfully
761 * to completion; only that *some* of it was executed.757 * to completion; only that *some* of it was executed.
762 **/758 **/
763 execute: AugmentedSubmittable<(message: XcmVersionedXcm | { V0: any } | { V1: any } | { V2: any } | string | Uint8Array, maxWeight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedXcm, u64]>;759 execute: AugmentedSubmittable<(message: XcmVersionedXcm | { V2: any } | { V3: any } | string | Uint8Array, maxWeight: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedXcm, SpWeightsWeightV2Weight]>;
764 /**760 /**
765 * Set a safe XCM version (the version that XCM should be encoded with if the most recent761 * Set a safe XCM version (the version that XCM should be encoded with if the most recent
766 * version a destination can accept is unknown).762 * version a destination can accept is unknown).
775 * - `origin`: Must be Root.771 * - `origin`: Must be Root.
776 * - `location`: The location to which we should subscribe for XCM version notifications.772 * - `location`: The location to which we should subscribe for XCM version notifications.
777 **/773 **/
778 forceSubscribeVersionNotify: AugmentedSubmittable<(location: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation]>;774 forceSubscribeVersionNotify: AugmentedSubmittable<(location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation]>;
779 /**775 /**
780 * Require that a particular destination should no longer notify us regarding any XCM776 * Require that a particular destination should no longer notify us regarding any XCM
781 * version changes.777 * version changes.
784 * - `location`: The location to which we are currently subscribed for XCM version780 * - `location`: The location to which we are currently subscribed for XCM version
785 * notifications which we no longer desire.781 * notifications which we no longer desire.
786 **/782 **/
787 forceUnsubscribeVersionNotify: AugmentedSubmittable<(location: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation]>;783 forceUnsubscribeVersionNotify: AugmentedSubmittable<(location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation]>;
788 /**784 /**
789 * Extoll that a particular destination can be communicated with through a particular785 * Extoll that a particular destination can be communicated with through a particular
790 * version of XCM.786 * version of XCM.
793 * - `location`: The destination that is being described.789 * - `location`: The destination that is being described.
794 * - `xcm_version`: The latest version of XCM that `location` supports.790 * - `xcm_version`: The latest version of XCM that `location` supports.
795 **/791 **/
796 forceXcmVersion: AugmentedSubmittable<(location: XcmV1MultiLocation | { parents?: any; interior?: any } | string | Uint8Array, xcmVersion: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmV1MultiLocation, u32]>;792 forceXcmVersion: AugmentedSubmittable<(location: XcmV3MultiLocation | { parents?: any; interior?: any } | string | Uint8Array, xcmVersion: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmV3MultiLocation, u32]>;
797 /**793 /**
798 * Transfer some assets from the local chain to the sovereign account of a destination794 * Transfer some assets from the local chain to the sovereign account of a destination
799 * chain and forward a notification XCM.795 * chain and forward a notification XCM.
814 * fees.810 * fees.
815 * - `weight_limit`: The remote-side weight limit, if any, for the XCM fee purchase.811 * - `weight_limit`: The remote-side weight limit, if any, for the XCM fee purchase.
816 **/812 **/
817 limitedReserveTransferAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V0: any } | { V1: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array, weightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32, XcmV2WeightLimit]>;813 limitedReserveTransferAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V2: any } | { V3: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array, weightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32, XcmV3WeightLimit]>;
818 /**814 /**
819 * Teleport some assets from the local chain to some destination chain.815 * Teleport some assets from the local chain to some destination chain.
820 * 816 *
834 * fees.830 * fees.
835 * - `weight_limit`: The remote-side weight limit, if any, for the XCM fee purchase.831 * - `weight_limit`: The remote-side weight limit, if any, for the XCM fee purchase.
836 **/832 **/
837 limitedTeleportAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V0: any } | { V1: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array, weightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32, XcmV2WeightLimit]>;833 limitedTeleportAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V2: any } | { V3: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array, weightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32, XcmV3WeightLimit]>;
838 /**834 /**
839 * Transfer some assets from the local chain to the sovereign account of a destination835 * Transfer some assets from the local chain to the sovereign account of a destination
840 * chain and forward a notification XCM.836 * chain and forward a notification XCM.
853 * - `fee_asset_item`: The index into `assets` of the item which should be used to pay849 * - `fee_asset_item`: The index into `assets` of the item which should be used to pay
854 * fees.850 * fees.
855 **/851 **/
856 reserveTransferAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V0: any } | { V1: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32]>;852 reserveTransferAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V2: any } | { V3: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32]>;
857 send: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, message: XcmVersionedXcm | { V0: any } | { V1: any } | { V2: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedXcm]>;853 send: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, message: XcmVersionedXcm | { V2: any } | { V3: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedXcm]>;
858 /**854 /**
859 * Teleport some assets from the local chain to some destination chain.855 * Teleport some assets from the local chain to some destination chain.
860 * 856 *
872 * - `fee_asset_item`: The index into `assets` of the item which should be used to pay868 * - `fee_asset_item`: The index into `assets` of the item which should be used to pay
873 * fees.869 * fees.
874 **/870 **/
875 teleportAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V0: any } | { V1: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32]>;871 teleportAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V2: any } | { V3: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32]>;
876 /**872 /**
877 * Generic tx873 * Generic tx
878 **/874 **/
914 [key: string]: SubmittableExtrinsicFunction<ApiType>;910 [key: string]: SubmittableExtrinsicFunction<ApiType>;
915 };911 };
916 session: {912 session: {
917 /**913 /**
918 * Removes any session key(s) of the function caller.914 * Removes any session key(s) of the function caller.
919 * 915 *
920 * This doesn't take effect until the next session.916 * This doesn't take effect until the next session.
921 * 917 *
922 * The dispatch origin of this function must be Signed and the account must be either be918 * The dispatch origin of this function must be Signed and the account must be either be
923 * convertible to a validator ID using the chain's typical addressing system (this usually919 * convertible to a validator ID using the chain's typical addressing system (this usually
924 * means being a controller account) or directly convertible into a validator ID (which920 * means being a controller account) or directly convertible into a validator ID (which
925 * usually means being a stash account).921 * usually means being a stash account).
926 * 922 *
927 * # <weight>923 * ## Complexity
928 * - Complexity: `O(1)` in number of key types. Actual cost depends on the number of length924 * - `O(1)` in number of key types. Actual cost depends on the number of length of
929 * of `T::Keys::key_ids()` which is fixed.925 * `T::Keys::key_ids()` which is fixed.
930 * - DbReads: `T::ValidatorIdOf`, `NextKeys`, `origin account`
931 * - DbWrites: `NextKeys`, `origin account`
932 * - DbWrites per key id: `KeyOwner`
933 * # </weight>926 **/
934 **/
935 purgeKeys: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;927 purgeKeys: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
936 /**928 /**
937 * Sets the session key(s) of the function caller to `keys`.929 * Sets the session key(s) of the function caller to `keys`.
938 * Allows an account to set its session key prior to becoming a validator.930 * Allows an account to set its session key prior to becoming a validator.
939 * This doesn't take effect until the next session.931 * This doesn't take effect until the next session.
940 * 932 *
941 * The dispatch origin of this function must be signed.933 * The dispatch origin of this function must be signed.
942 * 934 *
943 * # <weight>935 * ## Complexity
944 * - Complexity: `O(1)`. Actual cost depends on the number of length of936 * - `O(1)`. Actual cost depends on the number of length of `T::Keys::key_ids()` which is
945 * `T::Keys::key_ids()` which is fixed.937 * fixed.
946 * - DbReads: `origin account`, `T::ValidatorIdOf`, `NextKeys`
947 * - DbWrites: `origin account`, `NextKeys`
948 * - DbReads per key id: `KeyOwner`
949 * - DbWrites per key id: `KeyOwner`
950 * # </weight>938 **/
951 **/
952 setKeys: AugmentedSubmittable<(keys: OpalRuntimeRuntimeCommonSessionKeys | { aura?: any } | string | Uint8Array, proof: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [OpalRuntimeRuntimeCommonSessionKeys, Bytes]>;939 setKeys: AugmentedSubmittable<(keys: OpalRuntimeRuntimeCommonSessionKeys | { aura?: any } | string | Uint8Array, proof: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [OpalRuntimeRuntimeCommonSessionKeys, Bytes]>;
953 /**940 /**
954 * Generic tx941 * Generic tx
962 [key: string]: SubmittableExtrinsicFunction<ApiType>;949 [key: string]: SubmittableExtrinsicFunction<ApiType>;
963 };950 };
964 sudo: {951 sudo: {
965 /**952 /**
966 * Authenticates the current sudo key and sets the given AccountId (`new`) as the new sudo953 * Authenticates the current sudo key and sets the given AccountId (`new`) as the new sudo
967 * key.954 * key.
968 * 955 *
969 * The dispatch origin for this call must be _Signed_.956 * The dispatch origin for this call must be _Signed_.
970 * 957 *
971 * # <weight>958 * ## Complexity
972 * - O(1).959 * - O(1).
973 * - Limited storage reads.
974 * - One DB change.
975 * # </weight>960 **/
976 **/
977 setKey: AugmentedSubmittable<(updated: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;961 setKey: AugmentedSubmittable<(updated: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
978 /**962 /**
979 * Authenticates the sudo key and dispatches a function call with `Root` origin.963 * Authenticates the sudo key and dispatches a function call with `Root` origin.
980 * 964 *
981 * The dispatch origin for this call must be _Signed_.965 * The dispatch origin for this call must be _Signed_.
982 * 966 *
983 * # <weight>967 * ## Complexity
984 * - O(1).968 * - O(1).
985 * - Limited storage reads.
986 * - One DB write (event).
987 * - Weight of derivative `call` execution + 10,000.
988 * # </weight>969 **/
989 **/
990 sudo: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call]>;970 sudo: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call]>;
991 /**971 /**
992 * Authenticates the sudo key and dispatches a function call with `Signed` origin from972 * Authenticates the sudo key and dispatches a function call with `Signed` origin from
993 * a given account.973 * a given account.
994 * 974 *
995 * The dispatch origin for this call must be _Signed_.975 * The dispatch origin for this call must be _Signed_.
996 * 976 *
997 * # <weight>977 * ## Complexity
998 * - O(1).978 * - O(1).
999 * - Limited storage reads.
1000 * - One DB write (event).
1001 * - Weight of derivative `call` execution + 10,000.
1002 * # </weight>979 **/
1003 **/
1004 sudoAs: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Call]>;980 sudoAs: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Call]>;
1005 /**981 /**
1006 * Authenticates the sudo key and dispatches a function call with `Root` origin.982 * Authenticates the sudo key and dispatches a function call with `Root` origin.
1007 * This function does not check the weight of the call, and instead allows the983 * This function does not check the weight of the call, and instead allows the
1008 * Sudo user to specify the weight of the call.984 * Sudo user to specify the weight of the call.
1009 * 985 *
1010 * The dispatch origin for this call must be _Signed_.986 * The dispatch origin for this call must be _Signed_.
1011 * 987 *
1012 * # <weight>988 * ## Complexity
1013 * - O(1).989 * - O(1).
1014 * - The weight of this call is defined by the caller.
1015 * # </weight>990 **/
1016 **/
1017 sudoUncheckedWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, SpWeightsWeightV2Weight]>;991 sudoUncheckedWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, SpWeightsWeightV2Weight]>;
1018 /**992 /**
1019 * Generic tx993 * Generic tx
1032 * Kill some items from storage.1006 * Kill some items from storage.
1033 **/1007 **/
1034 killStorage: AugmentedSubmittable<(keys: Vec<Bytes> | (Bytes | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Bytes>]>;1008 killStorage: AugmentedSubmittable<(keys: Vec<Bytes> | (Bytes | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Bytes>]>;
1035 /**1009 /**
1036 * Make some on-chain remark.1010 * Make some on-chain remark.
1037 * 1011 *
1038 * # <weight>1012 * ## Complexity
1039 * - `O(1)`1013 * - `O(1)`
1040 * # </weight>1014 **/
1041 **/
1042 remark: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;1015 remark: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
1043 /**1016 /**
1044 * Make some on-chain remark and emit event.1017 * Make some on-chain remark and emit event.
1045 **/1018 **/
1046 remarkWithEvent: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;1019 remarkWithEvent: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
1047 /**1020 /**
1048 * Set the new runtime code.1021 * Set the new runtime code.
1049 * 1022 *
1050 * # <weight>1023 * ## Complexity
1051 * - `O(C + S)` where `C` length of `code` and `S` complexity of `can_set_code`1024 * - `O(C + S)` where `C` length of `code` and `S` complexity of `can_set_code`
1052 * - 1 call to `can_set_code`: `O(S)` (calls `sp_io::misc::runtime_version` which is1025 **/
1053 * expensive).
1054 * - 1 storage write (codec `O(C)`).
1055 * - 1 digest item.
1056 * - 1 event.
1057 * The weight of this function is dependent on the runtime, but generally this is very
1058 * expensive. We will treat this as a full block.
1059 * # </weight>
1060 **/
1061 setCode: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;1026 setCode: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
1062 /**1027 /**
1063 * Set the new runtime code without doing any checks of the given `code`.1028 * Set the new runtime code without doing any checks of the given `code`.
1064 * 1029 *
1065 * # <weight>1030 * ## Complexity
1066 * - `O(C)` where `C` length of `code`1031 * - `O(C)` where `C` length of `code`
1067 * - 1 storage write (codec `O(C)`).1032 **/
1068 * - 1 digest item.
1069 * - 1 event.
1070 * The weight of this function is dependent on the runtime. We will treat this as a full
1071 * block. # </weight>
1072 **/
1073 setCodeWithoutChecks: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;1033 setCodeWithoutChecks: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
1074 /**1034 /**
1075 * Set the number of pages in the WebAssembly environment's heap.1035 * Set the number of pages in the WebAssembly environment's heap.
1097 [key: string]: SubmittableExtrinsicFunction<ApiType>;1057 [key: string]: SubmittableExtrinsicFunction<ApiType>;
1098 };1058 };
1099 timestamp: {1059 timestamp: {
1100 /**1060 /**
1101 * Set the current time.1061 * Set the current time.
1102 * 1062 *
1103 * This call should be invoked exactly once per block. It will panic at the finalization1063 * This call should be invoked exactly once per block. It will panic at the finalization
1104 * phase, if this call hasn't been invoked by that time.1064 * phase, if this call hasn't been invoked by that time.
1105 * 1065 *
1106 * The timestamp should be greater than the previous one by the amount specified by1066 * The timestamp should be greater than the previous one by the amount specified by
1107 * `MinimumPeriod`.1067 * `MinimumPeriod`.
1108 * 1068 *
1109 * The dispatch origin for this call must be `Inherent`.1069 * The dispatch origin for this call must be `Inherent`.
1110 * 1070 *
1111 * # <weight>1071 * ## Complexity
1112 * - `O(1)` (Note that implementations of `OnTimestampSet` must also be `O(1)`)1072 * - `O(1)` (Note that implementations of `OnTimestampSet` must also be `O(1)`)
1113 * - 1 storage read and 1 storage mutation (codec `O(1)`). (because of `DidUpdate::take` in1073 * - 1 storage read and 1 storage mutation (codec `O(1)`). (because of `DidUpdate::take` in
1114 * `on_finalize`)1074 * `on_finalize`)
1115 * - 1 event handler `on_timestamp_set`. Must be `O(1)`.1075 * - 1 event handler `on_timestamp_set`. Must be `O(1)`.
1116 * # </weight>1076 **/
1117 **/
1118 set: AugmentedSubmittable<(now: Compact<u64> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u64>]>;1077 set: AugmentedSubmittable<(now: Compact<u64> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u64>]>;
1119 /**1078 /**
1120 * Generic tx1079 * Generic tx
1203 [key: string]: SubmittableExtrinsicFunction<ApiType>;1162 [key: string]: SubmittableExtrinsicFunction<ApiType>;
1204 };1163 };
1205 treasury: {1164 treasury: {
1206 /**1165 /**
1207 * Approve a proposal. At a later time, the proposal will be allocated to the beneficiary1166 * Approve a proposal. At a later time, the proposal will be allocated to the beneficiary
1208 * and the original deposit will be returned.1167 * and the original deposit will be returned.
1209 * 1168 *
1210 * May only be called from `T::ApproveOrigin`.1169 * May only be called from `T::ApproveOrigin`.
1211 * 1170 *
1212 * # <weight>1171 * ## Complexity
1213 * - Complexity: O(1).1172 * - O(1).
1214 * - DbReads: `Proposals`, `Approvals`
1215 * - DbWrite: `Approvals`
1216 * # </weight>1173 **/
1217 **/
1218 approveProposal: AugmentedSubmittable<(proposalId: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>]>;1174 approveProposal: AugmentedSubmittable<(proposalId: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>]>;
1219 /**1175 /**
1220 * Put forward a suggestion for spending. A deposit proportional to the value1176 * Put forward a suggestion for spending. A deposit proportional to the value
1221 * is reserved and slashed if the proposal is rejected. It is returned once the1177 * is reserved and slashed if the proposal is rejected. It is returned once the
1222 * proposal is awarded.1178 * proposal is awarded.
1223 * 1179 *
1224 * # <weight>1180 * ## Complexity
1225 * - Complexity: O(1)1181 * - O(1)
1226 * - DbReads: `ProposalCount`, `origin account`
1227 * - DbWrites: `ProposalCount`, `Proposals`, `origin account`
1228 * # </weight>1182 **/
1229 **/
1230 proposeSpend: AugmentedSubmittable<(value: Compact<u128> | AnyNumber | Uint8Array, beneficiary: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, MultiAddress]>;1183 proposeSpend: AugmentedSubmittable<(value: Compact<u128> | AnyNumber | Uint8Array, beneficiary: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, MultiAddress]>;
1231 /**1184 /**
1232 * Reject a proposed spend. The original deposit will be slashed.1185 * Reject a proposed spend. The original deposit will be slashed.
1233 * 1186 *
1234 * May only be called from `T::RejectOrigin`.1187 * May only be called from `T::RejectOrigin`.
1235 * 1188 *
1236 * # <weight>1189 * ## Complexity
1237 * - Complexity: O(1)1190 * - O(1)
1238 * - DbReads: `Proposals`, `rejected proposer account`
1239 * - DbWrites: `Proposals`, `rejected proposer account`
1240 * # </weight>1191 **/
1241 **/
1242 rejectProposal: AugmentedSubmittable<(proposalId: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>]>;1192 rejectProposal: AugmentedSubmittable<(proposalId: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>]>;
1243 /**1193 /**
1244 * Force a previously approved proposal to be removed from the approval queue.1194 * Force a previously approved proposal to be removed from the approval queue.
1245 * The original deposit will no longer be returned.1195 * The original deposit will no longer be returned.
1246 * 1196 *
1247 * May only be called from `T::RejectOrigin`.1197 * May only be called from `T::RejectOrigin`.
1248 * - `proposal_id`: The index of a proposal1198 * - `proposal_id`: The index of a proposal
1249 * 1199 *
1250 * # <weight>1200 * ## Complexity
1251 * - Complexity: O(A) where `A` is the number of approvals1201 * - O(A) where `A` is the number of approvals
1252 * - Db reads and writes: `Approvals`
1253 * # </weight>1202 *
1254 * 1203 * Errors:
1255 * Errors:1204 * - `ProposalNotApproved`: The `proposal_id` supplied was not found in the approval queue,
1256 * - `ProposalNotApproved`: The `proposal_id` supplied was not found in the approval queue,1205 * i.e., the proposal has not been approved. This could also mean the proposal does not
1257 * i.e., the proposal has not been approved. This could also mean the proposal does not1206 * exist altogether, thus there is no way it would have been approved in the first place.
1258 * exist altogether, thus there is no way it would have been approved in the first place.1207 **/
1259 **/
1260 removeApproval: AugmentedSubmittable<(proposalId: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>]>;1208 removeApproval: AugmentedSubmittable<(proposalId: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>]>;
1261 /**1209 /**
1262 * Propose and approve a spend of treasury funds.1210 * Propose and approve a spend of treasury funds.
1855 * Events:1803 * Events:
1856 * - `OverweightServiced`: On success.1804 * - `OverweightServiced`: On success.
1857 **/1805 **/
1858 serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, u64]>;1806 serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, SpWeightsWeightV2Weight]>;
1859 /**1807 /**
1860 * Suspends all XCM executions for the XCMP queue, regardless of the sender's origin.1808 * Suspends all XCM executions for the XCMP queue, regardless of the sender's origin.
1861 * 1809 *
1892 * - `origin`: Must pass `Root`.1840 * - `origin`: Must pass `Root`.
1893 * - `new`: Desired value for `QueueConfigData.threshold_weight`1841 * - `new`: Desired value for `QueueConfigData.threshold_weight`
1894 **/1842 **/
1895 updateThresholdWeight: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;1843 updateThresholdWeight: AugmentedSubmittable<(updated: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [SpWeightsWeightV2Weight]>;
1896 /**1844 /**
1897 * Overwrites the speed to which the available weight approaches the maximum weight.1845 * Overwrites the speed to which the available weight approaches the maximum weight.
1898 * A lower number results in a faster progression. A value of 1 makes the entire weight available initially.1846 * A lower number results in a faster progression. A value of 1 makes the entire weight available initially.
1899 * 1847 *
1900 * - `origin`: Must pass `Root`.1848 * - `origin`: Must pass `Root`.
1901 * - `new`: Desired value for `QueueConfigData.weight_restrict_decay`.1849 * - `new`: Desired value for `QueueConfigData.weight_restrict_decay`.
1902 **/1850 **/
1903 updateWeightRestrictDecay: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;1851 updateWeightRestrictDecay: AugmentedSubmittable<(updated: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [SpWeightsWeightV2Weight]>;
1904 /**1852 /**
1905 * Overwrite the maximum amount of weight any individual message may consume.1853 * Overwrite the maximum amount of weight any individual message may consume.
1906 * Messages above this weight go into the overweight queue and may only be serviced explicitly.1854 * Messages above this weight go into the overweight queue and may only be serviced explicitly.
1907 * 1855 *
1908 * - `origin`: Must pass `Root`.1856 * - `origin`: Must pass `Root`.
1909 * - `new`: Desired value for `QueueConfigData.xcmp_max_individual_weight`.1857 * - `new`: Desired value for `QueueConfigData.xcmp_max_individual_weight`.
1910 **/1858 **/
1911 updateXcmpMaxIndividualWeight: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;1859 updateXcmpMaxIndividualWeight: AugmentedSubmittable<(updated: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [SpWeightsWeightV2Weight]>;
1912 /**1860 /**
1913 * Generic tx1861 * Generic tx
1914 **/1862 **/
1929 * by the network, and if the receiving chain would handle1877 * by the network, and if the receiving chain would handle
1930 * messages correctly.1878 * messages correctly.
1931 **/1879 **/
1932 transfer: AugmentedSubmittable<(currencyId: PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletForeignAssetsAssetIds, u128, XcmVersionedMultiLocation, XcmV2WeightLimit]>;1880 transfer: AugmentedSubmittable<(currencyId: PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletForeignAssetsAssetIds, u128, XcmVersionedMultiLocation, XcmV3WeightLimit]>;
1933 /**1881 /**
1934 * Transfer `MultiAsset`.1882 * Transfer `MultiAsset`.
1935 * 1883 *
1944 * by the network, and if the receiving chain would handle1892 * by the network, and if the receiving chain would handle
1945 * messages correctly.1893 * messages correctly.
1946 **/1894 **/
1947 transferMultiasset: AugmentedSubmittable<(asset: XcmVersionedMultiAsset | { V0: any } | { V1: any } | string | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAsset, XcmVersionedMultiLocation, XcmV2WeightLimit]>;1895 transferMultiasset: AugmentedSubmittable<(asset: XcmVersionedMultiAsset | { V2: any } | { V3: any } | string | Uint8Array, dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAsset, XcmVersionedMultiLocation, XcmV3WeightLimit]>;
1948 /**1896 /**
1949 * Transfer several `MultiAsset` specifying the item to be used as fee1897 * Transfer several `MultiAsset` specifying the item to be used as fee
1950 * 1898 *
1962 * by the network, and if the receiving chain would handle1910 * by the network, and if the receiving chain would handle
1963 * messages correctly.1911 * messages correctly.
1964 **/1912 **/
1965 transferMultiassets: AugmentedSubmittable<(assets: XcmVersionedMultiAssets | { V0: any } | { V1: any } | string | Uint8Array, feeItem: u32 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAssets, u32, XcmVersionedMultiLocation, XcmV2WeightLimit]>;1913 transferMultiassets: AugmentedSubmittable<(assets: XcmVersionedMultiAssets | { V2: any } | { V3: any } | string | Uint8Array, feeItem: u32 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAssets, u32, XcmVersionedMultiLocation, XcmV3WeightLimit]>;
1966 /**1914 /**
1967 * Transfer `MultiAsset` specifying the fee and amount as separate.1915 * Transfer `MultiAsset` specifying the fee and amount as separate.
1968 * 1916 *
1986 * by the network, and if the receiving chain would handle1934 * by the network, and if the receiving chain would handle
1987 * messages correctly.1935 * messages correctly.
1988 **/1936 **/
1989 transferMultiassetWithFee: AugmentedSubmittable<(asset: XcmVersionedMultiAsset | { V0: any } | { V1: any } | string | Uint8Array, fee: XcmVersionedMultiAsset | { V0: any } | { V1: any } | string | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAsset, XcmVersionedMultiAsset, XcmVersionedMultiLocation, XcmV2WeightLimit]>;1937 transferMultiassetWithFee: AugmentedSubmittable<(asset: XcmVersionedMultiAsset | { V2: any } | { V3: any } | string | Uint8Array, fee: XcmVersionedMultiAsset | { V2: any } | { V3: any } | string | Uint8Array, dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAsset, XcmVersionedMultiAsset, XcmVersionedMultiLocation, XcmV3WeightLimit]>;
1990 /**1938 /**
1991 * Transfer several currencies specifying the item to be used as fee1939 * Transfer several currencies specifying the item to be used as fee
1992 * 1940 *
2004 * by the network, and if the receiving chain would handle1952 * by the network, and if the receiving chain would handle
2005 * messages correctly.1953 * messages correctly.
2006 **/1954 **/
2007 transferMulticurrencies: AugmentedSubmittable<(currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>> | ([PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, u128 | AnyNumber | Uint8Array])[], feeItem: u32 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>, u32, XcmVersionedMultiLocation, XcmV2WeightLimit]>;1955 transferMulticurrencies: AugmentedSubmittable<(currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>> | ([PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, u128 | AnyNumber | Uint8Array])[], feeItem: u32 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>, u32, XcmVersionedMultiLocation, XcmV3WeightLimit]>;
2008 /**1956 /**
2009 * Transfer native currencies specifying the fee and amount as1957 * Transfer native currencies specifying the fee and amount as
2010 * separate.1958 * separate.
2028 * by the network, and if the receiving chain would handle1976 * by the network, and if the receiving chain would handle
2029 * messages correctly.1977 * messages correctly.
2030 **/1978 **/
2031 transferWithFee: AugmentedSubmittable<(currencyId: PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, fee: u128 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletForeignAssetsAssetIds, u128, u128, XcmVersionedMultiLocation, XcmV2WeightLimit]>;1979 transferWithFee: AugmentedSubmittable<(currencyId: PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, fee: u128 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletForeignAssetsAssetIds, u128, u128, XcmVersionedMultiLocation, XcmV3WeightLimit]>;
2032 /**1980 /**
2033 * Generic tx1981 * Generic tx
2034 **/1982 **/
modifiedtests/src/interfaces/augment-api.tsdiffbeforeafterboth
1// Auto-generated via `yarn polkadot-types-from-chain`, do not edit1// Auto-generated via `yarn polkadot-types-from-chain`, do not edit
2/* eslint-disable */2/* eslint-disable */
33
4import './augment-api-consts';4import './augment-api-consts.js';
5import './augment-api-errors';5import './augment-api-errors.js';
6import './augment-api-events';6import './augment-api-events.js';
7import './augment-api-query';7import './augment-api-query.js';
8import './augment-api-tx';8import './augment-api-tx.js';
9import './augment-api-rpc';9import './augment-api-rpc.js';
10import './augment-api-runtime';10import './augment-api-runtime.js';
1111
modifiedtests/src/interfaces/augment-types.tsdiffbeforeafterboth
5// this is required to allow for ambient/previous definitions5// this is required to allow for ambient/previous definitions
6import '@polkadot/types/types/registry';6import '@polkadot/types/types/registry';
77
8import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletAuthorshipCall, PalletAuthorshipError, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';8import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from './default';
9import type { Data, StorageKey } from '@polkadot/types';9import type { Data, StorageKey } from '@polkadot/types';
10import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';10import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, ISize, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, isize, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
12import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';12import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';
13import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';13import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';
14import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';14import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';
15import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';15import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';
16import type { AllowedSlots, BabeAuthorityWeight, BabeBlockWeight, BabeEpochConfiguration, BabeEquivocationProof, BabeGenesisConfiguration, BabeGenesisConfigurationV1, BabeWeight, Epoch, EpochAuthorship, MaybeRandomness, MaybeVrf, NextConfigDescriptor, NextConfigDescriptorV1, OpaqueKeyOwnershipProof, Randomness, RawBabePreDigest, RawBabePreDigestCompat, RawBabePreDigestPrimary, RawBabePreDigestPrimaryTo159, RawBabePreDigestSecondaryPlain, RawBabePreDigestSecondaryTo159, RawBabePreDigestSecondaryVRF, RawBabePreDigestTo159, SlotNumber, VrfData, VrfOutput, VrfProof } from '@polkadot/types/interfaces/babe';16import type { AllowedSlots, BabeAuthorityWeight, BabeBlockWeight, BabeEpochConfiguration, BabeEquivocationProof, BabeGenesisConfiguration, BabeGenesisConfigurationV1, BabeWeight, Epoch, EpochAuthorship, MaybeRandomness, MaybeVrf, NextConfigDescriptor, NextConfigDescriptorV1, OpaqueKeyOwnershipProof, Randomness, RawBabePreDigest, RawBabePreDigestCompat, RawBabePreDigestPrimary, RawBabePreDigestPrimaryTo159, RawBabePreDigestSecondaryPlain, RawBabePreDigestSecondaryTo159, RawBabePreDigestSecondaryVRF, RawBabePreDigestTo159, SlotNumber, VrfData, VrfOutput, VrfProof } from '@polkadot/types/interfaces/babe';
17import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';17import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';
18import type { BeefyAuthoritySet, BeefyCommitment, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, MmrRootHash, ValidatorSet, ValidatorSetId } from '@polkadot/types/interfaces/beefy';18import type { BeefyAuthoritySet, BeefyCommitment, BeefyEquivocationProof, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, BeefyVoteMessage, MmrRootHash, ValidatorSet, ValidatorSetId } from '@polkadot/types/interfaces/beefy';
19import type { BenchmarkBatch, BenchmarkConfig, BenchmarkList, BenchmarkMetadata, BenchmarkParameter, BenchmarkResult } from '@polkadot/types/interfaces/benchmark';19import type { BenchmarkBatch, BenchmarkConfig, BenchmarkList, BenchmarkMetadata, BenchmarkParameter, BenchmarkResult } from '@polkadot/types/interfaces/benchmark';
20import type { CheckInherentsResult, InherentData, InherentIdentifier } from '@polkadot/types/interfaces/blockbuilder';20import type { CheckInherentsResult, InherentData, InherentIdentifier } from '@polkadot/types/interfaces/blockbuilder';
21import type { BridgeMessageId, BridgedBlockHash, BridgedBlockNumber, BridgedHeader, CallOrigin, ChainId, DeliveredMessages, DispatchFeePayment, InboundLaneData, InboundRelayer, InitializationData, LaneId, MessageData, MessageKey, MessageNonce, MessagesDeliveryProofOf, MessagesProofOf, OperatingMode, OutboundLaneData, OutboundMessageFee, OutboundPayload, Parameter, RelayerId, UnrewardedRelayer, UnrewardedRelayersState } from '@polkadot/types/interfaces/bridges';21import type { BridgeMessageId, BridgedBlockHash, BridgedBlockNumber, BridgedHeader, CallOrigin, ChainId, DeliveredMessages, DispatchFeePayment, InboundLaneData, InboundRelayer, InitializationData, LaneId, MessageData, MessageKey, MessageNonce, MessagesDeliveryProofOf, MessagesProofOf, OperatingMode, OutboundLaneData, OutboundMessageFee, OutboundPayload, Parameter, RelayerId, UnrewardedRelayer, UnrewardedRelayersState } from '@polkadot/types/interfaces/bridges';
42import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';42import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';
43import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';43import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';
44import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';44import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';
45import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';45import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrHash, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';
46import type { NpApiError } from '@polkadot/types/interfaces/nompools';46import type { NftCollectionId, NftItemId } from '@polkadot/types/interfaces/nfts';
47import type { NpApiError, NpPoolId } from '@polkadot/types/interfaces/nompools';
47import type { StorageKind } from '@polkadot/types/interfaces/offchain';48import type { StorageKind } from '@polkadot/types/interfaces/offchain';
48import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';49import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';
49import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';50import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExecutorParam, ExecutorParams, ExecutorParamsHash, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, PvfExecTimeoutKind, PvfPrepTimeoutKind, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';
50import type { FeeDetails, InclusionFee, RuntimeDispatchInfo, RuntimeDispatchInfoV1, RuntimeDispatchInfoV2 } from '@polkadot/types/interfaces/payment';51import type { FeeDetails, InclusionFee, RuntimeDispatchInfo, RuntimeDispatchInfoV1, RuntimeDispatchInfoV2 } from '@polkadot/types/interfaces/payment';
51import type { Approvals } from '@polkadot/types/interfaces/poll';52import type { Approvals } from '@polkadot/types/interfaces/poll';
52import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';53import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';
53import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';54import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';
54import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';55import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';
55import type { RpcMethods } from '@polkadot/types/interfaces/rpc';56import type { RpcMethods } from '@polkadot/types/interfaces/rpc';
56import type { AccountId, AccountId20, AccountId32, AccountId33, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeDbWeight, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier, WeightV1, WeightV2 } from '@polkadot/types/interfaces/runtime';57import type { AccountId, AccountId20, AccountId32, AccountId33, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeCall, RuntimeDbWeight, RuntimeEvent, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier, WeightV0, WeightV1, WeightV2 } from '@polkadot/types/interfaces/runtime';
57import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';58import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';
58import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';59import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';
59import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';60import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';
151 BalanceStatus: BalanceStatus;152 BalanceStatus: BalanceStatus;
152 BeefyAuthoritySet: BeefyAuthoritySet;153 BeefyAuthoritySet: BeefyAuthoritySet;
153 BeefyCommitment: BeefyCommitment;154 BeefyCommitment: BeefyCommitment;
155 BeefyEquivocationProof: BeefyEquivocationProof;
154 BeefyId: BeefyId;156 BeefyId: BeefyId;
155 BeefyKey: BeefyKey;157 BeefyKey: BeefyKey;
156 BeefyNextAuthoritySet: BeefyNextAuthoritySet;158 BeefyNextAuthoritySet: BeefyNextAuthoritySet;
157 BeefyPayload: BeefyPayload;159 BeefyPayload: BeefyPayload;
158 BeefyPayloadId: BeefyPayloadId;160 BeefyPayloadId: BeefyPayloadId;
159 BeefySignedCommitment: BeefySignedCommitment;161 BeefySignedCommitment: BeefySignedCommitment;
162 BeefyVoteMessage: BeefyVoteMessage;
160 BenchmarkBatch: BenchmarkBatch;163 BenchmarkBatch: BenchmarkBatch;
161 BenchmarkConfig: BenchmarkConfig;164 BenchmarkConfig: BenchmarkConfig;
162 BenchmarkList: BenchmarkList;165 BenchmarkList: BenchmarkList;
479 EvmLog: EvmLog;482 EvmLog: EvmLog;
480 EvmVicinity: EvmVicinity;483 EvmVicinity: EvmVicinity;
481 ExecReturnValue: ExecReturnValue;484 ExecReturnValue: ExecReturnValue;
485 ExecutorParam: ExecutorParam;
486 ExecutorParams: ExecutorParams;
487 ExecutorParamsHash: ExecutorParamsHash;
482 ExitError: ExitError;488 ExitError: ExitError;
483 ExitFatal: ExitFatal;489 ExitFatal: ExitFatal;
484 ExitReason: ExitReason;490 ExitReason: ExitReason;
650 InteriorMultiLocation: InteriorMultiLocation;656 InteriorMultiLocation: InteriorMultiLocation;
651 InvalidDisputeStatementKind: InvalidDisputeStatementKind;657 InvalidDisputeStatementKind: InvalidDisputeStatementKind;
652 InvalidTransaction: InvalidTransaction;658 InvalidTransaction: InvalidTransaction;
659 isize: isize;
660 ISize: ISize;
653 Json: Json;661 Json: Json;
654 Junction: Junction;662 Junction: Junction;
655 Junctions: Junctions;663 Junctions: Junctions;
708 MmrBatchProof: MmrBatchProof;716 MmrBatchProof: MmrBatchProof;
709 MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;717 MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;
710 MmrError: MmrError;718 MmrError: MmrError;
719 MmrHash: MmrHash;
711 MmrLeafBatchProof: MmrLeafBatchProof;720 MmrLeafBatchProof: MmrLeafBatchProof;
712 MmrLeafIndex: MmrLeafIndex;721 MmrLeafIndex: MmrLeafIndex;
713 MmrLeafProof: MmrLeafProof;722 MmrLeafProof: MmrLeafProof;
757 NextAuthority: NextAuthority;766 NextAuthority: NextAuthority;
758 NextConfigDescriptor: NextConfigDescriptor;767 NextConfigDescriptor: NextConfigDescriptor;
759 NextConfigDescriptorV1: NextConfigDescriptorV1;768 NextConfigDescriptorV1: NextConfigDescriptorV1;
769 NftCollectionId: NftCollectionId;
770 NftItemId: NftItemId;
760 NodeRole: NodeRole;771 NodeRole: NodeRole;
761 Nominations: Nominations;772 Nominations: Nominations;
762 NominatorIndex: NominatorIndex;773 NominatorIndex: NominatorIndex;
763 NominatorIndexCompact: NominatorIndexCompact;774 NominatorIndexCompact: NominatorIndexCompact;
764 NotConnectedPeer: NotConnectedPeer;775 NotConnectedPeer: NotConnectedPeer;
765 NpApiError: NpApiError;776 NpApiError: NpApiError;
777 NpPoolId: NpPoolId;
766 Null: Null;778 Null: Null;
767 OccupiedCore: OccupiedCore;779 OccupiedCore: OccupiedCore;
768 OccupiedCoreAssumption: OccupiedCoreAssumption;780 OccupiedCoreAssumption: OccupiedCoreAssumption;
819 PalletAppPromotionCall: PalletAppPromotionCall;831 PalletAppPromotionCall: PalletAppPromotionCall;
820 PalletAppPromotionError: PalletAppPromotionError;832 PalletAppPromotionError: PalletAppPromotionError;
821 PalletAppPromotionEvent: PalletAppPromotionEvent;833 PalletAppPromotionEvent: PalletAppPromotionEvent;
822 PalletAuthorshipCall: PalletAuthorshipCall;
823 PalletAuthorshipError: PalletAuthorshipError;
824 PalletAuthorshipUncleEntryItem: PalletAuthorshipUncleEntryItem;
825 PalletBalancesAccountData: PalletBalancesAccountData;834 PalletBalancesAccountData: PalletBalancesAccountData;
826 PalletBalancesBalanceLock: PalletBalancesBalanceLock;835 PalletBalancesBalanceLock: PalletBalancesBalanceLock;
827 PalletBalancesCall: PalletBalancesCall;836 PalletBalancesCall: PalletBalancesCall;
852 PalletEventMetadataV14: PalletEventMetadataV14;861 PalletEventMetadataV14: PalletEventMetadataV14;
853 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;862 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
854 PalletEvmCall: PalletEvmCall;863 PalletEvmCall: PalletEvmCall;
864 PalletEvmCoderSubstrateCall: PalletEvmCoderSubstrateCall;
855 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;865 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;
866 PalletEvmContractHelpersCall: PalletEvmContractHelpersCall;
856 PalletEvmContractHelpersError: PalletEvmContractHelpersError;867 PalletEvmContractHelpersError: PalletEvmContractHelpersError;
857 PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;868 PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;
858 PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;869 PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;
921 PalletXcmCall: PalletXcmCall;932 PalletXcmCall: PalletXcmCall;
922 PalletXcmError: PalletXcmError;933 PalletXcmError: PalletXcmError;
923 PalletXcmEvent: PalletXcmEvent;934 PalletXcmEvent: PalletXcmEvent;
935 PalletXcmQueryStatus: PalletXcmQueryStatus;
936 PalletXcmRemoteLockedFungibleRecord: PalletXcmRemoteLockedFungibleRecord;
937 PalletXcmVersionMigrationStage: PalletXcmVersionMigrationStage;
924 ParachainDispatchOrigin: ParachainDispatchOrigin;938 ParachainDispatchOrigin: ParachainDispatchOrigin;
939 ParachainInfoCall: ParachainInfoCall;
925 ParachainInherentData: ParachainInherentData;940 ParachainInherentData: ParachainInherentData;
926 ParachainProposal: ParachainProposal;941 ParachainProposal: ParachainProposal;
927 ParachainsInherentData: ParachainsInherentData;942 ParachainsInherentData: ParachainsInherentData;
991 ProxyState: ProxyState;1006 ProxyState: ProxyState;
992 ProxyType: ProxyType;1007 ProxyType: ProxyType;
993 PvfCheckStatement: PvfCheckStatement;1008 PvfCheckStatement: PvfCheckStatement;
1009 PvfExecTimeoutKind: PvfExecTimeoutKind;
1010 PvfPrepTimeoutKind: PvfPrepTimeoutKind;
994 QueryId: QueryId;1011 QueryId: QueryId;
995 QueryStatus: QueryStatus;1012 QueryStatus: QueryStatus;
996 QueueConfigData: QueueConfigData;1013 QueueConfigData: QueueConfigData;
1056 RoundSnapshot: RoundSnapshot;1073 RoundSnapshot: RoundSnapshot;
1057 RoundState: RoundState;1074 RoundState: RoundState;
1058 RpcMethods: RpcMethods;1075 RpcMethods: RpcMethods;
1076 RuntimeCall: RuntimeCall;
1059 RuntimeDbWeight: RuntimeDbWeight;1077 RuntimeDbWeight: RuntimeDbWeight;
1060 RuntimeDispatchInfo: RuntimeDispatchInfo;1078 RuntimeDispatchInfo: RuntimeDispatchInfo;
1061 RuntimeDispatchInfoV1: RuntimeDispatchInfoV1;1079 RuntimeDispatchInfoV1: RuntimeDispatchInfoV1;
1062 RuntimeDispatchInfoV2: RuntimeDispatchInfoV2;1080 RuntimeDispatchInfoV2: RuntimeDispatchInfoV2;
1081 RuntimeEvent: RuntimeEvent;
1063 RuntimeVersion: RuntimeVersion;1082 RuntimeVersion: RuntimeVersion;
1064 RuntimeVersionApi: RuntimeVersionApi;1083 RuntimeVersionApi: RuntimeVersionApi;
1065 RuntimeVersionPartial: RuntimeVersionPartial;1084 RuntimeVersionPartial: RuntimeVersionPartial;
1183 SpCoreSr25519Public: SpCoreSr25519Public;1202 SpCoreSr25519Public: SpCoreSr25519Public;
1184 SpCoreSr25519Signature: SpCoreSr25519Signature;1203 SpCoreSr25519Signature: SpCoreSr25519Signature;
1185 SpecVersion: SpecVersion;1204 SpecVersion: SpecVersion;
1186 SpRuntimeBlakeTwo256: SpRuntimeBlakeTwo256;
1187 SpRuntimeDigest: SpRuntimeDigest;1205 SpRuntimeDigest: SpRuntimeDigest;
1188 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1206 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
1189 SpRuntimeDispatchError: SpRuntimeDispatchError;1207 SpRuntimeDispatchError: SpRuntimeDispatchError;
1190 SpRuntimeHeader: SpRuntimeHeader;
1191 SpRuntimeModuleError: SpRuntimeModuleError;1208 SpRuntimeModuleError: SpRuntimeModuleError;
1192 SpRuntimeMultiSignature: SpRuntimeMultiSignature;1209 SpRuntimeMultiSignature: SpRuntimeMultiSignature;
1193 SpRuntimeTokenError: SpRuntimeTokenError;1210 SpRuntimeTokenError: SpRuntimeTokenError;
1390 WeightMultiplier: WeightMultiplier;1407 WeightMultiplier: WeightMultiplier;
1391 WeightPerClass: WeightPerClass;1408 WeightPerClass: WeightPerClass;
1392 WeightToFeeCoefficient: WeightToFeeCoefficient;1409 WeightToFeeCoefficient: WeightToFeeCoefficient;
1410 WeightV0: WeightV0;
1393 WeightV1: WeightV1;1411 WeightV1: WeightV1;
1394 WeightV2: WeightV2;1412 WeightV2: WeightV2;
1395 WildFungibility: WildFungibility;1413 WildFungibility: WildFungibility;
1422 XcmOriginKind: XcmOriginKind;1440 XcmOriginKind: XcmOriginKind;
1423 XcmpMessageFormat: XcmpMessageFormat;1441 XcmpMessageFormat: XcmpMessageFormat;
1424 XcmV0: XcmV0;1442 XcmV0: XcmV0;
1425 XcmV0Junction: XcmV0Junction;
1426 XcmV0JunctionBodyId: XcmV0JunctionBodyId;
1427 XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;
1428 XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;
1429 XcmV0MultiAsset: XcmV0MultiAsset;
1430 XcmV0MultiLocation: XcmV0MultiLocation;
1431 XcmV0Order: XcmV0Order;
1432 XcmV0OriginKind: XcmV0OriginKind;
1433 XcmV0Response: XcmV0Response;
1434 XcmV0Xcm: XcmV0Xcm;
1435 XcmV1: XcmV1;1443 XcmV1: XcmV1;
1436 XcmV1Junction: XcmV1Junction;
1437 XcmV1MultiAsset: XcmV1MultiAsset;
1438 XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;
1439 XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;
1440 XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;
1441 XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;
1442 XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;
1443 XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;
1444 XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;
1445 XcmV1MultiLocation: XcmV1MultiLocation;
1446 XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;
1447 XcmV1Order: XcmV1Order;
1448 XcmV1Response: XcmV1Response;
1449 XcmV1Xcm: XcmV1Xcm;
1450 XcmV2: XcmV2;1444 XcmV2: XcmV2;
1445 XcmV2BodyId: XcmV2BodyId;
1446 XcmV2BodyPart: XcmV2BodyPart;
1451 XcmV2Instruction: XcmV2Instruction;1447 XcmV2Instruction: XcmV2Instruction;
1448 XcmV2Junction: XcmV2Junction;
1449 XcmV2MultiAsset: XcmV2MultiAsset;
1450 XcmV2MultiassetAssetId: XcmV2MultiassetAssetId;
1451 XcmV2MultiassetAssetInstance: XcmV2MultiassetAssetInstance;
1452 XcmV2MultiassetFungibility: XcmV2MultiassetFungibility;
1453 XcmV2MultiassetMultiAssetFilter: XcmV2MultiassetMultiAssetFilter;
1454 XcmV2MultiassetMultiAssets: XcmV2MultiassetMultiAssets;
1455 XcmV2MultiassetWildFungibility: XcmV2MultiassetWildFungibility;
1456 XcmV2MultiassetWildMultiAsset: XcmV2MultiassetWildMultiAsset;
1457 XcmV2MultiLocation: XcmV2MultiLocation;
1458 XcmV2MultilocationJunctions: XcmV2MultilocationJunctions;
1459 XcmV2NetworkId: XcmV2NetworkId;
1460 XcmV2OriginKind: XcmV2OriginKind;
1452 XcmV2Response: XcmV2Response;1461 XcmV2Response: XcmV2Response;
1453 XcmV2TraitsError: XcmV2TraitsError;1462 XcmV2TraitsError: XcmV2TraitsError;
1454 XcmV2TraitsOutcome: XcmV2TraitsOutcome;
1455 XcmV2WeightLimit: XcmV2WeightLimit;1463 XcmV2WeightLimit: XcmV2WeightLimit;
1456 XcmV2Xcm: XcmV2Xcm;1464 XcmV2Xcm: XcmV2Xcm;
1465 XcmV3Instruction: XcmV3Instruction;
1466 XcmV3Junction: XcmV3Junction;
1467 XcmV3JunctionBodyId: XcmV3JunctionBodyId;
1468 XcmV3JunctionBodyPart: XcmV3JunctionBodyPart;
1469 XcmV3JunctionNetworkId: XcmV3JunctionNetworkId;
1470 XcmV3Junctions: XcmV3Junctions;
1471 XcmV3MaybeErrorCode: XcmV3MaybeErrorCode;
1472 XcmV3MultiAsset: XcmV3MultiAsset;
1473 XcmV3MultiassetAssetId: XcmV3MultiassetAssetId;
1474 XcmV3MultiassetAssetInstance: XcmV3MultiassetAssetInstance;
1475 XcmV3MultiassetFungibility: XcmV3MultiassetFungibility;
1476 XcmV3MultiassetMultiAssetFilter: XcmV3MultiassetMultiAssetFilter;
1477 XcmV3MultiassetMultiAssets: XcmV3MultiassetMultiAssets;
1478 XcmV3MultiassetWildFungibility: XcmV3MultiassetWildFungibility;
1479 XcmV3MultiassetWildMultiAsset: XcmV3MultiassetWildMultiAsset;
1480 XcmV3MultiLocation: XcmV3MultiLocation;
1481 XcmV3PalletInfo: XcmV3PalletInfo;
1482 XcmV3QueryResponseInfo: XcmV3QueryResponseInfo;
1483 XcmV3Response: XcmV3Response;
1484 XcmV3TraitsError: XcmV3TraitsError;
1485 XcmV3TraitsOutcome: XcmV3TraitsOutcome;
1486 XcmV3WeightLimit: XcmV3WeightLimit;
1487 XcmV3Xcm: XcmV3Xcm;
1457 XcmVersion: XcmVersion;1488 XcmVersion: XcmVersion;
1489 XcmVersionedAssetId: XcmVersionedAssetId;
1458 XcmVersionedMultiAsset: XcmVersionedMultiAsset;1490 XcmVersionedMultiAsset: XcmVersionedMultiAsset;
1459 XcmVersionedMultiAssets: XcmVersionedMultiAssets;1491 XcmVersionedMultiAssets: XcmVersionedMultiAssets;
1460 XcmVersionedMultiLocation: XcmVersionedMultiLocation;1492 XcmVersionedMultiLocation: XcmVersionedMultiLocation;
1493 XcmVersionedResponse: XcmVersionedResponse;
1461 XcmVersionedXcm: XcmVersionedXcm;1494 XcmVersionedXcm: XcmVersionedXcm;
1462 } // InterfaceTypes1495 } // InterfaceTypes
1463} // declare module1496} // declare module
modifiedtests/src/interfaces/default/index.tsdiffbeforeafterboth
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2/* eslint-disable */2/* eslint-disable */
33
4export * from './types';4export * from './types.js';
55
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
12 readonly isServiceOverweight: boolean;12 readonly isServiceOverweight: boolean;
13 readonly asServiceOverweight: {13 readonly asServiceOverweight: {
14 readonly index: u64;14 readonly index: u64;
15 readonly weightLimit: u64;15 readonly weightLimit: SpWeightsWeightV2Weight;
16 } & Struct;16 } & Struct;
17 readonly type: 'ServiceOverweight';17 readonly type: 'ServiceOverweight';
18}18}
42 readonly isExecutedDownward: boolean;42 readonly isExecutedDownward: boolean;
43 readonly asExecutedDownward: {43 readonly asExecutedDownward: {
44 readonly messageId: U8aFixed;44 readonly messageId: U8aFixed;
45 readonly outcome: XcmV2TraitsOutcome;45 readonly outcome: XcmV3TraitsOutcome;
46 } & Struct;46 } & Struct;
47 readonly isWeightExhausted: boolean;47 readonly isWeightExhausted: boolean;
48 readonly asWeightExhausted: {48 readonly asWeightExhausted: {
61 readonly overweightIndex: u64;61 readonly overweightIndex: u64;
62 readonly weightUsed: SpWeightsWeightV2Weight;62 readonly weightUsed: SpWeightsWeightV2Weight;
63 } & Struct;63 } & Struct;
64 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';64 readonly isMaxMessagesExhausted: boolean;
65 readonly asMaxMessagesExhausted: {
66 readonly messageId: U8aFixed;
67 } & Struct;
68 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced' | 'MaxMessagesExhausted';
65}69}
6670
67/** @name CumulusPalletDmpQueuePageIndexData */71/** @name CumulusPalletDmpQueuePageIndexData */
126 readonly weightUsed: SpWeightsWeightV2Weight;130 readonly weightUsed: SpWeightsWeightV2Weight;
127 readonly dmqHead: H256;131 readonly dmqHead: H256;
128 } & Struct;132 } & Struct;
129 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';133 readonly isUpwardMessageSent: boolean;
134 readonly asUpwardMessageSent: {
135 readonly messageHash: Option<U8aFixed>;
136 } & Struct;
137 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed' | 'UpwardMessageSent';
130}138}
131139
132/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot */140/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot */
150 readonly isUnsupportedVersion: boolean;158 readonly isUnsupportedVersion: boolean;
151 readonly asUnsupportedVersion: U8aFixed;159 readonly asUnsupportedVersion: U8aFixed;
152 readonly isExecutedDownward: boolean;160 readonly isExecutedDownward: boolean;
153 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;161 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV3TraitsOutcome]>;
154 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';162 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
155}163}
156164
159 readonly isServiceOverweight: boolean;167 readonly isServiceOverweight: boolean;
160 readonly asServiceOverweight: {168 readonly asServiceOverweight: {
161 readonly index: u64;169 readonly index: u64;
162 readonly weightLimit: u64;170 readonly weightLimit: SpWeightsWeightV2Weight;
163 } & Struct;171 } & Struct;
164 readonly isSuspendXcmExecution: boolean;172 readonly isSuspendXcmExecution: boolean;
165 readonly isResumeXcmExecution: boolean;173 readonly isResumeXcmExecution: boolean;
177 } & Struct;185 } & Struct;
178 readonly isUpdateThresholdWeight: boolean;186 readonly isUpdateThresholdWeight: boolean;
179 readonly asUpdateThresholdWeight: {187 readonly asUpdateThresholdWeight: {
180 readonly new_: u64;188 readonly new_: SpWeightsWeightV2Weight;
181 } & Struct;189 } & Struct;
182 readonly isUpdateWeightRestrictDecay: boolean;190 readonly isUpdateWeightRestrictDecay: boolean;
183 readonly asUpdateWeightRestrictDecay: {191 readonly asUpdateWeightRestrictDecay: {
184 readonly new_: u64;192 readonly new_: SpWeightsWeightV2Weight;
185 } & Struct;193 } & Struct;
186 readonly isUpdateXcmpMaxIndividualWeight: boolean;194 readonly isUpdateXcmpMaxIndividualWeight: boolean;
187 readonly asUpdateXcmpMaxIndividualWeight: {195 readonly asUpdateXcmpMaxIndividualWeight: {
188 readonly new_: u64;196 readonly new_: SpWeightsWeightV2Weight;
189 } & Struct;197 } & Struct;
190 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';198 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
191}199}
204export interface CumulusPalletXcmpQueueEvent extends Enum {212export interface CumulusPalletXcmpQueueEvent extends Enum {
205 readonly isSuccess: boolean;213 readonly isSuccess: boolean;
206 readonly asSuccess: {214 readonly asSuccess: {
207 readonly messageHash: Option<H256>;215 readonly messageHash: Option<U8aFixed>;
208 readonly weight: SpWeightsWeightV2Weight;216 readonly weight: SpWeightsWeightV2Weight;
209 } & Struct;217 } & Struct;
210 readonly isFail: boolean;218 readonly isFail: boolean;
211 readonly asFail: {219 readonly asFail: {
212 readonly messageHash: Option<H256>;220 readonly messageHash: Option<U8aFixed>;
213 readonly error: XcmV2TraitsError;221 readonly error: XcmV3TraitsError;
214 readonly weight: SpWeightsWeightV2Weight;222 readonly weight: SpWeightsWeightV2Weight;
215 } & Struct;223 } & Struct;
216 readonly isBadVersion: boolean;224 readonly isBadVersion: boolean;
217 readonly asBadVersion: {225 readonly asBadVersion: {
218 readonly messageHash: Option<H256>;226 readonly messageHash: Option<U8aFixed>;
219 } & Struct;227 } & Struct;
220 readonly isBadFormat: boolean;228 readonly isBadFormat: boolean;
221 readonly asBadFormat: {229 readonly asBadFormat: {
222 readonly messageHash: Option<H256>;230 readonly messageHash: Option<U8aFixed>;
223 } & Struct;231 } & Struct;
224 readonly isUpwardMessageSent: boolean;
225 readonly asUpwardMessageSent: {
226 readonly messageHash: Option<H256>;
227 } & Struct;
228 readonly isXcmpMessageSent: boolean;232 readonly isXcmpMessageSent: boolean;
229 readonly asXcmpMessageSent: {233 readonly asXcmpMessageSent: {
230 readonly messageHash: Option<H256>;234 readonly messageHash: Option<U8aFixed>;
231 } & Struct;235 } & Struct;
232 readonly isOverweightEnqueued: boolean;236 readonly isOverweightEnqueued: boolean;
233 readonly asOverweightEnqueued: {237 readonly asOverweightEnqueued: {
241 readonly index: u64;245 readonly index: u64;
242 readonly used: SpWeightsWeightV2Weight;246 readonly used: SpWeightsWeightV2Weight;
243 } & Struct;247 } & Struct;
244 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';248 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
245}249}
246250
247/** @name CumulusPalletXcmpQueueInboundChannelDetails */251/** @name CumulusPalletXcmpQueueInboundChannelDetails */
853 readonly currencyId: PalletForeignAssetsAssetIds;857 readonly currencyId: PalletForeignAssetsAssetIds;
854 readonly who: AccountId32;858 readonly who: AccountId32;
855 } & Struct;859 } & Struct;
856 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';860 readonly isLocked: boolean;
861 readonly asLocked: {
862 readonly currencyId: PalletForeignAssetsAssetIds;
863 readonly who: AccountId32;
864 readonly amount: u128;
865 } & Struct;
866 readonly isUnlocked: boolean;
867 readonly asUnlocked: {
868 readonly currencyId: PalletForeignAssetsAssetIds;
869 readonly who: AccountId32;
870 readonly amount: u128;
871 } & Struct;
872 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved' | 'Locked' | 'Unlocked';
857}873}
858874
859/** @name OrmlTokensReserveData */875/** @name OrmlTokensReserveData */
928 readonly currencyId: PalletForeignAssetsAssetIds;944 readonly currencyId: PalletForeignAssetsAssetIds;
929 readonly amount: u128;945 readonly amount: u128;
930 readonly dest: XcmVersionedMultiLocation;946 readonly dest: XcmVersionedMultiLocation;
931 readonly destWeightLimit: XcmV2WeightLimit;947 readonly destWeightLimit: XcmV3WeightLimit;
932 } & Struct;948 } & Struct;
933 readonly isTransferMultiasset: boolean;949 readonly isTransferMultiasset: boolean;
934 readonly asTransferMultiasset: {950 readonly asTransferMultiasset: {
935 readonly asset: XcmVersionedMultiAsset;951 readonly asset: XcmVersionedMultiAsset;
936 readonly dest: XcmVersionedMultiLocation;952 readonly dest: XcmVersionedMultiLocation;
937 readonly destWeightLimit: XcmV2WeightLimit;953 readonly destWeightLimit: XcmV3WeightLimit;
938 } & Struct;954 } & Struct;
939 readonly isTransferWithFee: boolean;955 readonly isTransferWithFee: boolean;
940 readonly asTransferWithFee: {956 readonly asTransferWithFee: {
941 readonly currencyId: PalletForeignAssetsAssetIds;957 readonly currencyId: PalletForeignAssetsAssetIds;
942 readonly amount: u128;958 readonly amount: u128;
943 readonly fee: u128;959 readonly fee: u128;
944 readonly dest: XcmVersionedMultiLocation;960 readonly dest: XcmVersionedMultiLocation;
945 readonly destWeightLimit: XcmV2WeightLimit;961 readonly destWeightLimit: XcmV3WeightLimit;
946 } & Struct;962 } & Struct;
947 readonly isTransferMultiassetWithFee: boolean;963 readonly isTransferMultiassetWithFee: boolean;
948 readonly asTransferMultiassetWithFee: {964 readonly asTransferMultiassetWithFee: {
949 readonly asset: XcmVersionedMultiAsset;965 readonly asset: XcmVersionedMultiAsset;
950 readonly fee: XcmVersionedMultiAsset;966 readonly fee: XcmVersionedMultiAsset;
951 readonly dest: XcmVersionedMultiLocation;967 readonly dest: XcmVersionedMultiLocation;
952 readonly destWeightLimit: XcmV2WeightLimit;968 readonly destWeightLimit: XcmV3WeightLimit;
953 } & Struct;969 } & Struct;
954 readonly isTransferMulticurrencies: boolean;970 readonly isTransferMulticurrencies: boolean;
955 readonly asTransferMulticurrencies: {971 readonly asTransferMulticurrencies: {
956 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;972 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;
957 readonly feeItem: u32;973 readonly feeItem: u32;
958 readonly dest: XcmVersionedMultiLocation;974 readonly dest: XcmVersionedMultiLocation;
959 readonly destWeightLimit: XcmV2WeightLimit;975 readonly destWeightLimit: XcmV3WeightLimit;
960 } & Struct;976 } & Struct;
961 readonly isTransferMultiassets: boolean;977 readonly isTransferMultiassets: boolean;
962 readonly asTransferMultiassets: {978 readonly asTransferMultiassets: {
963 readonly assets: XcmVersionedMultiAssets;979 readonly assets: XcmVersionedMultiAssets;
964 readonly feeItem: u32;980 readonly feeItem: u32;
965 readonly dest: XcmVersionedMultiLocation;981 readonly dest: XcmVersionedMultiLocation;
966 readonly destWeightLimit: XcmV2WeightLimit;982 readonly destWeightLimit: XcmV3WeightLimit;
967 } & Struct;983 } & Struct;
968 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';984 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
969}985}
997 readonly isTransferredMultiAssets: boolean;1013 readonly isTransferredMultiAssets: boolean;
998 readonly asTransferredMultiAssets: {1014 readonly asTransferredMultiAssets: {
999 readonly sender: AccountId32;1015 readonly sender: AccountId32;
1000 readonly assets: XcmV1MultiassetMultiAssets;1016 readonly assets: XcmV3MultiassetMultiAssets;
1001 readonly fee: XcmV1MultiAsset;1017 readonly fee: XcmV3MultiAsset;
1002 readonly dest: XcmV1MultiLocation;1018 readonly dest: XcmV3MultiLocation;
1003 } & Struct;1019 } & Struct;
1004 readonly type: 'TransferredMultiAssets';1020 readonly type: 'TransferredMultiAssets';
1005}1021}
1067 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1083 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
1068}1084}
10691085
1070/** @name PalletAuthorshipCall */
1071export interface PalletAuthorshipCall extends Enum {
1072 readonly isSetUncles: boolean;
1073 readonly asSetUncles: {
1074 readonly newUncles: Vec<SpRuntimeHeader>;
1075 } & Struct;
1076 readonly type: 'SetUncles';
1077}
1078
1079/** @name PalletAuthorshipError */
1080export interface PalletAuthorshipError extends Enum {
1081 readonly isInvalidUncleParent: boolean;
1082 readonly isUnclesAlreadySet: boolean;
1083 readonly isTooManyUncles: boolean;
1084 readonly isGenesisUncle: boolean;
1085 readonly isTooHighUncle: boolean;
1086 readonly isUncleAlreadyIncluded: boolean;
1087 readonly isOldUncle: boolean;
1088 readonly type: 'InvalidUncleParent' | 'UnclesAlreadySet' | 'TooManyUncles' | 'GenesisUncle' | 'TooHighUncle' | 'UncleAlreadyIncluded' | 'OldUncle';
1089}
1090
1091/** @name PalletAuthorshipUncleEntryItem */
1092export interface PalletAuthorshipUncleEntryItem extends Enum {
1093 readonly isInclusionHeight: boolean;
1094 readonly asInclusionHeight: u32;
1095 readonly isUncle: boolean;
1096 readonly asUncle: ITuple<[H256, Option<AccountId32>]>;
1097 readonly type: 'InclusionHeight' | 'Uncle';
1098}
1099
1100/** @name PalletBalancesAccountData */1086/** @name PalletBalancesAccountData */
1101export interface PalletBalancesAccountData extends Struct {1087export interface PalletBalancesAccountData extends Struct {
1102 readonly free: u128;1088 readonly free: u128;
1414 readonly asSetMinGasPriceOverride: {1400 readonly asSetMinGasPriceOverride: {
1415 readonly coeff: Option<u64>;1401 readonly coeff: Option<u64>;
1416 } & Struct;1402 } & Struct;
1417 readonly isSetXcmAllowedLocations: boolean;
1418 readonly asSetXcmAllowedLocations: {
1419 readonly locations: Option<Vec<XcmV1MultiLocation>>;
1420 } & Struct;
1421 readonly isSetAppPromotionConfigurationOverride: boolean;1403 readonly isSetAppPromotionConfigurationOverride: boolean;
1422 readonly asSetAppPromotionConfigurationOverride: {1404 readonly asSetAppPromotionConfigurationOverride: {
1423 readonly configuration: PalletConfigurationAppPromotionConfiguration;1405 readonly configuration: PalletConfigurationAppPromotionConfiguration;
1434 readonly asSetCollatorSelectionKickThreshold: {1416 readonly asSetCollatorSelectionKickThreshold: {
1435 readonly threshold: Option<u32>;1417 readonly threshold: Option<u32>;
1436 } & Struct;1418 } & Struct;
1437 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';1419 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';
1438}1420}
14391421
1440/** @name PalletConfigurationError */1422/** @name PalletConfigurationError */
1545 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1527 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
1546}1528}
15471529
1530/** @name PalletEvmCoderSubstrateCall */
1531export interface PalletEvmCoderSubstrateCall extends Enum {
1532 readonly isEmptyCall: boolean;
1533 readonly type: 'EmptyCall';
1534}
1535
1548/** @name PalletEvmCoderSubstrateError */1536/** @name PalletEvmCoderSubstrateError */
1549export interface PalletEvmCoderSubstrateError extends Enum {1537export interface PalletEvmCoderSubstrateError extends Enum {
1550 readonly isOutOfGas: boolean;1538 readonly isOutOfGas: boolean;
1551 readonly isOutOfFund: boolean;1539 readonly isOutOfFund: boolean;
1552 readonly type: 'OutOfGas' | 'OutOfFund';1540 readonly type: 'OutOfGas' | 'OutOfFund';
1553}1541}
15541542
1543/** @name PalletEvmContractHelpersCall */
1544export interface PalletEvmContractHelpersCall extends Enum {
1545 readonly isMigrateFromSelfSponsoring: boolean;
1546 readonly asMigrateFromSelfSponsoring: {
1547 readonly addresses: Vec<H160>;
1548 } & Struct;
1549 readonly type: 'MigrateFromSelfSponsoring';
1550}
1551
1555/** @name PalletEvmContractHelpersError */1552/** @name PalletEvmContractHelpersError */
1556export interface PalletEvmContractHelpersError extends Enum {1553export interface PalletEvmContractHelpersError extends Enum {
1557 readonly isNoPermission: boolean;1554 readonly isNoPermission: boolean;
1710 readonly isForeignAssetRegistered: boolean;1707 readonly isForeignAssetRegistered: boolean;
1711 readonly asForeignAssetRegistered: {1708 readonly asForeignAssetRegistered: {
1712 readonly assetId: u32;1709 readonly assetId: u32;
1713 readonly assetAddress: XcmV1MultiLocation;1710 readonly assetAddress: XcmV3MultiLocation;
1714 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1711 readonly metadata: PalletForeignAssetsModuleAssetMetadata;
1715 } & Struct;1712 } & Struct;
1716 readonly isForeignAssetUpdated: boolean;1713 readonly isForeignAssetUpdated: boolean;
1717 readonly asForeignAssetUpdated: {1714 readonly asForeignAssetUpdated: {
1718 readonly assetId: u32;1715 readonly assetId: u32;
1719 readonly assetAddress: XcmV1MultiLocation;1716 readonly assetAddress: XcmV3MultiLocation;
1720 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1717 readonly metadata: PalletForeignAssetsModuleAssetMetadata;
1721 } & Struct;1718 } & Struct;
1722 readonly isAssetRegistered: boolean;1719 readonly isAssetRegistered: boolean;
2576 readonly isExecute: boolean;2573 readonly isExecute: boolean;
2577 readonly asExecute: {2574 readonly asExecute: {
2578 readonly message: XcmVersionedXcm;2575 readonly message: XcmVersionedXcm;
2579 readonly maxWeight: u64;2576 readonly maxWeight: SpWeightsWeightV2Weight;
2580 } & Struct;2577 } & Struct;
2581 readonly isForceXcmVersion: boolean;2578 readonly isForceXcmVersion: boolean;
2582 readonly asForceXcmVersion: {2579 readonly asForceXcmVersion: {
2583 readonly location: XcmV1MultiLocation;2580 readonly location: XcmV3MultiLocation;
2584 readonly xcmVersion: u32;2581 readonly xcmVersion: u32;
2585 } & Struct;2582 } & Struct;
2586 readonly isForceDefaultXcmVersion: boolean;2583 readonly isForceDefaultXcmVersion: boolean;
2601 readonly beneficiary: XcmVersionedMultiLocation;2598 readonly beneficiary: XcmVersionedMultiLocation;
2602 readonly assets: XcmVersionedMultiAssets;2599 readonly assets: XcmVersionedMultiAssets;
2603 readonly feeAssetItem: u32;2600 readonly feeAssetItem: u32;
2604 readonly weightLimit: XcmV2WeightLimit;2601 readonly weightLimit: XcmV3WeightLimit;
2605 } & Struct;2602 } & Struct;
2606 readonly isLimitedTeleportAssets: boolean;2603 readonly isLimitedTeleportAssets: boolean;
2607 readonly asLimitedTeleportAssets: {2604 readonly asLimitedTeleportAssets: {
2608 readonly dest: XcmVersionedMultiLocation;2605 readonly dest: XcmVersionedMultiLocation;
2609 readonly beneficiary: XcmVersionedMultiLocation;2606 readonly beneficiary: XcmVersionedMultiLocation;
2610 readonly assets: XcmVersionedMultiAssets;2607 readonly assets: XcmVersionedMultiAssets;
2611 readonly feeAssetItem: u32;2608 readonly feeAssetItem: u32;
2612 readonly weightLimit: XcmV2WeightLimit;2609 readonly weightLimit: XcmV3WeightLimit;
2613 } & Struct;2610 } & Struct;
2614 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2611 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
2615}2612}
2629 readonly isBadLocation: boolean;2626 readonly isBadLocation: boolean;
2630 readonly isNoSubscription: boolean;2627 readonly isNoSubscription: boolean;
2631 readonly isAlreadySubscribed: boolean;2628 readonly isAlreadySubscribed: boolean;
2632 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2629 readonly isInvalidAsset: boolean;
2630 readonly isLowBalance: boolean;
2631 readonly isTooManyLocks: boolean;
2632 readonly isAccountNotSovereign: boolean;
2633 readonly isFeesNotMet: boolean;
2634 readonly isLockNotFound: boolean;
2635 readonly isInUse: boolean;
2636 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed' | 'InvalidAsset' | 'LowBalance' | 'TooManyLocks' | 'AccountNotSovereign' | 'FeesNotMet' | 'LockNotFound' | 'InUse';
2633}2637}
26342638
2635/** @name PalletXcmEvent */2639/** @name PalletXcmEvent */
2636export interface PalletXcmEvent extends Enum {2640export interface PalletXcmEvent extends Enum {
2637 readonly isAttempted: boolean;2641 readonly isAttempted: boolean;
2638 readonly asAttempted: XcmV2TraitsOutcome;2642 readonly asAttempted: XcmV3TraitsOutcome;
2639 readonly isSent: boolean;2643 readonly isSent: boolean;
2640 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;2644 readonly asSent: ITuple<[XcmV3MultiLocation, XcmV3MultiLocation, XcmV3Xcm]>;
2641 readonly isUnexpectedResponse: boolean;2645 readonly isUnexpectedResponse: boolean;
2642 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;2646 readonly asUnexpectedResponse: ITuple<[XcmV3MultiLocation, u64]>;
2643 readonly isResponseReady: boolean;2647 readonly isResponseReady: boolean;
2644 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;2648 readonly asResponseReady: ITuple<[u64, XcmV3Response]>;
2645 readonly isNotified: boolean;2649 readonly isNotified: boolean;
2646 readonly asNotified: ITuple<[u64, u8, u8]>;2650 readonly asNotified: ITuple<[u64, u8, u8]>;
2647 readonly isNotifyOverweight: boolean;2651 readonly isNotifyOverweight: boolean;
2651 readonly isNotifyDecodeFailed: boolean;2655 readonly isNotifyDecodeFailed: boolean;
2652 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;2656 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;
2653 readonly isInvalidResponder: boolean;2657 readonly isInvalidResponder: boolean;
2654 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;2658 readonly asInvalidResponder: ITuple<[XcmV3MultiLocation, u64, Option<XcmV3MultiLocation>]>;
2655 readonly isInvalidResponderVersion: boolean;2659 readonly isInvalidResponderVersion: boolean;
2656 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;2660 readonly asInvalidResponderVersion: ITuple<[XcmV3MultiLocation, u64]>;
2657 readonly isResponseTaken: boolean;2661 readonly isResponseTaken: boolean;
2658 readonly asResponseTaken: u64;2662 readonly asResponseTaken: u64;
2659 readonly isAssetsTrapped: boolean;2663 readonly isAssetsTrapped: boolean;
2660 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2664 readonly asAssetsTrapped: ITuple<[H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;
2661 readonly isVersionChangeNotified: boolean;2665 readonly isVersionChangeNotified: boolean;
2662 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;2666 readonly asVersionChangeNotified: ITuple<[XcmV3MultiLocation, u32, XcmV3MultiassetMultiAssets]>;
2663 readonly isSupportedVersionChanged: boolean;2667 readonly isSupportedVersionChanged: boolean;
2664 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;2668 readonly asSupportedVersionChanged: ITuple<[XcmV3MultiLocation, u32]>;
2665 readonly isNotifyTargetSendFail: boolean;2669 readonly isNotifyTargetSendFail: boolean;
2666 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;2670 readonly asNotifyTargetSendFail: ITuple<[XcmV3MultiLocation, u64, XcmV3TraitsError]>;
2667 readonly isNotifyTargetMigrationFail: boolean;2671 readonly isNotifyTargetMigrationFail: boolean;
2668 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;2672 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;
2673 readonly isInvalidQuerierVersion: boolean;
2674 readonly asInvalidQuerierVersion: ITuple<[XcmV3MultiLocation, u64]>;
2675 readonly isInvalidQuerier: boolean;
2676 readonly asInvalidQuerier: ITuple<[XcmV3MultiLocation, u64, XcmV3MultiLocation, Option<XcmV3MultiLocation>]>;
2677 readonly isVersionNotifyStarted: boolean;
2678 readonly asVersionNotifyStarted: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
2679 readonly isVersionNotifyRequested: boolean;
2680 readonly asVersionNotifyRequested: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
2681 readonly isVersionNotifyUnrequested: boolean;
2682 readonly asVersionNotifyUnrequested: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
2683 readonly isFeesPaid: boolean;
2684 readonly asFeesPaid: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
2669 readonly isAssetsClaimed: boolean;2685 readonly isAssetsClaimed: boolean;
2670 readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2686 readonly asAssetsClaimed: ITuple<[H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;
2671 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';2687 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'InvalidQuerierVersion' | 'InvalidQuerier' | 'VersionNotifyStarted' | 'VersionNotifyRequested' | 'VersionNotifyUnrequested' | 'FeesPaid' | 'AssetsClaimed';
2672}2688}
26732689
2690/** @name PalletXcmQueryStatus */
2691export interface PalletXcmQueryStatus extends Enum {
2692 readonly isPending: boolean;
2693 readonly asPending: {
2694 readonly responder: XcmVersionedMultiLocation;
2695 readonly maybeMatchQuerier: Option<XcmVersionedMultiLocation>;
2696 readonly maybeNotify: Option<ITuple<[u8, u8]>>;
2697 readonly timeout: u32;
2698 } & Struct;
2699 readonly isVersionNotifier: boolean;
2700 readonly asVersionNotifier: {
2701 readonly origin: XcmVersionedMultiLocation;
2702 readonly isActive: bool;
2703 } & Struct;
2704 readonly isReady: boolean;
2705 readonly asReady: {
2706 readonly response: XcmVersionedResponse;
2707 readonly at: u32;
2708 } & Struct;
2709 readonly type: 'Pending' | 'VersionNotifier' | 'Ready';
2710}
2711
2712/** @name PalletXcmRemoteLockedFungibleRecord */
2713export interface PalletXcmRemoteLockedFungibleRecord extends Struct {
2714 readonly amount: u128;
2715 readonly owner: XcmVersionedMultiLocation;
2716 readonly locker: XcmVersionedMultiLocation;
2717 readonly users: u32;
2718}
2719
2720/** @name PalletXcmVersionMigrationStage */
2721export interface PalletXcmVersionMigrationStage extends Enum {
2722 readonly isMigrateSupportedVersion: boolean;
2723 readonly isMigrateVersionNotifiers: boolean;
2724 readonly isNotifyCurrentTargets: boolean;
2725 readonly asNotifyCurrentTargets: Option<Bytes>;
2726 readonly isMigrateAndNotifyOldTargets: boolean;
2727 readonly type: 'MigrateSupportedVersion' | 'MigrateVersionNotifiers' | 'NotifyCurrentTargets' | 'MigrateAndNotifyOldTargets';
2728}
2729
2730/** @name ParachainInfoCall */
2731export interface ParachainInfoCall extends Null {}
2732
2674/** @name PhantomTypeUpDataStructs */2733/** @name PhantomTypeUpDataStructs */
2675export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpPovEstimateRpcPovInfo]>> {}2734export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpPovEstimateRpcPovInfo]>> {}
26762735
2763/** @name SpCoreSr25519Signature */2822/** @name SpCoreSr25519Signature */
2764export interface SpCoreSr25519Signature extends U8aFixed {}2823export interface SpCoreSr25519Signature extends U8aFixed {}
27652824
2766/** @name SpRuntimeBlakeTwo256 */
2767export interface SpRuntimeBlakeTwo256 extends Null {}
2768
2769/** @name SpRuntimeDigest */2825/** @name SpRuntimeDigest */
2770export interface SpRuntimeDigest extends Struct {2826export interface SpRuntimeDigest extends Struct {
2771 readonly logs: Vec<SpRuntimeDigestDigestItem>;2827 readonly logs: Vec<SpRuntimeDigestDigestItem>;
2807 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';2863 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';
2808}2864}
28092865
2810/** @name SpRuntimeHeader */
2811export interface SpRuntimeHeader extends Struct {
2812 readonly parentHash: H256;
2813 readonly number: Compact<u32>;
2814 readonly stateRoot: H256;
2815 readonly extrinsicsRoot: H256;
2816 readonly digest: SpRuntimeDigest;
2817}
2818
2819/** @name SpRuntimeModuleError */2866/** @name SpRuntimeModuleError */
2820export interface SpRuntimeModuleError extends Struct {2867export interface SpRuntimeModuleError extends Struct {
2821 readonly index: u8;2868 readonly index: u8;
3059export interface UpDataStructsProperties extends Struct {3106export interface UpDataStructsProperties extends Struct {
3060 readonly map: UpDataStructsPropertiesMapBoundedVec;3107 readonly map: UpDataStructsPropertiesMapBoundedVec;
3061 readonly consumedSpace: u32;3108 readonly consumedSpace: u32;
3062 readonly spaceLimit: u32;3109 readonly reserved: u32;
3063}3110}
30643111
3065/** @name UpDataStructsPropertiesMapBoundedVec */3112/** @name UpDataStructsPropertiesMapBoundedVec */
3177 readonly encoded: Bytes;3224 readonly encoded: Bytes;
3178}3225}
31793226
3180/** @name XcmV0Junction */3227/** @name XcmV2BodyId */
3181export interface XcmV0Junction extends Enum {3228export interface XcmV2BodyId extends Enum {
3182 readonly isParent: boolean;
3183 readonly isParachain: boolean;
3184 readonly asParachain: Compact<u32>;
3185 readonly isAccountId32: boolean;
3186 readonly asAccountId32: {
3187 readonly network: XcmV0JunctionNetworkId;
3188 readonly id: U8aFixed;
3189 } & Struct;
3190 readonly isAccountIndex64: boolean;
3191 readonly asAccountIndex64: {
3192 readonly network: XcmV0JunctionNetworkId;
3193 readonly index: Compact<u64>;
3194 } & Struct;
3195 readonly isAccountKey20: boolean;
3196 readonly asAccountKey20: {
3197 readonly network: XcmV0JunctionNetworkId;
3198 readonly key: U8aFixed;
3199 } & Struct;
3200 readonly isPalletInstance: boolean;
3201 readonly asPalletInstance: u8;
3202 readonly isGeneralIndex: boolean;
3203 readonly asGeneralIndex: Compact<u128>;
3204 readonly isGeneralKey: boolean;
3205 readonly asGeneralKey: Bytes;
3206 readonly isOnlyChild: boolean;
3207 readonly isPlurality: boolean;
3208 readonly asPlurality: {
3209 readonly id: XcmV0JunctionBodyId;
3210 readonly part: XcmV0JunctionBodyPart;
3211 } & Struct;
3212 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
3213}
3214
3215/** @name XcmV0JunctionBodyId */
3216export interface XcmV0JunctionBodyId extends Enum {
3217 readonly isUnit: boolean;3229 readonly isUnit: boolean;
3218 readonly isNamed: boolean;3230 readonly isNamed: boolean;
3219 readonly asNamed: Bytes;3231 readonly asNamed: Bytes;
3229 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';3241 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';
3230}3242}
32313243
3232/** @name XcmV0JunctionBodyPart */3244/** @name XcmV2BodyPart */
3233export interface XcmV0JunctionBodyPart extends Enum {3245export interface XcmV2BodyPart extends Enum {
3234 readonly isVoice: boolean;3246 readonly isVoice: boolean;
3235 readonly isMembers: boolean;3247 readonly isMembers: boolean;
3236 readonly asMembers: {3248 readonly asMembers: {
3254 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';3266 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
3255}3267}
32563268
3257/** @name XcmV0JunctionNetworkId */3269/** @name XcmV2Instruction */
3258export interface XcmV0JunctionNetworkId extends Enum {3270export interface XcmV2Instruction extends Enum {
3259 readonly isAny: boolean;3271 readonly isWithdrawAsset: boolean;
3260 readonly isNamed: boolean;3272 readonly asWithdrawAsset: XcmV2MultiassetMultiAssets;
3261 readonly asNamed: Bytes;3273 readonly isReserveAssetDeposited: boolean;
3262 readonly isPolkadot: boolean;3274 readonly asReserveAssetDeposited: XcmV2MultiassetMultiAssets;
3263 readonly isKusama: boolean;3275 readonly isReceiveTeleportedAsset: boolean;
3264 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';3276 readonly asReceiveTeleportedAsset: XcmV2MultiassetMultiAssets;
3265}
3266
3267/** @name XcmV0MultiAsset */3277 readonly isQueryResponse: boolean;
3268export interface XcmV0MultiAsset extends Enum {
3269 readonly isNone: boolean;
3270 readonly isAll: boolean;3278 readonly asQueryResponse: {
3271 readonly isAllFungible: boolean;3279 readonly queryId: Compact<u64>;
3272 readonly isAllNonFungible: boolean;
3273 readonly isAllAbstractFungible: boolean;3280 readonly response: XcmV2Response;
3274 readonly asAllAbstractFungible: {
3275 readonly id: Bytes;3281 readonly maxWeight: Compact<u64>;
3276 } & Struct;3282 } & Struct;
3277 readonly isAllAbstractNonFungible: boolean;3283 readonly isTransferAsset: boolean;
3278 readonly asAllAbstractNonFungible: {3284 readonly asTransferAsset: {
3279 readonly class: Bytes;3285 readonly assets: XcmV2MultiassetMultiAssets;
3286 readonly beneficiary: XcmV2MultiLocation;
3280 } & Struct;3287 } & Struct;
3281 readonly isAllConcreteFungible: boolean;3288 readonly isTransferReserveAsset: boolean;
3282 readonly asAllConcreteFungible: {3289 readonly asTransferReserveAsset: {
3283 readonly id: XcmV0MultiLocation;3290 readonly assets: XcmV2MultiassetMultiAssets;
3291 readonly dest: XcmV2MultiLocation;
3292 readonly xcm: XcmV2Xcm;
3284 } & Struct;3293 } & Struct;
3285 readonly isAllConcreteNonFungible: boolean;3294 readonly isTransact: boolean;
3286 readonly asAllConcreteNonFungible: {3295 readonly asTransact: {
3287 readonly class: XcmV0MultiLocation;3296 readonly originType: XcmV2OriginKind;
3297 readonly requireWeightAtMost: Compact<u64>;
3298 readonly call: XcmDoubleEncoded;
3288 } & Struct;3299 } & Struct;
3289 readonly isAbstractFungible: boolean;3300 readonly isHrmpNewChannelOpenRequest: boolean;
3290 readonly asAbstractFungible: {3301 readonly asHrmpNewChannelOpenRequest: {
3291 readonly id: Bytes;3302 readonly sender: Compact<u32>;
3303 readonly maxMessageSize: Compact<u32>;
3292 readonly amount: Compact<u128>;3304 readonly maxCapacity: Compact<u32>;
3293 } & Struct;3305 } & Struct;
3294 readonly isAbstractNonFungible: boolean;3306 readonly isHrmpChannelAccepted: boolean;
3295 readonly asAbstractNonFungible: {3307 readonly asHrmpChannelAccepted: {
3296 readonly class: Bytes;3308 readonly recipient: Compact<u32>;
3297 readonly instance: XcmV1MultiassetAssetInstance;
3298 } & Struct;3309 } & Struct;
3299 readonly isConcreteFungible: boolean;3310 readonly isHrmpChannelClosing: boolean;
3300 readonly asConcreteFungible: {3311 readonly asHrmpChannelClosing: {
3301 readonly id: XcmV0MultiLocation;3312 readonly initiator: Compact<u32>;
3313 readonly sender: Compact<u32>;
3302 readonly amount: Compact<u128>;3314 readonly recipient: Compact<u32>;
3303 } & Struct;3315 } & Struct;
3304 readonly isConcreteNonFungible: boolean;3316 readonly isClearOrigin: boolean;
3305 readonly asConcreteNonFungible: {3317 readonly isDescendOrigin: boolean;
3318 readonly asDescendOrigin: XcmV2MultilocationJunctions;
3319 readonly isReportError: boolean;
3320 readonly asReportError: {
3321 readonly queryId: Compact<u64>;
3306 readonly class: XcmV0MultiLocation;3322 readonly dest: XcmV2MultiLocation;
3307 readonly instance: XcmV1MultiassetAssetInstance;3323 readonly maxResponseWeight: Compact<u64>;
3308 } & Struct;3324 } & Struct;
3309 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';
3310}
3311
3312/** @name XcmV0MultiLocation */
3313export interface XcmV0MultiLocation extends Enum {
3314 readonly isNull: boolean;
3315 readonly isX1: boolean;
3316 readonly asX1: XcmV0Junction;
3317 readonly isX2: boolean;
3318 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;
3319 readonly isX3: boolean;
3320 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;
3321 readonly isX4: boolean;
3322 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;
3323 readonly isX5: boolean;
3324 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;
3325 readonly isX6: boolean;
3326 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;
3327 readonly isX7: boolean;
3328 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;
3329 readonly isX8: boolean;
3330 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;
3331 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
3332}
3333
3334/** @name XcmV0Order */
3335export interface XcmV0Order extends Enum {
3336 readonly isNull: boolean;
3337 readonly isDepositAsset: boolean;3325 readonly isDepositAsset: boolean;
3338 readonly asDepositAsset: {3326 readonly asDepositAsset: {
3339 readonly assets: Vec<XcmV0MultiAsset>;3327 readonly assets: XcmV2MultiassetMultiAssetFilter;
3328 readonly maxAssets: Compact<u32>;
3340 readonly dest: XcmV0MultiLocation;3329 readonly beneficiary: XcmV2MultiLocation;
3341 } & Struct;3330 } & Struct;
3342 readonly isDepositReserveAsset: boolean;3331 readonly isDepositReserveAsset: boolean;
3343 readonly asDepositReserveAsset: {3332 readonly asDepositReserveAsset: {
3344 readonly assets: Vec<XcmV0MultiAsset>;3333 readonly assets: XcmV2MultiassetMultiAssetFilter;
3334 readonly maxAssets: Compact<u32>;
3345 readonly dest: XcmV0MultiLocation;3335 readonly dest: XcmV2MultiLocation;
3346 readonly effects: Vec<XcmV0Order>;3336 readonly xcm: XcmV2Xcm;
3347 } & Struct;3337 } & Struct;
3348 readonly isExchangeAsset: boolean;3338 readonly isExchangeAsset: boolean;
3349 readonly asExchangeAsset: {3339 readonly asExchangeAsset: {
3350 readonly give: Vec<XcmV0MultiAsset>;3340 readonly give: XcmV2MultiassetMultiAssetFilter;
3351 readonly receive: Vec<XcmV0MultiAsset>;3341 readonly receive: XcmV2MultiassetMultiAssets;
3352 } & Struct;3342 } & Struct;
3353 readonly isInitiateReserveWithdraw: boolean;3343 readonly isInitiateReserveWithdraw: boolean;
3354 readonly asInitiateReserveWithdraw: {3344 readonly asInitiateReserveWithdraw: {
3355 readonly assets: Vec<XcmV0MultiAsset>;3345 readonly assets: XcmV2MultiassetMultiAssetFilter;
3356 readonly reserve: XcmV0MultiLocation;3346 readonly reserve: XcmV2MultiLocation;
3357 readonly effects: Vec<XcmV0Order>;3347 readonly xcm: XcmV2Xcm;
3358 } & Struct;3348 } & Struct;
3359 readonly isInitiateTeleport: boolean;3349 readonly isInitiateTeleport: boolean;
3360 readonly asInitiateTeleport: {3350 readonly asInitiateTeleport: {
3361 readonly assets: Vec<XcmV0MultiAsset>;3351 readonly assets: XcmV2MultiassetMultiAssetFilter;
3362 readonly dest: XcmV0MultiLocation;3352 readonly dest: XcmV2MultiLocation;
3363 readonly effects: Vec<XcmV0Order>;3353 readonly xcm: XcmV2Xcm;
3364 } & Struct;3354 } & Struct;
3365 readonly isQueryHolding: boolean;3355 readonly isQueryHolding: boolean;
3366 readonly asQueryHolding: {3356 readonly asQueryHolding: {
3367 readonly queryId: Compact<u64>;3357 readonly queryId: Compact<u64>;
3368 readonly dest: XcmV0MultiLocation;3358 readonly dest: XcmV2MultiLocation;
3369 readonly assets: Vec<XcmV0MultiAsset>;3359 readonly assets: XcmV2MultiassetMultiAssetFilter;
3360 readonly maxResponseWeight: Compact<u64>;
3370 } & Struct;3361 } & Struct;
3371 readonly isBuyExecution: boolean;3362 readonly isBuyExecution: boolean;
3372 readonly asBuyExecution: {3363 readonly asBuyExecution: {
3373 readonly fees: XcmV0MultiAsset;3364 readonly fees: XcmV2MultiAsset;
3374 readonly weight: u64;3365 readonly weightLimit: XcmV2WeightLimit;
3375 readonly debt: u64;
3376 readonly haltOnError: bool;
3377 readonly xcm: Vec<XcmV0Xcm>;
3378 } & Struct;3366 } & Struct;
3379 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';3367 readonly isRefundSurplus: boolean;
3380}
3381
3382/** @name XcmV0OriginKind */
3383export interface XcmV0OriginKind extends Enum {
3384 readonly isNative: boolean;
3385 readonly isSovereignAccount: boolean;3368 readonly isSetErrorHandler: boolean;
3386 readonly isSuperuser: boolean;3369 readonly asSetErrorHandler: XcmV2Xcm;
3387 readonly isXcm: boolean;3370 readonly isSetAppendix: boolean;
3388 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';3371 readonly asSetAppendix: XcmV2Xcm;
3389}
3390
3391/** @name XcmV0Response */3372 readonly isClearError: boolean;
3392export interface XcmV0Response extends Enum {
3393 readonly isAssets: boolean;
3394 readonly asAssets: Vec<XcmV0MultiAsset>;
3395 readonly type: 'Assets';
3396}
3397
3398/** @name XcmV0Xcm */
3399export interface XcmV0Xcm extends Enum {
3400 readonly isWithdrawAsset: boolean;3373 readonly isClaimAsset: boolean;
3401 readonly asWithdrawAsset: {3374 readonly asClaimAsset: {
3402 readonly assets: Vec<XcmV0MultiAsset>;3375 readonly assets: XcmV2MultiassetMultiAssets;
3403 readonly effects: Vec<XcmV0Order>;3376 readonly ticket: XcmV2MultiLocation;
3404 } & Struct;3377 } & Struct;
3405 readonly isReserveAssetDeposit: boolean;3378 readonly isTrap: boolean;
3406 readonly asReserveAssetDeposit: {3379 readonly asTrap: Compact<u64>;
3407 readonly assets: Vec<XcmV0MultiAsset>;
3408 readonly effects: Vec<XcmV0Order>;
3409 } & Struct;
3410 readonly isTeleportAsset: boolean;
3411 readonly asTeleportAsset: {
3412 readonly assets: Vec<XcmV0MultiAsset>;
3413 readonly effects: Vec<XcmV0Order>;
3414 } & Struct;
3415 readonly isQueryResponse: boolean;3380 readonly isSubscribeVersion: boolean;
3416 readonly asQueryResponse: {3381 readonly asSubscribeVersion: {
3417 readonly queryId: Compact<u64>;3382 readonly queryId: Compact<u64>;
3418 readonly response: XcmV0Response;3383 readonly maxResponseWeight: Compact<u64>;
3419 } & Struct;3384 } & Struct;
3420 readonly isTransferAsset: boolean;3385 readonly isUnsubscribeVersion: boolean;
3421 readonly asTransferAsset: {3386 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';
3422 readonly assets: Vec<XcmV0MultiAsset>;
3423 readonly dest: XcmV0MultiLocation;
3424 } & Struct;
3425 readonly isTransferReserveAsset: boolean;
3426 readonly asTransferReserveAsset: {
3427 readonly assets: Vec<XcmV0MultiAsset>;
3428 readonly dest: XcmV0MultiLocation;
3429 readonly effects: Vec<XcmV0Order>;
3430 } & Struct;
3431 readonly isTransact: boolean;
3432 readonly asTransact: {
3433 readonly originType: XcmV0OriginKind;
3434 readonly requireWeightAtMost: u64;
3435 readonly call: XcmDoubleEncoded;
3436 } & Struct;
3437 readonly isHrmpNewChannelOpenRequest: boolean;
3438 readonly asHrmpNewChannelOpenRequest: {
3439 readonly sender: Compact<u32>;
3440 readonly maxMessageSize: Compact<u32>;
3441 readonly maxCapacity: Compact<u32>;
3442 } & Struct;
3443 readonly isHrmpChannelAccepted: boolean;
3444 readonly asHrmpChannelAccepted: {
3445 readonly recipient: Compact<u32>;
3446 } & Struct;
3447 readonly isHrmpChannelClosing: boolean;
3448 readonly asHrmpChannelClosing: {
3449 readonly initiator: Compact<u32>;
3450 readonly sender: Compact<u32>;
3451 readonly recipient: Compact<u32>;
3452 } & Struct;
3453 readonly isRelayedFrom: boolean;
3454 readonly asRelayedFrom: {
3455 readonly who: XcmV0MultiLocation;
3456 readonly message: XcmV0Xcm;
3457 } & Struct;
3458 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
3459}3387}
34603388
3461/** @name XcmV1Junction */3389/** @name XcmV2Junction */
3462export interface XcmV1Junction extends Enum {3390export interface XcmV2Junction extends Enum {
3463 readonly isParachain: boolean;3391 readonly isParachain: boolean;
3464 readonly asParachain: Compact<u32>;3392 readonly asParachain: Compact<u32>;
3465 readonly isAccountId32: boolean;3393 readonly isAccountId32: boolean;
3466 readonly asAccountId32: {3394 readonly asAccountId32: {
3467 readonly network: XcmV0JunctionNetworkId;3395 readonly network: XcmV2NetworkId;
3468 readonly id: U8aFixed;3396 readonly id: U8aFixed;
3469 } & Struct;3397 } & Struct;
3470 readonly isAccountIndex64: boolean;3398 readonly isAccountIndex64: boolean;
3471 readonly asAccountIndex64: {3399 readonly asAccountIndex64: {
3472 readonly network: XcmV0JunctionNetworkId;3400 readonly network: XcmV2NetworkId;
3473 readonly index: Compact<u64>;3401 readonly index: Compact<u64>;
3474 } & Struct;3402 } & Struct;
3475 readonly isAccountKey20: boolean;3403 readonly isAccountKey20: boolean;
3476 readonly asAccountKey20: {3404 readonly asAccountKey20: {
3477 readonly network: XcmV0JunctionNetworkId;3405 readonly network: XcmV2NetworkId;
3478 readonly key: U8aFixed;3406 readonly key: U8aFixed;
3479 } & Struct;3407 } & Struct;
3480 readonly isPalletInstance: boolean;3408 readonly isPalletInstance: boolean;
3486 readonly isOnlyChild: boolean;3414 readonly isOnlyChild: boolean;
3487 readonly isPlurality: boolean;3415 readonly isPlurality: boolean;
3488 readonly asPlurality: {3416 readonly asPlurality: {
3489 readonly id: XcmV0JunctionBodyId;3417 readonly id: XcmV2BodyId;
3490 readonly part: XcmV0JunctionBodyPart;3418 readonly part: XcmV2BodyPart;
3491 } & Struct;3419 } & Struct;
3492 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';3420 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
3493}3421}
34943422
3495/** @name XcmV1MultiAsset */3423/** @name XcmV2MultiAsset */
3496export interface XcmV1MultiAsset extends Struct {3424export interface XcmV2MultiAsset extends Struct {
3497 readonly id: XcmV1MultiassetAssetId;3425 readonly id: XcmV2MultiassetAssetId;
3498 readonly fun: XcmV1MultiassetFungibility;3426 readonly fun: XcmV2MultiassetFungibility;
3499}3427}
35003428
3501/** @name XcmV1MultiassetAssetId */3429/** @name XcmV2MultiassetAssetId */
3502export interface XcmV1MultiassetAssetId extends Enum {3430export interface XcmV2MultiassetAssetId extends Enum {
3503 readonly isConcrete: boolean;3431 readonly isConcrete: boolean;
3504 readonly asConcrete: XcmV1MultiLocation;3432 readonly asConcrete: XcmV2MultiLocation;
3505 readonly isAbstract: boolean;3433 readonly isAbstract: boolean;
3506 readonly asAbstract: Bytes;3434 readonly asAbstract: Bytes;
3507 readonly type: 'Concrete' | 'Abstract';3435 readonly type: 'Concrete' | 'Abstract';
3508}3436}
35093437
3510/** @name XcmV1MultiassetAssetInstance */3438/** @name XcmV2MultiassetAssetInstance */
3511export interface XcmV1MultiassetAssetInstance extends Enum {3439export interface XcmV2MultiassetAssetInstance extends Enum {
3512 readonly isUndefined: boolean;3440 readonly isUndefined: boolean;
3513 readonly isIndex: boolean;3441 readonly isIndex: boolean;
3514 readonly asIndex: Compact<u128>;3442 readonly asIndex: Compact<u128>;
3525 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';3453 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';
3526}3454}
35273455
3528/** @name XcmV1MultiassetFungibility */3456/** @name XcmV2MultiassetFungibility */
3529export interface XcmV1MultiassetFungibility extends Enum {3457export interface XcmV2MultiassetFungibility extends Enum {
3530 readonly isFungible: boolean;3458 readonly isFungible: boolean;
3531 readonly asFungible: Compact<u128>;3459 readonly asFungible: Compact<u128>;
3532 readonly isNonFungible: boolean;3460 readonly isNonFungible: boolean;
3533 readonly asNonFungible: XcmV1MultiassetAssetInstance;3461 readonly asNonFungible: XcmV2MultiassetAssetInstance;
3534 readonly type: 'Fungible' | 'NonFungible';3462 readonly type: 'Fungible' | 'NonFungible';
3535}3463}
35363464
3537/** @name XcmV1MultiassetMultiAssetFilter */3465/** @name XcmV2MultiassetMultiAssetFilter */
3538export interface XcmV1MultiassetMultiAssetFilter extends Enum {3466export interface XcmV2MultiassetMultiAssetFilter extends Enum {
3539 readonly isDefinite: boolean;3467 readonly isDefinite: boolean;
3540 readonly asDefinite: XcmV1MultiassetMultiAssets;3468 readonly asDefinite: XcmV2MultiassetMultiAssets;
3541 readonly isWild: boolean;3469 readonly isWild: boolean;
3542 readonly asWild: XcmV1MultiassetWildMultiAsset;3470 readonly asWild: XcmV2MultiassetWildMultiAsset;
3543 readonly type: 'Definite' | 'Wild';3471 readonly type: 'Definite' | 'Wild';
3544}3472}
35453473
3546/** @name XcmV1MultiassetMultiAssets */3474/** @name XcmV2MultiassetMultiAssets */
3547export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}3475export interface XcmV2MultiassetMultiAssets extends Vec<XcmV2MultiAsset> {}
35483476
3549/** @name XcmV1MultiassetWildFungibility */3477/** @name XcmV2MultiassetWildFungibility */
3550export interface XcmV1MultiassetWildFungibility extends Enum {3478export interface XcmV2MultiassetWildFungibility extends Enum {
3551 readonly isFungible: boolean;3479 readonly isFungible: boolean;
3552 readonly isNonFungible: boolean;3480 readonly isNonFungible: boolean;
3553 readonly type: 'Fungible' | 'NonFungible';3481 readonly type: 'Fungible' | 'NonFungible';
3554}3482}
35553483
3556/** @name XcmV1MultiassetWildMultiAsset */3484/** @name XcmV2MultiassetWildMultiAsset */
3557export interface XcmV1MultiassetWildMultiAsset extends Enum {3485export interface XcmV2MultiassetWildMultiAsset extends Enum {
3558 readonly isAll: boolean;3486 readonly isAll: boolean;
3559 readonly isAllOf: boolean;3487 readonly isAllOf: boolean;
3560 readonly asAllOf: {3488 readonly asAllOf: {
3561 readonly id: XcmV1MultiassetAssetId;3489 readonly id: XcmV2MultiassetAssetId;
3562 readonly fun: XcmV1MultiassetWildFungibility;3490 readonly fun: XcmV2MultiassetWildFungibility;
3563 } & Struct;3491 } & Struct;
3564 readonly type: 'All' | 'AllOf';3492 readonly type: 'All' | 'AllOf';
3565}3493}
35663494
3567/** @name XcmV1MultiLocation */3495/** @name XcmV2MultiLocation */
3568export interface XcmV1MultiLocation extends Struct {3496export interface XcmV2MultiLocation extends Struct {
3569 readonly parents: u8;3497 readonly parents: u8;
3570 readonly interior: XcmV1MultilocationJunctions;3498 readonly interior: XcmV2MultilocationJunctions;
3571}3499}
35723500
3573/** @name XcmV1MultilocationJunctions */3501/** @name XcmV2MultilocationJunctions */
3574export interface XcmV1MultilocationJunctions extends Enum {3502export interface XcmV2MultilocationJunctions extends Enum {
3575 readonly isHere: boolean;3503 readonly isHere: boolean;
3576 readonly isX1: boolean;3504 readonly isX1: boolean;
3577 readonly asX1: XcmV1Junction;3505 readonly asX1: XcmV2Junction;
3578 readonly isX2: boolean;3506 readonly isX2: boolean;
3579 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;3507 readonly asX2: ITuple<[XcmV2Junction, XcmV2Junction]>;
3580 readonly isX3: boolean;3508 readonly isX3: boolean;
3581 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3509 readonly asX3: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
3582 readonly isX4: boolean;3510 readonly isX4: boolean;
3583 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3511 readonly asX4: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
3584 readonly isX5: boolean;3512 readonly isX5: boolean;
3585 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3513 readonly asX5: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
3586 readonly isX6: boolean;3514 readonly isX6: boolean;
3587 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3515 readonly asX6: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
3588 readonly isX7: boolean;3516 readonly isX7: boolean;
3589 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3517 readonly asX7: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
3590 readonly isX8: boolean;3518 readonly isX8: boolean;
3591 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3519 readonly asX8: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
3592 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';3520 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
3593}3521}
35943522
3595/** @name XcmV1Order */3523/** @name XcmV2NetworkId */
3596export interface XcmV1Order extends Enum {3524export interface XcmV2NetworkId extends Enum {
3597 readonly isNoop: boolean;3525 readonly isAny: boolean;
3598 readonly isDepositAsset: boolean;3526 readonly isNamed: boolean;
3599 readonly asDepositAsset: {3527 readonly asNamed: Bytes;
3600 readonly assets: XcmV1MultiassetMultiAssetFilter;
3601 readonly maxAssets: u32;3528 readonly isPolkadot: boolean;
3602 readonly beneficiary: XcmV1MultiLocation;
3603 } & Struct;
3604 readonly isDepositReserveAsset: boolean;
3605 readonly asDepositReserveAsset: {3529 readonly isKusama: boolean;
3606 readonly assets: XcmV1MultiassetMultiAssetFilter;
3607 readonly maxAssets: u32;
3608 readonly dest: XcmV1MultiLocation;
3609 readonly effects: Vec<XcmV1Order>;
3610 } & Struct;
3611 readonly isExchangeAsset: boolean;
3612 readonly asExchangeAsset: {3530 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';
3613 readonly give: XcmV1MultiassetMultiAssetFilter;
3614 readonly receive: XcmV1MultiassetMultiAssets;
3615 } & Struct;
3616 readonly isInitiateReserveWithdraw: boolean;
3617 readonly asInitiateReserveWithdraw: {
3618 readonly assets: XcmV1MultiassetMultiAssetFilter;
3619 readonly reserve: XcmV1MultiLocation;
3620 readonly effects: Vec<XcmV1Order>;
3621 } & Struct;
3622 readonly isInitiateTeleport: boolean;
3623 readonly asInitiateTeleport: {
3624 readonly assets: XcmV1MultiassetMultiAssetFilter;
3625 readonly dest: XcmV1MultiLocation;
3626 readonly effects: Vec<XcmV1Order>;
3627 } & Struct;
3628 readonly isQueryHolding: boolean;
3629 readonly asQueryHolding: {
3630 readonly queryId: Compact<u64>;
3631 readonly dest: XcmV1MultiLocation;
3632 readonly assets: XcmV1MultiassetMultiAssetFilter;
3633 } & Struct;
3634 readonly isBuyExecution: boolean;
3635 readonly asBuyExecution: {
3636 readonly fees: XcmV1MultiAsset;
3637 readonly weight: u64;
3638 readonly debt: u64;
3639 readonly haltOnError: bool;
3640 readonly instructions: Vec<XcmV1Xcm>;
3641 } & Struct;
3642 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
3643}3531}
36443532
3645/** @name XcmV1Response */3533/** @name XcmV2OriginKind */
3646export interface XcmV1Response extends Enum {3534export interface XcmV2OriginKind extends Enum {
3535 readonly isNative: boolean;
3536 readonly isSovereignAccount: boolean;
3537 readonly isSuperuser: boolean;
3538 readonly isXcm: boolean;
3539 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';
3540}
3541
3542/** @name XcmV2Response */
3543export interface XcmV2Response extends Enum {
3544 readonly isNull: boolean;
3647 readonly isAssets: boolean;3545 readonly isAssets: boolean;
3648 readonly asAssets: XcmV1MultiassetMultiAssets;3546 readonly asAssets: XcmV2MultiassetMultiAssets;
3547 readonly isExecutionResult: boolean;
3548 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;
3649 readonly isVersion: boolean;3549 readonly isVersion: boolean;
3650 readonly asVersion: u32;3550 readonly asVersion: u32;
3651 readonly type: 'Assets' | 'Version';3551 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';
3652}3552}
36533553
3654/** @name XcmV1Xcm */3554/** @name XcmV2TraitsError */
3655export interface XcmV1Xcm extends Enum {3555export interface XcmV2TraitsError extends Enum {
3656 readonly isWithdrawAsset: boolean;3556 readonly isOverflow: boolean;
3657 readonly asWithdrawAsset: {3557 readonly isUnimplemented: boolean;
3658 readonly assets: XcmV1MultiassetMultiAssets;3558 readonly isUntrustedReserveLocation: boolean;
3659 readonly effects: Vec<XcmV1Order>;3559 readonly isUntrustedTeleportLocation: boolean;
3660 } & Struct;3560 readonly isMultiLocationFull: boolean;
3661 readonly isReserveAssetDeposited: boolean;
3662 readonly asReserveAssetDeposited: {3561 readonly isMultiLocationNotInvertible: boolean;
3663 readonly assets: XcmV1MultiassetMultiAssets;
3664 readonly effects: Vec<XcmV1Order>;3562 readonly isBadOrigin: boolean;
3665 } & Struct;3563 readonly isInvalidLocation: boolean;
3666 readonly isReceiveTeleportedAsset: boolean;
3667 readonly asReceiveTeleportedAsset: {3564 readonly isAssetNotFound: boolean;
3668 readonly assets: XcmV1MultiassetMultiAssets;
3669 readonly effects: Vec<XcmV1Order>;3565 readonly isFailedToTransactAsset: boolean;
3670 } & Struct;3566 readonly isNotWithdrawable: boolean;
3671 readonly isQueryResponse: boolean;
3672 readonly asQueryResponse: {3567 readonly isLocationCannotHold: boolean;
3673 readonly queryId: Compact<u64>;
3674 readonly response: XcmV1Response;3568 readonly isExceedsMaxMessageSize: boolean;
3675 } & Struct;3569 readonly isDestinationUnsupported: boolean;
3676 readonly isTransferAsset: boolean;
3677 readonly asTransferAsset: {3570 readonly isTransport: boolean;
3678 readonly assets: XcmV1MultiassetMultiAssets;
3679 readonly beneficiary: XcmV1MultiLocation;3571 readonly isUnroutable: boolean;
3680 } & Struct;3572 readonly isUnknownClaim: boolean;
3681 readonly isTransferReserveAsset: boolean;
3682 readonly asTransferReserveAsset: {3573 readonly isFailedToDecode: boolean;
3683 readonly assets: XcmV1MultiassetMultiAssets;
3684 readonly dest: XcmV1MultiLocation;3574 readonly isMaxWeightInvalid: boolean;
3685 readonly effects: Vec<XcmV1Order>;3575 readonly isNotHoldingFees: boolean;
3686 } & Struct;3576 readonly isTooExpensive: boolean;
3687 readonly isTransact: boolean;
3688 readonly asTransact: {3577 readonly isTrap: boolean;
3689 readonly originType: XcmV0OriginKind;
3690 readonly requireWeightAtMost: u64;3578 readonly asTrap: u64;
3691 readonly call: XcmDoubleEncoded;3579 readonly isUnhandledXcmVersion: boolean;
3692 } & Struct;
3693 readonly isHrmpNewChannelOpenRequest: boolean;
3694 readonly asHrmpNewChannelOpenRequest: {3580 readonly isWeightLimitReached: boolean;
3695 readonly sender: Compact<u32>;
3696 readonly maxMessageSize: Compact<u32>;
3697 readonly maxCapacity: Compact<u32>;
3698 } & Struct;
3699 readonly isHrmpChannelAccepted: boolean;
3700 readonly asHrmpChannelAccepted: {3581 readonly asWeightLimitReached: u64;
3701 readonly recipient: Compact<u32>;
3702 } & Struct;3582 readonly isBarrier: boolean;
3703 readonly isHrmpChannelClosing: boolean;
3704 readonly asHrmpChannelClosing: {3583 readonly isWeightNotComputable: boolean;
3705 readonly initiator: Compact<u32>;
3706 readonly sender: Compact<u32>;
3707 readonly recipient: Compact<u32>;
3708 } & Struct;
3709 readonly isRelayedFrom: boolean;
3710 readonly asRelayedFrom: {3584 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';
3711 readonly who: XcmV1MultilocationJunctions;
3712 readonly message: XcmV1Xcm;
3713 } & Struct;
3714 readonly isSubscribeVersion: boolean;
3715 readonly asSubscribeVersion: {
3716 readonly queryId: Compact<u64>;
3717 readonly maxResponseWeight: Compact<u64>;
3718 } & Struct;
3719 readonly isUnsubscribeVersion: boolean;
3720 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';
3721}3585}
37223586
3723/** @name XcmV2Instruction */3587/** @name XcmV2WeightLimit */
3588export interface XcmV2WeightLimit extends Enum {
3589 readonly isUnlimited: boolean;
3590 readonly isLimited: boolean;
3591 readonly asLimited: Compact<u64>;
3592 readonly type: 'Unlimited' | 'Limited';
3593}
3594
3595/** @name XcmV2Xcm */
3596export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}
3597
3598/** @name XcmV3Instruction */
3724export interface XcmV2Instruction extends Enum {3599export interface XcmV3Instruction extends Enum {
3725 readonly isWithdrawAsset: boolean;3600 readonly isWithdrawAsset: boolean;
3726 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;3601 readonly asWithdrawAsset: XcmV3MultiassetMultiAssets;
3727 readonly isReserveAssetDeposited: boolean;3602 readonly isReserveAssetDeposited: boolean;
3728 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;3603 readonly asReserveAssetDeposited: XcmV3MultiassetMultiAssets;
3729 readonly isReceiveTeleportedAsset: boolean;3604 readonly isReceiveTeleportedAsset: boolean;
3730 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;3605 readonly asReceiveTeleportedAsset: XcmV3MultiassetMultiAssets;
3731 readonly isQueryResponse: boolean;3606 readonly isQueryResponse: boolean;
3732 readonly asQueryResponse: {3607 readonly asQueryResponse: {
3733 readonly queryId: Compact<u64>;3608 readonly queryId: Compact<u64>;
3734 readonly response: XcmV2Response;3609 readonly response: XcmV3Response;
3735 readonly maxWeight: Compact<u64>;3610 readonly maxWeight: SpWeightsWeightV2Weight;
3611 readonly querier: Option<XcmV3MultiLocation>;
3736 } & Struct;3612 } & Struct;
3737 readonly isTransferAsset: boolean;3613 readonly isTransferAsset: boolean;
3738 readonly asTransferAsset: {3614 readonly asTransferAsset: {
3739 readonly assets: XcmV1MultiassetMultiAssets;3615 readonly assets: XcmV3MultiassetMultiAssets;
3740 readonly beneficiary: XcmV1MultiLocation;3616 readonly beneficiary: XcmV3MultiLocation;
3741 } & Struct;3617 } & Struct;
3742 readonly isTransferReserveAsset: boolean;3618 readonly isTransferReserveAsset: boolean;
3743 readonly asTransferReserveAsset: {3619 readonly asTransferReserveAsset: {
3744 readonly assets: XcmV1MultiassetMultiAssets;3620 readonly assets: XcmV3MultiassetMultiAssets;
3745 readonly dest: XcmV1MultiLocation;3621 readonly dest: XcmV3MultiLocation;
3746 readonly xcm: XcmV2Xcm;3622 readonly xcm: XcmV3Xcm;
3747 } & Struct;3623 } & Struct;
3748 readonly isTransact: boolean;3624 readonly isTransact: boolean;
3749 readonly asTransact: {3625 readonly asTransact: {
3750 readonly originType: XcmV0OriginKind;3626 readonly originKind: XcmV2OriginKind;
3751 readonly requireWeightAtMost: Compact<u64>;3627 readonly requireWeightAtMost: SpWeightsWeightV2Weight;
3752 readonly call: XcmDoubleEncoded;3628 readonly call: XcmDoubleEncoded;
3753 } & Struct;3629 } & Struct;
3754 readonly isHrmpNewChannelOpenRequest: boolean;3630 readonly isHrmpNewChannelOpenRequest: boolean;
3769 } & Struct;3645 } & Struct;
3770 readonly isClearOrigin: boolean;3646 readonly isClearOrigin: boolean;
3771 readonly isDescendOrigin: boolean;3647 readonly isDescendOrigin: boolean;
3772 readonly asDescendOrigin: XcmV1MultilocationJunctions;3648 readonly asDescendOrigin: XcmV3Junctions;
3773 readonly isReportError: boolean;3649 readonly isReportError: boolean;
3774 readonly asReportError: {3650 readonly asReportError: XcmV3QueryResponseInfo;
3775 readonly queryId: Compact<u64>;
3776 readonly dest: XcmV1MultiLocation;
3777 readonly maxResponseWeight: Compact<u64>;
3778 } & Struct;
3779 readonly isDepositAsset: boolean;3651 readonly isDepositAsset: boolean;
3780 readonly asDepositAsset: {3652 readonly asDepositAsset: {
3781 readonly assets: XcmV1MultiassetMultiAssetFilter;3653 readonly assets: XcmV3MultiassetMultiAssetFilter;
3782 readonly maxAssets: Compact<u32>;3654 readonly beneficiary: XcmV3MultiLocation;
3783 readonly beneficiary: XcmV1MultiLocation;
3784 } & Struct;3655 } & Struct;
3785 readonly isDepositReserveAsset: boolean;3656 readonly isDepositReserveAsset: boolean;
3786 readonly asDepositReserveAsset: {3657 readonly asDepositReserveAsset: {
3787 readonly assets: XcmV1MultiassetMultiAssetFilter;3658 readonly assets: XcmV3MultiassetMultiAssetFilter;
3788 readonly maxAssets: Compact<u32>;3659 readonly dest: XcmV3MultiLocation;
3789 readonly dest: XcmV1MultiLocation;
3790 readonly xcm: XcmV2Xcm;3660 readonly xcm: XcmV3Xcm;
3791 } & Struct;3661 } & Struct;
3792 readonly isExchangeAsset: boolean;3662 readonly isExchangeAsset: boolean;
3793 readonly asExchangeAsset: {3663 readonly asExchangeAsset: {
3794 readonly give: XcmV1MultiassetMultiAssetFilter;3664 readonly give: XcmV3MultiassetMultiAssetFilter;
3795 readonly receive: XcmV1MultiassetMultiAssets;3665 readonly want: XcmV3MultiassetMultiAssets;
3666 readonly maximal: bool;
3796 } & Struct;3667 } & Struct;
3797 readonly isInitiateReserveWithdraw: boolean;3668 readonly isInitiateReserveWithdraw: boolean;
3798 readonly asInitiateReserveWithdraw: {3669 readonly asInitiateReserveWithdraw: {
3799 readonly assets: XcmV1MultiassetMultiAssetFilter;3670 readonly assets: XcmV3MultiassetMultiAssetFilter;
3800 readonly reserve: XcmV1MultiLocation;3671 readonly reserve: XcmV3MultiLocation;
3801 readonly xcm: XcmV2Xcm;3672 readonly xcm: XcmV3Xcm;
3802 } & Struct;3673 } & Struct;
3803 readonly isInitiateTeleport: boolean;3674 readonly isInitiateTeleport: boolean;
3804 readonly asInitiateTeleport: {3675 readonly asInitiateTeleport: {
3805 readonly assets: XcmV1MultiassetMultiAssetFilter;3676 readonly assets: XcmV3MultiassetMultiAssetFilter;
3806 readonly dest: XcmV1MultiLocation;3677 readonly dest: XcmV3MultiLocation;
3807 readonly xcm: XcmV2Xcm;3678 readonly xcm: XcmV3Xcm;
3808 } & Struct;3679 } & Struct;
3809 readonly isQueryHolding: boolean;3680 readonly isReportHolding: boolean;
3810 readonly asQueryHolding: {3681 readonly asReportHolding: {
3811 readonly queryId: Compact<u64>;3682 readonly responseInfo: XcmV3QueryResponseInfo;
3812 readonly dest: XcmV1MultiLocation;3683 readonly assets: XcmV3MultiassetMultiAssetFilter;
3813 readonly assets: XcmV1MultiassetMultiAssetFilter;
3814 readonly maxResponseWeight: Compact<u64>;
3815 } & Struct;3684 } & Struct;
3816 readonly isBuyExecution: boolean;3685 readonly isBuyExecution: boolean;
3817 readonly asBuyExecution: {3686 readonly asBuyExecution: {
3818 readonly fees: XcmV1MultiAsset;3687 readonly fees: XcmV3MultiAsset;
3819 readonly weightLimit: XcmV2WeightLimit;3688 readonly weightLimit: XcmV3WeightLimit;
3820 } & Struct;3689 } & Struct;
3821 readonly isRefundSurplus: boolean;3690 readonly isRefundSurplus: boolean;
3822 readonly isSetErrorHandler: boolean;3691 readonly isSetErrorHandler: boolean;
3823 readonly asSetErrorHandler: XcmV2Xcm;3692 readonly asSetErrorHandler: XcmV3Xcm;
3824 readonly isSetAppendix: boolean;3693 readonly isSetAppendix: boolean;
3825 readonly asSetAppendix: XcmV2Xcm;3694 readonly asSetAppendix: XcmV3Xcm;
3826 readonly isClearError: boolean;3695 readonly isClearError: boolean;
3827 readonly isClaimAsset: boolean;3696 readonly isClaimAsset: boolean;
3828 readonly asClaimAsset: {3697 readonly asClaimAsset: {
3829 readonly assets: XcmV1MultiassetMultiAssets;3698 readonly assets: XcmV3MultiassetMultiAssets;
3830 readonly ticket: XcmV1MultiLocation;3699 readonly ticket: XcmV3MultiLocation;
3831 } & Struct;3700 } & Struct;
3832 readonly isTrap: boolean;3701 readonly isTrap: boolean;
3833 readonly asTrap: Compact<u64>;3702 readonly asTrap: Compact<u64>;
3834 readonly isSubscribeVersion: boolean;3703 readonly isSubscribeVersion: boolean;
3835 readonly asSubscribeVersion: {3704 readonly asSubscribeVersion: {
3836 readonly queryId: Compact<u64>;3705 readonly queryId: Compact<u64>;
3837 readonly maxResponseWeight: Compact<u64>;3706 readonly maxResponseWeight: SpWeightsWeightV2Weight;
3838 } & Struct;3707 } & Struct;
3839 readonly isUnsubscribeVersion: boolean;3708 readonly isUnsubscribeVersion: boolean;
3840 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';3709 readonly isBurnAsset: boolean;
3710 readonly asBurnAsset: XcmV3MultiassetMultiAssets;
3711 readonly isExpectAsset: boolean;
3712 readonly asExpectAsset: XcmV3MultiassetMultiAssets;
3713 readonly isExpectOrigin: boolean;
3714 readonly asExpectOrigin: Option<XcmV3MultiLocation>;
3715 readonly isExpectError: boolean;
3716 readonly asExpectError: Option<ITuple<[u32, XcmV3TraitsError]>>;
3717 readonly isExpectTransactStatus: boolean;
3718 readonly asExpectTransactStatus: XcmV3MaybeErrorCode;
3719 readonly isQueryPallet: boolean;
3720 readonly asQueryPallet: {
3721 readonly moduleName: Bytes;
3722 readonly responseInfo: XcmV3QueryResponseInfo;
3723 } & Struct;
3724 readonly isExpectPallet: boolean;
3725 readonly asExpectPallet: {
3726 readonly index: Compact<u32>;
3727 readonly name: Bytes;
3728 readonly moduleName: Bytes;
3729 readonly crateMajor: Compact<u32>;
3730 readonly minCrateMinor: Compact<u32>;
3731 } & Struct;
3732 readonly isReportTransactStatus: boolean;
3733 readonly asReportTransactStatus: XcmV3QueryResponseInfo;
3734 readonly isClearTransactStatus: boolean;
3735 readonly isUniversalOrigin: boolean;
3736 readonly asUniversalOrigin: XcmV3Junction;
3737 readonly isExportMessage: boolean;
3738 readonly asExportMessage: {
3739 readonly network: XcmV3JunctionNetworkId;
3740 readonly destination: XcmV3Junctions;
3741 readonly xcm: XcmV3Xcm;
3742 } & Struct;
3743 readonly isLockAsset: boolean;
3744 readonly asLockAsset: {
3745 readonly asset: XcmV3MultiAsset;
3746 readonly unlocker: XcmV3MultiLocation;
3747 } & Struct;
3748 readonly isUnlockAsset: boolean;
3749 readonly asUnlockAsset: {
3750 readonly asset: XcmV3MultiAsset;
3751 readonly target: XcmV3MultiLocation;
3752 } & Struct;
3753 readonly isNoteUnlockable: boolean;
3754 readonly asNoteUnlockable: {
3755 readonly asset: XcmV3MultiAsset;
3756 readonly owner: XcmV3MultiLocation;
3757 } & Struct;
3758 readonly isRequestUnlock: boolean;
3759 readonly asRequestUnlock: {
3760 readonly asset: XcmV3MultiAsset;
3761 readonly locker: XcmV3MultiLocation;
3762 } & Struct;
3763 readonly isSetFeesMode: boolean;
3764 readonly asSetFeesMode: {
3765 readonly jitWithdraw: bool;
3766 } & Struct;
3767 readonly isSetTopic: boolean;
3768 readonly asSetTopic: U8aFixed;
3769 readonly isClearTopic: boolean;
3770 readonly isAliasOrigin: boolean;
3771 readonly asAliasOrigin: XcmV3MultiLocation;
3772 readonly isUnpaidExecution: boolean;
3773 readonly asUnpaidExecution: {
3774 readonly weightLimit: XcmV3WeightLimit;
3775 readonly checkOrigin: Option<XcmV3MultiLocation>;
3776 } & Struct;
3777 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'ReportHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion' | 'BurnAsset' | 'ExpectAsset' | 'ExpectOrigin' | 'ExpectError' | 'ExpectTransactStatus' | 'QueryPallet' | 'ExpectPallet' | 'ReportTransactStatus' | 'ClearTransactStatus' | 'UniversalOrigin' | 'ExportMessage' | 'LockAsset' | 'UnlockAsset' | 'NoteUnlockable' | 'RequestUnlock' | 'SetFeesMode' | 'SetTopic' | 'ClearTopic' | 'AliasOrigin' | 'UnpaidExecution';
3841}3778}
38423779
3843/** @name XcmV2Response */3780/** @name XcmV3Junction */
3844export interface XcmV2Response extends Enum {3781export interface XcmV3Junction extends Enum {
3782 readonly isParachain: boolean;
3783 readonly asParachain: Compact<u32>;
3784 readonly isAccountId32: boolean;
3785 readonly asAccountId32: {
3786 readonly network: Option<XcmV3JunctionNetworkId>;
3787 readonly id: U8aFixed;
3788 } & Struct;
3789 readonly isAccountIndex64: boolean;
3790 readonly asAccountIndex64: {
3791 readonly network: Option<XcmV3JunctionNetworkId>;
3792 readonly index: Compact<u64>;
3793 } & Struct;
3794 readonly isAccountKey20: boolean;
3795 readonly asAccountKey20: {
3796 readonly network: Option<XcmV3JunctionNetworkId>;
3797 readonly key: U8aFixed;
3798 } & Struct;
3799 readonly isPalletInstance: boolean;
3800 readonly asPalletInstance: u8;
3801 readonly isGeneralIndex: boolean;
3802 readonly asGeneralIndex: Compact<u128>;
3803 readonly isGeneralKey: boolean;
3804 readonly asGeneralKey: {
3805 readonly length: u8;
3806 readonly data: U8aFixed;
3807 } & Struct;
3808 readonly isOnlyChild: boolean;
3809 readonly isPlurality: boolean;
3810 readonly asPlurality: {
3811 readonly id: XcmV3JunctionBodyId;
3812 readonly part: XcmV3JunctionBodyPart;
3813 } & Struct;
3814 readonly isGlobalConsensus: boolean;
3815 readonly asGlobalConsensus: XcmV3JunctionNetworkId;
3816 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality' | 'GlobalConsensus';
3817}
3818
3819/** @name XcmV3JunctionBodyId */
3820export interface XcmV3JunctionBodyId extends Enum {
3821 readonly isUnit: boolean;
3822 readonly isMoniker: boolean;
3823 readonly asMoniker: U8aFixed;
3824 readonly isIndex: boolean;
3825 readonly asIndex: Compact<u32>;
3826 readonly isExecutive: boolean;
3827 readonly isTechnical: boolean;
3828 readonly isLegislative: boolean;
3829 readonly isJudicial: boolean;
3830 readonly isDefense: boolean;
3831 readonly isAdministration: boolean;
3832 readonly isTreasury: boolean;
3833 readonly type: 'Unit' | 'Moniker' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';
3834}
3835
3836/** @name XcmV3JunctionBodyPart */
3837export interface XcmV3JunctionBodyPart extends Enum {
3838 readonly isVoice: boolean;
3839 readonly isMembers: boolean;
3840 readonly asMembers: {
3841 readonly count: Compact<u32>;
3842 } & Struct;
3843 readonly isFraction: boolean;
3844 readonly asFraction: {
3845 readonly nom: Compact<u32>;
3846 readonly denom: Compact<u32>;
3847 } & Struct;
3848 readonly isAtLeastProportion: boolean;
3849 readonly asAtLeastProportion: {
3850 readonly nom: Compact<u32>;
3851 readonly denom: Compact<u32>;
3852 } & Struct;
3853 readonly isMoreThanProportion: boolean;
3854 readonly asMoreThanProportion: {
3855 readonly nom: Compact<u32>;
3856 readonly denom: Compact<u32>;
3857 } & Struct;
3858 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
3859}
3860
3861/** @name XcmV3JunctionNetworkId */
3862export interface XcmV3JunctionNetworkId extends Enum {
3863 readonly isByGenesis: boolean;
3864 readonly asByGenesis: U8aFixed;
3865 readonly isByFork: boolean;
3866 readonly asByFork: {
3867 readonly blockNumber: u64;
3868 readonly blockHash: U8aFixed;
3869 } & Struct;
3870 readonly isPolkadot: boolean;
3871 readonly isKusama: boolean;
3872 readonly isWestend: boolean;
3873 readonly isRococo: boolean;
3874 readonly isWococo: boolean;
3875 readonly isEthereum: boolean;
3876 readonly asEthereum: {
3877 readonly chainId: Compact<u64>;
3878 } & Struct;
3879 readonly isBitcoinCore: boolean;
3880 readonly isBitcoinCash: boolean;
3881 readonly type: 'ByGenesis' | 'ByFork' | 'Polkadot' | 'Kusama' | 'Westend' | 'Rococo' | 'Wococo' | 'Ethereum' | 'BitcoinCore' | 'BitcoinCash';
3882}
3883
3884/** @name XcmV3Junctions */
3885export interface XcmV3Junctions extends Enum {
3886 readonly isHere: boolean;
3887 readonly isX1: boolean;
3888 readonly asX1: XcmV3Junction;
3889 readonly isX2: boolean;
3890 readonly asX2: ITuple<[XcmV3Junction, XcmV3Junction]>;
3891 readonly isX3: boolean;
3892 readonly asX3: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
3893 readonly isX4: boolean;
3894 readonly asX4: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
3895 readonly isX5: boolean;
3896 readonly asX5: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
3897 readonly isX6: boolean;
3898 readonly asX6: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
3899 readonly isX7: boolean;
3900 readonly asX7: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
3901 readonly isX8: boolean;
3902 readonly asX8: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
3903 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
3904}
3905
3906/** @name XcmV3MaybeErrorCode */
3907export interface XcmV3MaybeErrorCode extends Enum {
3908 readonly isSuccess: boolean;
3909 readonly isError: boolean;
3910 readonly asError: Bytes;
3911 readonly isTruncatedError: boolean;
3912 readonly asTruncatedError: Bytes;
3913 readonly type: 'Success' | 'Error' | 'TruncatedError';
3914}
3915
3916/** @name XcmV3MultiAsset */
3917export interface XcmV3MultiAsset extends Struct {
3918 readonly id: XcmV3MultiassetAssetId;
3919 readonly fun: XcmV3MultiassetFungibility;
3920}
3921
3922/** @name XcmV3MultiassetAssetId */
3923export interface XcmV3MultiassetAssetId extends Enum {
3924 readonly isConcrete: boolean;
3925 readonly asConcrete: XcmV3MultiLocation;
3926 readonly isAbstract: boolean;
3927 readonly asAbstract: U8aFixed;
3928 readonly type: 'Concrete' | 'Abstract';
3929}
3930
3931/** @name XcmV3MultiassetAssetInstance */
3932export interface XcmV3MultiassetAssetInstance extends Enum {
3933 readonly isUndefined: boolean;
3934 readonly isIndex: boolean;
3935 readonly asIndex: Compact<u128>;
3936 readonly isArray4: boolean;
3937 readonly asArray4: U8aFixed;
3938 readonly isArray8: boolean;
3939 readonly asArray8: U8aFixed;
3940 readonly isArray16: boolean;
3941 readonly asArray16: U8aFixed;
3942 readonly isArray32: boolean;
3943 readonly asArray32: U8aFixed;
3944 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32';
3945}
3946
3947/** @name XcmV3MultiassetFungibility */
3948export interface XcmV3MultiassetFungibility extends Enum {
3949 readonly isFungible: boolean;
3950 readonly asFungible: Compact<u128>;
3951 readonly isNonFungible: boolean;
3952 readonly asNonFungible: XcmV3MultiassetAssetInstance;
3953 readonly type: 'Fungible' | 'NonFungible';
3954}
3955
3956/** @name XcmV3MultiassetMultiAssetFilter */
3957export interface XcmV3MultiassetMultiAssetFilter extends Enum {
3958 readonly isDefinite: boolean;
3959 readonly asDefinite: XcmV3MultiassetMultiAssets;
3960 readonly isWild: boolean;
3961 readonly asWild: XcmV3MultiassetWildMultiAsset;
3962 readonly type: 'Definite' | 'Wild';
3963}
3964
3965/** @name XcmV3MultiassetMultiAssets */
3966export interface XcmV3MultiassetMultiAssets extends Vec<XcmV3MultiAsset> {}
3967
3968/** @name XcmV3MultiassetWildFungibility */
3969export interface XcmV3MultiassetWildFungibility extends Enum {
3970 readonly isFungible: boolean;
3971 readonly isNonFungible: boolean;
3972 readonly type: 'Fungible' | 'NonFungible';
3973}
3974
3975/** @name XcmV3MultiassetWildMultiAsset */
3976export interface XcmV3MultiassetWildMultiAsset extends Enum {
3977 readonly isAll: boolean;
3978 readonly isAllOf: boolean;
3979 readonly asAllOf: {
3980 readonly id: XcmV3MultiassetAssetId;
3981 readonly fun: XcmV3MultiassetWildFungibility;
3982 } & Struct;
3983 readonly isAllCounted: boolean;
3984 readonly asAllCounted: Compact<u32>;
3985 readonly isAllOfCounted: boolean;
3986 readonly asAllOfCounted: {
3987 readonly id: XcmV3MultiassetAssetId;
3988 readonly fun: XcmV3MultiassetWildFungibility;
3989 readonly count: Compact<u32>;
3990 } & Struct;
3991 readonly type: 'All' | 'AllOf' | 'AllCounted' | 'AllOfCounted';
3992}
3993
3994/** @name XcmV3MultiLocation */
3995export interface XcmV3MultiLocation extends Struct {
3996 readonly parents: u8;
3997 readonly interior: XcmV3Junctions;
3998}
3999
4000/** @name XcmV3PalletInfo */
4001export interface XcmV3PalletInfo extends Struct {
4002 readonly index: Compact<u32>;
4003 readonly name: Bytes;
4004 readonly moduleName: Bytes;
4005 readonly major: Compact<u32>;
4006 readonly minor: Compact<u32>;
4007 readonly patch: Compact<u32>;
4008}
4009
4010/** @name XcmV3QueryResponseInfo */
4011export interface XcmV3QueryResponseInfo extends Struct {
4012 readonly destination: XcmV3MultiLocation;
4013 readonly queryId: Compact<u64>;
4014 readonly maxWeight: SpWeightsWeightV2Weight;
4015}
4016
4017/** @name XcmV3Response */
4018export interface XcmV3Response extends Enum {
3845 readonly isNull: boolean;4019 readonly isNull: boolean;
3846 readonly isAssets: boolean;4020 readonly isAssets: boolean;
3847 readonly asAssets: XcmV1MultiassetMultiAssets;4021 readonly asAssets: XcmV3MultiassetMultiAssets;
3848 readonly isExecutionResult: boolean;4022 readonly isExecutionResult: boolean;
3849 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;4023 readonly asExecutionResult: Option<ITuple<[u32, XcmV3TraitsError]>>;
3850 readonly isVersion: boolean;4024 readonly isVersion: boolean;
3851 readonly asVersion: u32;4025 readonly asVersion: u32;
3852 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';4026 readonly isPalletsInfo: boolean;
4027 readonly asPalletsInfo: Vec<XcmV3PalletInfo>;
4028 readonly isDispatchResult: boolean;
4029 readonly asDispatchResult: XcmV3MaybeErrorCode;
4030 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version' | 'PalletsInfo' | 'DispatchResult';
3853}4031}
38544032
3855/** @name XcmV2TraitsError */4033/** @name XcmV3TraitsError */
3856export interface XcmV2TraitsError extends Enum {4034export interface XcmV3TraitsError extends Enum {
3857 readonly isOverflow: boolean;4035 readonly isOverflow: boolean;
3858 readonly isUnimplemented: boolean;4036 readonly isUnimplemented: boolean;
3859 readonly isUntrustedReserveLocation: boolean;4037 readonly isUntrustedReserveLocation: boolean;
3860 readonly isUntrustedTeleportLocation: boolean;4038 readonly isUntrustedTeleportLocation: boolean;
3861 readonly isMultiLocationFull: boolean;4039 readonly isLocationFull: boolean;
3862 readonly isMultiLocationNotInvertible: boolean;4040 readonly isLocationNotInvertible: boolean;
3863 readonly isBadOrigin: boolean;4041 readonly isBadOrigin: boolean;
3864 readonly isInvalidLocation: boolean;4042 readonly isInvalidLocation: boolean;
3865 readonly isAssetNotFound: boolean;4043 readonly isAssetNotFound: boolean;
3877 readonly isTooExpensive: boolean;4055 readonly isTooExpensive: boolean;
3878 readonly isTrap: boolean;4056 readonly isTrap: boolean;
3879 readonly asTrap: u64;4057 readonly asTrap: u64;
4058 readonly isExpectationFalse: boolean;
4059 readonly isPalletNotFound: boolean;
4060 readonly isNameMismatch: boolean;
4061 readonly isVersionIncompatible: boolean;
4062 readonly isHoldingWouldOverflow: boolean;
4063 readonly isExportError: boolean;
4064 readonly isReanchorFailed: boolean;
4065 readonly isNoDeal: boolean;
4066 readonly isFeesNotMet: boolean;
4067 readonly isLockError: boolean;
4068 readonly isNoPermission: boolean;
4069 readonly isUnanchored: boolean;
4070 readonly isNotDepositable: boolean;
3880 readonly isUnhandledXcmVersion: boolean;4071 readonly isUnhandledXcmVersion: boolean;
3881 readonly isWeightLimitReached: boolean;4072 readonly isWeightLimitReached: boolean;
3882 readonly asWeightLimitReached: u64;4073 readonly asWeightLimitReached: SpWeightsWeightV2Weight;
3883 readonly isBarrier: boolean;4074 readonly isBarrier: boolean;
3884 readonly isWeightNotComputable: boolean;4075 readonly isWeightNotComputable: boolean;
3885 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';4076 readonly isExceedsStackLimit: boolean;
4077 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'LocationFull' | 'LocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'ExpectationFalse' | 'PalletNotFound' | 'NameMismatch' | 'VersionIncompatible' | 'HoldingWouldOverflow' | 'ExportError' | 'ReanchorFailed' | 'NoDeal' | 'FeesNotMet' | 'LockError' | 'NoPermission' | 'Unanchored' | 'NotDepositable' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable' | 'ExceedsStackLimit';
3886}4078}
38874079
3888/** @name XcmV2TraitsOutcome */4080/** @name XcmV3TraitsOutcome */
3889export interface XcmV2TraitsOutcome extends Enum {4081export interface XcmV3TraitsOutcome extends Enum {
3890 readonly isComplete: boolean;4082 readonly isComplete: boolean;
3891 readonly asComplete: u64;4083 readonly asComplete: SpWeightsWeightV2Weight;
3892 readonly isIncomplete: boolean;4084 readonly isIncomplete: boolean;
3893 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;4085 readonly asIncomplete: ITuple<[SpWeightsWeightV2Weight, XcmV3TraitsError]>;
3894 readonly isError: boolean;4086 readonly isError: boolean;
3895 readonly asError: XcmV2TraitsError;4087 readonly asError: XcmV3TraitsError;
3896 readonly type: 'Complete' | 'Incomplete' | 'Error';4088 readonly type: 'Complete' | 'Incomplete' | 'Error';
3897}4089}
38984090
3899/** @name XcmV2WeightLimit */4091/** @name XcmV3WeightLimit */
3900export interface XcmV2WeightLimit extends Enum {4092export interface XcmV3WeightLimit extends Enum {
3901 readonly isUnlimited: boolean;4093 readonly isUnlimited: boolean;
3902 readonly isLimited: boolean;4094 readonly isLimited: boolean;
3903 readonly asLimited: Compact<u64>;4095 readonly asLimited: SpWeightsWeightV2Weight;
3904 readonly type: 'Unlimited' | 'Limited';4096 readonly type: 'Unlimited' | 'Limited';
3905}4097}
39064098
3907/** @name XcmV2Xcm */4099/** @name XcmV3Xcm */
3908export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}4100export interface XcmV3Xcm extends Vec<XcmV3Instruction> {}
39094101
4102/** @name XcmVersionedAssetId */
4103export interface XcmVersionedAssetId extends Enum {
4104 readonly isV3: boolean;
4105 readonly asV3: XcmV3MultiassetAssetId;
4106 readonly type: 'V3';
4107}
4108
3910/** @name XcmVersionedMultiAsset */4109/** @name XcmVersionedMultiAsset */
3911export interface XcmVersionedMultiAsset extends Enum {4110export interface XcmVersionedMultiAsset extends Enum {
3912 readonly isV0: boolean;4111 readonly isV2: boolean;
3913 readonly asV0: XcmV0MultiAsset;4112 readonly asV2: XcmV2MultiAsset;
3914 readonly isV1: boolean;4113 readonly isV3: boolean;
3915 readonly asV1: XcmV1MultiAsset;4114 readonly asV3: XcmV3MultiAsset;
3916 readonly type: 'V0' | 'V1';4115 readonly type: 'V2' | 'V3';
3917}4116}
39184117
3919/** @name XcmVersionedMultiAssets */4118/** @name XcmVersionedMultiAssets */
3920export interface XcmVersionedMultiAssets extends Enum {4119export interface XcmVersionedMultiAssets extends Enum {
3921 readonly isV0: boolean;4120 readonly isV2: boolean;
3922 readonly asV0: Vec<XcmV0MultiAsset>;4121 readonly asV2: XcmV2MultiassetMultiAssets;
3923 readonly isV1: boolean;4122 readonly isV3: boolean;
3924 readonly asV1: XcmV1MultiassetMultiAssets;4123 readonly asV3: XcmV3MultiassetMultiAssets;
3925 readonly type: 'V0' | 'V1';4124 readonly type: 'V2' | 'V3';
3926}4125}
39274126
3928/** @name XcmVersionedMultiLocation */4127/** @name XcmVersionedMultiLocation */
3929export interface XcmVersionedMultiLocation extends Enum {4128export interface XcmVersionedMultiLocation extends Enum {
3930 readonly isV0: boolean;4129 readonly isV2: boolean;
3931 readonly asV0: XcmV0MultiLocation;4130 readonly asV2: XcmV2MultiLocation;
3932 readonly isV1: boolean;4131 readonly isV3: boolean;
3933 readonly asV1: XcmV1MultiLocation;4132 readonly asV3: XcmV3MultiLocation;
3934 readonly type: 'V0' | 'V1';4133 readonly type: 'V2' | 'V3';
4134}
4135
4136/** @name XcmVersionedResponse */
4137export interface XcmVersionedResponse extends Enum {
4138 readonly isV2: boolean;
4139 readonly asV2: XcmV2Response;
4140 readonly isV3: boolean;
4141 readonly asV3: XcmV3Response;
4142 readonly type: 'V2' | 'V3';
3935}4143}
39364144
3937/** @name XcmVersionedXcm */4145/** @name XcmVersionedXcm */
3938export interface XcmVersionedXcm extends Enum {4146export interface XcmVersionedXcm extends Enum {
3939 readonly isV0: boolean;
3940 readonly asV0: XcmV0Xcm;
3941 readonly isV1: boolean;
3942 readonly asV1: XcmV1Xcm;
3943 readonly isV2: boolean;4147 readonly isV2: boolean;
3944 readonly asV2: XcmV2Xcm;4148 readonly asV2: XcmV2Xcm;
3945 readonly type: 'V0' | 'V1' | 'V2';4149 readonly isV3: boolean;
4150 readonly asV3: XcmV3Xcm;
4151 readonly type: 'V2' | 'V3';
3946}4152}
39474153
3948export type PHANTOM_DEFAULT = 'default';4154export type PHANTOM_DEFAULT = 'default';
modifiedtests/src/interfaces/index.tsdiffbeforeafterboth
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2/* eslint-disable */2/* eslint-disable */
33
4export * from './types';4export * from './types.js';
55
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
179 },179 },
180 DownwardMessagesProcessed: {180 DownwardMessagesProcessed: {
181 weightUsed: 'SpWeightsWeightV2Weight',181 weightUsed: 'SpWeightsWeightV2Weight',
182 dmqHead: 'H256'182 dmqHead: 'H256',
183 },
184 UpwardMessageSent: {
185 messageHash: 'Option<[u8;32]>'
183 }186 }
184 }187 }
185 },188 },
186 /**189 /**
187 * Lookup30: pallet_collator_selection::pallet::Event<T>190 * Lookup31: pallet_collator_selection::pallet::Event<T>
188 **/191 **/
189 PalletCollatorSelectionEvent: {192 PalletCollatorSelectionEvent: {
190 _enum: {193 _enum: {
211 }214 }
212 },215 },
213 /**216 /**
214 * Lookup31: pallet_session::pallet::Event217 * Lookup32: pallet_session::pallet::Event
215 **/218 **/
216 PalletSessionEvent: {219 PalletSessionEvent: {
217 _enum: {220 _enum: {
221 }224 }
222 },225 },
223 /**226 /**
224 * Lookup32: pallet_balances::pallet::Event<T, I>227 * Lookup33: pallet_balances::pallet::Event<T, I>
225 **/228 **/
226 PalletBalancesEvent: {229 PalletBalancesEvent: {
227 _enum: {230 _enum: {
272 }275 }
273 },276 },
274 /**277 /**
275 * Lookup33: frame_support::traits::tokens::misc::BalanceStatus278 * Lookup34: frame_support::traits::tokens::misc::BalanceStatus
276 **/279 **/
277 FrameSupportTokensMiscBalanceStatus: {280 FrameSupportTokensMiscBalanceStatus: {
278 _enum: ['Free', 'Reserved']281 _enum: ['Free', 'Reserved']
279 },282 },
280 /**283 /**
281 * Lookup34: pallet_transaction_payment::pallet::Event<T>284 * Lookup35: pallet_transaction_payment::pallet::Event<T>
282 **/285 **/
283 PalletTransactionPaymentEvent: {286 PalletTransactionPaymentEvent: {
284 _enum: {287 _enum: {
290 }293 }
291 },294 },
292 /**295 /**
293 * Lookup35: pallet_treasury::pallet::Event<T, I>296 * Lookup36: pallet_treasury::pallet::Event<T, I>
294 **/297 **/
295 PalletTreasuryEvent: {298 PalletTreasuryEvent: {
296 _enum: {299 _enum: {
330 }333 }
331 },334 },
332 /**335 /**
333 * Lookup36: pallet_sudo::pallet::Event<T>336 * Lookup37: pallet_sudo::pallet::Event<T>
334 **/337 **/
335 PalletSudoEvent: {338 PalletSudoEvent: {
336 _enum: {339 _enum: {
346 }349 }
347 },350 },
348 /**351 /**
349 * Lookup40: orml_vesting::module::Event<T>352 * Lookup41: orml_vesting::module::Event<T>
350 **/353 **/
351 OrmlVestingModuleEvent: {354 OrmlVestingModuleEvent: {
352 _enum: {355 _enum: {
365 }368 }
366 },369 },
367 /**370 /**
368 * Lookup41: orml_vesting::VestingSchedule<BlockNumber, Balance>371 * Lookup42: orml_vesting::VestingSchedule<BlockNumber, Balance>
369 **/372 **/
370 OrmlVestingVestingSchedule: {373 OrmlVestingVestingSchedule: {
371 start: 'u32',374 start: 'u32',
374 perPeriod: 'Compact<u128>'377 perPeriod: 'Compact<u128>'
375 },378 },
376 /**379 /**
377 * Lookup43: orml_xtokens::module::Event<T>380 * Lookup44: orml_xtokens::module::Event<T>
378 **/381 **/
379 OrmlXtokensModuleEvent: {382 OrmlXtokensModuleEvent: {
380 _enum: {383 _enum: {
381 TransferredMultiAssets: {384 TransferredMultiAssets: {
382 sender: 'AccountId32',385 sender: 'AccountId32',
383 assets: 'XcmV1MultiassetMultiAssets',386 assets: 'XcmV3MultiassetMultiAssets',
384 fee: 'XcmV1MultiAsset',387 fee: 'XcmV3MultiAsset',
385 dest: 'XcmV1MultiLocation'388 dest: 'XcmV3MultiLocation'
386 }389 }
387 }390 }
388 },391 },
389 /**392 /**
390 * Lookup44: xcm::v1::multiasset::MultiAssets393 * Lookup45: xcm::v3::multiasset::MultiAssets
391 **/394 **/
392 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',395 XcmV3MultiassetMultiAssets: 'Vec<XcmV3MultiAsset>',
393 /**396 /**
394 * Lookup46: xcm::v1::multiasset::MultiAsset397 * Lookup47: xcm::v3::multiasset::MultiAsset
395 **/398 **/
396 XcmV1MultiAsset: {399 XcmV3MultiAsset: {
397 id: 'XcmV1MultiassetAssetId',400 id: 'XcmV3MultiassetAssetId',
398 fun: 'XcmV1MultiassetFungibility'401 fun: 'XcmV3MultiassetFungibility'
399 },402 },
400 /**403 /**
401 * Lookup47: xcm::v1::multiasset::AssetId404 * Lookup48: xcm::v3::multiasset::AssetId
402 **/405 **/
403 XcmV1MultiassetAssetId: {406 XcmV3MultiassetAssetId: {
404 _enum: {407 _enum: {
405 Concrete: 'XcmV1MultiLocation',408 Concrete: 'XcmV3MultiLocation',
406 Abstract: 'Bytes'409 Abstract: '[u8;32]'
407 }410 }
408 },411 },
409 /**412 /**
410 * Lookup48: xcm::v1::multilocation::MultiLocation413 * Lookup49: xcm::v3::multilocation::MultiLocation
411 **/414 **/
412 XcmV1MultiLocation: {415 XcmV3MultiLocation: {
413 parents: 'u8',416 parents: 'u8',
414 interior: 'XcmV1MultilocationJunctions'417 interior: 'XcmV3Junctions'
415 },418 },
416 /**419 /**
417 * Lookup49: xcm::v1::multilocation::Junctions420 * Lookup50: xcm::v3::junctions::Junctions
418 **/421 **/
419 XcmV1MultilocationJunctions: {422 XcmV3Junctions: {
420 _enum: {423 _enum: {
421 Here: 'Null',424 Here: 'Null',
422 X1: 'XcmV1Junction',425 X1: 'XcmV3Junction',
423 X2: '(XcmV1Junction,XcmV1Junction)',426 X2: '(XcmV3Junction,XcmV3Junction)',
424 X3: '(XcmV1Junction,XcmV1Junction,XcmV1Junction)',427 X3: '(XcmV3Junction,XcmV3Junction,XcmV3Junction)',
425 X4: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',428 X4: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)',
426 X5: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',429 X5: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)',
427 X6: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',430 X6: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)',
428 X7: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',431 X7: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)',
429 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'432 X8: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)'
430 }433 }
431 },434 },
432 /**435 /**
433 * Lookup50: xcm::v1::junction::Junction436 * Lookup51: xcm::v3::junction::Junction
434 **/437 **/
435 XcmV1Junction: {438 XcmV3Junction: {
436 _enum: {439 _enum: {
437 Parachain: 'Compact<u32>',440 Parachain: 'Compact<u32>',
438 AccountId32: {441 AccountId32: {
439 network: 'XcmV0JunctionNetworkId',442 network: 'Option<XcmV3JunctionNetworkId>',
440 id: '[u8;32]',443 id: '[u8;32]',
441 },444 },
442 AccountIndex64: {445 AccountIndex64: {
443 network: 'XcmV0JunctionNetworkId',446 network: 'Option<XcmV3JunctionNetworkId>',
444 index: 'Compact<u64>',447 index: 'Compact<u64>',
445 },448 },
446 AccountKey20: {449 AccountKey20: {
447 network: 'XcmV0JunctionNetworkId',450 network: 'Option<XcmV3JunctionNetworkId>',
448 key: '[u8;20]',451 key: '[u8;20]',
449 },452 },
450 PalletInstance: 'u8',453 PalletInstance: 'u8',
451 GeneralIndex: 'Compact<u128>',454 GeneralIndex: 'Compact<u128>',
452 GeneralKey: 'Bytes',455 GeneralKey: {
456 length: 'u8',
457 data: '[u8;32]',
458 },
453 OnlyChild: 'Null',459 OnlyChild: 'Null',
454 Plurality: {460 Plurality: {
455 id: 'XcmV0JunctionBodyId',461 id: 'XcmV3JunctionBodyId',
456 part: 'XcmV0JunctionBodyPart'462 part: 'XcmV3JunctionBodyPart',
457 }463 },
464 GlobalConsensus: 'XcmV3JunctionNetworkId'
458 }465 }
459 },466 },
460 /**467 /**
461 * Lookup52: xcm::v0::junction::NetworkId468 * Lookup54: xcm::v3::junction::NetworkId
462 **/469 **/
463 XcmV0JunctionNetworkId: {470 XcmV3JunctionNetworkId: {
464 _enum: {471 _enum: {
465 Any: 'Null',472 ByGenesis: '[u8;32]',
466 Named: 'Bytes',473 ByFork: {
474 blockNumber: 'u64',
475 blockHash: '[u8;32]',
476 },
467 Polkadot: 'Null',477 Polkadot: 'Null',
468 Kusama: 'Null'478 Kusama: 'Null',
479 Westend: 'Null',
480 Rococo: 'Null',
481 Wococo: 'Null',
482 Ethereum: {
483 chainId: 'Compact<u64>',
484 },
485 BitcoinCore: 'Null',
486 BitcoinCash: 'Null'
469 }487 }
470 },488 },
471 /**489 /**
472 * Lookup55: xcm::v0::junction::BodyId490 * Lookup56: xcm::v3::junction::BodyId
473 **/491 **/
474 XcmV0JunctionBodyId: {492 XcmV3JunctionBodyId: {
475 _enum: {493 _enum: {
476 Unit: 'Null',494 Unit: 'Null',
477 Named: 'Bytes',495 Moniker: '[u8;4]',
478 Index: 'Compact<u32>',496 Index: 'Compact<u32>',
479 Executive: 'Null',497 Executive: 'Null',
480 Technical: 'Null',498 Technical: 'Null',
486 }504 }
487 },505 },
488 /**506 /**
489 * Lookup56: xcm::v0::junction::BodyPart507 * Lookup57: xcm::v3::junction::BodyPart
490 **/508 **/
491 XcmV0JunctionBodyPart: {509 XcmV3JunctionBodyPart: {
492 _enum: {510 _enum: {
493 Voice: 'Null',511 Voice: 'Null',
494 Members: {512 Members: {
509 }527 }
510 },528 },
511 /**529 /**
512 * Lookup57: xcm::v1::multiasset::Fungibility530 * Lookup58: xcm::v3::multiasset::Fungibility
513 **/531 **/
514 XcmV1MultiassetFungibility: {532 XcmV3MultiassetFungibility: {
515 _enum: {533 _enum: {
516 Fungible: 'Compact<u128>',534 Fungible: 'Compact<u128>',
517 NonFungible: 'XcmV1MultiassetAssetInstance'535 NonFungible: 'XcmV3MultiassetAssetInstance'
518 }536 }
519 },537 },
520 /**538 /**
521 * Lookup58: xcm::v1::multiasset::AssetInstance539 * Lookup59: xcm::v3::multiasset::AssetInstance
522 **/540 **/
523 XcmV1MultiassetAssetInstance: {541 XcmV3MultiassetAssetInstance: {
524 _enum: {542 _enum: {
525 Undefined: 'Null',543 Undefined: 'Null',
526 Index: 'Compact<u128>',544 Index: 'Compact<u128>',
527 Array4: '[u8;4]',545 Array4: '[u8;4]',
528 Array8: '[u8;8]',546 Array8: '[u8;8]',
529 Array16: '[u8;16]',547 Array16: '[u8;16]',
530 Array32: '[u8;32]',548 Array32: '[u8;32]'
531 Blob: 'Bytes'
532 }549 }
533 },550 },
534 /**551 /**
535 * Lookup61: orml_tokens::module::Event<T>552 * Lookup62: orml_tokens::module::Event<T>
536 **/553 **/
537 OrmlTokensModuleEvent: {554 OrmlTokensModuleEvent: {
538 _enum: {555 _enum: {
604 LockRemoved: {621 LockRemoved: {
605 lockId: '[u8;8]',622 lockId: '[u8;8]',
606 currencyId: 'PalletForeignAssetsAssetIds',623 currencyId: 'PalletForeignAssetsAssetIds',
607 who: 'AccountId32'624 who: 'AccountId32',
625 },
626 Locked: {
627 currencyId: 'PalletForeignAssetsAssetIds',
628 who: 'AccountId32',
629 amount: 'u128',
630 },
631 Unlocked: {
632 currencyId: 'PalletForeignAssetsAssetIds',
633 who: 'AccountId32',
634 amount: 'u128'
608 }635 }
609 }636 }
610 },637 },
611 /**638 /**
612 * Lookup62: pallet_foreign_assets::AssetIds639 * Lookup63: pallet_foreign_assets::AssetIds
613 **/640 **/
614 PalletForeignAssetsAssetIds: {641 PalletForeignAssetsAssetIds: {
615 _enum: {642 _enum: {
618 }645 }
619 },646 },
620 /**647 /**
621 * Lookup63: pallet_foreign_assets::NativeCurrency648 * Lookup64: pallet_foreign_assets::NativeCurrency
622 **/649 **/
623 PalletForeignAssetsNativeCurrency: {650 PalletForeignAssetsNativeCurrency: {
624 _enum: ['Here', 'Parent']651 _enum: ['Here', 'Parent']
625 },652 },
626 /**653 /**
627 * Lookup64: pallet_identity::pallet::Event<T>654 * Lookup65: pallet_identity::pallet::Event<T>
628 **/655 **/
629 PalletIdentityEvent: {656 PalletIdentityEvent: {
630 _enum: {657 _enum: {
681 }708 }
682 },709 },
683 /**710 /**
684 * Lookup65: pallet_preimage::pallet::Event<T>711 * Lookup66: pallet_preimage::pallet::Event<T>
685 **/712 **/
686 PalletPreimageEvent: {713 PalletPreimageEvent: {
687 _enum: {714 _enum: {
706 }733 }
707 },734 },
708 /**735 /**
709 * Lookup66: cumulus_pallet_xcmp_queue::pallet::Event<T>736 * Lookup67: cumulus_pallet_xcmp_queue::pallet::Event<T>
710 **/737 **/
711 CumulusPalletXcmpQueueEvent: {738 CumulusPalletXcmpQueueEvent: {
712 _enum: {739 _enum: {
713 Success: {740 Success: {
714 messageHash: 'Option<H256>',741 messageHash: 'Option<[u8;32]>',
715 weight: 'SpWeightsWeightV2Weight',742 weight: 'SpWeightsWeightV2Weight',
716 },743 },
717 Fail: {744 Fail: {
718 messageHash: 'Option<H256>',745 messageHash: 'Option<[u8;32]>',
719 error: 'XcmV2TraitsError',746 error: 'XcmV3TraitsError',
720 weight: 'SpWeightsWeightV2Weight',747 weight: 'SpWeightsWeightV2Weight',
721 },748 },
722 BadVersion: {749 BadVersion: {
723 messageHash: 'Option<H256>',750 messageHash: 'Option<[u8;32]>',
724 },751 },
725 BadFormat: {752 BadFormat: {
726 messageHash: 'Option<H256>',753 messageHash: 'Option<[u8;32]>',
727 },754 },
728 UpwardMessageSent: {
729 messageHash: 'Option<H256>',
730 },
731 XcmpMessageSent: {755 XcmpMessageSent: {
732 messageHash: 'Option<H256>',756 messageHash: 'Option<[u8;32]>',
733 },757 },
734 OverweightEnqueued: {758 OverweightEnqueued: {
735 sender: 'u32',759 sender: 'u32',
744 }768 }
745 },769 },
746 /**770 /**
747 * Lookup68: xcm::v2::traits::Error771 * Lookup68: xcm::v3::traits::Error
748 **/772 **/
749 XcmV2TraitsError: {773 XcmV3TraitsError: {
750 _enum: {774 _enum: {
751 Overflow: 'Null',775 Overflow: 'Null',
752 Unimplemented: 'Null',776 Unimplemented: 'Null',
753 UntrustedReserveLocation: 'Null',777 UntrustedReserveLocation: 'Null',
754 UntrustedTeleportLocation: 'Null',778 UntrustedTeleportLocation: 'Null',
755 MultiLocationFull: 'Null',779 LocationFull: 'Null',
756 MultiLocationNotInvertible: 'Null',780 LocationNotInvertible: 'Null',
757 BadOrigin: 'Null',781 BadOrigin: 'Null',
758 InvalidLocation: 'Null',782 InvalidLocation: 'Null',
759 AssetNotFound: 'Null',783 AssetNotFound: 'Null',
770 NotHoldingFees: 'Null',794 NotHoldingFees: 'Null',
771 TooExpensive: 'Null',795 TooExpensive: 'Null',
772 Trap: 'u64',796 Trap: 'u64',
797 ExpectationFalse: 'Null',
798 PalletNotFound: 'Null',
799 NameMismatch: 'Null',
800 VersionIncompatible: 'Null',
801 HoldingWouldOverflow: 'Null',
802 ExportError: 'Null',
803 ReanchorFailed: 'Null',
804 NoDeal: 'Null',
805 FeesNotMet: 'Null',
806 LockError: 'Null',
807 NoPermission: 'Null',
808 Unanchored: 'Null',
809 NotDepositable: 'Null',
773 UnhandledXcmVersion: 'Null',810 UnhandledXcmVersion: 'Null',
774 WeightLimitReached: 'u64',811 WeightLimitReached: 'SpWeightsWeightV2Weight',
775 Barrier: 'Null',812 Barrier: 'Null',
776 WeightNotComputable: 'Null'813 WeightNotComputable: 'Null',
814 ExceedsStackLimit: 'Null'
777 }815 }
778 },816 },
779 /**817 /**
780 * Lookup70: pallet_xcm::pallet::Event<T>818 * Lookup70: pallet_xcm::pallet::Event<T>
781 **/819 **/
782 PalletXcmEvent: {820 PalletXcmEvent: {
783 _enum: {821 _enum: {
784 Attempted: 'XcmV2TraitsOutcome',822 Attempted: 'XcmV3TraitsOutcome',
785 Sent: '(XcmV1MultiLocation,XcmV1MultiLocation,XcmV2Xcm)',823 Sent: '(XcmV3MultiLocation,XcmV3MultiLocation,XcmV3Xcm)',
786 UnexpectedResponse: '(XcmV1MultiLocation,u64)',824 UnexpectedResponse: '(XcmV3MultiLocation,u64)',
787 ResponseReady: '(u64,XcmV2Response)',825 ResponseReady: '(u64,XcmV3Response)',
788 Notified: '(u64,u8,u8)',826 Notified: '(u64,u8,u8)',
789 NotifyOverweight: '(u64,u8,u8,SpWeightsWeightV2Weight,SpWeightsWeightV2Weight)',827 NotifyOverweight: '(u64,u8,u8,SpWeightsWeightV2Weight,SpWeightsWeightV2Weight)',
790 NotifyDispatchError: '(u64,u8,u8)',828 NotifyDispatchError: '(u64,u8,u8)',
791 NotifyDecodeFailed: '(u64,u8,u8)',829 NotifyDecodeFailed: '(u64,u8,u8)',
792 InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',830 InvalidResponder: '(XcmV3MultiLocation,u64,Option<XcmV3MultiLocation>)',
793 InvalidResponderVersion: '(XcmV1MultiLocation,u64)',831 InvalidResponderVersion: '(XcmV3MultiLocation,u64)',
794 ResponseTaken: 'u64',832 ResponseTaken: 'u64',
795 AssetsTrapped: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)',833 AssetsTrapped: '(H256,XcmV3MultiLocation,XcmVersionedMultiAssets)',
796 VersionChangeNotified: '(XcmV1MultiLocation,u32)',834 VersionChangeNotified: '(XcmV3MultiLocation,u32,XcmV3MultiassetMultiAssets)',
797 SupportedVersionChanged: '(XcmV1MultiLocation,u32)',835 SupportedVersionChanged: '(XcmV3MultiLocation,u32)',
798 NotifyTargetSendFail: '(XcmV1MultiLocation,u64,XcmV2TraitsError)',836 NotifyTargetSendFail: '(XcmV3MultiLocation,u64,XcmV3TraitsError)',
799 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)',837 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)',
800 AssetsClaimed: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)'838 InvalidQuerierVersion: '(XcmV3MultiLocation,u64)',
839 InvalidQuerier: '(XcmV3MultiLocation,u64,XcmV3MultiLocation,Option<XcmV3MultiLocation>)',
840 VersionNotifyStarted: '(XcmV3MultiLocation,XcmV3MultiassetMultiAssets)',
841 VersionNotifyRequested: '(XcmV3MultiLocation,XcmV3MultiassetMultiAssets)',
842 VersionNotifyUnrequested: '(XcmV3MultiLocation,XcmV3MultiassetMultiAssets)',
843 FeesPaid: '(XcmV3MultiLocation,XcmV3MultiassetMultiAssets)',
844 AssetsClaimed: '(H256,XcmV3MultiLocation,XcmVersionedMultiAssets)'
801 }845 }
802 },846 },
803 /**847 /**
804 * Lookup71: xcm::v2::traits::Outcome848 * Lookup71: xcm::v3::traits::Outcome
805 **/849 **/
806 XcmV2TraitsOutcome: {850 XcmV3TraitsOutcome: {
807 _enum: {851 _enum: {
808 Complete: 'u64',852 Complete: 'SpWeightsWeightV2Weight',
809 Incomplete: '(u64,XcmV2TraitsError)',853 Incomplete: '(SpWeightsWeightV2Weight,XcmV3TraitsError)',
810 Error: 'XcmV2TraitsError'854 Error: 'XcmV3TraitsError'
811 }855 }
812 },856 },
813 /**857 /**
814 * Lookup72: xcm::v2::Xcm<RuntimeCall>858 * Lookup72: xcm::v3::Xcm<Call>
815 **/859 **/
816 XcmV2Xcm: 'Vec<XcmV2Instruction>',860 XcmV3Xcm: 'Vec<XcmV3Instruction>',
817 /**861 /**
818 * Lookup74: xcm::v2::Instruction<RuntimeCall>862 * Lookup74: xcm::v3::Instruction<Call>
819 **/863 **/
820 XcmV2Instruction: {864 XcmV3Instruction: {
821 _enum: {865 _enum: {
822 WithdrawAsset: 'XcmV1MultiassetMultiAssets',866 WithdrawAsset: 'XcmV3MultiassetMultiAssets',
823 ReserveAssetDeposited: 'XcmV1MultiassetMultiAssets',867 ReserveAssetDeposited: 'XcmV3MultiassetMultiAssets',
824 ReceiveTeleportedAsset: 'XcmV1MultiassetMultiAssets',868 ReceiveTeleportedAsset: 'XcmV3MultiassetMultiAssets',
825 QueryResponse: {869 QueryResponse: {
826 queryId: 'Compact<u64>',870 queryId: 'Compact<u64>',
827 response: 'XcmV2Response',871 response: 'XcmV3Response',
828 maxWeight: 'Compact<u64>',872 maxWeight: 'SpWeightsWeightV2Weight',
873 querier: 'Option<XcmV3MultiLocation>',
829 },874 },
830 TransferAsset: {875 TransferAsset: {
831 assets: 'XcmV1MultiassetMultiAssets',876 assets: 'XcmV3MultiassetMultiAssets',
832 beneficiary: 'XcmV1MultiLocation',877 beneficiary: 'XcmV3MultiLocation',
833 },878 },
834 TransferReserveAsset: {879 TransferReserveAsset: {
835 assets: 'XcmV1MultiassetMultiAssets',880 assets: 'XcmV3MultiassetMultiAssets',
836 dest: 'XcmV1MultiLocation',881 dest: 'XcmV3MultiLocation',
837 xcm: 'XcmV2Xcm',882 xcm: 'XcmV3Xcm',
838 },883 },
839 Transact: {884 Transact: {
840 originType: 'XcmV0OriginKind',885 originKind: 'XcmV2OriginKind',
841 requireWeightAtMost: 'Compact<u64>',886 requireWeightAtMost: 'SpWeightsWeightV2Weight',
842 call: 'XcmDoubleEncoded',887 call: 'XcmDoubleEncoded',
843 },888 },
844 HrmpNewChannelOpenRequest: {889 HrmpNewChannelOpenRequest: {
855 recipient: 'Compact<u32>',900 recipient: 'Compact<u32>',
856 },901 },
857 ClearOrigin: 'Null',902 ClearOrigin: 'Null',
858 DescendOrigin: 'XcmV1MultilocationJunctions',903 DescendOrigin: 'XcmV3Junctions',
859 ReportError: {904 ReportError: 'XcmV3QueryResponseInfo',
860 queryId: 'Compact<u64>',
861 dest: 'XcmV1MultiLocation',
862 maxResponseWeight: 'Compact<u64>',
863 },
864 DepositAsset: {905 DepositAsset: {
865 assets: 'XcmV1MultiassetMultiAssetFilter',906 assets: 'XcmV3MultiassetMultiAssetFilter',
866 maxAssets: 'Compact<u32>',907 beneficiary: 'XcmV3MultiLocation',
867 beneficiary: 'XcmV1MultiLocation',
868 },908 },
869 DepositReserveAsset: {909 DepositReserveAsset: {
870 assets: 'XcmV1MultiassetMultiAssetFilter',910 assets: 'XcmV3MultiassetMultiAssetFilter',
871 maxAssets: 'Compact<u32>',911 dest: 'XcmV3MultiLocation',
872 dest: 'XcmV1MultiLocation',
873 xcm: 'XcmV2Xcm',912 xcm: 'XcmV3Xcm',
874 },913 },
875 ExchangeAsset: {914 ExchangeAsset: {
876 give: 'XcmV1MultiassetMultiAssetFilter',915 give: 'XcmV3MultiassetMultiAssetFilter',
877 receive: 'XcmV1MultiassetMultiAssets',916 want: 'XcmV3MultiassetMultiAssets',
917 maximal: 'bool',
878 },918 },
879 InitiateReserveWithdraw: {919 InitiateReserveWithdraw: {
880 assets: 'XcmV1MultiassetMultiAssetFilter',920 assets: 'XcmV3MultiassetMultiAssetFilter',
881 reserve: 'XcmV1MultiLocation',921 reserve: 'XcmV3MultiLocation',
882 xcm: 'XcmV2Xcm',922 xcm: 'XcmV3Xcm',
883 },923 },
884 InitiateTeleport: {924 InitiateTeleport: {
885 assets: 'XcmV1MultiassetMultiAssetFilter',925 assets: 'XcmV3MultiassetMultiAssetFilter',
886 dest: 'XcmV1MultiLocation',926 dest: 'XcmV3MultiLocation',
887 xcm: 'XcmV2Xcm',927 xcm: 'XcmV3Xcm',
888 },928 },
889 QueryHolding: {929 ReportHolding: {
890 queryId: 'Compact<u64>',930 responseInfo: 'XcmV3QueryResponseInfo',
891 dest: 'XcmV1MultiLocation',931 assets: 'XcmV3MultiassetMultiAssetFilter',
892 assets: 'XcmV1MultiassetMultiAssetFilter',
893 maxResponseWeight: 'Compact<u64>',
894 },932 },
895 BuyExecution: {933 BuyExecution: {
896 fees: 'XcmV1MultiAsset',934 fees: 'XcmV3MultiAsset',
897 weightLimit: 'XcmV2WeightLimit',935 weightLimit: 'XcmV3WeightLimit',
898 },936 },
899 RefundSurplus: 'Null',937 RefundSurplus: 'Null',
900 SetErrorHandler: 'XcmV2Xcm',938 SetErrorHandler: 'XcmV3Xcm',
901 SetAppendix: 'XcmV2Xcm',939 SetAppendix: 'XcmV3Xcm',
902 ClearError: 'Null',940 ClearError: 'Null',
903 ClaimAsset: {941 ClaimAsset: {
904 assets: 'XcmV1MultiassetMultiAssets',942 assets: 'XcmV3MultiassetMultiAssets',
905 ticket: 'XcmV1MultiLocation',943 ticket: 'XcmV3MultiLocation',
906 },944 },
907 Trap: 'Compact<u64>',945 Trap: 'Compact<u64>',
908 SubscribeVersion: {946 SubscribeVersion: {
909 queryId: 'Compact<u64>',947 queryId: 'Compact<u64>',
910 maxResponseWeight: 'Compact<u64>',948 maxResponseWeight: 'SpWeightsWeightV2Weight',
911 },949 },
912 UnsubscribeVersion: 'Null'950 UnsubscribeVersion: 'Null',
951 BurnAsset: 'XcmV3MultiassetMultiAssets',
952 ExpectAsset: 'XcmV3MultiassetMultiAssets',
953 ExpectOrigin: 'Option<XcmV3MultiLocation>',
954 ExpectError: 'Option<(u32,XcmV3TraitsError)>',
955 ExpectTransactStatus: 'XcmV3MaybeErrorCode',
956 QueryPallet: {
957 moduleName: 'Bytes',
958 responseInfo: 'XcmV3QueryResponseInfo',
959 },
960 ExpectPallet: {
961 index: 'Compact<u32>',
962 name: 'Bytes',
963 moduleName: 'Bytes',
964 crateMajor: 'Compact<u32>',
965 minCrateMinor: 'Compact<u32>',
966 },
967 ReportTransactStatus: 'XcmV3QueryResponseInfo',
968 ClearTransactStatus: 'Null',
969 UniversalOrigin: 'XcmV3Junction',
970 ExportMessage: {
971 network: 'XcmV3JunctionNetworkId',
972 destination: 'XcmV3Junctions',
973 xcm: 'XcmV3Xcm',
974 },
975 LockAsset: {
976 asset: 'XcmV3MultiAsset',
977 unlocker: 'XcmV3MultiLocation',
978 },
979 UnlockAsset: {
980 asset: 'XcmV3MultiAsset',
981 target: 'XcmV3MultiLocation',
982 },
983 NoteUnlockable: {
984 asset: 'XcmV3MultiAsset',
985 owner: 'XcmV3MultiLocation',
986 },
987 RequestUnlock: {
988 asset: 'XcmV3MultiAsset',
989 locker: 'XcmV3MultiLocation',
990 },
991 SetFeesMode: {
992 jitWithdraw: 'bool',
993 },
994 SetTopic: '[u8;32]',
995 ClearTopic: 'Null',
996 AliasOrigin: 'XcmV3MultiLocation',
997 UnpaidExecution: {
998 weightLimit: 'XcmV3WeightLimit',
999 checkOrigin: 'Option<XcmV3MultiLocation>'
1000 }
913 }1001 }
914 },1002 },
915 /**1003 /**
916 * Lookup75: xcm::v2::Response1004 * Lookup75: xcm::v3::Response
917 **/1005 **/
918 XcmV2Response: {1006 XcmV3Response: {
919 _enum: {1007 _enum: {
920 Null: 'Null',1008 Null: 'Null',
921 Assets: 'XcmV1MultiassetMultiAssets',1009 Assets: 'XcmV3MultiassetMultiAssets',
922 ExecutionResult: 'Option<(u32,XcmV2TraitsError)>',1010 ExecutionResult: 'Option<(u32,XcmV3TraitsError)>',
923 Version: 'u32'1011 Version: 'u32',
1012 PalletsInfo: 'Vec<XcmV3PalletInfo>',
1013 DispatchResult: 'XcmV3MaybeErrorCode'
924 }1014 }
925 },1015 },
926 /**1016 /**
927 * Lookup78: xcm::v0::OriginKind1017 * Lookup79: xcm::v3::PalletInfo
928 **/1018 **/
929 XcmV0OriginKind: {1019 XcmV3PalletInfo: {
1020 index: 'Compact<u32>',
1021 name: 'Bytes',
1022 moduleName: 'Bytes',
1023 major: 'Compact<u32>',
1024 minor: 'Compact<u32>',
1025 patch: 'Compact<u32>'
1026 },
1027 /**
1028 * Lookup82: xcm::v3::MaybeErrorCode
1029 **/
1030 XcmV3MaybeErrorCode: {
1031 _enum: {
1032 Success: 'Null',
1033 Error: 'Bytes',
1034 TruncatedError: 'Bytes'
1035 }
1036 },
1037 /**
1038 * Lookup85: xcm::v2::OriginKind
1039 **/
1040 XcmV2OriginKind: {
930 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']1041 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']
931 },1042 },
932 /**1043 /**
933 * Lookup79: xcm::double_encoded::DoubleEncoded<T>1044 * Lookup86: xcm::double_encoded::DoubleEncoded<T>
934 **/1045 **/
935 XcmDoubleEncoded: {1046 XcmDoubleEncoded: {
936 encoded: 'Bytes'1047 encoded: 'Bytes'
937 },1048 },
938 /**1049 /**
939 * Lookup80: xcm::v1::multiasset::MultiAssetFilter1050 * Lookup87: xcm::v3::QueryResponseInfo
940 **/1051 **/
941 XcmV1MultiassetMultiAssetFilter: {1052 XcmV3QueryResponseInfo: {
1053 destination: 'XcmV3MultiLocation',
1054 queryId: 'Compact<u64>',
1055 maxWeight: 'SpWeightsWeightV2Weight'
1056 },
1057 /**
1058 * Lookup88: xcm::v3::multiasset::MultiAssetFilter
1059 **/
1060 XcmV3MultiassetMultiAssetFilter: {
942 _enum: {1061 _enum: {
943 Definite: 'XcmV1MultiassetMultiAssets',1062 Definite: 'XcmV3MultiassetMultiAssets',
944 Wild: 'XcmV1MultiassetWildMultiAsset'1063 Wild: 'XcmV3MultiassetWildMultiAsset'
945 }1064 }
946 },1065 },
947 /**1066 /**
948 * Lookup81: xcm::v1::multiasset::WildMultiAsset1067 * Lookup89: xcm::v3::multiasset::WildMultiAsset
949 **/1068 **/
950 XcmV1MultiassetWildMultiAsset: {1069 XcmV3MultiassetWildMultiAsset: {
951 _enum: {1070 _enum: {
952 All: 'Null',1071 All: 'Null',
953 AllOf: {1072 AllOf: {
954 id: 'XcmV1MultiassetAssetId',1073 id: 'XcmV3MultiassetAssetId',
955 fun: 'XcmV1MultiassetWildFungibility'1074 fun: 'XcmV3MultiassetWildFungibility',
1075 },
1076 AllCounted: 'Compact<u32>',
1077 AllOfCounted: {
1078 id: 'XcmV3MultiassetAssetId',
1079 fun: 'XcmV3MultiassetWildFungibility',
1080 count: 'Compact<u32>'
956 }1081 }
957 }1082 }
958 },1083 },
959 /**1084 /**
960 * Lookup82: xcm::v1::multiasset::WildFungibility1085 * Lookup90: xcm::v3::multiasset::WildFungibility
961 **/1086 **/
962 XcmV1MultiassetWildFungibility: {1087 XcmV3MultiassetWildFungibility: {
963 _enum: ['Fungible', 'NonFungible']1088 _enum: ['Fungible', 'NonFungible']
964 },1089 },
965 /**1090 /**
966 * Lookup83: xcm::v2::WeightLimit1091 * Lookup92: xcm::v3::WeightLimit
967 **/1092 **/
968 XcmV2WeightLimit: {1093 XcmV3WeightLimit: {
969 _enum: {1094 _enum: {
970 Unlimited: 'Null',1095 Unlimited: 'Null',
971 Limited: 'Compact<u64>'1096 Limited: 'SpWeightsWeightV2Weight'
972 }1097 }
973 },1098 },
974 /**1099 /**
975 * Lookup85: xcm::VersionedMultiAssets1100 * Lookup93: xcm::VersionedMultiAssets
976 **/1101 **/
977 XcmVersionedMultiAssets: {1102 XcmVersionedMultiAssets: {
978 _enum: {1103 _enum: {
979 V0: 'Vec<XcmV0MultiAsset>',1104 __Unused0: 'Null',
980 V1: 'XcmV1MultiassetMultiAssets'1105 V2: 'XcmV2MultiassetMultiAssets',
1106 __Unused2: 'Null',
1107 V3: 'XcmV3MultiassetMultiAssets'
981 }1108 }
982 },1109 },
983 /**1110 /**
984 * Lookup87: xcm::v0::multi_asset::MultiAsset1111 * Lookup94: xcm::v2::multiasset::MultiAssets
985 **/1112 **/
986 XcmV0MultiAsset: {1113 XcmV2MultiassetMultiAssets: 'Vec<XcmV2MultiAsset>',
1114 /**
1115 * Lookup96: xcm::v2::multiasset::MultiAsset
1116 **/
1117 XcmV2MultiAsset: {
1118 id: 'XcmV2MultiassetAssetId',
1119 fun: 'XcmV2MultiassetFungibility'
1120 },
1121 /**
1122 * Lookup97: xcm::v2::multiasset::AssetId
1123 **/
1124 XcmV2MultiassetAssetId: {
987 _enum: {1125 _enum: {
988 None: 'Null',1126 Concrete: 'XcmV2MultiLocation',
989 All: 'Null',1127 Abstract: 'Bytes'
990 AllFungible: 'Null',
991 AllNonFungible: 'Null',
992 AllAbstractFungible: {
993 id: 'Bytes',
994 },
995 AllAbstractNonFungible: {
996 class: 'Bytes',
997 },
998 AllConcreteFungible: {
999 id: 'XcmV0MultiLocation',
1000 },
1001 AllConcreteNonFungible: {
1002 class: 'XcmV0MultiLocation',
1003 },
1004 AbstractFungible: {
1005 id: 'Bytes',
1006 amount: 'Compact<u128>',
1007 },
1008 AbstractNonFungible: {
1009 class: 'Bytes',
1010 instance: 'XcmV1MultiassetAssetInstance',
1011 },
1012 ConcreteFungible: {
1013 id: 'XcmV0MultiLocation',
1014 amount: 'Compact<u128>',
1015 },
1016 ConcreteNonFungible: {
1017 class: 'XcmV0MultiLocation',
1018 instance: 'XcmV1MultiassetAssetInstance'
1019 }
1020 }1128 }
1021 },1129 },
1022 /**1130 /**
1023 * Lookup88: xcm::v0::multi_location::MultiLocation1131 * Lookup98: xcm::v2::multilocation::MultiLocation
1024 **/1132 **/
1025 XcmV0MultiLocation: {1133 XcmV2MultiLocation: {
1134 parents: 'u8',
1135 interior: 'XcmV2MultilocationJunctions'
1136 },
1137 /**
1138 * Lookup99: xcm::v2::multilocation::Junctions
1139 **/
1140 XcmV2MultilocationJunctions: {
1026 _enum: {1141 _enum: {
1027 Null: 'Null',1142 Here: 'Null',
1028 X1: 'XcmV0Junction',1143 X1: 'XcmV2Junction',
1029 X2: '(XcmV0Junction,XcmV0Junction)',1144 X2: '(XcmV2Junction,XcmV2Junction)',
1030 X3: '(XcmV0Junction,XcmV0Junction,XcmV0Junction)',1145 X3: '(XcmV2Junction,XcmV2Junction,XcmV2Junction)',
1031 X4: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',1146 X4: '(XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction)',
1032 X5: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',1147 X5: '(XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction)',
1033 X6: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',1148 X6: '(XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction)',
1034 X7: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',1149 X7: '(XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction)',
1035 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'1150 X8: '(XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction)'
1036 }1151 }
1037 },1152 },
1038 /**1153 /**
1039 * Lookup89: xcm::v0::junction::Junction1154 * Lookup100: xcm::v2::junction::Junction
1040 **/1155 **/
1041 XcmV0Junction: {1156 XcmV2Junction: {
1042 _enum: {1157 _enum: {
1043 Parent: 'Null',
1044 Parachain: 'Compact<u32>',1158 Parachain: 'Compact<u32>',
1045 AccountId32: {1159 AccountId32: {
1046 network: 'XcmV0JunctionNetworkId',1160 network: 'XcmV2NetworkId',
1047 id: '[u8;32]',1161 id: '[u8;32]',
1048 },1162 },
1049 AccountIndex64: {1163 AccountIndex64: {
1050 network: 'XcmV0JunctionNetworkId',1164 network: 'XcmV2NetworkId',
1051 index: 'Compact<u64>',1165 index: 'Compact<u64>',
1052 },1166 },
1053 AccountKey20: {1167 AccountKey20: {
1054 network: 'XcmV0JunctionNetworkId',1168 network: 'XcmV2NetworkId',
1055 key: '[u8;20]',1169 key: '[u8;20]',
1056 },1170 },
1057 PalletInstance: 'u8',1171 PalletInstance: 'u8',
1058 GeneralIndex: 'Compact<u128>',1172 GeneralIndex: 'Compact<u128>',
1059 GeneralKey: 'Bytes',1173 GeneralKey: 'Bytes',
1060 OnlyChild: 'Null',1174 OnlyChild: 'Null',
1061 Plurality: {1175 Plurality: {
1062 id: 'XcmV0JunctionBodyId',1176 id: 'XcmV2BodyId',
1063 part: 'XcmV0JunctionBodyPart'1177 part: 'XcmV2BodyPart'
1064 }1178 }
1065 }1179 }
1066 },1180 },
1067 /**1181 /**
1068 * Lookup90: xcm::VersionedMultiLocation1182 * Lookup101: xcm::v2::NetworkId
1069 **/1183 **/
1184 XcmV2NetworkId: {
1185 _enum: {
1186 Any: 'Null',
1187 Named: 'Bytes',
1188 Polkadot: 'Null',
1189 Kusama: 'Null'
1190 }
1191 },
1192 /**
1193 * Lookup103: xcm::v2::BodyId
1194 **/
1195 XcmV2BodyId: {
1196 _enum: {
1197 Unit: 'Null',
1198 Named: 'Bytes',
1199 Index: 'Compact<u32>',
1200 Executive: 'Null',
1201 Technical: 'Null',
1202 Legislative: 'Null',
1203 Judicial: 'Null',
1204 Defense: 'Null',
1205 Administration: 'Null',
1206 Treasury: 'Null'
1207 }
1208 },
1209 /**
1210 * Lookup104: xcm::v2::BodyPart
1211 **/
1212 XcmV2BodyPart: {
1213 _enum: {
1214 Voice: 'Null',
1215 Members: {
1216 count: 'Compact<u32>',
1217 },
1218 Fraction: {
1219 nom: 'Compact<u32>',
1220 denom: 'Compact<u32>',
1221 },
1222 AtLeastProportion: {
1223 nom: 'Compact<u32>',
1224 denom: 'Compact<u32>',
1225 },
1226 MoreThanProportion: {
1227 nom: 'Compact<u32>',
1228 denom: 'Compact<u32>'
1229 }
1230 }
1231 },
1232 /**
1233 * Lookup105: xcm::v2::multiasset::Fungibility
1234 **/
1235 XcmV2MultiassetFungibility: {
1236 _enum: {
1237 Fungible: 'Compact<u128>',
1238 NonFungible: 'XcmV2MultiassetAssetInstance'
1239 }
1240 },
1241 /**
1242 * Lookup106: xcm::v2::multiasset::AssetInstance
1243 **/
1244 XcmV2MultiassetAssetInstance: {
1245 _enum: {
1246 Undefined: 'Null',
1247 Index: 'Compact<u128>',
1248 Array4: '[u8;4]',
1249 Array8: '[u8;8]',
1250 Array16: '[u8;16]',
1251 Array32: '[u8;32]',
1252 Blob: 'Bytes'
1253 }
1254 },
1255 /**
1256 * Lookup107: xcm::VersionedMultiLocation
1257 **/
1070 XcmVersionedMultiLocation: {1258 XcmVersionedMultiLocation: {
1071 _enum: {1259 _enum: {
1072 V0: 'XcmV0MultiLocation',1260 __Unused0: 'Null',
1073 V1: 'XcmV1MultiLocation'1261 V2: 'XcmV2MultiLocation',
1262 __Unused2: 'Null',
1263 V3: 'XcmV3MultiLocation'
1074 }1264 }
1075 },1265 },
1076 /**1266 /**
1077 * Lookup91: cumulus_pallet_xcm::pallet::Event<T>1267 * Lookup108: cumulus_pallet_xcm::pallet::Event<T>
1078 **/1268 **/
1079 CumulusPalletXcmEvent: {1269 CumulusPalletXcmEvent: {
1080 _enum: {1270 _enum: {
1081 InvalidFormat: '[u8;8]',1271 InvalidFormat: '[u8;32]',
1082 UnsupportedVersion: '[u8;8]',1272 UnsupportedVersion: '[u8;32]',
1083 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'1273 ExecutedDownward: '([u8;32],XcmV3TraitsOutcome)'
1084 }1274 }
1085 },1275 },
1086 /**1276 /**
1087 * Lookup92: cumulus_pallet_dmp_queue::pallet::Event<T>1277 * Lookup109: cumulus_pallet_dmp_queue::pallet::Event<T>
1088 **/1278 **/
1089 CumulusPalletDmpQueueEvent: {1279 CumulusPalletDmpQueueEvent: {
1090 _enum: {1280 _enum: {
1096 },1286 },
1097 ExecutedDownward: {1287 ExecutedDownward: {
1098 messageId: '[u8;32]',1288 messageId: '[u8;32]',
1099 outcome: 'XcmV2TraitsOutcome',1289 outcome: 'XcmV3TraitsOutcome',
1100 },1290 },
1101 WeightExhausted: {1291 WeightExhausted: {
1102 messageId: '[u8;32]',1292 messageId: '[u8;32]',
1110 },1300 },
1111 OverweightServiced: {1301 OverweightServiced: {
1112 overweightIndex: 'u64',1302 overweightIndex: 'u64',
1113 weightUsed: 'SpWeightsWeightV2Weight'1303 weightUsed: 'SpWeightsWeightV2Weight',
1304 },
1305 MaxMessagesExhausted: {
1306 messageId: '[u8;32]'
1114 }1307 }
1115 }1308 }
1116 },1309 },
1117 /**1310 /**
1118 * Lookup93: pallet_configuration::pallet::Event<T>1311 * Lookup110: pallet_configuration::pallet::Event<T>
1119 **/1312 **/
1120 PalletConfigurationEvent: {1313 PalletConfigurationEvent: {
1121 _enum: {1314 _enum: {
1131 }1324 }
1132 },1325 },
1133 /**1326 /**
1134 * Lookup96: pallet_common::pallet::Event<T>1327 * Lookup113: pallet_common::pallet::Event<T>
1135 **/1328 **/
1136 PalletCommonEvent: {1329 PalletCommonEvent: {
1137 _enum: {1330 _enum: {
1160 }1353 }
1161 },1354 },
1162 /**1355 /**
1163 * Lookup99: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1356 * Lookup116: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
1164 **/1357 **/
1165 PalletEvmAccountBasicCrossAccountIdRepr: {1358 PalletEvmAccountBasicCrossAccountIdRepr: {
1166 _enum: {1359 _enum: {
1169 }1362 }
1170 },1363 },
1171 /**1364 /**
1172 * Lookup103: pallet_structure::pallet::Event<T>1365 * Lookup119: pallet_structure::pallet::Event<T>
1173 **/1366 **/
1174 PalletStructureEvent: {1367 PalletStructureEvent: {
1175 _enum: {1368 _enum: {
1176 Executed: 'Result<Null, SpRuntimeDispatchError>'1369 Executed: 'Result<Null, SpRuntimeDispatchError>'
1177 }1370 }
1178 },1371 },
1179 /**1372 /**
1180 * Lookup104: pallet_app_promotion::pallet::Event<T>1373 * Lookup120: pallet_app_promotion::pallet::Event<T>
1181 **/1374 **/
1182 PalletAppPromotionEvent: {1375 PalletAppPromotionEvent: {
1183 _enum: {1376 _enum: {
1188 }1381 }
1189 },1382 },
1190 /**1383 /**
1191 * Lookup105: pallet_foreign_assets::module::Event<T>1384 * Lookup121: pallet_foreign_assets::module::Event<T>
1192 **/1385 **/
1193 PalletForeignAssetsModuleEvent: {1386 PalletForeignAssetsModuleEvent: {
1194 _enum: {1387 _enum: {
1195 ForeignAssetRegistered: {1388 ForeignAssetRegistered: {
1196 assetId: 'u32',1389 assetId: 'u32',
1197 assetAddress: 'XcmV1MultiLocation',1390 assetAddress: 'XcmV3MultiLocation',
1198 metadata: 'PalletForeignAssetsModuleAssetMetadata',1391 metadata: 'PalletForeignAssetsModuleAssetMetadata',
1199 },1392 },
1200 ForeignAssetUpdated: {1393 ForeignAssetUpdated: {
1201 assetId: 'u32',1394 assetId: 'u32',
1202 assetAddress: 'XcmV1MultiLocation',1395 assetAddress: 'XcmV3MultiLocation',
1203 metadata: 'PalletForeignAssetsModuleAssetMetadata',1396 metadata: 'PalletForeignAssetsModuleAssetMetadata',
1204 },1397 },
1205 AssetRegistered: {1398 AssetRegistered: {
1213 }1406 }
1214 },1407 },
1215 /**1408 /**
1216 * Lookup106: pallet_foreign_assets::module::AssetMetadata<Balance>1409 * Lookup122: pallet_foreign_assets::module::AssetMetadata<Balance>
1217 **/1410 **/
1218 PalletForeignAssetsModuleAssetMetadata: {1411 PalletForeignAssetsModuleAssetMetadata: {
1219 name: 'Bytes',1412 name: 'Bytes',
1222 minimalBalance: 'u128'1415 minimalBalance: 'u128'
1223 },1416 },
1224 /**1417 /**
1225 * Lookup107: pallet_evm::pallet::Event<T>1418 * Lookup125: pallet_evm::pallet::Event<T>
1226 **/1419 **/
1227 PalletEvmEvent: {1420 PalletEvmEvent: {
1228 _enum: {1421 _enum: {
1244 }1437 }
1245 },1438 },
1246 /**1439 /**
1247 * Lookup108: ethereum::log::Log1440 * Lookup126: ethereum::log::Log
1248 **/1441 **/
1249 EthereumLog: {1442 EthereumLog: {
1250 address: 'H160',1443 address: 'H160',
1251 topics: 'Vec<H256>',1444 topics: 'Vec<H256>',
1252 data: 'Bytes'1445 data: 'Bytes'
1253 },1446 },
1254 /**1447 /**
1255 * Lookup110: pallet_ethereum::pallet::Event1448 * Lookup128: pallet_ethereum::pallet::Event
1256 **/1449 **/
1257 PalletEthereumEvent: {1450 PalletEthereumEvent: {
1258 _enum: {1451 _enum: {
1265 }1458 }
1266 },1459 },
1267 /**1460 /**
1268 * Lookup111: evm_core::error::ExitReason1461 * Lookup129: evm_core::error::ExitReason
1269 **/1462 **/
1270 EvmCoreErrorExitReason: {1463 EvmCoreErrorExitReason: {
1271 _enum: {1464 _enum: {
1276 }1469 }
1277 },1470 },
1278 /**1471 /**
1279 * Lookup112: evm_core::error::ExitSucceed1472 * Lookup130: evm_core::error::ExitSucceed
1280 **/1473 **/
1281 EvmCoreErrorExitSucceed: {1474 EvmCoreErrorExitSucceed: {
1282 _enum: ['Stopped', 'Returned', 'Suicided']1475 _enum: ['Stopped', 'Returned', 'Suicided']
1283 },1476 },
1284 /**1477 /**
1285 * Lookup113: evm_core::error::ExitError1478 * Lookup131: evm_core::error::ExitError
1286 **/1479 **/
1287 EvmCoreErrorExitError: {1480 EvmCoreErrorExitError: {
1288 _enum: {1481 _enum: {
1305 }1498 }
1306 },1499 },
1307 /**1500 /**
1308 * Lookup117: evm_core::error::ExitRevert1501 * Lookup135: evm_core::error::ExitRevert
1309 **/1502 **/
1310 EvmCoreErrorExitRevert: {1503 EvmCoreErrorExitRevert: {
1311 _enum: ['Reverted']1504 _enum: ['Reverted']
1312 },1505 },
1313 /**1506 /**
1314 * Lookup118: evm_core::error::ExitFatal1507 * Lookup136: evm_core::error::ExitFatal
1315 **/1508 **/
1316 EvmCoreErrorExitFatal: {1509 EvmCoreErrorExitFatal: {
1317 _enum: {1510 _enum: {
1322 }1515 }
1323 },1516 },
1324 /**1517 /**
1325 * Lookup119: pallet_evm_contract_helpers::pallet::Event<T>1518 * Lookup137: pallet_evm_contract_helpers::pallet::Event<T>
1326 **/1519 **/
1327 PalletEvmContractHelpersEvent: {1520 PalletEvmContractHelpersEvent: {
1328 _enum: {1521 _enum: {
1332 }1525 }
1333 },1526 },
1334 /**1527 /**
1335 * Lookup120: pallet_evm_migration::pallet::Event<T>1528 * Lookup138: pallet_evm_migration::pallet::Event<T>
1336 **/1529 **/
1337 PalletEvmMigrationEvent: {1530 PalletEvmMigrationEvent: {
1338 _enum: ['TestEvent']1531 _enum: ['TestEvent']
1339 },1532 },
1340 /**1533 /**
1341 * Lookup121: pallet_maintenance::pallet::Event<T>1534 * Lookup139: pallet_maintenance::pallet::Event<T>
1342 **/1535 **/
1343 PalletMaintenanceEvent: {1536 PalletMaintenanceEvent: {
1344 _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']1537 _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']
1345 },1538 },
1346 /**1539 /**
1347 * Lookup122: pallet_test_utils::pallet::Event<T>1540 * Lookup140: pallet_test_utils::pallet::Event<T>
1348 **/1541 **/
1349 PalletTestUtilsEvent: {1542 PalletTestUtilsEvent: {
1350 _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']1543 _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']
1351 },1544 },
1352 /**1545 /**
1353 * Lookup123: frame_system::Phase1546 * Lookup141: frame_system::Phase
1354 **/1547 **/
1355 FrameSystemPhase: {1548 FrameSystemPhase: {
1356 _enum: {1549 _enum: {
1360 }1553 }
1361 },1554 },
1362 /**1555 /**
1363 * Lookup126: frame_system::LastRuntimeUpgradeInfo1556 * Lookup144: frame_system::LastRuntimeUpgradeInfo
1364 **/1557 **/
1365 FrameSystemLastRuntimeUpgradeInfo: {1558 FrameSystemLastRuntimeUpgradeInfo: {
1366 specVersion: 'Compact<u32>',1559 specVersion: 'Compact<u32>',
1367 specName: 'Text'1560 specName: 'Text'
1368 },1561 },
1369 /**1562 /**
1370 * Lookup127: frame_system::pallet::Call<T>1563 * Lookup145: frame_system::pallet::Call<T>
1371 **/1564 **/
1372 FrameSystemCall: {1565 FrameSystemCall: {
1373 _enum: {1566 _enum: {
1402 }1595 }
1403 },1596 },
1404 /**1597 /**
1405 * Lookup131: frame_system::limits::BlockWeights1598 * Lookup149: frame_system::limits::BlockWeights
1406 **/1599 **/
1407 FrameSystemLimitsBlockWeights: {1600 FrameSystemLimitsBlockWeights: {
1408 baseBlock: 'SpWeightsWeightV2Weight',1601 baseBlock: 'SpWeightsWeightV2Weight',
1409 maxBlock: 'SpWeightsWeightV2Weight',1602 maxBlock: 'SpWeightsWeightV2Weight',
1410 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1603 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
1411 },1604 },
1412 /**1605 /**
1413 * Lookup132: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>1606 * Lookup150: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
1414 **/1607 **/
1415 FrameSupportDispatchPerDispatchClassWeightsPerClass: {1608 FrameSupportDispatchPerDispatchClassWeightsPerClass: {
1416 normal: 'FrameSystemLimitsWeightsPerClass',1609 normal: 'FrameSystemLimitsWeightsPerClass',
1417 operational: 'FrameSystemLimitsWeightsPerClass',1610 operational: 'FrameSystemLimitsWeightsPerClass',
1418 mandatory: 'FrameSystemLimitsWeightsPerClass'1611 mandatory: 'FrameSystemLimitsWeightsPerClass'
1419 },1612 },
1420 /**1613 /**
1421 * Lookup133: frame_system::limits::WeightsPerClass1614 * Lookup151: frame_system::limits::WeightsPerClass
1422 **/1615 **/
1423 FrameSystemLimitsWeightsPerClass: {1616 FrameSystemLimitsWeightsPerClass: {
1424 baseExtrinsic: 'SpWeightsWeightV2Weight',1617 baseExtrinsic: 'SpWeightsWeightV2Weight',
1427 reserved: 'Option<SpWeightsWeightV2Weight>'1620 reserved: 'Option<SpWeightsWeightV2Weight>'
1428 },1621 },
1429 /**1622 /**
1430 * Lookup135: frame_system::limits::BlockLength1623 * Lookup153: frame_system::limits::BlockLength
1431 **/1624 **/
1432 FrameSystemLimitsBlockLength: {1625 FrameSystemLimitsBlockLength: {
1433 max: 'FrameSupportDispatchPerDispatchClassU32'1626 max: 'FrameSupportDispatchPerDispatchClassU32'
1434 },1627 },
1435 /**1628 /**
1436 * Lookup136: frame_support::dispatch::PerDispatchClass<T>1629 * Lookup154: frame_support::dispatch::PerDispatchClass<T>
1437 **/1630 **/
1438 FrameSupportDispatchPerDispatchClassU32: {1631 FrameSupportDispatchPerDispatchClassU32: {
1439 normal: 'u32',1632 normal: 'u32',
1440 operational: 'u32',1633 operational: 'u32',
1441 mandatory: 'u32'1634 mandatory: 'u32'
1442 },1635 },
1443 /**1636 /**
1444 * Lookup137: sp_weights::RuntimeDbWeight1637 * Lookup155: sp_weights::RuntimeDbWeight
1445 **/1638 **/
1446 SpWeightsRuntimeDbWeight: {1639 SpWeightsRuntimeDbWeight: {
1447 read: 'u64',1640 read: 'u64',
1448 write: 'u64'1641 write: 'u64'
1449 },1642 },
1450 /**1643 /**
1451 * Lookup138: sp_version::RuntimeVersion1644 * Lookup156: sp_version::RuntimeVersion
1452 **/1645 **/
1453 SpVersionRuntimeVersion: {1646 SpVersionRuntimeVersion: {
1454 specName: 'Text',1647 specName: 'Text',
1461 stateVersion: 'u8'1654 stateVersion: 'u8'
1462 },1655 },
1463 /**1656 /**
1464 * Lookup143: frame_system::pallet::Error<T>1657 * Lookup161: frame_system::pallet::Error<T>
1465 **/1658 **/
1466 FrameSystemError: {1659 FrameSystemError: {
1467 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1660 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
1468 },1661 },
1469 /**1662 /**
1470 * Lookup144: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1663 * Lookup162: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
1471 **/1664 **/
1472 PolkadotPrimitivesV2PersistedValidationData: {1665 PolkadotPrimitivesV2PersistedValidationData: {
1473 parentHead: 'Bytes',1666 parentHead: 'Bytes',
1476 maxPovSize: 'u32'1669 maxPovSize: 'u32'
1477 },1670 },
1478 /**1671 /**
1479 * Lookup147: polkadot_primitives::v2::UpgradeRestriction1672 * Lookup165: polkadot_primitives::v2::UpgradeRestriction
1480 **/1673 **/
1481 PolkadotPrimitivesV2UpgradeRestriction: {1674 PolkadotPrimitivesV2UpgradeRestriction: {
1482 _enum: ['Present']1675 _enum: ['Present']
1483 },1676 },
1484 /**1677 /**
1485 * Lookup148: sp_trie::storage_proof::StorageProof1678 * Lookup166: sp_trie::storage_proof::StorageProof
1486 **/1679 **/
1487 SpTrieStorageProof: {1680 SpTrieStorageProof: {
1488 trieNodes: 'BTreeSet<Bytes>'1681 trieNodes: 'BTreeSet<Bytes>'
1489 },1682 },
1490 /**1683 /**
1491 * Lookup150: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1684 * Lookup168: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
1492 **/1685 **/
1493 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1686 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
1494 dmqMqcHead: 'H256',1687 dmqMqcHead: 'H256',
1497 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1690 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'
1498 },1691 },
1499 /**1692 /**
1500 * Lookup153: polkadot_primitives::v2::AbridgedHrmpChannel1693 * Lookup171: polkadot_primitives::v2::AbridgedHrmpChannel
1501 **/1694 **/
1502 PolkadotPrimitivesV2AbridgedHrmpChannel: {1695 PolkadotPrimitivesV2AbridgedHrmpChannel: {
1503 maxCapacity: 'u32',1696 maxCapacity: 'u32',
1508 mqcHead: 'Option<H256>'1701 mqcHead: 'Option<H256>'
1509 },1702 },
1510 /**1703 /**
1511 * Lookup154: polkadot_primitives::v2::AbridgedHostConfiguration1704 * Lookup173: polkadot_primitives::v2::AbridgedHostConfiguration
1512 **/1705 **/
1513 PolkadotPrimitivesV2AbridgedHostConfiguration: {1706 PolkadotPrimitivesV2AbridgedHostConfiguration: {
1514 maxCodeSize: 'u32',1707 maxCodeSize: 'u32',
1522 validationUpgradeDelay: 'u32'1715 validationUpgradeDelay: 'u32'
1523 },1716 },
1524 /**1717 /**
1525 * Lookup160: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1718 * Lookup179: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
1526 **/1719 **/
1527 PolkadotCorePrimitivesOutboundHrmpMessage: {1720 PolkadotCorePrimitivesOutboundHrmpMessage: {
1528 recipient: 'u32',1721 recipient: 'u32',
1529 data: 'Bytes'1722 data: 'Bytes'
1530 },1723 },
1531 /**1724 /**
1532 * Lookup161: cumulus_pallet_parachain_system::pallet::Call<T>1725 * Lookup180: cumulus_pallet_parachain_system::pallet::Call<T>
1533 **/1726 **/
1534 CumulusPalletParachainSystemCall: {1727 CumulusPalletParachainSystemCall: {
1535 _enum: {1728 _enum: {
1548 }1741 }
1549 },1742 },
1550 /**1743 /**
1551 * Lookup162: cumulus_primitives_parachain_inherent::ParachainInherentData1744 * Lookup181: cumulus_primitives_parachain_inherent::ParachainInherentData
1552 **/1745 **/
1553 CumulusPrimitivesParachainInherentParachainInherentData: {1746 CumulusPrimitivesParachainInherentParachainInherentData: {
1554 validationData: 'PolkadotPrimitivesV2PersistedValidationData',1747 validationData: 'PolkadotPrimitivesV2PersistedValidationData',
1557 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1750 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'
1558 },1751 },
1559 /**1752 /**
1560 * Lookup164: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1753 * Lookup183: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
1561 **/1754 **/
1562 PolkadotCorePrimitivesInboundDownwardMessage: {1755 PolkadotCorePrimitivesInboundDownwardMessage: {
1563 sentAt: 'u32',1756 sentAt: 'u32',
1564 msg: 'Bytes'1757 msg: 'Bytes'
1565 },1758 },
1566 /**1759 /**
1567 * Lookup167: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1760 * Lookup186: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
1568 **/1761 **/
1569 PolkadotCorePrimitivesInboundHrmpMessage: {1762 PolkadotCorePrimitivesInboundHrmpMessage: {
1570 sentAt: 'u32',1763 sentAt: 'u32',
1571 data: 'Bytes'1764 data: 'Bytes'
1572 },1765 },
1573 /**1766 /**
1574 * Lookup170: cumulus_pallet_parachain_system::pallet::Error<T>1767 * Lookup189: cumulus_pallet_parachain_system::pallet::Error<T>
1575 **/1768 **/
1576 CumulusPalletParachainSystemError: {1769 CumulusPalletParachainSystemError: {
1577 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1770 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']
1578 },1771 },
1579 /**1772 /**
1580 * Lookup172: pallet_authorship::UncleEntryItem<BlockNumber, primitive_types::H256, sp_core::crypto::AccountId32>1773 * Lookup190: parachain_info::pallet::Call<T>
1581 **/1774 **/
1582 PalletAuthorshipUncleEntryItem: {1775 ParachainInfoCall: 'Null',
1583 _enum: {
1584 InclusionHeight: 'u32',
1585 Uncle: '(H256,Option<AccountId32>)'
1586 }
1587 },
1588 /**1776 /**
1589 * Lookup174: pallet_authorship::pallet::Call<T>1777 * Lookup193: pallet_collator_selection::pallet::Call<T>
1590 **/1778 **/
1591 PalletAuthorshipCall: {
1592 _enum: {
1593 set_uncles: {
1594 newUncles: 'Vec<SpRuntimeHeader>'
1595 }
1596 }
1597 },
1598 /**
1599 * Lookup176: sp_runtime::generic::header::Header<Number, sp_runtime::traits::BlakeTwo256>
1600 **/
1601 SpRuntimeHeader: {
1602 parentHash: 'H256',
1603 number: 'Compact<u32>',
1604 stateRoot: 'H256',
1605 extrinsicsRoot: 'H256',
1606 digest: 'SpRuntimeDigest'
1607 },
1608 /**
1609 * Lookup177: sp_runtime::traits::BlakeTwo256
1610 **/
1611 SpRuntimeBlakeTwo256: 'Null',
1612 /**
1613 * Lookup178: pallet_authorship::pallet::Error<T>
1614 **/
1615 PalletAuthorshipError: {
1616 _enum: ['InvalidUncleParent', 'UnclesAlreadySet', 'TooManyUncles', 'GenesisUncle', 'TooHighUncle', 'UncleAlreadyIncluded', 'OldUncle']
1617 },
1618 /**
1619 * Lookup181: pallet_collator_selection::pallet::Call<T>
1620 **/
1621 PalletCollatorSelectionCall: {1779 PalletCollatorSelectionCall: {
1622 _enum: {1780 _enum: {
1623 add_invulnerable: {1781 add_invulnerable: {
1639 }1797 }
1640 },1798 },
1641 /**1799 /**
1642 * Lookup182: pallet_collator_selection::pallet::Error<T>1800 * Lookup194: pallet_collator_selection::pallet::Error<T>
1643 **/1801 **/
1644 PalletCollatorSelectionError: {1802 PalletCollatorSelectionError: {
1645 _enum: ['TooManyCandidates', 'Unknown', 'Permission', 'AlreadyHoldingLicense', 'NoLicense', 'AlreadyCandidate', 'NotCandidate', 'TooManyInvulnerables', 'TooFewInvulnerables', 'AlreadyInvulnerable', 'NotInvulnerable', 'NoAssociatedValidatorId', 'ValidatorNotRegistered']1803 _enum: ['TooManyCandidates', 'Unknown', 'Permission', 'AlreadyHoldingLicense', 'NoLicense', 'AlreadyCandidate', 'NotCandidate', 'TooManyInvulnerables', 'TooFewInvulnerables', 'AlreadyInvulnerable', 'NotInvulnerable', 'NoAssociatedValidatorId', 'ValidatorNotRegistered']
1646 },1804 },
1647 /**1805 /**
1648 * Lookup185: opal_runtime::runtime_common::SessionKeys1806 * Lookup197: opal_runtime::runtime_common::SessionKeys
1649 **/1807 **/
1650 OpalRuntimeRuntimeCommonSessionKeys: {1808 OpalRuntimeRuntimeCommonSessionKeys: {
1651 aura: 'SpConsensusAuraSr25519AppSr25519Public'1809 aura: 'SpConsensusAuraSr25519AppSr25519Public'
1652 },1810 },
1653 /**1811 /**
1654 * Lookup186: sp_consensus_aura::sr25519::app_sr25519::Public1812 * Lookup198: sp_consensus_aura::sr25519::app_sr25519::Public
1655 **/1813 **/
1656 SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',1814 SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',
1657 /**1815 /**
1658 * Lookup187: sp_core::sr25519::Public1816 * Lookup199: sp_core::sr25519::Public
1659 **/1817 **/
1660 SpCoreSr25519Public: '[u8;32]',1818 SpCoreSr25519Public: '[u8;32]',
1661 /**1819 /**
1662 * Lookup190: sp_core::crypto::KeyTypeId1820 * Lookup202: sp_core::crypto::KeyTypeId
1663 **/1821 **/
1664 SpCoreCryptoKeyTypeId: '[u8;4]',1822 SpCoreCryptoKeyTypeId: '[u8;4]',
1665 /**1823 /**
1666 * Lookup191: pallet_session::pallet::Call<T>1824 * Lookup203: pallet_session::pallet::Call<T>
1667 **/1825 **/
1668 PalletSessionCall: {1826 PalletSessionCall: {
1669 _enum: {1827 _enum: {
1678 }1836 }
1679 },1837 },
1680 /**1838 /**
1681 * Lookup192: pallet_session::pallet::Error<T>1839 * Lookup204: pallet_session::pallet::Error<T>
1682 **/1840 **/
1683 PalletSessionError: {1841 PalletSessionError: {
1684 _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']1842 _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']
1685 },1843 },
1686 /**1844 /**
1687 * Lookup194: pallet_balances::BalanceLock<Balance>1845 * Lookup209: pallet_balances::BalanceLock<Balance>
1688 **/1846 **/
1689 PalletBalancesBalanceLock: {1847 PalletBalancesBalanceLock: {
1690 id: '[u8;8]',1848 id: '[u8;8]',
1691 amount: 'u128',1849 amount: 'u128',
1692 reasons: 'PalletBalancesReasons'1850 reasons: 'PalletBalancesReasons'
1693 },1851 },
1694 /**1852 /**
1695 * Lookup195: pallet_balances::Reasons1853 * Lookup210: pallet_balances::Reasons
1696 **/1854 **/
1697 PalletBalancesReasons: {1855 PalletBalancesReasons: {
1698 _enum: ['Fee', 'Misc', 'All']1856 _enum: ['Fee', 'Misc', 'All']
1699 },1857 },
1700 /**1858 /**
1701 * Lookup198: pallet_balances::ReserveData<ReserveIdentifier, Balance>1859 * Lookup213: pallet_balances::ReserveData<ReserveIdentifier, Balance>
1702 **/1860 **/
1703 PalletBalancesReserveData: {1861 PalletBalancesReserveData: {
1704 id: '[u8;16]',1862 id: '[u8;16]',
1705 amount: 'u128'1863 amount: 'u128'
1706 },1864 },
1707 /**1865 /**
1708 * Lookup200: pallet_balances::pallet::Call<T, I>1866 * Lookup215: pallet_balances::pallet::Call<T, I>
1709 **/1867 **/
1710 PalletBalancesCall: {1868 PalletBalancesCall: {
1711 _enum: {1869 _enum: {
1738 }1896 }
1739 },1897 },
1740 /**1898 /**
1741 * Lookup203: pallet_balances::pallet::Error<T, I>1899 * Lookup218: pallet_balances::pallet::Error<T, I>
1742 **/1900 **/
1743 PalletBalancesError: {1901 PalletBalancesError: {
1744 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1902 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
1745 },1903 },
1746 /**1904 /**
1747 * Lookup205: pallet_timestamp::pallet::Call<T>1905 * Lookup219: pallet_timestamp::pallet::Call<T>
1748 **/1906 **/
1749 PalletTimestampCall: {1907 PalletTimestampCall: {
1750 _enum: {1908 _enum: {
1754 }1912 }
1755 },1913 },
1756 /**1914 /**
1757 * Lookup207: pallet_transaction_payment::Releases1915 * Lookup221: pallet_transaction_payment::Releases
1758 **/1916 **/
1759 PalletTransactionPaymentReleases: {1917 PalletTransactionPaymentReleases: {
1760 _enum: ['V1Ancient', 'V2']1918 _enum: ['V1Ancient', 'V2']
1761 },1919 },
1762 /**1920 /**
1763 * Lookup208: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1921 * Lookup222: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
1764 **/1922 **/
1765 PalletTreasuryProposal: {1923 PalletTreasuryProposal: {
1766 proposer: 'AccountId32',1924 proposer: 'AccountId32',
1769 bond: 'u128'1927 bond: 'u128'
1770 },1928 },
1771 /**1929 /**
1772 * Lookup210: pallet_treasury::pallet::Call<T, I>1930 * Lookup224: pallet_treasury::pallet::Call<T, I>
1773 **/1931 **/
1774 PalletTreasuryCall: {1932 PalletTreasuryCall: {
1775 _enum: {1933 _enum: {
1793 }1951 }
1794 },1952 },
1795 /**1953 /**
1796 * Lookup212: frame_support::PalletId1954 * Lookup226: frame_support::PalletId
1797 **/1955 **/
1798 FrameSupportPalletId: '[u8;8]',1956 FrameSupportPalletId: '[u8;8]',
1799 /**1957 /**
1800 * Lookup213: pallet_treasury::pallet::Error<T, I>1958 * Lookup227: pallet_treasury::pallet::Error<T, I>
1801 **/1959 **/
1802 PalletTreasuryError: {1960 PalletTreasuryError: {
1803 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1961 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']
1804 },1962 },
1805 /**1963 /**
1806 * Lookup214: pallet_sudo::pallet::Call<T>1964 * Lookup228: pallet_sudo::pallet::Call<T>
1807 **/1965 **/
1808 PalletSudoCall: {1966 PalletSudoCall: {
1809 _enum: {1967 _enum: {
1827 }1985 }
1828 },1986 },
1829 /**1987 /**
1830 * Lookup216: orml_vesting::module::Call<T>1988 * Lookup230: orml_vesting::module::Call<T>
1831 **/1989 **/
1832 OrmlVestingModuleCall: {1990 OrmlVestingModuleCall: {
1833 _enum: {1991 _enum: {
1846 }2004 }
1847 },2005 },
1848 /**2006 /**
1849 * Lookup218: orml_xtokens::module::Call<T>2007 * Lookup232: orml_xtokens::module::Call<T>
1850 **/2008 **/
1851 OrmlXtokensModuleCall: {2009 OrmlXtokensModuleCall: {
1852 _enum: {2010 _enum: {
1853 transfer: {2011 transfer: {
1854 currencyId: 'PalletForeignAssetsAssetIds',2012 currencyId: 'PalletForeignAssetsAssetIds',
1855 amount: 'u128',2013 amount: 'u128',
1856 dest: 'XcmVersionedMultiLocation',2014 dest: 'XcmVersionedMultiLocation',
1857 destWeightLimit: 'XcmV2WeightLimit',2015 destWeightLimit: 'XcmV3WeightLimit',
1858 },2016 },
1859 transfer_multiasset: {2017 transfer_multiasset: {
1860 asset: 'XcmVersionedMultiAsset',2018 asset: 'XcmVersionedMultiAsset',
1861 dest: 'XcmVersionedMultiLocation',2019 dest: 'XcmVersionedMultiLocation',
1862 destWeightLimit: 'XcmV2WeightLimit',2020 destWeightLimit: 'XcmV3WeightLimit',
1863 },2021 },
1864 transfer_with_fee: {2022 transfer_with_fee: {
1865 currencyId: 'PalletForeignAssetsAssetIds',2023 currencyId: 'PalletForeignAssetsAssetIds',
1866 amount: 'u128',2024 amount: 'u128',
1867 fee: 'u128',2025 fee: 'u128',
1868 dest: 'XcmVersionedMultiLocation',2026 dest: 'XcmVersionedMultiLocation',
1869 destWeightLimit: 'XcmV2WeightLimit',2027 destWeightLimit: 'XcmV3WeightLimit',
1870 },2028 },
1871 transfer_multiasset_with_fee: {2029 transfer_multiasset_with_fee: {
1872 asset: 'XcmVersionedMultiAsset',2030 asset: 'XcmVersionedMultiAsset',
1873 fee: 'XcmVersionedMultiAsset',2031 fee: 'XcmVersionedMultiAsset',
1874 dest: 'XcmVersionedMultiLocation',2032 dest: 'XcmVersionedMultiLocation',
1875 destWeightLimit: 'XcmV2WeightLimit',2033 destWeightLimit: 'XcmV3WeightLimit',
1876 },2034 },
1877 transfer_multicurrencies: {2035 transfer_multicurrencies: {
1878 currencies: 'Vec<(PalletForeignAssetsAssetIds,u128)>',2036 currencies: 'Vec<(PalletForeignAssetsAssetIds,u128)>',
1879 feeItem: 'u32',2037 feeItem: 'u32',
1880 dest: 'XcmVersionedMultiLocation',2038 dest: 'XcmVersionedMultiLocation',
1881 destWeightLimit: 'XcmV2WeightLimit',2039 destWeightLimit: 'XcmV3WeightLimit',
1882 },2040 },
1883 transfer_multiassets: {2041 transfer_multiassets: {
1884 assets: 'XcmVersionedMultiAssets',2042 assets: 'XcmVersionedMultiAssets',
1885 feeItem: 'u32',2043 feeItem: 'u32',
1886 dest: 'XcmVersionedMultiLocation',2044 dest: 'XcmVersionedMultiLocation',
1887 destWeightLimit: 'XcmV2WeightLimit'2045 destWeightLimit: 'XcmV3WeightLimit'
1888 }2046 }
1889 }2047 }
1890 },2048 },
1891 /**2049 /**
1892 * Lookup219: xcm::VersionedMultiAsset2050 * Lookup233: xcm::VersionedMultiAsset
1893 **/2051 **/
1894 XcmVersionedMultiAsset: {2052 XcmVersionedMultiAsset: {
1895 _enum: {2053 _enum: {
1896 V0: 'XcmV0MultiAsset',2054 __Unused0: 'Null',
1897 V1: 'XcmV1MultiAsset'2055 V2: 'XcmV2MultiAsset',
2056 __Unused2: 'Null',
2057 V3: 'XcmV3MultiAsset'
1898 }2058 }
1899 },2059 },
1900 /**2060 /**
1901 * Lookup222: orml_tokens::module::Call<T>2061 * Lookup236: orml_tokens::module::Call<T>
1902 **/2062 **/
1903 OrmlTokensModuleCall: {2063 OrmlTokensModuleCall: {
1904 _enum: {2064 _enum: {
1932 }2092 }
1933 },2093 },
1934 /**2094 /**
1935 * Lookup223: pallet_identity::pallet::Call<T>2095 * Lookup237: pallet_identity::pallet::Call<T>
1936 **/2096 **/
1937 PalletIdentityCall: {2097 PalletIdentityCall: {
1938 _enum: {2098 _enum: {
2001 }2161 }
2002 },2162 },
2003 /**2163 /**
2004 * Lookup224: pallet_identity::types::IdentityInfo<FieldLimit>2164 * Lookup238: pallet_identity::types::IdentityInfo<FieldLimit>
2005 **/2165 **/
2006 PalletIdentityIdentityInfo: {2166 PalletIdentityIdentityInfo: {
2007 additional: 'Vec<(Data,Data)>',2167 additional: 'Vec<(Data,Data)>',
2015 twitter: 'Data'2175 twitter: 'Data'
2016 },2176 },
2017 /**2177 /**
2018 * Lookup260: pallet_identity::types::BitFlags<pallet_identity::types::IdentityField>2178 * Lookup274: pallet_identity::types::BitFlags<pallet_identity::types::IdentityField>
2019 **/2179 **/
2020 PalletIdentityBitFlags: {2180 PalletIdentityBitFlags: {
2021 _bitLength: 64,2181 _bitLength: 64,
2029 Twitter: 1282189 Twitter: 128
2030 },2190 },
2031 /**2191 /**
2032 * Lookup261: pallet_identity::types::IdentityField2192 * Lookup275: pallet_identity::types::IdentityField
2033 **/2193 **/
2034 PalletIdentityIdentityField: {2194 PalletIdentityIdentityField: {
2035 _enum: ['__Unused0', 'Display', 'Legal', '__Unused3', 'Web', '__Unused5', '__Unused6', '__Unused7', 'Riot', '__Unused9', '__Unused10', '__Unused11', '__Unused12', '__Unused13', '__Unused14', '__Unused15', 'Email', '__Unused17', '__Unused18', '__Unused19', '__Unused20', '__Unused21', '__Unused22', '__Unused23', '__Unused24', '__Unused25', '__Unused26', '__Unused27', '__Unused28', '__Unused29', '__Unused30', '__Unused31', 'PgpFingerprint', '__Unused33', '__Unused34', '__Unused35', '__Unused36', '__Unused37', '__Unused38', '__Unused39', '__Unused40', '__Unused41', '__Unused42', '__Unused43', '__Unused44', '__Unused45', '__Unused46', '__Unused47', '__Unused48', '__Unused49', '__Unused50', '__Unused51', '__Unused52', '__Unused53', '__Unused54', '__Unused55', '__Unused56', '__Unused57', '__Unused58', '__Unused59', '__Unused60', '__Unused61', '__Unused62', '__Unused63', 'Image', '__Unused65', '__Unused66', '__Unused67', '__Unused68', '__Unused69', '__Unused70', '__Unused71', '__Unused72', '__Unused73', '__Unused74', '__Unused75', '__Unused76', '__Unused77', '__Unused78', '__Unused79', '__Unused80', '__Unused81', '__Unused82', '__Unused83', '__Unused84', '__Unused85', '__Unused86', '__Unused87', '__Unused88', '__Unused89', '__Unused90', '__Unused91', '__Unused92', '__Unused93', '__Unused94', '__Unused95', '__Unused96', '__Unused97', '__Unused98', '__Unused99', '__Unused100', '__Unused101', '__Unused102', '__Unused103', '__Unused104', '__Unused105', '__Unused106', '__Unused107', '__Unused108', '__Unused109', '__Unused110', '__Unused111', '__Unused112', '__Unused113', '__Unused114', '__Unused115', '__Unused116', '__Unused117', '__Unused118', '__Unused119', '__Unused120', '__Unused121', '__Unused122', '__Unused123', '__Unused124', '__Unused125', '__Unused126', '__Unused127', 'Twitter']2195 _enum: ['__Unused0', 'Display', 'Legal', '__Unused3', 'Web', '__Unused5', '__Unused6', '__Unused7', 'Riot', '__Unused9', '__Unused10', '__Unused11', '__Unused12', '__Unused13', '__Unused14', '__Unused15', 'Email', '__Unused17', '__Unused18', '__Unused19', '__Unused20', '__Unused21', '__Unused22', '__Unused23', '__Unused24', '__Unused25', '__Unused26', '__Unused27', '__Unused28', '__Unused29', '__Unused30', '__Unused31', 'PgpFingerprint', '__Unused33', '__Unused34', '__Unused35', '__Unused36', '__Unused37', '__Unused38', '__Unused39', '__Unused40', '__Unused41', '__Unused42', '__Unused43', '__Unused44', '__Unused45', '__Unused46', '__Unused47', '__Unused48', '__Unused49', '__Unused50', '__Unused51', '__Unused52', '__Unused53', '__Unused54', '__Unused55', '__Unused56', '__Unused57', '__Unused58', '__Unused59', '__Unused60', '__Unused61', '__Unused62', '__Unused63', 'Image', '__Unused65', '__Unused66', '__Unused67', '__Unused68', '__Unused69', '__Unused70', '__Unused71', '__Unused72', '__Unused73', '__Unused74', '__Unused75', '__Unused76', '__Unused77', '__Unused78', '__Unused79', '__Unused80', '__Unused81', '__Unused82', '__Unused83', '__Unused84', '__Unused85', '__Unused86', '__Unused87', '__Unused88', '__Unused89', '__Unused90', '__Unused91', '__Unused92', '__Unused93', '__Unused94', '__Unused95', '__Unused96', '__Unused97', '__Unused98', '__Unused99', '__Unused100', '__Unused101', '__Unused102', '__Unused103', '__Unused104', '__Unused105', '__Unused106', '__Unused107', '__Unused108', '__Unused109', '__Unused110', '__Unused111', '__Unused112', '__Unused113', '__Unused114', '__Unused115', '__Unused116', '__Unused117', '__Unused118', '__Unused119', '__Unused120', '__Unused121', '__Unused122', '__Unused123', '__Unused124', '__Unused125', '__Unused126', '__Unused127', 'Twitter']
2036 },2196 },
2037 /**2197 /**
2038 * Lookup262: pallet_identity::types::Judgement<Balance>2198 * Lookup276: pallet_identity::types::Judgement<Balance>
2039 **/2199 **/
2040 PalletIdentityJudgement: {2200 PalletIdentityJudgement: {
2041 _enum: {2201 _enum: {
2049 }2209 }
2050 },2210 },
2051 /**2211 /**
2052 * Lookup265: pallet_identity::types::Registration<Balance, MaxJudgements, MaxAdditionalFields>2212 * Lookup279: pallet_identity::types::Registration<Balance, MaxJudgements, MaxAdditionalFields>
2053 **/2213 **/
2054 PalletIdentityRegistration: {2214 PalletIdentityRegistration: {
2055 judgements: 'Vec<(u32,PalletIdentityJudgement)>',2215 judgements: 'Vec<(u32,PalletIdentityJudgement)>',
2056 deposit: 'u128',2216 deposit: 'u128',
2057 info: 'PalletIdentityIdentityInfo'2217 info: 'PalletIdentityIdentityInfo'
2058 },2218 },
2059 /**2219 /**
2060 * Lookup273: pallet_preimage::pallet::Call<T>2220 * Lookup287: pallet_preimage::pallet::Call<T>
2061 **/2221 **/
2062 PalletPreimageCall: {2222 PalletPreimageCall: {
2063 _enum: {2223 _enum: {
2085 }2245 }
2086 },2246 },
2087 /**2247 /**
2088 * Lookup274: cumulus_pallet_xcmp_queue::pallet::Call<T>2248 * Lookup288: cumulus_pallet_xcmp_queue::pallet::Call<T>
2089 **/2249 **/
2090 CumulusPalletXcmpQueueCall: {2250 CumulusPalletXcmpQueueCall: {
2091 _enum: {2251 _enum: {
2092 service_overweight: {2252 service_overweight: {
2093 index: 'u64',2253 index: 'u64',
2094 weightLimit: 'u64',2254 weightLimit: 'SpWeightsWeightV2Weight',
2095 },2255 },
2096 suspend_xcm_execution: 'Null',2256 suspend_xcm_execution: 'Null',
2097 resume_xcm_execution: 'Null',2257 resume_xcm_execution: 'Null',
2117 _alias: {2277 _alias: {
2118 new_: 'new',2278 new_: 'new',
2119 },2279 },
2120 new_: 'u64',2280 new_: 'SpWeightsWeightV2Weight',
2121 },2281 },
2122 update_weight_restrict_decay: {2282 update_weight_restrict_decay: {
2123 _alias: {2283 _alias: {
2124 new_: 'new',2284 new_: 'new',
2125 },2285 },
2126 new_: 'u64',2286 new_: 'SpWeightsWeightV2Weight',
2127 },2287 },
2128 update_xcmp_max_individual_weight: {2288 update_xcmp_max_individual_weight: {
2129 _alias: {2289 _alias: {
2130 new_: 'new',2290 new_: 'new',
2131 },2291 },
2132 new_: 'u64'2292 new_: 'SpWeightsWeightV2Weight'
2133 }2293 }
2134 }2294 }
2135 },2295 },
2136 /**2296 /**
2137 * Lookup275: pallet_xcm::pallet::Call<T>2297 * Lookup289: pallet_xcm::pallet::Call<T>
2138 **/2298 **/
2139 PalletXcmCall: {2299 PalletXcmCall: {
2140 _enum: {2300 _enum: {
2156 },2316 },
2157 execute: {2317 execute: {
2158 message: 'XcmVersionedXcm',2318 message: 'XcmVersionedXcm',
2159 maxWeight: 'u64',2319 maxWeight: 'SpWeightsWeightV2Weight',
2160 },2320 },
2161 force_xcm_version: {2321 force_xcm_version: {
2162 location: 'XcmV1MultiLocation',2322 location: 'XcmV3MultiLocation',
2163 xcmVersion: 'u32',2323 xcmVersion: 'u32',
2164 },2324 },
2165 force_default_xcm_version: {2325 force_default_xcm_version: {
2176 beneficiary: 'XcmVersionedMultiLocation',2336 beneficiary: 'XcmVersionedMultiLocation',
2177 assets: 'XcmVersionedMultiAssets',2337 assets: 'XcmVersionedMultiAssets',
2178 feeAssetItem: 'u32',2338 feeAssetItem: 'u32',
2179 weightLimit: 'XcmV2WeightLimit',2339 weightLimit: 'XcmV3WeightLimit',
2180 },2340 },
2181 limited_teleport_assets: {2341 limited_teleport_assets: {
2182 dest: 'XcmVersionedMultiLocation',2342 dest: 'XcmVersionedMultiLocation',
2183 beneficiary: 'XcmVersionedMultiLocation',2343 beneficiary: 'XcmVersionedMultiLocation',
2184 assets: 'XcmVersionedMultiAssets',2344 assets: 'XcmVersionedMultiAssets',
2185 feeAssetItem: 'u32',2345 feeAssetItem: 'u32',
2186 weightLimit: 'XcmV2WeightLimit'2346 weightLimit: 'XcmV3WeightLimit'
2187 }2347 }
2188 }2348 }
2189 },2349 },
2190 /**2350 /**
2191 * Lookup276: xcm::VersionedXcm<RuntimeCall>2351 * Lookup290: xcm::VersionedXcm<RuntimeCall>
2192 **/2352 **/
2193 XcmVersionedXcm: {2353 XcmVersionedXcm: {
2194 _enum: {2354 _enum: {
2195 V0: 'XcmV0Xcm',2355 __Unused0: 'Null',
2196 V1: 'XcmV1Xcm',2356 __Unused1: 'Null',
2197 V2: 'XcmV2Xcm'2357 V2: 'XcmV2Xcm',
2358 V3: 'XcmV3Xcm'
2198 }2359 }
2199 },2360 },
2200 /**2361 /**
2201 * Lookup277: xcm::v0::Xcm<RuntimeCall>2362 * Lookup291: xcm::v2::Xcm<RuntimeCall>
2202 **/2363 **/
2203 XcmV0Xcm: {2364 XcmV2Xcm: 'Vec<XcmV2Instruction>',
2365 /**
2366 * Lookup293: xcm::v2::Instruction<RuntimeCall>
2367 **/
2368 XcmV2Instruction: {
2204 _enum: {2369 _enum: {
2205 WithdrawAsset: {2370 WithdrawAsset: 'XcmV2MultiassetMultiAssets',
2206 assets: 'Vec<XcmV0MultiAsset>',
2207 effects: 'Vec<XcmV0Order>',2371 ReserveAssetDeposited: 'XcmV2MultiassetMultiAssets',
2208 },2372 ReceiveTeleportedAsset: 'XcmV2MultiassetMultiAssets',
2209 ReserveAssetDeposit: {
2210 assets: 'Vec<XcmV0MultiAsset>',
2211 effects: 'Vec<XcmV0Order>',
2212 },
2213 TeleportAsset: {
2214 assets: 'Vec<XcmV0MultiAsset>',
2215 effects: 'Vec<XcmV0Order>',
2216 },
2217 QueryResponse: {2373 QueryResponse: {
2218 queryId: 'Compact<u64>',2374 queryId: 'Compact<u64>',
2219 response: 'XcmV0Response',2375 response: 'XcmV2Response',
2376 maxWeight: 'Compact<u64>',
2220 },2377 },
2221 TransferAsset: {2378 TransferAsset: {
2222 assets: 'Vec<XcmV0MultiAsset>',2379 assets: 'XcmV2MultiassetMultiAssets',
2223 dest: 'XcmV0MultiLocation',2380 beneficiary: 'XcmV2MultiLocation',
2224 },2381 },
2225 TransferReserveAsset: {2382 TransferReserveAsset: {
2226 assets: 'Vec<XcmV0MultiAsset>',2383 assets: 'XcmV2MultiassetMultiAssets',
2227 dest: 'XcmV0MultiLocation',2384 dest: 'XcmV2MultiLocation',
2228 effects: 'Vec<XcmV0Order>',2385 xcm: 'XcmV2Xcm',
2229 },2386 },
2230 Transact: {2387 Transact: {
2231 originType: 'XcmV0OriginKind',2388 originType: 'XcmV2OriginKind',
2232 requireWeightAtMost: 'u64',2389 requireWeightAtMost: 'Compact<u64>',
2233 call: 'XcmDoubleEncoded',2390 call: 'XcmDoubleEncoded',
2234 },2391 },
2235 HrmpNewChannelOpenRequest: {2392 HrmpNewChannelOpenRequest: {
2245 sender: 'Compact<u32>',2402 sender: 'Compact<u32>',
2246 recipient: 'Compact<u32>',2403 recipient: 'Compact<u32>',
2247 },2404 },
2248 RelayedFrom: {2405 ClearOrigin: 'Null',
2249 who: 'XcmV0MultiLocation',2406 DescendOrigin: 'XcmV2MultilocationJunctions',
2250 message: 'XcmV0Xcm'2407 ReportError: {
2251 }2408 queryId: 'Compact<u64>',
2252 }
2253 },2409 dest: 'XcmV2MultiLocation',
2254 /**
2255 * Lookup279: xcm::v0::order::Order<RuntimeCall>
2256 **/2410 maxResponseWeight: 'Compact<u64>',
2257 XcmV0Order: {
2258 _enum: {
2259 Null: 'Null',2411 },
2260 DepositAsset: {2412 DepositAsset: {
2261 assets: 'Vec<XcmV0MultiAsset>',2413 assets: 'XcmV2MultiassetMultiAssetFilter',
2414 maxAssets: 'Compact<u32>',
2262 dest: 'XcmV0MultiLocation',2415 beneficiary: 'XcmV2MultiLocation',
2263 },2416 },
2264 DepositReserveAsset: {2417 DepositReserveAsset: {
2265 assets: 'Vec<XcmV0MultiAsset>',2418 assets: 'XcmV2MultiassetMultiAssetFilter',
2419 maxAssets: 'Compact<u32>',
2266 dest: 'XcmV0MultiLocation',2420 dest: 'XcmV2MultiLocation',
2267 effects: 'Vec<XcmV0Order>',2421 xcm: 'XcmV2Xcm',
2268 },2422 },
2269 ExchangeAsset: {2423 ExchangeAsset: {
2270 give: 'Vec<XcmV0MultiAsset>',2424 give: 'XcmV2MultiassetMultiAssetFilter',
2271 receive: 'Vec<XcmV0MultiAsset>',2425 receive: 'XcmV2MultiassetMultiAssets',
2272 },2426 },
2273 InitiateReserveWithdraw: {2427 InitiateReserveWithdraw: {
2274 assets: 'Vec<XcmV0MultiAsset>',2428 assets: 'XcmV2MultiassetMultiAssetFilter',
2275 reserve: 'XcmV0MultiLocation',2429 reserve: 'XcmV2MultiLocation',
2276 effects: 'Vec<XcmV0Order>',2430 xcm: 'XcmV2Xcm',
2277 },2431 },
2278 InitiateTeleport: {2432 InitiateTeleport: {
2279 assets: 'Vec<XcmV0MultiAsset>',2433 assets: 'XcmV2MultiassetMultiAssetFilter',
2280 dest: 'XcmV0MultiLocation',2434 dest: 'XcmV2MultiLocation',
2281 effects: 'Vec<XcmV0Order>',2435 xcm: 'XcmV2Xcm',
2282 },2436 },
2283 QueryHolding: {2437 QueryHolding: {
2284 queryId: 'Compact<u64>',2438 queryId: 'Compact<u64>',
2285 dest: 'XcmV0MultiLocation',2439 dest: 'XcmV2MultiLocation',
2286 assets: 'Vec<XcmV0MultiAsset>',2440 assets: 'XcmV2MultiassetMultiAssetFilter',
2441 maxResponseWeight: 'Compact<u64>',
2287 },2442 },
2288 BuyExecution: {2443 BuyExecution: {
2289 fees: 'XcmV0MultiAsset',2444 fees: 'XcmV2MultiAsset',
2290 weight: 'u64',2445 weightLimit: 'XcmV2WeightLimit',
2291 debt: 'u64',2446 },
2447 RefundSurplus: 'Null',
2448 SetErrorHandler: 'XcmV2Xcm',
2449 SetAppendix: 'XcmV2Xcm',
2450 ClearError: 'Null',
2451 ClaimAsset: {
2452 assets: 'XcmV2MultiassetMultiAssets',
2453 ticket: 'XcmV2MultiLocation',
2454 },
2455 Trap: 'Compact<u64>',
2292 haltOnError: 'bool',2456 SubscribeVersion: {
2457 queryId: 'Compact<u64>',
2293 xcm: 'Vec<XcmV0Xcm>'2458 maxResponseWeight: 'Compact<u64>',
2294 }2459 },
2460 UnsubscribeVersion: 'Null'
2295 }2461 }
2296 },2462 },
2297 /**2463 /**
2298 * Lookup281: xcm::v0::Response2464 * Lookup294: xcm::v2::Response
2299 **/2465 **/
2300 XcmV0Response: {2466 XcmV2Response: {
2301 _enum: {2467 _enum: {
2302 Assets: 'Vec<XcmV0MultiAsset>'2468 Null: 'Null',
2469 Assets: 'XcmV2MultiassetMultiAssets',
2470 ExecutionResult: 'Option<(u32,XcmV2TraitsError)>',
2471 Version: 'u32'
2303 }2472 }
2304 },2473 },
2305 /**2474 /**
2306 * Lookup282: xcm::v1::Xcm<RuntimeCall>2475 * Lookup297: xcm::v2::traits::Error
2307 **/2476 **/
2308 XcmV1Xcm: {2477 XcmV2TraitsError: {
2309 _enum: {2478 _enum: {
2310 WithdrawAsset: {2479 Overflow: 'Null',
2311 assets: 'XcmV1MultiassetMultiAssets',
2312 effects: 'Vec<XcmV1Order>',2480 Unimplemented: 'Null',
2313 },2481 UntrustedReserveLocation: 'Null',
2314 ReserveAssetDeposited: {
2315 assets: 'XcmV1MultiassetMultiAssets',
2316 effects: 'Vec<XcmV1Order>',2482 UntrustedTeleportLocation: 'Null',
2317 },2483 MultiLocationFull: 'Null',
2318 ReceiveTeleportedAsset: {
2319 assets: 'XcmV1MultiassetMultiAssets',
2320 effects: 'Vec<XcmV1Order>',2484 MultiLocationNotInvertible: 'Null',
2321 },2485 BadOrigin: 'Null',
2322 QueryResponse: {
2323 queryId: 'Compact<u64>',
2324 response: 'XcmV1Response',2486 InvalidLocation: 'Null',
2325 },2487 AssetNotFound: 'Null',
2326 TransferAsset: {
2327 assets: 'XcmV1MultiassetMultiAssets',
2328 beneficiary: 'XcmV1MultiLocation',2488 FailedToTransactAsset: 'Null',
2329 },2489 NotWithdrawable: 'Null',
2330 TransferReserveAsset: {
2331 assets: 'XcmV1MultiassetMultiAssets',
2332 dest: 'XcmV1MultiLocation',2490 LocationCannotHold: 'Null',
2333 effects: 'Vec<XcmV1Order>',2491 ExceedsMaxMessageSize: 'Null',
2334 },2492 DestinationUnsupported: 'Null',
2335 Transact: {
2336 originType: 'XcmV0OriginKind',
2337 requireWeightAtMost: 'u64',2493 Transport: 'Null',
2338 call: 'XcmDoubleEncoded',2494 Unroutable: 'Null',
2339 },2495 UnknownClaim: 'Null',
2340 HrmpNewChannelOpenRequest: {
2341 sender: 'Compact<u32>',
2342 maxMessageSize: 'Compact<u32>',2496 FailedToDecode: 'Null',
2343 maxCapacity: 'Compact<u32>',2497 MaxWeightInvalid: 'Null',
2344 },2498 NotHoldingFees: 'Null',
2345 HrmpChannelAccepted: {
2346 recipient: 'Compact<u32>',
2347 },2499 TooExpensive: 'Null',
2348 HrmpChannelClosing: {
2349 initiator: 'Compact<u32>',
2350 sender: 'Compact<u32>',2500 Trap: 'u64',
2351 recipient: 'Compact<u32>',2501 UnhandledXcmVersion: 'Null',
2352 },2502 WeightLimitReached: 'u64',
2353 RelayedFrom: {
2354 who: 'XcmV1MultilocationJunctions',
2355 message: 'XcmV1Xcm',
2356 },
2357 SubscribeVersion: {
2358 queryId: 'Compact<u64>',
2359 maxResponseWeight: 'Compact<u64>',2503 Barrier: 'Null',
2360 },
2361 UnsubscribeVersion: 'Null'2504 WeightNotComputable: 'Null'
2362 }2505 }
2363 },2506 },
2364 /**2507 /**
2365 * Lookup284: xcm::v1::order::Order<RuntimeCall>2508 * Lookup298: xcm::v2::multiasset::MultiAssetFilter
2366 **/2509 **/
2367 XcmV1Order: {2510 XcmV2MultiassetMultiAssetFilter: {
2368 _enum: {2511 _enum: {
2369 Noop: 'Null',2512 Definite: 'XcmV2MultiassetMultiAssets',
2370 DepositAsset: {2513 Wild: 'XcmV2MultiassetWildMultiAsset'
2371 assets: 'XcmV1MultiassetMultiAssetFilter',
2372 maxAssets: 'u32',2514 }
2373 beneficiary: 'XcmV1MultiLocation',
2374 },
2375 DepositReserveAsset: {2515 },
2376 assets: 'XcmV1MultiassetMultiAssetFilter',
2377 maxAssets: 'u32',
2378 dest: 'XcmV1MultiLocation',
2379 effects: 'Vec<XcmV1Order>',
2380 },
2381 ExchangeAsset: {2516 /**
2382 give: 'XcmV1MultiassetMultiAssetFilter',2517 * Lookup299: xcm::v2::multiasset::WildMultiAsset
2383 receive: 'XcmV1MultiassetMultiAssets',
2384 },
2385 InitiateReserveWithdraw: {
2386 assets: 'XcmV1MultiassetMultiAssetFilter',
2387 reserve: 'XcmV1MultiLocation',
2388 effects: 'Vec<XcmV1Order>',
2389 },
2390 InitiateTeleport: {
2391 assets: 'XcmV1MultiassetMultiAssetFilter',2518 **/
2392 dest: 'XcmV1MultiLocation',2519 XcmV2MultiassetWildMultiAsset: {
2393 effects: 'Vec<XcmV1Order>',
2394 },
2395 QueryHolding: {
2396 queryId: 'Compact<u64>',2520 _enum: {
2397 dest: 'XcmV1MultiLocation',
2398 assets: 'XcmV1MultiassetMultiAssetFilter',
2399 },
2400 BuyExecution: {
2401 fees: 'XcmV1MultiAsset',2521 All: 'Null',
2402 weight: 'u64',2522 AllOf: {
2403 debt: 'u64',
2404 haltOnError: 'bool',2523 id: 'XcmV2MultiassetAssetId',
2405 instructions: 'Vec<XcmV1Xcm>'2524 fun: 'XcmV2MultiassetWildFungibility'
2406 }2525 }
2407 }2526 }
2408 },2527 },
2409 /**2528 /**
2410 * Lookup286: xcm::v1::Response2529 * Lookup300: xcm::v2::multiasset::WildFungibility
2411 **/2530 **/
2412 XcmV1Response: {2531 XcmV2MultiassetWildFungibility: {
2532 _enum: ['Fungible', 'NonFungible']
2533 },
2534 /**
2535 * Lookup301: xcm::v2::WeightLimit
2536 **/
2537 XcmV2WeightLimit: {
2413 _enum: {2538 _enum: {
2414 Assets: 'XcmV1MultiassetMultiAssets',2539 Unlimited: 'Null',
2415 Version: 'u32'2540 Limited: 'Compact<u64>'
2416 }2541 }
2417 },2542 },
2418 /**2543 /**
2419 * Lookup300: cumulus_pallet_xcm::pallet::Call<T>2544 * Lookup310: cumulus_pallet_xcm::pallet::Call<T>
2420 **/2545 **/
2421 CumulusPalletXcmCall: 'Null',2546 CumulusPalletXcmCall: 'Null',
2422 /**2547 /**
2423 * Lookup301: cumulus_pallet_dmp_queue::pallet::Call<T>2548 * Lookup311: cumulus_pallet_dmp_queue::pallet::Call<T>
2424 **/2549 **/
2425 CumulusPalletDmpQueueCall: {2550 CumulusPalletDmpQueueCall: {
2426 _enum: {2551 _enum: {
2427 service_overweight: {2552 service_overweight: {
2428 index: 'u64',2553 index: 'u64',
2429 weightLimit: 'u64'2554 weightLimit: 'SpWeightsWeightV2Weight'
2430 }2555 }
2431 }2556 }
2432 },2557 },
2433 /**2558 /**
2434 * Lookup302: pallet_inflation::pallet::Call<T>2559 * Lookup312: pallet_inflation::pallet::Call<T>
2435 **/2560 **/
2436 PalletInflationCall: {2561 PalletInflationCall: {
2437 _enum: {2562 _enum: {
2441 }2566 }
2442 },2567 },
2443 /**2568 /**
2444 * Lookup303: pallet_unique::Call<T>2569 * Lookup313: pallet_unique::Call<T>
2445 **/2570 **/
2446 PalletUniqueCall: {2571 PalletUniqueCall: {
2447 _enum: {2572 _enum: {
2592 }2717 }
2593 },2718 },
2594 /**2719 /**
2595 * Lookup308: up_data_structs::CollectionMode2720 * Lookup318: up_data_structs::CollectionMode
2596 **/2721 **/
2597 UpDataStructsCollectionMode: {2722 UpDataStructsCollectionMode: {
2598 _enum: {2723 _enum: {
2602 }2727 }
2603 },2728 },
2604 /**2729 /**
2605 * Lookup309: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2730 * Lookup319: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
2606 **/2731 **/
2607 UpDataStructsCreateCollectionData: {2732 UpDataStructsCreateCollectionData: {
2608 mode: 'UpDataStructsCollectionMode',2733 mode: 'UpDataStructsCollectionMode',
2617 properties: 'Vec<UpDataStructsProperty>'2742 properties: 'Vec<UpDataStructsProperty>'
2618 },2743 },
2619 /**2744 /**
2620 * Lookup311: up_data_structs::AccessMode2745 * Lookup321: up_data_structs::AccessMode
2621 **/2746 **/
2622 UpDataStructsAccessMode: {2747 UpDataStructsAccessMode: {
2623 _enum: ['Normal', 'AllowList']2748 _enum: ['Normal', 'AllowList']
2624 },2749 },
2625 /**2750 /**
2626 * Lookup313: up_data_structs::CollectionLimits2751 * Lookup323: up_data_structs::CollectionLimits
2627 **/2752 **/
2628 UpDataStructsCollectionLimits: {2753 UpDataStructsCollectionLimits: {
2629 accountTokenOwnershipLimit: 'Option<u32>',2754 accountTokenOwnershipLimit: 'Option<u32>',
2637 transfersEnabled: 'Option<bool>'2762 transfersEnabled: 'Option<bool>'
2638 },2763 },
2639 /**2764 /**
2640 * Lookup315: up_data_structs::SponsoringRateLimit2765 * Lookup325: up_data_structs::SponsoringRateLimit
2641 **/2766 **/
2642 UpDataStructsSponsoringRateLimit: {2767 UpDataStructsSponsoringRateLimit: {
2643 _enum: {2768 _enum: {
2646 }2771 }
2647 },2772 },
2648 /**2773 /**
2649 * Lookup318: up_data_structs::CollectionPermissions2774 * Lookup328: up_data_structs::CollectionPermissions
2650 **/2775 **/
2651 UpDataStructsCollectionPermissions: {2776 UpDataStructsCollectionPermissions: {
2652 access: 'Option<UpDataStructsAccessMode>',2777 access: 'Option<UpDataStructsAccessMode>',
2653 mintMode: 'Option<bool>',2778 mintMode: 'Option<bool>',
2654 nesting: 'Option<UpDataStructsNestingPermissions>'2779 nesting: 'Option<UpDataStructsNestingPermissions>'
2655 },2780 },
2656 /**2781 /**
2657 * Lookup320: up_data_structs::NestingPermissions2782 * Lookup330: up_data_structs::NestingPermissions
2658 **/2783 **/
2659 UpDataStructsNestingPermissions: {2784 UpDataStructsNestingPermissions: {
2660 tokenOwner: 'bool',2785 tokenOwner: 'bool',
2661 collectionAdmin: 'bool',2786 collectionAdmin: 'bool',
2662 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2787 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'
2663 },2788 },
2664 /**2789 /**
2665 * Lookup322: up_data_structs::OwnerRestrictedSet2790 * Lookup332: up_data_structs::OwnerRestrictedSet
2666 **/2791 **/
2667 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2792 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',
2668 /**2793 /**
2669 * Lookup327: up_data_structs::PropertyKeyPermission2794 * Lookup337: up_data_structs::PropertyKeyPermission
2670 **/2795 **/
2671 UpDataStructsPropertyKeyPermission: {2796 UpDataStructsPropertyKeyPermission: {
2672 key: 'Bytes',2797 key: 'Bytes',
2673 permission: 'UpDataStructsPropertyPermission'2798 permission: 'UpDataStructsPropertyPermission'
2674 },2799 },
2675 /**2800 /**
2676 * Lookup328: up_data_structs::PropertyPermission2801 * Lookup338: up_data_structs::PropertyPermission
2677 **/2802 **/
2678 UpDataStructsPropertyPermission: {2803 UpDataStructsPropertyPermission: {
2679 mutable: 'bool',2804 mutable: 'bool',
2680 collectionAdmin: 'bool',2805 collectionAdmin: 'bool',
2681 tokenOwner: 'bool'2806 tokenOwner: 'bool'
2682 },2807 },
2683 /**2808 /**
2684 * Lookup331: up_data_structs::Property2809 * Lookup341: up_data_structs::Property
2685 **/2810 **/
2686 UpDataStructsProperty: {2811 UpDataStructsProperty: {
2687 key: 'Bytes',2812 key: 'Bytes',
2688 value: 'Bytes'2813 value: 'Bytes'
2689 },2814 },
2690 /**2815 /**
2691 * Lookup334: up_data_structs::CreateItemData2816 * Lookup344: up_data_structs::CreateItemData
2692 **/2817 **/
2693 UpDataStructsCreateItemData: {2818 UpDataStructsCreateItemData: {
2694 _enum: {2819 _enum: {
2698 }2823 }
2699 },2824 },
2700 /**2825 /**
2701 * Lookup335: up_data_structs::CreateNftData2826 * Lookup345: up_data_structs::CreateNftData
2702 **/2827 **/
2703 UpDataStructsCreateNftData: {2828 UpDataStructsCreateNftData: {
2704 properties: 'Vec<UpDataStructsProperty>'2829 properties: 'Vec<UpDataStructsProperty>'
2705 },2830 },
2706 /**2831 /**
2707 * Lookup336: up_data_structs::CreateFungibleData2832 * Lookup346: up_data_structs::CreateFungibleData
2708 **/2833 **/
2709 UpDataStructsCreateFungibleData: {2834 UpDataStructsCreateFungibleData: {
2710 value: 'u128'2835 value: 'u128'
2711 },2836 },
2712 /**2837 /**
2713 * Lookup337: up_data_structs::CreateReFungibleData2838 * Lookup347: up_data_structs::CreateReFungibleData
2714 **/2839 **/
2715 UpDataStructsCreateReFungibleData: {2840 UpDataStructsCreateReFungibleData: {
2716 pieces: 'u128',2841 pieces: 'u128',
2717 properties: 'Vec<UpDataStructsProperty>'2842 properties: 'Vec<UpDataStructsProperty>'
2718 },2843 },
2719 /**2844 /**
2720 * Lookup340: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2845 * Lookup350: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2721 **/2846 **/
2722 UpDataStructsCreateItemExData: {2847 UpDataStructsCreateItemExData: {
2723 _enum: {2848 _enum: {
2728 }2853 }
2729 },2854 },
2730 /**2855 /**
2731 * Lookup342: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2856 * Lookup352: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2732 **/2857 **/
2733 UpDataStructsCreateNftExData: {2858 UpDataStructsCreateNftExData: {
2734 properties: 'Vec<UpDataStructsProperty>',2859 properties: 'Vec<UpDataStructsProperty>',
2735 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2860 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
2736 },2861 },
2737 /**2862 /**
2738 * Lookup349: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2863 * Lookup359: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2739 **/2864 **/
2740 UpDataStructsCreateRefungibleExSingleOwner: {2865 UpDataStructsCreateRefungibleExSingleOwner: {
2741 user: 'PalletEvmAccountBasicCrossAccountIdRepr',2866 user: 'PalletEvmAccountBasicCrossAccountIdRepr',
2742 pieces: 'u128',2867 pieces: 'u128',
2743 properties: 'Vec<UpDataStructsProperty>'2868 properties: 'Vec<UpDataStructsProperty>'
2744 },2869 },
2745 /**2870 /**
2746 * Lookup351: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2871 * Lookup361: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2747 **/2872 **/
2748 UpDataStructsCreateRefungibleExMultipleOwners: {2873 UpDataStructsCreateRefungibleExMultipleOwners: {
2749 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2874 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',
2750 properties: 'Vec<UpDataStructsProperty>'2875 properties: 'Vec<UpDataStructsProperty>'
2751 },2876 },
2752 /**2877 /**
2753 * Lookup352: pallet_configuration::pallet::Call<T>2878 * Lookup362: pallet_configuration::pallet::Call<T>
2754 **/2879 **/
2755 PalletConfigurationCall: {2880 PalletConfigurationCall: {
2756 _enum: {2881 _enum: {
2760 set_min_gas_price_override: {2885 set_min_gas_price_override: {
2761 coeff: 'Option<u64>',2886 coeff: 'Option<u64>',
2762 },2887 },
2763 set_xcm_allowed_locations: {2888 __Unused2: 'Null',
2764 locations: 'Option<Vec<XcmV1MultiLocation>>',
2765 },
2766 set_app_promotion_configuration_override: {2889 set_app_promotion_configuration_override: {
2767 configuration: 'PalletConfigurationAppPromotionConfiguration',2890 configuration: 'PalletConfigurationAppPromotionConfiguration',
2768 },2891 },
2778 }2901 }
2779 },2902 },
2780 /**2903 /**
2781 * Lookup357: pallet_configuration::AppPromotionConfiguration<BlockNumber>2904 * Lookup364: pallet_configuration::AppPromotionConfiguration<BlockNumber>
2782 **/2905 **/
2783 PalletConfigurationAppPromotionConfiguration: {2906 PalletConfigurationAppPromotionConfiguration: {
2784 recalculationInterval: 'Option<u32>',2907 recalculationInterval: 'Option<u32>',
2787 maxStakersPerCalculation: 'Option<u8>'2910 maxStakersPerCalculation: 'Option<u8>'
2788 },2911 },
2789 /**2912 /**
2790 * Lookup361: pallet_template_transaction_payment::Call<T>2913 * Lookup368: pallet_template_transaction_payment::Call<T>
2791 **/2914 **/
2792 PalletTemplateTransactionPaymentCall: 'Null',2915 PalletTemplateTransactionPaymentCall: 'Null',
2793 /**2916 /**
2794 * Lookup362: pallet_structure::pallet::Call<T>2917 * Lookup369: pallet_structure::pallet::Call<T>
2795 **/2918 **/
2796 PalletStructureCall: 'Null',2919 PalletStructureCall: 'Null',
2797 /**2920 /**
2798 * Lookup363: pallet_app_promotion::pallet::Call<T>2921 * Lookup370: pallet_app_promotion::pallet::Call<T>
2799 **/2922 **/
2800 PalletAppPromotionCall: {2923 PalletAppPromotionCall: {
2801 _enum: {2924 _enum: {
2827 }2950 }
2828 },2951 },
2829 /**2952 /**
2830 * Lookup364: pallet_foreign_assets::module::Call<T>2953 * Lookup371: pallet_foreign_assets::module::Call<T>
2831 **/2954 **/
2832 PalletForeignAssetsModuleCall: {2955 PalletForeignAssetsModuleCall: {
2833 _enum: {2956 _enum: {
2844 }2967 }
2845 },2968 },
2846 /**2969 /**
2847 * Lookup365: pallet_evm::pallet::Call<T>2970 * Lookup372: pallet_evm::pallet::Call<T>
2848 **/2971 **/
2849 PalletEvmCall: {2972 PalletEvmCall: {
2850 _enum: {2973 _enum: {
2887 }3010 }
2888 },3011 },
2889 /**3012 /**
2890 * Lookup371: pallet_ethereum::pallet::Call<T>3013 * Lookup378: pallet_ethereum::pallet::Call<T>
2891 **/3014 **/
2892 PalletEthereumCall: {3015 PalletEthereumCall: {
2893 _enum: {3016 _enum: {
2897 }3020 }
2898 },3021 },
2899 /**3022 /**
2900 * Lookup372: ethereum::transaction::TransactionV23023 * Lookup379: ethereum::transaction::TransactionV2
2901 **/3024 **/
2902 EthereumTransactionTransactionV2: {3025 EthereumTransactionTransactionV2: {
2903 _enum: {3026 _enum: {
2907 }3030 }
2908 },3031 },
2909 /**3032 /**
2910 * Lookup373: ethereum::transaction::LegacyTransaction3033 * Lookup380: ethereum::transaction::LegacyTransaction
2911 **/3034 **/
2912 EthereumTransactionLegacyTransaction: {3035 EthereumTransactionLegacyTransaction: {
2913 nonce: 'U256',3036 nonce: 'U256',
2919 signature: 'EthereumTransactionTransactionSignature'3042 signature: 'EthereumTransactionTransactionSignature'
2920 },3043 },
2921 /**3044 /**
2922 * Lookup374: ethereum::transaction::TransactionAction3045 * Lookup381: ethereum::transaction::TransactionAction
2923 **/3046 **/
2924 EthereumTransactionTransactionAction: {3047 EthereumTransactionTransactionAction: {
2925 _enum: {3048 _enum: {
2928 }3051 }
2929 },3052 },
2930 /**3053 /**
2931 * Lookup375: ethereum::transaction::TransactionSignature3054 * Lookup382: ethereum::transaction::TransactionSignature
2932 **/3055 **/
2933 EthereumTransactionTransactionSignature: {3056 EthereumTransactionTransactionSignature: {
2934 v: 'u64',3057 v: 'u64',
2935 r: 'H256',3058 r: 'H256',
2936 s: 'H256'3059 s: 'H256'
2937 },3060 },
2938 /**3061 /**
2939 * Lookup377: ethereum::transaction::EIP2930Transaction3062 * Lookup384: ethereum::transaction::EIP2930Transaction
2940 **/3063 **/
2941 EthereumTransactionEip2930Transaction: {3064 EthereumTransactionEip2930Transaction: {
2942 chainId: 'u64',3065 chainId: 'u64',
2952 s: 'H256'3075 s: 'H256'
2953 },3076 },
2954 /**3077 /**
2955 * Lookup379: ethereum::transaction::AccessListItem3078 * Lookup386: ethereum::transaction::AccessListItem
2956 **/3079 **/
2957 EthereumTransactionAccessListItem: {3080 EthereumTransactionAccessListItem: {
2958 address: 'H160',3081 address: 'H160',
2959 storageKeys: 'Vec<H256>'3082 storageKeys: 'Vec<H256>'
2960 },3083 },
2961 /**3084 /**
2962 * Lookup380: ethereum::transaction::EIP1559Transaction3085 * Lookup387: ethereum::transaction::EIP1559Transaction
2963 **/3086 **/
2964 EthereumTransactionEip1559Transaction: {3087 EthereumTransactionEip1559Transaction: {
2965 chainId: 'u64',3088 chainId: 'u64',
2976 s: 'H256'3099 s: 'H256'
2977 },3100 },
2978 /**3101 /**
2979 * Lookup381: pallet_evm_migration::pallet::Call<T>3102 * Lookup388: pallet_evm_coder_substrate::pallet::Call<T>
2980 **/3103 **/
3104 PalletEvmCoderSubstrateCall: {
3105 _enum: ['empty_call']
3106 },
3107 /**
3108 * Lookup389: pallet_evm_contract_helpers::pallet::Call<T>
3109 **/
3110 PalletEvmContractHelpersCall: {
3111 _enum: {
3112 migrate_from_self_sponsoring: {
3113 addresses: 'Vec<H160>'
3114 }
3115 }
3116 },
3117 /**
3118 * Lookup391: pallet_evm_migration::pallet::Call<T>
3119 **/
2981 PalletEvmMigrationCall: {3120 PalletEvmMigrationCall: {
2982 _enum: {3121 _enum: {
2983 begin: {3122 begin: {
3001 }3140 }
3002 },3141 },
3003 /**3142 /**
3004 * Lookup385: pallet_maintenance::pallet::Call<T>3143 * Lookup395: pallet_maintenance::pallet::Call<T>
3005 **/3144 **/
3006 PalletMaintenanceCall: {3145 PalletMaintenanceCall: {
3007 _enum: {3146 _enum: {
3017 }3156 }
3018 },3157 },
3019 /**3158 /**
3020 * Lookup386: pallet_test_utils::pallet::Call<T>3159 * Lookup396: pallet_test_utils::pallet::Call<T>
3021 **/3160 **/
3022 PalletTestUtilsCall: {3161 PalletTestUtilsCall: {
3023 _enum: {3162 _enum: {
3036 }3175 }
3037 },3176 },
3038 /**3177 /**
3039 * Lookup388: pallet_sudo::pallet::Error<T>3178 * Lookup398: pallet_sudo::pallet::Error<T>
3040 **/3179 **/
3041 PalletSudoError: {3180 PalletSudoError: {
3042 _enum: ['RequireSudo']3181 _enum: ['RequireSudo']
3043 },3182 },
3044 /**3183 /**
3045 * Lookup390: orml_vesting::module::Error<T>3184 * Lookup400: orml_vesting::module::Error<T>
3046 **/3185 **/
3047 OrmlVestingModuleError: {3186 OrmlVestingModuleError: {
3048 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']3187 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
3049 },3188 },
3050 /**3189 /**
3051 * Lookup391: orml_xtokens::module::Error<T>3190 * Lookup401: orml_xtokens::module::Error<T>
3052 **/3191 **/
3053 OrmlXtokensModuleError: {3192 OrmlXtokensModuleError: {
3054 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']3193 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
3055 },3194 },
3056 /**3195 /**
3057 * Lookup394: orml_tokens::BalanceLock<Balance>3196 * Lookup404: orml_tokens::BalanceLock<Balance>
3058 **/3197 **/
3059 OrmlTokensBalanceLock: {3198 OrmlTokensBalanceLock: {
3060 id: '[u8;8]',3199 id: '[u8;8]',
3061 amount: 'u128'3200 amount: 'u128'
3062 },3201 },
3063 /**3202 /**
3064 * Lookup396: orml_tokens::AccountData<Balance>3203 * Lookup406: orml_tokens::AccountData<Balance>
3065 **/3204 **/
3066 OrmlTokensAccountData: {3205 OrmlTokensAccountData: {
3067 free: 'u128',3206 free: 'u128',
3068 reserved: 'u128',3207 reserved: 'u128',
3069 frozen: 'u128'3208 frozen: 'u128'
3070 },3209 },
3071 /**3210 /**
3072 * Lookup398: orml_tokens::ReserveData<ReserveIdentifier, Balance>3211 * Lookup408: orml_tokens::ReserveData<ReserveIdentifier, Balance>
3073 **/3212 **/
3074 OrmlTokensReserveData: {3213 OrmlTokensReserveData: {
3075 id: 'Null',3214 id: 'Null',
3076 amount: 'u128'3215 amount: 'u128'
3077 },3216 },
3078 /**3217 /**
3079 * Lookup400: orml_tokens::module::Error<T>3218 * Lookup410: orml_tokens::module::Error<T>
3080 **/3219 **/
3081 OrmlTokensModuleError: {3220 OrmlTokensModuleError: {
3082 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']3221 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
3083 },3222 },
3084 /**3223 /**
3085 * Lookup405: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32>3224 * Lookup415: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32>
3086 **/3225 **/
3087 PalletIdentityRegistrarInfo: {3226 PalletIdentityRegistrarInfo: {
3088 account: 'AccountId32',3227 account: 'AccountId32',
3089 fee: 'u128',3228 fee: 'u128',
3090 fields: 'PalletIdentityBitFlags'3229 fields: 'PalletIdentityBitFlags'
3091 },3230 },
3092 /**3231 /**
3093 * Lookup407: pallet_identity::pallet::Error<T>3232 * Lookup417: pallet_identity::pallet::Error<T>
3094 **/3233 **/
3095 PalletIdentityError: {3234 PalletIdentityError: {
3096 _enum: ['TooManySubAccounts', 'NotFound', 'NotNamed', 'EmptyIndex', 'FeeChanged', 'NoIdentity', 'StickyJudgement', 'JudgementGiven', 'InvalidJudgement', 'InvalidIndex', 'InvalidTarget', 'TooManyFields', 'TooManyRegistrars', 'AlreadyClaimed', 'NotSub', 'NotOwned', 'JudgementForDifferentIdentity', 'JudgementPaymentFailed']3235 _enum: ['TooManySubAccounts', 'NotFound', 'NotNamed', 'EmptyIndex', 'FeeChanged', 'NoIdentity', 'StickyJudgement', 'JudgementGiven', 'InvalidJudgement', 'InvalidIndex', 'InvalidTarget', 'TooManyFields', 'TooManyRegistrars', 'AlreadyClaimed', 'NotSub', 'NotOwned', 'JudgementForDifferentIdentity', 'JudgementPaymentFailed']
3097 },3236 },
3098 /**3237 /**
3099 * Lookup408: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Balance>3238 * Lookup418: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Balance>
3100 **/3239 **/
3101 PalletPreimageRequestStatus: {3240 PalletPreimageRequestStatus: {
3102 _enum: {3241 _enum: {
3112 }3251 }
3113 },3252 },
3114 /**3253 /**
3115 * Lookup413: pallet_preimage::pallet::Error<T>3254 * Lookup423: pallet_preimage::pallet::Error<T>
3116 **/3255 **/
3117 PalletPreimageError: {3256 PalletPreimageError: {
3118 _enum: ['TooBig', 'AlreadyNoted', 'NotAuthorized', 'NotNoted', 'Requested', 'NotRequested']3257 _enum: ['TooBig', 'AlreadyNoted', 'NotAuthorized', 'NotNoted', 'Requested', 'NotRequested']
3119 },3258 },
3120 /**3259 /**
3121 * Lookup415: cumulus_pallet_xcmp_queue::InboundChannelDetails3260 * Lookup425: cumulus_pallet_xcmp_queue::InboundChannelDetails
3122 **/3261 **/
3123 CumulusPalletXcmpQueueInboundChannelDetails: {3262 CumulusPalletXcmpQueueInboundChannelDetails: {
3124 sender: 'u32',3263 sender: 'u32',
3125 state: 'CumulusPalletXcmpQueueInboundState',3264 state: 'CumulusPalletXcmpQueueInboundState',
3126 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'3265 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
3127 },3266 },
3128 /**3267 /**
3129 * Lookup416: cumulus_pallet_xcmp_queue::InboundState3268 * Lookup426: cumulus_pallet_xcmp_queue::InboundState
3130 **/3269 **/
3131 CumulusPalletXcmpQueueInboundState: {3270 CumulusPalletXcmpQueueInboundState: {
3132 _enum: ['Ok', 'Suspended']3271 _enum: ['Ok', 'Suspended']
3133 },3272 },
3134 /**3273 /**
3135 * Lookup419: polkadot_parachain::primitives::XcmpMessageFormat3274 * Lookup429: polkadot_parachain::primitives::XcmpMessageFormat
3136 **/3275 **/
3137 PolkadotParachainPrimitivesXcmpMessageFormat: {3276 PolkadotParachainPrimitivesXcmpMessageFormat: {
3138 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']3277 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
3139 },3278 },
3140 /**3279 /**
3141 * Lookup422: cumulus_pallet_xcmp_queue::OutboundChannelDetails3280 * Lookup432: cumulus_pallet_xcmp_queue::OutboundChannelDetails
3142 **/3281 **/
3143 CumulusPalletXcmpQueueOutboundChannelDetails: {3282 CumulusPalletXcmpQueueOutboundChannelDetails: {
3144 recipient: 'u32',3283 recipient: 'u32',
3148 lastIndex: 'u16'3287 lastIndex: 'u16'
3149 },3288 },
3150 /**3289 /**
3151 * Lookup423: cumulus_pallet_xcmp_queue::OutboundState3290 * Lookup433: cumulus_pallet_xcmp_queue::OutboundState
3152 **/3291 **/
3153 CumulusPalletXcmpQueueOutboundState: {3292 CumulusPalletXcmpQueueOutboundState: {
3154 _enum: ['Ok', 'Suspended']3293 _enum: ['Ok', 'Suspended']
3155 },3294 },
3156 /**3295 /**
3157 * Lookup425: cumulus_pallet_xcmp_queue::QueueConfigData3296 * Lookup435: cumulus_pallet_xcmp_queue::QueueConfigData
3158 **/3297 **/
3159 CumulusPalletXcmpQueueQueueConfigData: {3298 CumulusPalletXcmpQueueQueueConfigData: {
3160 suspendThreshold: 'u32',3299 suspendThreshold: 'u32',
3165 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3304 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'
3166 },3305 },
3167 /**3306 /**
3168 * Lookup427: cumulus_pallet_xcmp_queue::pallet::Error<T>3307 * Lookup437: cumulus_pallet_xcmp_queue::pallet::Error<T>
3169 **/3308 **/
3170 CumulusPalletXcmpQueueError: {3309 CumulusPalletXcmpQueueError: {
3171 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3310 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
3311 },
3312 /**
3313 * Lookup438: pallet_xcm::pallet::QueryStatus<BlockNumber>
3314 **/
3315 PalletXcmQueryStatus: {
3316 _enum: {
3317 Pending: {
3318 responder: 'XcmVersionedMultiLocation',
3319 maybeMatchQuerier: 'Option<XcmVersionedMultiLocation>',
3320 maybeNotify: 'Option<(u8,u8)>',
3321 timeout: 'u32',
3322 },
3323 VersionNotifier: {
3324 origin: 'XcmVersionedMultiLocation',
3325 isActive: 'bool',
3326 },
3327 Ready: {
3328 response: 'XcmVersionedResponse',
3329 at: 'u32'
3330 }
3331 }
3332 },
3333 /**
3334 * Lookup442: xcm::VersionedResponse
3335 **/
3336 XcmVersionedResponse: {
3337 _enum: {
3338 __Unused0: 'Null',
3339 __Unused1: 'Null',
3340 V2: 'XcmV2Response',
3341 V3: 'XcmV3Response'
3342 }
3343 },
3344 /**
3345 * Lookup448: pallet_xcm::pallet::VersionMigrationStage
3346 **/
3347 PalletXcmVersionMigrationStage: {
3348 _enum: {
3349 MigrateSupportedVersion: 'Null',
3350 MigrateVersionNotifiers: 'Null',
3351 NotifyCurrentTargets: 'Option<Bytes>',
3352 MigrateAndNotifyOldTargets: 'Null'
3353 }
3354 },
3355 /**
3356 * Lookup451: xcm::VersionedAssetId
3357 **/
3358 XcmVersionedAssetId: {
3359 _enum: {
3360 __Unused0: 'Null',
3361 __Unused1: 'Null',
3362 __Unused2: 'Null',
3363 V3: 'XcmV3MultiassetAssetId'
3364 }
3365 },
3366 /**
3367 * Lookup452: pallet_xcm::pallet::RemoteLockedFungibleRecord
3368 **/
3369 PalletXcmRemoteLockedFungibleRecord: {
3370 amount: 'u128',
3371 owner: 'XcmVersionedMultiLocation',
3372 locker: 'XcmVersionedMultiLocation',
3373 users: 'u32'
3172 },3374 },
3173 /**3375 /**
3174 * Lookup428: pallet_xcm::pallet::Error<T>3376 * Lookup456: pallet_xcm::pallet::Error<T>
3175 **/3377 **/
3176 PalletXcmError: {3378 PalletXcmError: {
3177 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3379 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed', 'InvalidAsset', 'LowBalance', 'TooManyLocks', 'AccountNotSovereign', 'FeesNotMet', 'LockNotFound', 'InUse']
3178 },3380 },
3179 /**3381 /**
3180 * Lookup429: cumulus_pallet_xcm::pallet::Error<T>3382 * Lookup457: cumulus_pallet_xcm::pallet::Error<T>
3181 **/3383 **/
3182 CumulusPalletXcmError: 'Null',3384 CumulusPalletXcmError: 'Null',
3183 /**3385 /**
3184 * Lookup430: cumulus_pallet_dmp_queue::ConfigData3386 * Lookup458: cumulus_pallet_dmp_queue::ConfigData
3185 **/3387 **/
3186 CumulusPalletDmpQueueConfigData: {3388 CumulusPalletDmpQueueConfigData: {
3187 maxIndividual: 'SpWeightsWeightV2Weight'3389 maxIndividual: 'SpWeightsWeightV2Weight'
3188 },3390 },
3189 /**3391 /**
3190 * Lookup431: cumulus_pallet_dmp_queue::PageIndexData3392 * Lookup459: cumulus_pallet_dmp_queue::PageIndexData
3191 **/3393 **/
3192 CumulusPalletDmpQueuePageIndexData: {3394 CumulusPalletDmpQueuePageIndexData: {
3193 beginUsed: 'u32',3395 beginUsed: 'u32',
3194 endUsed: 'u32',3396 endUsed: 'u32',
3195 overweightCount: 'u64'3397 overweightCount: 'u64'
3196 },3398 },
3197 /**3399 /**
3198 * Lookup434: cumulus_pallet_dmp_queue::pallet::Error<T>3400 * Lookup462: cumulus_pallet_dmp_queue::pallet::Error<T>
3199 **/3401 **/
3200 CumulusPalletDmpQueueError: {3402 CumulusPalletDmpQueueError: {
3201 _enum: ['Unknown', 'OverLimit']3403 _enum: ['Unknown', 'OverLimit']
3202 },3404 },
3203 /**3405 /**
3204 * Lookup438: pallet_unique::Error<T>3406 * Lookup466: pallet_unique::Error<T>
3205 **/3407 **/
3206 PalletUniqueError: {3408 PalletUniqueError: {
3207 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3409 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
3208 },3410 },
3209 /**3411 /**
3210 * Lookup439: pallet_configuration::pallet::Error<T>3412 * Lookup467: pallet_configuration::pallet::Error<T>
3211 **/3413 **/
3212 PalletConfigurationError: {3414 PalletConfigurationError: {
3213 _enum: ['InconsistentConfiguration']3415 _enum: ['InconsistentConfiguration']
3214 },3416 },
3215 /**3417 /**
3216 * Lookup440: up_data_structs::Collection<sp_core::crypto::AccountId32>3418 * Lookup468: up_data_structs::Collection<sp_core::crypto::AccountId32>
3217 **/3419 **/
3218 UpDataStructsCollection: {3420 UpDataStructsCollection: {
3219 owner: 'AccountId32',3421 owner: 'AccountId32',
3227 flags: '[u8;1]'3429 flags: '[u8;1]'
3228 },3430 },
3229 /**3431 /**
3230 * Lookup441: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3432 * Lookup469: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
3231 **/3433 **/
3232 UpDataStructsSponsorshipStateAccountId32: {3434 UpDataStructsSponsorshipStateAccountId32: {
3233 _enum: {3435 _enum: {
3237 }3439 }
3238 },3440 },
3239 /**3441 /**
3240 * Lookup442: up_data_structs::Properties3442 * Lookup470: up_data_structs::Properties
3241 **/3443 **/
3242 UpDataStructsProperties: {3444 UpDataStructsProperties: {
3243 map: 'UpDataStructsPropertiesMapBoundedVec',3445 map: 'UpDataStructsPropertiesMapBoundedVec',
3244 consumedSpace: 'u32',3446 consumedSpace: 'u32',
3245 spaceLimit: 'u32'3447 reserved: 'u32'
3246 },3448 },
3247 /**3449 /**
3248 * Lookup443: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3450 * Lookup471: up_data_structs::PropertiesMap<bounded_collections::bounded_vec::BoundedVec<T, S>>
3249 **/3451 **/
3250 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3452 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
3251 /**3453 /**
3252 * Lookup448: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3454 * Lookup476: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
3253 **/3455 **/
3254 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3456 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
3255 /**3457 /**
3256 * Lookup455: up_data_structs::CollectionStats3458 * Lookup483: up_data_structs::CollectionStats
3257 **/3459 **/
3258 UpDataStructsCollectionStats: {3460 UpDataStructsCollectionStats: {
3259 created: 'u32',3461 created: 'u32',
3260 destroyed: 'u32',3462 destroyed: 'u32',
3261 alive: 'u32'3463 alive: 'u32'
3262 },3464 },
3263 /**3465 /**
3264 * Lookup456: up_data_structs::TokenChild3466 * Lookup484: up_data_structs::TokenChild
3265 **/3467 **/
3266 UpDataStructsTokenChild: {3468 UpDataStructsTokenChild: {
3267 token: 'u32',3469 token: 'u32',
3268 collection: 'u32'3470 collection: 'u32'
3269 },3471 },
3270 /**3472 /**
3271 * Lookup457: PhantomType::up_data_structs<T>3473 * Lookup485: PhantomType::up_data_structs<T>
3272 **/3474 **/
3273 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,UpPovEstimateRpcPovInfo);0]',3475 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,UpPovEstimateRpcPovInfo);0]',
3274 /**3476 /**
3275 * Lookup459: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3477 * Lookup487: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3276 **/3478 **/
3277 UpDataStructsTokenData: {3479 UpDataStructsTokenData: {
3278 properties: 'Vec<UpDataStructsProperty>',3480 properties: 'Vec<UpDataStructsProperty>',
3279 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3481 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',
3280 pieces: 'u128'3482 pieces: 'u128'
3281 },3483 },
3282 /**3484 /**
3283 * Lookup461: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3485 * Lookup489: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
3284 **/3486 **/
3285 UpDataStructsRpcCollection: {3487 UpDataStructsRpcCollection: {
3286 owner: 'AccountId32',3488 owner: 'AccountId32',
3297 flags: 'UpDataStructsRpcCollectionFlags'3499 flags: 'UpDataStructsRpcCollectionFlags'
3298 },3500 },
3299 /**3501 /**
3300 * Lookup462: up_data_structs::RpcCollectionFlags3502 * Lookup490: up_data_structs::RpcCollectionFlags
3301 **/3503 **/
3302 UpDataStructsRpcCollectionFlags: {3504 UpDataStructsRpcCollectionFlags: {
3303 foreign: 'bool',3505 foreign: 'bool',
3304 erc721metadata: 'bool'3506 erc721metadata: 'bool'
3305 },3507 },
3306 /**3508 /**
3307 * Lookup463: up_pov_estimate_rpc::PovInfo3509 * Lookup491: up_pov_estimate_rpc::PovInfo
3308 **/3510 **/
3309 UpPovEstimateRpcPovInfo: {3511 UpPovEstimateRpcPovInfo: {
3310 proofSize: 'u64',3512 proofSize: 'u64',
3314 keyValues: 'Vec<UpPovEstimateRpcTrieKeyValue>'3516 keyValues: 'Vec<UpPovEstimateRpcTrieKeyValue>'
3315 },3517 },
3316 /**3518 /**
3317 * Lookup466: sp_runtime::transaction_validity::TransactionValidityError3519 * Lookup494: sp_runtime::transaction_validity::TransactionValidityError
3318 **/3520 **/
3319 SpRuntimeTransactionValidityTransactionValidityError: {3521 SpRuntimeTransactionValidityTransactionValidityError: {
3320 _enum: {3522 _enum: {
3323 }3525 }
3324 },3526 },
3325 /**3527 /**
3326 * Lookup467: sp_runtime::transaction_validity::InvalidTransaction3528 * Lookup495: sp_runtime::transaction_validity::InvalidTransaction
3327 **/3529 **/
3328 SpRuntimeTransactionValidityInvalidTransaction: {3530 SpRuntimeTransactionValidityInvalidTransaction: {
3329 _enum: {3531 _enum: {
3341 }3543 }
3342 },3544 },
3343 /**3545 /**
3344 * Lookup468: sp_runtime::transaction_validity::UnknownTransaction3546 * Lookup496: sp_runtime::transaction_validity::UnknownTransaction
3345 **/3547 **/
3346 SpRuntimeTransactionValidityUnknownTransaction: {3548 SpRuntimeTransactionValidityUnknownTransaction: {
3347 _enum: {3549 _enum: {
3351 }3553 }
3352 },3554 },
3353 /**3555 /**
3354 * Lookup470: up_pov_estimate_rpc::TrieKeyValue3556 * Lookup498: up_pov_estimate_rpc::TrieKeyValue
3355 **/3557 **/
3356 UpPovEstimateRpcTrieKeyValue: {3558 UpPovEstimateRpcTrieKeyValue: {
3357 key: 'Bytes',3559 key: 'Bytes',
3358 value: 'Bytes'3560 value: 'Bytes'
3359 },3561 },
3360 /**3562 /**
3361 * Lookup472: pallet_common::pallet::Error<T>3563 * Lookup500: pallet_common::pallet::Error<T>
3362 **/3564 **/
3363 PalletCommonError: {3565 PalletCommonError: {
3364 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsNotEthMirror', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']3566 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsNotEthMirror', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']
3365 },3567 },
3366 /**3568 /**
3367 * Lookup474: pallet_fungible::pallet::Error<T>3569 * Lookup502: pallet_fungible::pallet::Error<T>
3368 **/3570 **/
3369 PalletFungibleError: {3571 PalletFungibleError: {
3370 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']3572 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']
3371 },3573 },
3372 /**3574 /**
3373 * Lookup478: pallet_refungible::pallet::Error<T>3575 * Lookup507: pallet_refungible::pallet::Error<T>
3374 **/3576 **/
3375 PalletRefungibleError: {3577 PalletRefungibleError: {
3376 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3578 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
3377 },3579 },
3378 /**3580 /**
3379 * Lookup479: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3581 * Lookup508: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3380 **/3582 **/
3381 PalletNonfungibleItemData: {3583 PalletNonfungibleItemData: {
3382 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3584 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
3383 },3585 },
3384 /**3586 /**
3385 * Lookup481: up_data_structs::PropertyScope3587 * Lookup510: up_data_structs::PropertyScope
3386 **/3588 **/
3387 UpDataStructsPropertyScope: {3589 UpDataStructsPropertyScope: {
3388 _enum: ['None', 'Rmrk']3590 _enum: ['None', 'Rmrk']
3389 },3591 },
3390 /**3592 /**
3391 * Lookup484: pallet_nonfungible::pallet::Error<T>3593 * Lookup513: pallet_nonfungible::pallet::Error<T>
3392 **/3594 **/
3393 PalletNonfungibleError: {3595 PalletNonfungibleError: {
3394 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3596 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
3395 },3597 },
3396 /**3598 /**
3397 * Lookup485: pallet_structure::pallet::Error<T>3599 * Lookup514: pallet_structure::pallet::Error<T>
3398 **/3600 **/
3399 PalletStructureError: {3601 PalletStructureError: {
3400 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound', 'CantNestTokenUnderCollection']3602 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound', 'CantNestTokenUnderCollection']
3401 },3603 },
3402 /**3604 /**
3403 * Lookup490: pallet_app_promotion::pallet::Error<T>3605 * Lookup519: pallet_app_promotion::pallet::Error<T>
3404 **/3606 **/
3405 PalletAppPromotionError: {3607 PalletAppPromotionError: {
3406 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation', 'InsufficientStakedBalance']3608 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation', 'InsufficientStakedBalance']
3407 },3609 },
3408 /**3610 /**
3409 * Lookup491: pallet_foreign_assets::module::Error<T>3611 * Lookup520: pallet_foreign_assets::module::Error<T>
3410 **/3612 **/
3411 PalletForeignAssetsModuleError: {3613 PalletForeignAssetsModuleError: {
3412 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3614 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
3413 },3615 },
3414 /**3616 /**
3415 * Lookup493: pallet_evm::pallet::Error<T>3617 * Lookup522: pallet_evm::pallet::Error<T>
3416 **/3618 **/
3417 PalletEvmError: {3619 PalletEvmError: {
3418 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']3620 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']
3419 },3621 },
3420 /**3622 /**
3421 * Lookup496: fp_rpc::TransactionStatus3623 * Lookup525: fp_rpc::TransactionStatus
3422 **/3624 **/
3423 FpRpcTransactionStatus: {3625 FpRpcTransactionStatus: {
3424 transactionHash: 'H256',3626 transactionHash: 'H256',
3430 logsBloom: 'EthbloomBloom'3632 logsBloom: 'EthbloomBloom'
3431 },3633 },
3432 /**3634 /**
3433 * Lookup498: ethbloom::Bloom3635 * Lookup527: ethbloom::Bloom
3434 **/3636 **/
3435 EthbloomBloom: '[u8;256]',3637 EthbloomBloom: '[u8;256]',
3436 /**3638 /**
3437 * Lookup500: ethereum::receipt::ReceiptV33639 * Lookup529: ethereum::receipt::ReceiptV3
3438 **/3640 **/
3439 EthereumReceiptReceiptV3: {3641 EthereumReceiptReceiptV3: {
3440 _enum: {3642 _enum: {
3444 }3646 }
3445 },3647 },
3446 /**3648 /**
3447 * Lookup501: ethereum::receipt::EIP658ReceiptData3649 * Lookup530: ethereum::receipt::EIP658ReceiptData
3448 **/3650 **/
3449 EthereumReceiptEip658ReceiptData: {3651 EthereumReceiptEip658ReceiptData: {
3450 statusCode: 'u8',3652 statusCode: 'u8',
3453 logs: 'Vec<EthereumLog>'3655 logs: 'Vec<EthereumLog>'
3454 },3656 },
3455 /**3657 /**
3456 * Lookup502: ethereum::block::Block<ethereum::transaction::TransactionV2>3658 * Lookup531: ethereum::block::Block<ethereum::transaction::TransactionV2>
3457 **/3659 **/
3458 EthereumBlock: {3660 EthereumBlock: {
3459 header: 'EthereumHeader',3661 header: 'EthereumHeader',
3460 transactions: 'Vec<EthereumTransactionTransactionV2>',3662 transactions: 'Vec<EthereumTransactionTransactionV2>',
3461 ommers: 'Vec<EthereumHeader>'3663 ommers: 'Vec<EthereumHeader>'
3462 },3664 },
3463 /**3665 /**
3464 * Lookup503: ethereum::header::Header3666 * Lookup532: ethereum::header::Header
3465 **/3667 **/
3466 EthereumHeader: {3668 EthereumHeader: {
3467 parentHash: 'H256',3669 parentHash: 'H256',
3481 nonce: 'EthereumTypesHashH64'3683 nonce: 'EthereumTypesHashH64'
3482 },3684 },
3483 /**3685 /**
3484 * Lookup504: ethereum_types::hash::H643686 * Lookup533: ethereum_types::hash::H64
3485 **/3687 **/
3486 EthereumTypesHashH64: '[u8;8]',3688 EthereumTypesHashH64: '[u8;8]',
3487 /**3689 /**
3488 * Lookup509: pallet_ethereum::pallet::Error<T>3690 * Lookup538: pallet_ethereum::pallet::Error<T>
3489 **/3691 **/
3490 PalletEthereumError: {3692 PalletEthereumError: {
3491 _enum: ['InvalidSignature', 'PreLogExists']3693 _enum: ['InvalidSignature', 'PreLogExists']
3492 },3694 },
3493 /**3695 /**
3494 * Lookup510: pallet_evm_coder_substrate::pallet::Error<T>3696 * Lookup539: pallet_evm_coder_substrate::pallet::Error<T>
3495 **/3697 **/
3496 PalletEvmCoderSubstrateError: {3698 PalletEvmCoderSubstrateError: {
3497 _enum: ['OutOfGas', 'OutOfFund']3699 _enum: ['OutOfGas', 'OutOfFund']
3498 },3700 },
3499 /**3701 /**
3500 * Lookup511: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3702 * Lookup540: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3501 **/3703 **/
3502 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3704 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
3503 _enum: {3705 _enum: {
3507 }3709 }
3508 },3710 },
3509 /**3711 /**
3510 * Lookup512: pallet_evm_contract_helpers::SponsoringModeT3712 * Lookup541: pallet_evm_contract_helpers::SponsoringModeT
3511 **/3713 **/
3512 PalletEvmContractHelpersSponsoringModeT: {3714 PalletEvmContractHelpersSponsoringModeT: {
3513 _enum: ['Disabled', 'Allowlisted', 'Generous']3715 _enum: ['Disabled', 'Allowlisted', 'Generous']
3514 },3716 },
3515 /**3717 /**
3516 * Lookup518: pallet_evm_contract_helpers::pallet::Error<T>3718 * Lookup547: pallet_evm_contract_helpers::pallet::Error<T>
3517 **/3719 **/
3518 PalletEvmContractHelpersError: {3720 PalletEvmContractHelpersError: {
3519 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3721 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
3520 },3722 },
3521 /**3723 /**
3522 * Lookup519: pallet_evm_migration::pallet::Error<T>3724 * Lookup548: pallet_evm_migration::pallet::Error<T>
3523 **/3725 **/
3524 PalletEvmMigrationError: {3726 PalletEvmMigrationError: {
3525 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3727 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
3526 },3728 },
3527 /**3729 /**
3528 * Lookup520: pallet_maintenance::pallet::Error<T>3730 * Lookup549: pallet_maintenance::pallet::Error<T>
3529 **/3731 **/
3530 PalletMaintenanceError: 'Null',3732 PalletMaintenanceError: 'Null',
3531 /**3733 /**
3532 * Lookup521: pallet_test_utils::pallet::Error<T>3734 * Lookup550: pallet_test_utils::pallet::Error<T>
3533 **/3735 **/
3534 PalletTestUtilsError: {3736 PalletTestUtilsError: {
3535 _enum: ['TestPalletDisabled', 'TriggerRollback']3737 _enum: ['TestPalletDisabled', 'TriggerRollback']
3536 },3738 },
3537 /**3739 /**
3538 * Lookup523: sp_runtime::MultiSignature3740 * Lookup552: sp_runtime::MultiSignature
3539 **/3741 **/
3540 SpRuntimeMultiSignature: {3742 SpRuntimeMultiSignature: {
3541 _enum: {3743 _enum: {
3545 }3747 }
3546 },3748 },
3547 /**3749 /**
3548 * Lookup524: sp_core::ed25519::Signature3750 * Lookup553: sp_core::ed25519::Signature
3549 **/3751 **/
3550 SpCoreEd25519Signature: '[u8;64]',3752 SpCoreEd25519Signature: '[u8;64]',
3551 /**3753 /**
3552 * Lookup526: sp_core::sr25519::Signature3754 * Lookup555: sp_core::sr25519::Signature
3553 **/3755 **/
3554 SpCoreSr25519Signature: '[u8;64]',3756 SpCoreSr25519Signature: '[u8;64]',
3555 /**3757 /**
3556 * Lookup527: sp_core::ecdsa::Signature3758 * Lookup556: sp_core::ecdsa::Signature
3557 **/3759 **/
3558 SpCoreEcdsaSignature: '[u8;65]',3760 SpCoreEcdsaSignature: '[u8;65]',
3559 /**3761 /**
3560 * Lookup530: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3762 * Lookup559: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
3561 **/3763 **/
3562 FrameSystemExtensionsCheckSpecVersion: 'Null',3764 FrameSystemExtensionsCheckSpecVersion: 'Null',
3563 /**3765 /**
3564 * Lookup531: frame_system::extensions::check_tx_version::CheckTxVersion<T>3766 * Lookup560: frame_system::extensions::check_tx_version::CheckTxVersion<T>
3565 **/3767 **/
3566 FrameSystemExtensionsCheckTxVersion: 'Null',3768 FrameSystemExtensionsCheckTxVersion: 'Null',
3567 /**3769 /**
3568 * Lookup532: frame_system::extensions::check_genesis::CheckGenesis<T>3770 * Lookup561: frame_system::extensions::check_genesis::CheckGenesis<T>
3569 **/3771 **/
3570 FrameSystemExtensionsCheckGenesis: 'Null',3772 FrameSystemExtensionsCheckGenesis: 'Null',
3571 /**3773 /**
3572 * Lookup535: frame_system::extensions::check_nonce::CheckNonce<T>3774 * Lookup564: frame_system::extensions::check_nonce::CheckNonce<T>
3573 **/3775 **/
3574 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3776 FrameSystemExtensionsCheckNonce: 'Compact<u32>',
3575 /**3777 /**
3576 * Lookup536: frame_system::extensions::check_weight::CheckWeight<T>3778 * Lookup565: frame_system::extensions::check_weight::CheckWeight<T>
3577 **/3779 **/
3578 FrameSystemExtensionsCheckWeight: 'Null',3780 FrameSystemExtensionsCheckWeight: 'Null',
3579 /**3781 /**
3580 * Lookup537: opal_runtime::runtime_common::maintenance::CheckMaintenance3782 * Lookup566: opal_runtime::runtime_common::maintenance::CheckMaintenance
3581 **/3783 **/
3582 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3784 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
3583 /**3785 /**
3584 * Lookup538: opal_runtime::runtime_common::identity::DisableIdentityCalls3786 * Lookup567: opal_runtime::runtime_common::identity::DisableIdentityCalls
3585 **/3787 **/
3586 OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: 'Null',3788 OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: 'Null',
3587 /**3789 /**
3588 * Lookup539: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3790 * Lookup568: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
3589 **/3791 **/
3590 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3792 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
3591 /**3793 /**
3592 * Lookup540: opal_runtime::Runtime3794 * Lookup569: opal_runtime::Runtime
3593 **/3795 **/
3594 OpalRuntimeRuntime: 'Null',3796 OpalRuntimeRuntime: 'Null',
3595 /**3797 /**
3596 * Lookup541: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3798 * Lookup570: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
3597 **/3799 **/
3598 PalletEthereumFakeTransactionFinalizer: 'Null'3800 PalletEthereumFakeTransactionFinalizer: 'Null'
3599};3801};
modifiedtests/src/interfaces/povinfo/index.tsdiffbeforeafterboth
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2/* eslint-disable */2/* eslint-disable */
33
4export * from './types';4export * from './types.js';
55
modifiedtests/src/interfaces/registry.tsdiffbeforeafterboth
5// this is required to allow for ambient/previous definitions5// this is required to allow for ambient/previous definitions
6import '@polkadot/types/types/registry';6import '@polkadot/types/types/registry';
77
8import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletAuthorshipCall, PalletAuthorshipError, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';8import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from '@polkadot/types/lookup';
99
10declare module '@polkadot/types/types/registry' {10declare module '@polkadot/types/types/registry' {
11 interface InterfaceTypes {11 interface InterfaceTypes {
93 PalletAppPromotionCall: PalletAppPromotionCall;93 PalletAppPromotionCall: PalletAppPromotionCall;
94 PalletAppPromotionError: PalletAppPromotionError;94 PalletAppPromotionError: PalletAppPromotionError;
95 PalletAppPromotionEvent: PalletAppPromotionEvent;95 PalletAppPromotionEvent: PalletAppPromotionEvent;
96 PalletAuthorshipCall: PalletAuthorshipCall;
97 PalletAuthorshipError: PalletAuthorshipError;
98 PalletAuthorshipUncleEntryItem: PalletAuthorshipUncleEntryItem;
99 PalletBalancesAccountData: PalletBalancesAccountData;96 PalletBalancesAccountData: PalletBalancesAccountData;
100 PalletBalancesBalanceLock: PalletBalancesBalanceLock;97 PalletBalancesBalanceLock: PalletBalancesBalanceLock;
101 PalletBalancesCall: PalletBalancesCall;98 PalletBalancesCall: PalletBalancesCall;
118 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;115 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
119 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;116 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
120 PalletEvmCall: PalletEvmCall;117 PalletEvmCall: PalletEvmCall;
118 PalletEvmCoderSubstrateCall: PalletEvmCoderSubstrateCall;
121 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;119 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;
120 PalletEvmContractHelpersCall: PalletEvmContractHelpersCall;
122 PalletEvmContractHelpersError: PalletEvmContractHelpersError;121 PalletEvmContractHelpersError: PalletEvmContractHelpersError;
123 PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;122 PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;
124 PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;123 PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;
180 PalletXcmCall: PalletXcmCall;179 PalletXcmCall: PalletXcmCall;
181 PalletXcmError: PalletXcmError;180 PalletXcmError: PalletXcmError;
182 PalletXcmEvent: PalletXcmEvent;181 PalletXcmEvent: PalletXcmEvent;
182 PalletXcmQueryStatus: PalletXcmQueryStatus;
183 PalletXcmRemoteLockedFungibleRecord: PalletXcmRemoteLockedFungibleRecord;
184 PalletXcmVersionMigrationStage: PalletXcmVersionMigrationStage;
185 ParachainInfoCall: ParachainInfoCall;
183 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;186 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;
184 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;187 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;
185 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;188 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;
196 SpCoreEd25519Signature: SpCoreEd25519Signature;199 SpCoreEd25519Signature: SpCoreEd25519Signature;
197 SpCoreSr25519Public: SpCoreSr25519Public;200 SpCoreSr25519Public: SpCoreSr25519Public;
198 SpCoreSr25519Signature: SpCoreSr25519Signature;201 SpCoreSr25519Signature: SpCoreSr25519Signature;
199 SpRuntimeBlakeTwo256: SpRuntimeBlakeTwo256;
200 SpRuntimeDigest: SpRuntimeDigest;202 SpRuntimeDigest: SpRuntimeDigest;
201 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;203 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
202 SpRuntimeDispatchError: SpRuntimeDispatchError;204 SpRuntimeDispatchError: SpRuntimeDispatchError;
203 SpRuntimeHeader: SpRuntimeHeader;
204 SpRuntimeModuleError: SpRuntimeModuleError;205 SpRuntimeModuleError: SpRuntimeModuleError;
205 SpRuntimeMultiSignature: SpRuntimeMultiSignature;206 SpRuntimeMultiSignature: SpRuntimeMultiSignature;
206 SpRuntimeTokenError: SpRuntimeTokenError;207 SpRuntimeTokenError: SpRuntimeTokenError;
246 UpPovEstimateRpcPovInfo: UpPovEstimateRpcPovInfo;247 UpPovEstimateRpcPovInfo: UpPovEstimateRpcPovInfo;
247 UpPovEstimateRpcTrieKeyValue: UpPovEstimateRpcTrieKeyValue;248 UpPovEstimateRpcTrieKeyValue: UpPovEstimateRpcTrieKeyValue;
248 XcmDoubleEncoded: XcmDoubleEncoded;249 XcmDoubleEncoded: XcmDoubleEncoded;
249 XcmV0Junction: XcmV0Junction;250 XcmV2BodyId: XcmV2BodyId;
250 XcmV0JunctionBodyId: XcmV0JunctionBodyId;251 XcmV2BodyPart: XcmV2BodyPart;
251 XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;252 XcmV2Instruction: XcmV2Instruction;
252 XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;253 XcmV2Junction: XcmV2Junction;
253 XcmV0MultiAsset: XcmV0MultiAsset;254 XcmV2MultiAsset: XcmV2MultiAsset;
254 XcmV0MultiLocation: XcmV0MultiLocation;255 XcmV2MultiLocation: XcmV2MultiLocation;
255 XcmV0Order: XcmV0Order;256 XcmV2MultiassetAssetId: XcmV2MultiassetAssetId;
256 XcmV0OriginKind: XcmV0OriginKind;257 XcmV2MultiassetAssetInstance: XcmV2MultiassetAssetInstance;
257 XcmV0Response: XcmV0Response;258 XcmV2MultiassetFungibility: XcmV2MultiassetFungibility;
258 XcmV0Xcm: XcmV0Xcm;259 XcmV2MultiassetMultiAssetFilter: XcmV2MultiassetMultiAssetFilter;
259 XcmV1Junction: XcmV1Junction;260 XcmV2MultiassetMultiAssets: XcmV2MultiassetMultiAssets;
260 XcmV1MultiAsset: XcmV1MultiAsset;261 XcmV2MultiassetWildFungibility: XcmV2MultiassetWildFungibility;
261 XcmV1MultiLocation: XcmV1MultiLocation;262 XcmV2MultiassetWildMultiAsset: XcmV2MultiassetWildMultiAsset;
262 XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;263 XcmV2MultilocationJunctions: XcmV2MultilocationJunctions;
263 XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;264 XcmV2NetworkId: XcmV2NetworkId;
264 XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;265 XcmV2OriginKind: XcmV2OriginKind;
265 XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;266 XcmV2Response: XcmV2Response;
266 XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;267 XcmV2TraitsError: XcmV2TraitsError;
267 XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;268 XcmV2WeightLimit: XcmV2WeightLimit;
268 XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;269 XcmV2Xcm: XcmV2Xcm;
269 XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;270 XcmV3Instruction: XcmV3Instruction;
270 XcmV1Order: XcmV1Order;271 XcmV3Junction: XcmV3Junction;
271 XcmV1Response: XcmV1Response;272 XcmV3JunctionBodyId: XcmV3JunctionBodyId;
272 XcmV1Xcm: XcmV1Xcm;273 XcmV3JunctionBodyPart: XcmV3JunctionBodyPart;
273 XcmV2Instruction: XcmV2Instruction;274 XcmV3JunctionNetworkId: XcmV3JunctionNetworkId;
274 XcmV2Response: XcmV2Response;275 XcmV3Junctions: XcmV3Junctions;
275 XcmV2TraitsError: XcmV2TraitsError;276 XcmV3MaybeErrorCode: XcmV3MaybeErrorCode;
276 XcmV2TraitsOutcome: XcmV2TraitsOutcome;277 XcmV3MultiAsset: XcmV3MultiAsset;
277 XcmV2WeightLimit: XcmV2WeightLimit;278 XcmV3MultiLocation: XcmV3MultiLocation;
278 XcmV2Xcm: XcmV2Xcm;279 XcmV3MultiassetAssetId: XcmV3MultiassetAssetId;
280 XcmV3MultiassetAssetInstance: XcmV3MultiassetAssetInstance;
281 XcmV3MultiassetFungibility: XcmV3MultiassetFungibility;
282 XcmV3MultiassetMultiAssetFilter: XcmV3MultiassetMultiAssetFilter;
283 XcmV3MultiassetMultiAssets: XcmV3MultiassetMultiAssets;
284 XcmV3MultiassetWildFungibility: XcmV3MultiassetWildFungibility;
285 XcmV3MultiassetWildMultiAsset: XcmV3MultiassetWildMultiAsset;
286 XcmV3PalletInfo: XcmV3PalletInfo;
287 XcmV3QueryResponseInfo: XcmV3QueryResponseInfo;
288 XcmV3Response: XcmV3Response;
289 XcmV3TraitsError: XcmV3TraitsError;
290 XcmV3TraitsOutcome: XcmV3TraitsOutcome;
291 XcmV3WeightLimit: XcmV3WeightLimit;
292 XcmV3Xcm: XcmV3Xcm;
293 XcmVersionedAssetId: XcmVersionedAssetId;
279 XcmVersionedMultiAsset: XcmVersionedMultiAsset;294 XcmVersionedMultiAsset: XcmVersionedMultiAsset;
280 XcmVersionedMultiAssets: XcmVersionedMultiAssets;295 XcmVersionedMultiAssets: XcmVersionedMultiAssets;
281 XcmVersionedMultiLocation: XcmVersionedMultiLocation;296 XcmVersionedMultiLocation: XcmVersionedMultiLocation;
297 XcmVersionedResponse: XcmVersionedResponse;
282 XcmVersionedXcm: XcmVersionedXcm;298 XcmVersionedXcm: XcmVersionedXcm;
283 } // InterfaceTypes299 } // InterfaceTypes
284} // declare module300} // declare module
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
194 readonly weightUsed: SpWeightsWeightV2Weight;194 readonly weightUsed: SpWeightsWeightV2Weight;
195 readonly dmqHead: H256;195 readonly dmqHead: H256;
196 } & Struct;196 } & Struct;
197 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';197 readonly isUpwardMessageSent: boolean;
198 readonly asUpwardMessageSent: {
199 readonly messageHash: Option<U8aFixed>;
200 } & Struct;
201 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed' | 'UpwardMessageSent';
198 }202 }
199203
200 /** @name PalletCollatorSelectionEvent (30) */204 /** @name PalletCollatorSelectionEvent (31) */
201 interface PalletCollatorSelectionEvent extends Enum {205 interface PalletCollatorSelectionEvent extends Enum {
202 readonly isInvulnerableAdded: boolean;206 readonly isInvulnerableAdded: boolean;
203 readonly asInvulnerableAdded: {207 readonly asInvulnerableAdded: {
228 readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseReleased' | 'CandidateAdded' | 'CandidateRemoved';232 readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseReleased' | 'CandidateAdded' | 'CandidateRemoved';
229 }233 }
230234
231 /** @name PalletSessionEvent (31) */235 /** @name PalletSessionEvent (32) */
232 interface PalletSessionEvent extends Enum {236 interface PalletSessionEvent extends Enum {
233 readonly isNewSession: boolean;237 readonly isNewSession: boolean;
234 readonly asNewSession: {238 readonly asNewSession: {
237 readonly type: 'NewSession';241 readonly type: 'NewSession';
238 }242 }
239243
240 /** @name PalletBalancesEvent (32) */244 /** @name PalletBalancesEvent (33) */
241 interface PalletBalancesEvent extends Enum {245 interface PalletBalancesEvent extends Enum {
242 readonly isEndowed: boolean;246 readonly isEndowed: boolean;
243 readonly asEndowed: {247 readonly asEndowed: {
296 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';300 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';
297 }301 }
298302
299 /** @name FrameSupportTokensMiscBalanceStatus (33) */303 /** @name FrameSupportTokensMiscBalanceStatus (34) */
300 interface FrameSupportTokensMiscBalanceStatus extends Enum {304 interface FrameSupportTokensMiscBalanceStatus extends Enum {
301 readonly isFree: boolean;305 readonly isFree: boolean;
302 readonly isReserved: boolean;306 readonly isReserved: boolean;
303 readonly type: 'Free' | 'Reserved';307 readonly type: 'Free' | 'Reserved';
304 }308 }
305309
306 /** @name PalletTransactionPaymentEvent (34) */310 /** @name PalletTransactionPaymentEvent (35) */
307 interface PalletTransactionPaymentEvent extends Enum {311 interface PalletTransactionPaymentEvent extends Enum {
308 readonly isTransactionFeePaid: boolean;312 readonly isTransactionFeePaid: boolean;
309 readonly asTransactionFeePaid: {313 readonly asTransactionFeePaid: {
314 readonly type: 'TransactionFeePaid';318 readonly type: 'TransactionFeePaid';
315 }319 }
316320
317 /** @name PalletTreasuryEvent (35) */321 /** @name PalletTreasuryEvent (36) */
318 interface PalletTreasuryEvent extends Enum {322 interface PalletTreasuryEvent extends Enum {
319 readonly isProposed: boolean;323 readonly isProposed: boolean;
320 readonly asProposed: {324 readonly asProposed: {
361 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved' | 'UpdatedInactive';365 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved' | 'UpdatedInactive';
362 }366 }
363367
364 /** @name PalletSudoEvent (36) */368 /** @name PalletSudoEvent (37) */
365 interface PalletSudoEvent extends Enum {369 interface PalletSudoEvent extends Enum {
366 readonly isSudid: boolean;370 readonly isSudid: boolean;
367 readonly asSudid: {371 readonly asSudid: {
378 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';382 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
379 }383 }
380384
381 /** @name OrmlVestingModuleEvent (40) */385 /** @name OrmlVestingModuleEvent (41) */
382 interface OrmlVestingModuleEvent extends Enum {386 interface OrmlVestingModuleEvent extends Enum {
383 readonly isVestingScheduleAdded: boolean;387 readonly isVestingScheduleAdded: boolean;
384 readonly asVestingScheduleAdded: {388 readonly asVestingScheduleAdded: {
398 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';402 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';
399 }403 }
400404
401 /** @name OrmlVestingVestingSchedule (41) */405 /** @name OrmlVestingVestingSchedule (42) */
402 interface OrmlVestingVestingSchedule extends Struct {406 interface OrmlVestingVestingSchedule extends Struct {
403 readonly start: u32;407 readonly start: u32;
404 readonly period: u32;408 readonly period: u32;
405 readonly periodCount: u32;409 readonly periodCount: u32;
406 readonly perPeriod: Compact<u128>;410 readonly perPeriod: Compact<u128>;
407 }411 }
408412
409 /** @name OrmlXtokensModuleEvent (43) */413 /** @name OrmlXtokensModuleEvent (44) */
410 interface OrmlXtokensModuleEvent extends Enum {414 interface OrmlXtokensModuleEvent extends Enum {
411 readonly isTransferredMultiAssets: boolean;415 readonly isTransferredMultiAssets: boolean;
412 readonly asTransferredMultiAssets: {416 readonly asTransferredMultiAssets: {
413 readonly sender: AccountId32;417 readonly sender: AccountId32;
414 readonly assets: XcmV1MultiassetMultiAssets;418 readonly assets: XcmV3MultiassetMultiAssets;
415 readonly fee: XcmV1MultiAsset;419 readonly fee: XcmV3MultiAsset;
416 readonly dest: XcmV1MultiLocation;420 readonly dest: XcmV3MultiLocation;
417 } & Struct;421 } & Struct;
418 readonly type: 'TransferredMultiAssets';422 readonly type: 'TransferredMultiAssets';
419 }423 }
420424
421 /** @name XcmV1MultiassetMultiAssets (44) */425 /** @name XcmV3MultiassetMultiAssets (45) */
422 interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}426 interface XcmV3MultiassetMultiAssets extends Vec<XcmV3MultiAsset> {}
423427
424 /** @name XcmV1MultiAsset (46) */428 /** @name XcmV3MultiAsset (47) */
425 interface XcmV1MultiAsset extends Struct {429 interface XcmV3MultiAsset extends Struct {
426 readonly id: XcmV1MultiassetAssetId;430 readonly id: XcmV3MultiassetAssetId;
427 readonly fun: XcmV1MultiassetFungibility;431 readonly fun: XcmV3MultiassetFungibility;
428 }432 }
429433
430 /** @name XcmV1MultiassetAssetId (47) */434 /** @name XcmV3MultiassetAssetId (48) */
431 interface XcmV1MultiassetAssetId extends Enum {435 interface XcmV3MultiassetAssetId extends Enum {
432 readonly isConcrete: boolean;436 readonly isConcrete: boolean;
433 readonly asConcrete: XcmV1MultiLocation;437 readonly asConcrete: XcmV3MultiLocation;
434 readonly isAbstract: boolean;438 readonly isAbstract: boolean;
435 readonly asAbstract: Bytes;439 readonly asAbstract: U8aFixed;
436 readonly type: 'Concrete' | 'Abstract';440 readonly type: 'Concrete' | 'Abstract';
437 }441 }
438442
439 /** @name XcmV1MultiLocation (48) */443 /** @name XcmV3MultiLocation (49) */
440 interface XcmV1MultiLocation extends Struct {444 interface XcmV3MultiLocation extends Struct {
441 readonly parents: u8;445 readonly parents: u8;
442 readonly interior: XcmV1MultilocationJunctions;446 readonly interior: XcmV3Junctions;
443 }447 }
444448
445 /** @name XcmV1MultilocationJunctions (49) */449 /** @name XcmV3Junctions (50) */
446 interface XcmV1MultilocationJunctions extends Enum {450 interface XcmV3Junctions extends Enum {
447 readonly isHere: boolean;451 readonly isHere: boolean;
448 readonly isX1: boolean;452 readonly isX1: boolean;
449 readonly asX1: XcmV1Junction;453 readonly asX1: XcmV3Junction;
450 readonly isX2: boolean;454 readonly isX2: boolean;
451 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;455 readonly asX2: ITuple<[XcmV3Junction, XcmV3Junction]>;
452 readonly isX3: boolean;456 readonly isX3: boolean;
453 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;457 readonly asX3: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
454 readonly isX4: boolean;458 readonly isX4: boolean;
455 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;459 readonly asX4: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
456 readonly isX5: boolean;460 readonly isX5: boolean;
457 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;461 readonly asX5: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
458 readonly isX6: boolean;462 readonly isX6: boolean;
459 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;463 readonly asX6: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
460 readonly isX7: boolean;464 readonly isX7: boolean;
461 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;465 readonly asX7: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
462 readonly isX8: boolean;466 readonly isX8: boolean;
463 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;467 readonly asX8: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
464 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';468 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
465 }469 }
466470
467 /** @name XcmV1Junction (50) */471 /** @name XcmV3Junction (51) */
468 interface XcmV1Junction extends Enum {472 interface XcmV3Junction extends Enum {
469 readonly isParachain: boolean;473 readonly isParachain: boolean;
470 readonly asParachain: Compact<u32>;474 readonly asParachain: Compact<u32>;
471 readonly isAccountId32: boolean;475 readonly isAccountId32: boolean;
472 readonly asAccountId32: {476 readonly asAccountId32: {
473 readonly network: XcmV0JunctionNetworkId;477 readonly network: Option<XcmV3JunctionNetworkId>;
474 readonly id: U8aFixed;478 readonly id: U8aFixed;
475 } & Struct;479 } & Struct;
476 readonly isAccountIndex64: boolean;480 readonly isAccountIndex64: boolean;
477 readonly asAccountIndex64: {481 readonly asAccountIndex64: {
478 readonly network: XcmV0JunctionNetworkId;482 readonly network: Option<XcmV3JunctionNetworkId>;
479 readonly index: Compact<u64>;483 readonly index: Compact<u64>;
480 } & Struct;484 } & Struct;
481 readonly isAccountKey20: boolean;485 readonly isAccountKey20: boolean;
482 readonly asAccountKey20: {486 readonly asAccountKey20: {
483 readonly network: XcmV0JunctionNetworkId;487 readonly network: Option<XcmV3JunctionNetworkId>;
484 readonly key: U8aFixed;488 readonly key: U8aFixed;
485 } & Struct;489 } & Struct;
486 readonly isPalletInstance: boolean;490 readonly isPalletInstance: boolean;
487 readonly asPalletInstance: u8;491 readonly asPalletInstance: u8;
488 readonly isGeneralIndex: boolean;492 readonly isGeneralIndex: boolean;
489 readonly asGeneralIndex: Compact<u128>;493 readonly asGeneralIndex: Compact<u128>;
490 readonly isGeneralKey: boolean;494 readonly isGeneralKey: boolean;
491 readonly asGeneralKey: Bytes;495 readonly asGeneralKey: {
496 readonly length: u8;
497 readonly data: U8aFixed;
498 } & Struct;
492 readonly isOnlyChild: boolean;499 readonly isOnlyChild: boolean;
493 readonly isPlurality: boolean;500 readonly isPlurality: boolean;
494 readonly asPlurality: {501 readonly asPlurality: {
495 readonly id: XcmV0JunctionBodyId;502 readonly id: XcmV3JunctionBodyId;
496 readonly part: XcmV0JunctionBodyPart;503 readonly part: XcmV3JunctionBodyPart;
497 } & Struct;504 } & Struct;
498 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';505 readonly isGlobalConsensus: boolean;
506 readonly asGlobalConsensus: XcmV3JunctionNetworkId;
507 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality' | 'GlobalConsensus';
499 }508 }
500509
501 /** @name XcmV0JunctionNetworkId (52) */510 /** @name XcmV3JunctionNetworkId (54) */
502 interface XcmV0JunctionNetworkId extends Enum {511 interface XcmV3JunctionNetworkId extends Enum {
503 readonly isAny: boolean;512 readonly isByGenesis: boolean;
504 readonly isNamed: boolean;513 readonly asByGenesis: U8aFixed;
514 readonly isByFork: boolean;
505 readonly asNamed: Bytes;515 readonly asByFork: {
516 readonly blockNumber: u64;
517 readonly blockHash: U8aFixed;
518 } & Struct;
506 readonly isPolkadot: boolean;519 readonly isPolkadot: boolean;
507 readonly isKusama: boolean;520 readonly isKusama: boolean;
508 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';521 readonly isWestend: boolean;
522 readonly isRococo: boolean;
523 readonly isWococo: boolean;
524 readonly isEthereum: boolean;
525 readonly asEthereum: {
526 readonly chainId: Compact<u64>;
527 } & Struct;
528 readonly isBitcoinCore: boolean;
529 readonly isBitcoinCash: boolean;
530 readonly type: 'ByGenesis' | 'ByFork' | 'Polkadot' | 'Kusama' | 'Westend' | 'Rococo' | 'Wococo' | 'Ethereum' | 'BitcoinCore' | 'BitcoinCash';
509 }531 }
510532
511 /** @name XcmV0JunctionBodyId (55) */533 /** @name XcmV3JunctionBodyId (56) */
512 interface XcmV0JunctionBodyId extends Enum {534 interface XcmV3JunctionBodyId extends Enum {
513 readonly isUnit: boolean;535 readonly isUnit: boolean;
514 readonly isNamed: boolean;536 readonly isMoniker: boolean;
515 readonly asNamed: Bytes;537 readonly asMoniker: U8aFixed;
516 readonly isIndex: boolean;538 readonly isIndex: boolean;
517 readonly asIndex: Compact<u32>;539 readonly asIndex: Compact<u32>;
518 readonly isExecutive: boolean;540 readonly isExecutive: boolean;
522 readonly isDefense: boolean;544 readonly isDefense: boolean;
523 readonly isAdministration: boolean;545 readonly isAdministration: boolean;
524 readonly isTreasury: boolean;546 readonly isTreasury: boolean;
525 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';547 readonly type: 'Unit' | 'Moniker' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';
526 }548 }
527549
528 /** @name XcmV0JunctionBodyPart (56) */550 /** @name XcmV3JunctionBodyPart (57) */
529 interface XcmV0JunctionBodyPart extends Enum {551 interface XcmV3JunctionBodyPart extends Enum {
530 readonly isVoice: boolean;552 readonly isVoice: boolean;
531 readonly isMembers: boolean;553 readonly isMembers: boolean;
532 readonly asMembers: {554 readonly asMembers: {
550 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';572 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
551 }573 }
552574
553 /** @name XcmV1MultiassetFungibility (57) */575 /** @name XcmV3MultiassetFungibility (58) */
554 interface XcmV1MultiassetFungibility extends Enum {576 interface XcmV3MultiassetFungibility extends Enum {
555 readonly isFungible: boolean;577 readonly isFungible: boolean;
556 readonly asFungible: Compact<u128>;578 readonly asFungible: Compact<u128>;
557 readonly isNonFungible: boolean;579 readonly isNonFungible: boolean;
558 readonly asNonFungible: XcmV1MultiassetAssetInstance;580 readonly asNonFungible: XcmV3MultiassetAssetInstance;
559 readonly type: 'Fungible' | 'NonFungible';581 readonly type: 'Fungible' | 'NonFungible';
560 }582 }
561583
562 /** @name XcmV1MultiassetAssetInstance (58) */584 /** @name XcmV3MultiassetAssetInstance (59) */
563 interface XcmV1MultiassetAssetInstance extends Enum {585 interface XcmV3MultiassetAssetInstance extends Enum {
564 readonly isUndefined: boolean;586 readonly isUndefined: boolean;
565 readonly isIndex: boolean;587 readonly isIndex: boolean;
566 readonly asIndex: Compact<u128>;588 readonly asIndex: Compact<u128>;
572 readonly asArray16: U8aFixed;594 readonly asArray16: U8aFixed;
573 readonly isArray32: boolean;595 readonly isArray32: boolean;
574 readonly asArray32: U8aFixed;596 readonly asArray32: U8aFixed;
575 readonly isBlob: boolean;597 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32';
576 readonly asBlob: Bytes;
577 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';
578 }598 }
579599
580 /** @name OrmlTokensModuleEvent (61) */600 /** @name OrmlTokensModuleEvent (62) */
581 interface OrmlTokensModuleEvent extends Enum {601 interface OrmlTokensModuleEvent extends Enum {
582 readonly isEndowed: boolean;602 readonly isEndowed: boolean;
583 readonly asEndowed: {603 readonly asEndowed: {
662 readonly currencyId: PalletForeignAssetsAssetIds;682 readonly currencyId: PalletForeignAssetsAssetIds;
663 readonly who: AccountId32;683 readonly who: AccountId32;
664 } & Struct;684 } & Struct;
665 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';685 readonly isLocked: boolean;
686 readonly asLocked: {
687 readonly currencyId: PalletForeignAssetsAssetIds;
688 readonly who: AccountId32;
689 readonly amount: u128;
690 } & Struct;
691 readonly isUnlocked: boolean;
692 readonly asUnlocked: {
693 readonly currencyId: PalletForeignAssetsAssetIds;
694 readonly who: AccountId32;
695 readonly amount: u128;
696 } & Struct;
697 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved' | 'Locked' | 'Unlocked';
666 }698 }
667699
668 /** @name PalletForeignAssetsAssetIds (62) */700 /** @name PalletForeignAssetsAssetIds (63) */
669 interface PalletForeignAssetsAssetIds extends Enum {701 interface PalletForeignAssetsAssetIds extends Enum {
670 readonly isForeignAssetId: boolean;702 readonly isForeignAssetId: boolean;
671 readonly asForeignAssetId: u32;703 readonly asForeignAssetId: u32;
674 readonly type: 'ForeignAssetId' | 'NativeAssetId';706 readonly type: 'ForeignAssetId' | 'NativeAssetId';
675 }707 }
676708
677 /** @name PalletForeignAssetsNativeCurrency (63) */709 /** @name PalletForeignAssetsNativeCurrency (64) */
678 interface PalletForeignAssetsNativeCurrency extends Enum {710 interface PalletForeignAssetsNativeCurrency extends Enum {
679 readonly isHere: boolean;711 readonly isHere: boolean;
680 readonly isParent: boolean;712 readonly isParent: boolean;
681 readonly type: 'Here' | 'Parent';713 readonly type: 'Here' | 'Parent';
682 }714 }
683715
684 /** @name PalletIdentityEvent (64) */716 /** @name PalletIdentityEvent (65) */
685 interface PalletIdentityEvent extends Enum {717 interface PalletIdentityEvent extends Enum {
686 readonly isIdentitySet: boolean;718 readonly isIdentitySet: boolean;
687 readonly asIdentitySet: {719 readonly asIdentitySet: {
749 readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'IdentitiesInserted' | 'IdentitiesRemoved' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked' | 'SubIdentitiesInserted';781 readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'IdentitiesInserted' | 'IdentitiesRemoved' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked' | 'SubIdentitiesInserted';
750 }782 }
751783
752 /** @name PalletPreimageEvent (65) */784 /** @name PalletPreimageEvent (66) */
753 interface PalletPreimageEvent extends Enum {785 interface PalletPreimageEvent extends Enum {
754 readonly isNoted: boolean;786 readonly isNoted: boolean;
755 readonly asNoted: {787 readonly asNoted: {
766 readonly type: 'Noted' | 'Requested' | 'Cleared';798 readonly type: 'Noted' | 'Requested' | 'Cleared';
767 }799 }
768800
769 /** @name CumulusPalletXcmpQueueEvent (66) */801 /** @name CumulusPalletXcmpQueueEvent (67) */
770 interface CumulusPalletXcmpQueueEvent extends Enum {802 interface CumulusPalletXcmpQueueEvent extends Enum {
771 readonly isSuccess: boolean;803 readonly isSuccess: boolean;
772 readonly asSuccess: {804 readonly asSuccess: {
773 readonly messageHash: Option<H256>;805 readonly messageHash: Option<U8aFixed>;
774 readonly weight: SpWeightsWeightV2Weight;806 readonly weight: SpWeightsWeightV2Weight;
775 } & Struct;807 } & Struct;
776 readonly isFail: boolean;808 readonly isFail: boolean;
777 readonly asFail: {809 readonly asFail: {
778 readonly messageHash: Option<H256>;810 readonly messageHash: Option<U8aFixed>;
779 readonly error: XcmV2TraitsError;811 readonly error: XcmV3TraitsError;
780 readonly weight: SpWeightsWeightV2Weight;812 readonly weight: SpWeightsWeightV2Weight;
781 } & Struct;813 } & Struct;
782 readonly isBadVersion: boolean;814 readonly isBadVersion: boolean;
783 readonly asBadVersion: {815 readonly asBadVersion: {
784 readonly messageHash: Option<H256>;816 readonly messageHash: Option<U8aFixed>;
785 } & Struct;817 } & Struct;
786 readonly isBadFormat: boolean;818 readonly isBadFormat: boolean;
787 readonly asBadFormat: {819 readonly asBadFormat: {
788 readonly messageHash: Option<H256>;820 readonly messageHash: Option<U8aFixed>;
789 } & Struct;821 } & Struct;
790 readonly isUpwardMessageSent: boolean;
791 readonly asUpwardMessageSent: {
792 readonly messageHash: Option<H256>;
793 } & Struct;
794 readonly isXcmpMessageSent: boolean;822 readonly isXcmpMessageSent: boolean;
795 readonly asXcmpMessageSent: {823 readonly asXcmpMessageSent: {
796 readonly messageHash: Option<H256>;824 readonly messageHash: Option<U8aFixed>;
797 } & Struct;825 } & Struct;
798 readonly isOverweightEnqueued: boolean;826 readonly isOverweightEnqueued: boolean;
799 readonly asOverweightEnqueued: {827 readonly asOverweightEnqueued: {
807 readonly index: u64;835 readonly index: u64;
808 readonly used: SpWeightsWeightV2Weight;836 readonly used: SpWeightsWeightV2Weight;
809 } & Struct;837 } & Struct;
810 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';838 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
811 }839 }
812840
813 /** @name XcmV2TraitsError (68) */841 /** @name XcmV3TraitsError (68) */
814 interface XcmV2TraitsError extends Enum {842 interface XcmV3TraitsError extends Enum {
815 readonly isOverflow: boolean;843 readonly isOverflow: boolean;
816 readonly isUnimplemented: boolean;844 readonly isUnimplemented: boolean;
817 readonly isUntrustedReserveLocation: boolean;845 readonly isUntrustedReserveLocation: boolean;
818 readonly isUntrustedTeleportLocation: boolean;846 readonly isUntrustedTeleportLocation: boolean;
819 readonly isMultiLocationFull: boolean;847 readonly isLocationFull: boolean;
820 readonly isMultiLocationNotInvertible: boolean;848 readonly isLocationNotInvertible: boolean;
821 readonly isBadOrigin: boolean;849 readonly isBadOrigin: boolean;
822 readonly isInvalidLocation: boolean;850 readonly isInvalidLocation: boolean;
823 readonly isAssetNotFound: boolean;851 readonly isAssetNotFound: boolean;
835 readonly isTooExpensive: boolean;863 readonly isTooExpensive: boolean;
836 readonly isTrap: boolean;864 readonly isTrap: boolean;
837 readonly asTrap: u64;865 readonly asTrap: u64;
866 readonly isExpectationFalse: boolean;
867 readonly isPalletNotFound: boolean;
868 readonly isNameMismatch: boolean;
869 readonly isVersionIncompatible: boolean;
870 readonly isHoldingWouldOverflow: boolean;
871 readonly isExportError: boolean;
872 readonly isReanchorFailed: boolean;
873 readonly isNoDeal: boolean;
874 readonly isFeesNotMet: boolean;
875 readonly isLockError: boolean;
876 readonly isNoPermission: boolean;
877 readonly isUnanchored: boolean;
878 readonly isNotDepositable: boolean;
838 readonly isUnhandledXcmVersion: boolean;879 readonly isUnhandledXcmVersion: boolean;
839 readonly isWeightLimitReached: boolean;880 readonly isWeightLimitReached: boolean;
840 readonly asWeightLimitReached: u64;881 readonly asWeightLimitReached: SpWeightsWeightV2Weight;
841 readonly isBarrier: boolean;882 readonly isBarrier: boolean;
842 readonly isWeightNotComputable: boolean;883 readonly isWeightNotComputable: boolean;
843 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';884 readonly isExceedsStackLimit: boolean;
885 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'LocationFull' | 'LocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'ExpectationFalse' | 'PalletNotFound' | 'NameMismatch' | 'VersionIncompatible' | 'HoldingWouldOverflow' | 'ExportError' | 'ReanchorFailed' | 'NoDeal' | 'FeesNotMet' | 'LockError' | 'NoPermission' | 'Unanchored' | 'NotDepositable' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable' | 'ExceedsStackLimit';
844 }886 }
845887
846 /** @name PalletXcmEvent (70) */888 /** @name PalletXcmEvent (70) */
847 interface PalletXcmEvent extends Enum {889 interface PalletXcmEvent extends Enum {
848 readonly isAttempted: boolean;890 readonly isAttempted: boolean;
849 readonly asAttempted: XcmV2TraitsOutcome;891 readonly asAttempted: XcmV3TraitsOutcome;
850 readonly isSent: boolean;892 readonly isSent: boolean;
851 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;893 readonly asSent: ITuple<[XcmV3MultiLocation, XcmV3MultiLocation, XcmV3Xcm]>;
852 readonly isUnexpectedResponse: boolean;894 readonly isUnexpectedResponse: boolean;
853 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;895 readonly asUnexpectedResponse: ITuple<[XcmV3MultiLocation, u64]>;
854 readonly isResponseReady: boolean;896 readonly isResponseReady: boolean;
855 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;897 readonly asResponseReady: ITuple<[u64, XcmV3Response]>;
856 readonly isNotified: boolean;898 readonly isNotified: boolean;
857 readonly asNotified: ITuple<[u64, u8, u8]>;899 readonly asNotified: ITuple<[u64, u8, u8]>;
858 readonly isNotifyOverweight: boolean;900 readonly isNotifyOverweight: boolean;
862 readonly isNotifyDecodeFailed: boolean;904 readonly isNotifyDecodeFailed: boolean;
863 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;905 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;
864 readonly isInvalidResponder: boolean;906 readonly isInvalidResponder: boolean;
865 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;907 readonly asInvalidResponder: ITuple<[XcmV3MultiLocation, u64, Option<XcmV3MultiLocation>]>;
866 readonly isInvalidResponderVersion: boolean;908 readonly isInvalidResponderVersion: boolean;
867 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;909 readonly asInvalidResponderVersion: ITuple<[XcmV3MultiLocation, u64]>;
868 readonly isResponseTaken: boolean;910 readonly isResponseTaken: boolean;
869 readonly asResponseTaken: u64;911 readonly asResponseTaken: u64;
870 readonly isAssetsTrapped: boolean;912 readonly isAssetsTrapped: boolean;
871 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;913 readonly asAssetsTrapped: ITuple<[H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;
872 readonly isVersionChangeNotified: boolean;914 readonly isVersionChangeNotified: boolean;
873 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;915 readonly asVersionChangeNotified: ITuple<[XcmV3MultiLocation, u32, XcmV3MultiassetMultiAssets]>;
874 readonly isSupportedVersionChanged: boolean;916 readonly isSupportedVersionChanged: boolean;
875 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;917 readonly asSupportedVersionChanged: ITuple<[XcmV3MultiLocation, u32]>;
876 readonly isNotifyTargetSendFail: boolean;918 readonly isNotifyTargetSendFail: boolean;
877 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;919 readonly asNotifyTargetSendFail: ITuple<[XcmV3MultiLocation, u64, XcmV3TraitsError]>;
878 readonly isNotifyTargetMigrationFail: boolean;920 readonly isNotifyTargetMigrationFail: boolean;
879 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;921 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;
922 readonly isInvalidQuerierVersion: boolean;
923 readonly asInvalidQuerierVersion: ITuple<[XcmV3MultiLocation, u64]>;
924 readonly isInvalidQuerier: boolean;
925 readonly asInvalidQuerier: ITuple<[XcmV3MultiLocation, u64, XcmV3MultiLocation, Option<XcmV3MultiLocation>]>;
926 readonly isVersionNotifyStarted: boolean;
927 readonly asVersionNotifyStarted: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
928 readonly isVersionNotifyRequested: boolean;
929 readonly asVersionNotifyRequested: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
930 readonly isVersionNotifyUnrequested: boolean;
931 readonly asVersionNotifyUnrequested: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
932 readonly isFeesPaid: boolean;
933 readonly asFeesPaid: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
880 readonly isAssetsClaimed: boolean;934 readonly isAssetsClaimed: boolean;
881 readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;935 readonly asAssetsClaimed: ITuple<[H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;
882 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';936 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'InvalidQuerierVersion' | 'InvalidQuerier' | 'VersionNotifyStarted' | 'VersionNotifyRequested' | 'VersionNotifyUnrequested' | 'FeesPaid' | 'AssetsClaimed';
883 }937 }
884938
885 /** @name XcmV2TraitsOutcome (71) */939 /** @name XcmV3TraitsOutcome (71) */
886 interface XcmV2TraitsOutcome extends Enum {940 interface XcmV3TraitsOutcome extends Enum {
887 readonly isComplete: boolean;941 readonly isComplete: boolean;
888 readonly asComplete: u64;942 readonly asComplete: SpWeightsWeightV2Weight;
889 readonly isIncomplete: boolean;943 readonly isIncomplete: boolean;
890 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;944 readonly asIncomplete: ITuple<[SpWeightsWeightV2Weight, XcmV3TraitsError]>;
891 readonly isError: boolean;945 readonly isError: boolean;
892 readonly asError: XcmV2TraitsError;946 readonly asError: XcmV3TraitsError;
893 readonly type: 'Complete' | 'Incomplete' | 'Error';947 readonly type: 'Complete' | 'Incomplete' | 'Error';
894 }948 }
895949
896 /** @name XcmV2Xcm (72) */950 /** @name XcmV3Xcm (72) */
897 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}951 interface XcmV3Xcm extends Vec<XcmV3Instruction> {}
898952
899 /** @name XcmV2Instruction (74) */953 /** @name XcmV3Instruction (74) */
900 interface XcmV2Instruction extends Enum {954 interface XcmV3Instruction extends Enum {
901 readonly isWithdrawAsset: boolean;955 readonly isWithdrawAsset: boolean;
902 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;956 readonly asWithdrawAsset: XcmV3MultiassetMultiAssets;
903 readonly isReserveAssetDeposited: boolean;957 readonly isReserveAssetDeposited: boolean;
904 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;958 readonly asReserveAssetDeposited: XcmV3MultiassetMultiAssets;
905 readonly isReceiveTeleportedAsset: boolean;959 readonly isReceiveTeleportedAsset: boolean;
906 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;960 readonly asReceiveTeleportedAsset: XcmV3MultiassetMultiAssets;
907 readonly isQueryResponse: boolean;961 readonly isQueryResponse: boolean;
908 readonly asQueryResponse: {962 readonly asQueryResponse: {
909 readonly queryId: Compact<u64>;963 readonly queryId: Compact<u64>;
910 readonly response: XcmV2Response;964 readonly response: XcmV3Response;
911 readonly maxWeight: Compact<u64>;965 readonly maxWeight: SpWeightsWeightV2Weight;
966 readonly querier: Option<XcmV3MultiLocation>;
912 } & Struct;967 } & Struct;
913 readonly isTransferAsset: boolean;968 readonly isTransferAsset: boolean;
914 readonly asTransferAsset: {969 readonly asTransferAsset: {
915 readonly assets: XcmV1MultiassetMultiAssets;970 readonly assets: XcmV3MultiassetMultiAssets;
916 readonly beneficiary: XcmV1MultiLocation;971 readonly beneficiary: XcmV3MultiLocation;
917 } & Struct;972 } & Struct;
918 readonly isTransferReserveAsset: boolean;973 readonly isTransferReserveAsset: boolean;
919 readonly asTransferReserveAsset: {974 readonly asTransferReserveAsset: {
920 readonly assets: XcmV1MultiassetMultiAssets;975 readonly assets: XcmV3MultiassetMultiAssets;
921 readonly dest: XcmV1MultiLocation;976 readonly dest: XcmV3MultiLocation;
922 readonly xcm: XcmV2Xcm;977 readonly xcm: XcmV3Xcm;
923 } & Struct;978 } & Struct;
924 readonly isTransact: boolean;979 readonly isTransact: boolean;
925 readonly asTransact: {980 readonly asTransact: {
926 readonly originType: XcmV0OriginKind;981 readonly originKind: XcmV2OriginKind;
927 readonly requireWeightAtMost: Compact<u64>;982 readonly requireWeightAtMost: SpWeightsWeightV2Weight;
928 readonly call: XcmDoubleEncoded;983 readonly call: XcmDoubleEncoded;
929 } & Struct;984 } & Struct;
930 readonly isHrmpNewChannelOpenRequest: boolean;985 readonly isHrmpNewChannelOpenRequest: boolean;
945 } & Struct;1000 } & Struct;
946 readonly isClearOrigin: boolean;1001 readonly isClearOrigin: boolean;
947 readonly isDescendOrigin: boolean;1002 readonly isDescendOrigin: boolean;
948 readonly asDescendOrigin: XcmV1MultilocationJunctions;1003 readonly asDescendOrigin: XcmV3Junctions;
949 readonly isReportError: boolean;1004 readonly isReportError: boolean;
950 readonly asReportError: {1005 readonly asReportError: XcmV3QueryResponseInfo;
951 readonly queryId: Compact<u64>;
952 readonly dest: XcmV1MultiLocation;
953 readonly maxResponseWeight: Compact<u64>;
954 } & Struct;
955 readonly isDepositAsset: boolean;1006 readonly isDepositAsset: boolean;
956 readonly asDepositAsset: {1007 readonly asDepositAsset: {
957 readonly assets: XcmV1MultiassetMultiAssetFilter;1008 readonly assets: XcmV3MultiassetMultiAssetFilter;
958 readonly maxAssets: Compact<u32>;1009 readonly beneficiary: XcmV3MultiLocation;
959 readonly beneficiary: XcmV1MultiLocation;
960 } & Struct;1010 } & Struct;
961 readonly isDepositReserveAsset: boolean;1011 readonly isDepositReserveAsset: boolean;
962 readonly asDepositReserveAsset: {1012 readonly asDepositReserveAsset: {
963 readonly assets: XcmV1MultiassetMultiAssetFilter;1013 readonly assets: XcmV3MultiassetMultiAssetFilter;
964 readonly maxAssets: Compact<u32>;1014 readonly dest: XcmV3MultiLocation;
965 readonly dest: XcmV1MultiLocation;
966 readonly xcm: XcmV2Xcm;1015 readonly xcm: XcmV3Xcm;
967 } & Struct;1016 } & Struct;
968 readonly isExchangeAsset: boolean;1017 readonly isExchangeAsset: boolean;
969 readonly asExchangeAsset: {1018 readonly asExchangeAsset: {
970 readonly give: XcmV1MultiassetMultiAssetFilter;1019 readonly give: XcmV3MultiassetMultiAssetFilter;
971 readonly receive: XcmV1MultiassetMultiAssets;1020 readonly want: XcmV3MultiassetMultiAssets;
1021 readonly maximal: bool;
972 } & Struct;1022 } & Struct;
973 readonly isInitiateReserveWithdraw: boolean;1023 readonly isInitiateReserveWithdraw: boolean;
974 readonly asInitiateReserveWithdraw: {1024 readonly asInitiateReserveWithdraw: {
975 readonly assets: XcmV1MultiassetMultiAssetFilter;1025 readonly assets: XcmV3MultiassetMultiAssetFilter;
976 readonly reserve: XcmV1MultiLocation;1026 readonly reserve: XcmV3MultiLocation;
977 readonly xcm: XcmV2Xcm;1027 readonly xcm: XcmV3Xcm;
978 } & Struct;1028 } & Struct;
979 readonly isInitiateTeleport: boolean;1029 readonly isInitiateTeleport: boolean;
980 readonly asInitiateTeleport: {1030 readonly asInitiateTeleport: {
981 readonly assets: XcmV1MultiassetMultiAssetFilter;1031 readonly assets: XcmV3MultiassetMultiAssetFilter;
982 readonly dest: XcmV1MultiLocation;1032 readonly dest: XcmV3MultiLocation;
983 readonly xcm: XcmV2Xcm;1033 readonly xcm: XcmV3Xcm;
984 } & Struct;1034 } & Struct;
985 readonly isQueryHolding: boolean;1035 readonly isReportHolding: boolean;
986 readonly asQueryHolding: {1036 readonly asReportHolding: {
987 readonly queryId: Compact<u64>;1037 readonly responseInfo: XcmV3QueryResponseInfo;
988 readonly dest: XcmV1MultiLocation;1038 readonly assets: XcmV3MultiassetMultiAssetFilter;
989 readonly assets: XcmV1MultiassetMultiAssetFilter;
990 readonly maxResponseWeight: Compact<u64>;
991 } & Struct;1039 } & Struct;
992 readonly isBuyExecution: boolean;1040 readonly isBuyExecution: boolean;
993 readonly asBuyExecution: {1041 readonly asBuyExecution: {
994 readonly fees: XcmV1MultiAsset;1042 readonly fees: XcmV3MultiAsset;
995 readonly weightLimit: XcmV2WeightLimit;1043 readonly weightLimit: XcmV3WeightLimit;
996 } & Struct;1044 } & Struct;
997 readonly isRefundSurplus: boolean;1045 readonly isRefundSurplus: boolean;
998 readonly isSetErrorHandler: boolean;1046 readonly isSetErrorHandler: boolean;
999 readonly asSetErrorHandler: XcmV2Xcm;1047 readonly asSetErrorHandler: XcmV3Xcm;
1000 readonly isSetAppendix: boolean;1048 readonly isSetAppendix: boolean;
1001 readonly asSetAppendix: XcmV2Xcm;1049 readonly asSetAppendix: XcmV3Xcm;
1002 readonly isClearError: boolean;1050 readonly isClearError: boolean;
1003 readonly isClaimAsset: boolean;1051 readonly isClaimAsset: boolean;
1004 readonly asClaimAsset: {1052 readonly asClaimAsset: {
1005 readonly assets: XcmV1MultiassetMultiAssets;1053 readonly assets: XcmV3MultiassetMultiAssets;
1006 readonly ticket: XcmV1MultiLocation;1054 readonly ticket: XcmV3MultiLocation;
1007 } & Struct;1055 } & Struct;
1008 readonly isTrap: boolean;1056 readonly isTrap: boolean;
1009 readonly asTrap: Compact<u64>;1057 readonly asTrap: Compact<u64>;
1010 readonly isSubscribeVersion: boolean;1058 readonly isSubscribeVersion: boolean;
1011 readonly asSubscribeVersion: {1059 readonly asSubscribeVersion: {
1012 readonly queryId: Compact<u64>;1060 readonly queryId: Compact<u64>;
1013 readonly maxResponseWeight: Compact<u64>;1061 readonly maxResponseWeight: SpWeightsWeightV2Weight;
1014 } & Struct;1062 } & Struct;
1015 readonly isUnsubscribeVersion: boolean;1063 readonly isUnsubscribeVersion: boolean;
1016 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';1064 readonly isBurnAsset: boolean;
1065 readonly asBurnAsset: XcmV3MultiassetMultiAssets;
1066 readonly isExpectAsset: boolean;
1067 readonly asExpectAsset: XcmV3MultiassetMultiAssets;
1068 readonly isExpectOrigin: boolean;
1069 readonly asExpectOrigin: Option<XcmV3MultiLocation>;
1070 readonly isExpectError: boolean;
1071 readonly asExpectError: Option<ITuple<[u32, XcmV3TraitsError]>>;
1072 readonly isExpectTransactStatus: boolean;
1073 readonly asExpectTransactStatus: XcmV3MaybeErrorCode;
1074 readonly isQueryPallet: boolean;
1075 readonly asQueryPallet: {
1076 readonly moduleName: Bytes;
1077 readonly responseInfo: XcmV3QueryResponseInfo;
1078 } & Struct;
1079 readonly isExpectPallet: boolean;
1080 readonly asExpectPallet: {
1081 readonly index: Compact<u32>;
1082 readonly name: Bytes;
1083 readonly moduleName: Bytes;
1084 readonly crateMajor: Compact<u32>;
1085 readonly minCrateMinor: Compact<u32>;
1086 } & Struct;
1087 readonly isReportTransactStatus: boolean;
1088 readonly asReportTransactStatus: XcmV3QueryResponseInfo;
1089 readonly isClearTransactStatus: boolean;
1090 readonly isUniversalOrigin: boolean;
1091 readonly asUniversalOrigin: XcmV3Junction;
1092 readonly isExportMessage: boolean;
1093 readonly asExportMessage: {
1094 readonly network: XcmV3JunctionNetworkId;
1095 readonly destination: XcmV3Junctions;
1096 readonly xcm: XcmV3Xcm;
1097 } & Struct;
1098 readonly isLockAsset: boolean;
1099 readonly asLockAsset: {
1100 readonly asset: XcmV3MultiAsset;
1101 readonly unlocker: XcmV3MultiLocation;
1102 } & Struct;
1103 readonly isUnlockAsset: boolean;
1104 readonly asUnlockAsset: {
1105 readonly asset: XcmV3MultiAsset;
1106 readonly target: XcmV3MultiLocation;
1107 } & Struct;
1108 readonly isNoteUnlockable: boolean;
1109 readonly asNoteUnlockable: {
1110 readonly asset: XcmV3MultiAsset;
1111 readonly owner: XcmV3MultiLocation;
1112 } & Struct;
1113 readonly isRequestUnlock: boolean;
1114 readonly asRequestUnlock: {
1115 readonly asset: XcmV3MultiAsset;
1116 readonly locker: XcmV3MultiLocation;
1117 } & Struct;
1118 readonly isSetFeesMode: boolean;
1119 readonly asSetFeesMode: {
1120 readonly jitWithdraw: bool;
1121 } & Struct;
1122 readonly isSetTopic: boolean;
1123 readonly asSetTopic: U8aFixed;
1124 readonly isClearTopic: boolean;
1125 readonly isAliasOrigin: boolean;
1126 readonly asAliasOrigin: XcmV3MultiLocation;
1127 readonly isUnpaidExecution: boolean;
1128 readonly asUnpaidExecution: {
1129 readonly weightLimit: XcmV3WeightLimit;
1130 readonly checkOrigin: Option<XcmV3MultiLocation>;
1131 } & Struct;
1132 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'ReportHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion' | 'BurnAsset' | 'ExpectAsset' | 'ExpectOrigin' | 'ExpectError' | 'ExpectTransactStatus' | 'QueryPallet' | 'ExpectPallet' | 'ReportTransactStatus' | 'ClearTransactStatus' | 'UniversalOrigin' | 'ExportMessage' | 'LockAsset' | 'UnlockAsset' | 'NoteUnlockable' | 'RequestUnlock' | 'SetFeesMode' | 'SetTopic' | 'ClearTopic' | 'AliasOrigin' | 'UnpaidExecution';
1017 }1133 }
10181134
1019 /** @name XcmV2Response (75) */1135 /** @name XcmV3Response (75) */
1020 interface XcmV2Response extends Enum {1136 interface XcmV3Response extends Enum {
1021 readonly isNull: boolean;1137 readonly isNull: boolean;
1022 readonly isAssets: boolean;1138 readonly isAssets: boolean;
1023 readonly asAssets: XcmV1MultiassetMultiAssets;1139 readonly asAssets: XcmV3MultiassetMultiAssets;
1024 readonly isExecutionResult: boolean;1140 readonly isExecutionResult: boolean;
1025 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;1141 readonly asExecutionResult: Option<ITuple<[u32, XcmV3TraitsError]>>;
1026 readonly isVersion: boolean;1142 readonly isVersion: boolean;
1027 readonly asVersion: u32;1143 readonly asVersion: u32;
1028 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';1144 readonly isPalletsInfo: boolean;
1145 readonly asPalletsInfo: Vec<XcmV3PalletInfo>;
1146 readonly isDispatchResult: boolean;
1147 readonly asDispatchResult: XcmV3MaybeErrorCode;
1148 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version' | 'PalletsInfo' | 'DispatchResult';
1029 }1149 }
10301150
1031 /** @name XcmV0OriginKind (78) */1151 /** @name XcmV3PalletInfo (79) */
1032 interface XcmV0OriginKind extends Enum {1152 interface XcmV3PalletInfo extends Struct {
1153 readonly index: Compact<u32>;
1154 readonly name: Bytes;
1155 readonly moduleName: Bytes;
1156 readonly major: Compact<u32>;
1157 readonly minor: Compact<u32>;
1158 readonly patch: Compact<u32>;
1159 }
1160
1161 /** @name XcmV3MaybeErrorCode (82) */
1162 interface XcmV3MaybeErrorCode extends Enum {
1163 readonly isSuccess: boolean;
1164 readonly isError: boolean;
1165 readonly asError: Bytes;
1166 readonly isTruncatedError: boolean;
1167 readonly asTruncatedError: Bytes;
1168 readonly type: 'Success' | 'Error' | 'TruncatedError';
1169 }
1170
1171 /** @name XcmV2OriginKind (85) */
1172 interface XcmV2OriginKind extends Enum {
1033 readonly isNative: boolean;1173 readonly isNative: boolean;
1034 readonly isSovereignAccount: boolean;1174 readonly isSovereignAccount: boolean;
1035 readonly isSuperuser: boolean;1175 readonly isSuperuser: boolean;
1036 readonly isXcm: boolean;1176 readonly isXcm: boolean;
1037 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';1177 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';
1038 }1178 }
10391179
1040 /** @name XcmDoubleEncoded (79) */1180 /** @name XcmDoubleEncoded (86) */
1041 interface XcmDoubleEncoded extends Struct {1181 interface XcmDoubleEncoded extends Struct {
1042 readonly encoded: Bytes;1182 readonly encoded: Bytes;
1043 }1183 }
10441184
1045 /** @name XcmV1MultiassetMultiAssetFilter (80) */1185 /** @name XcmV3QueryResponseInfo (87) */
1046 interface XcmV1MultiassetMultiAssetFilter extends Enum {1186 interface XcmV3QueryResponseInfo extends Struct {
1187 readonly destination: XcmV3MultiLocation;
1188 readonly queryId: Compact<u64>;
1189 readonly maxWeight: SpWeightsWeightV2Weight;
1190 }
1191
1192 /** @name XcmV3MultiassetMultiAssetFilter (88) */
1193 interface XcmV3MultiassetMultiAssetFilter extends Enum {
1047 readonly isDefinite: boolean;1194 readonly isDefinite: boolean;
1048 readonly asDefinite: XcmV1MultiassetMultiAssets;1195 readonly asDefinite: XcmV3MultiassetMultiAssets;
1049 readonly isWild: boolean;1196 readonly isWild: boolean;
1050 readonly asWild: XcmV1MultiassetWildMultiAsset;1197 readonly asWild: XcmV3MultiassetWildMultiAsset;
1051 readonly type: 'Definite' | 'Wild';1198 readonly type: 'Definite' | 'Wild';
1052 }1199 }
10531200
1054 /** @name XcmV1MultiassetWildMultiAsset (81) */1201 /** @name XcmV3MultiassetWildMultiAsset (89) */
1055 interface XcmV1MultiassetWildMultiAsset extends Enum {1202 interface XcmV3MultiassetWildMultiAsset extends Enum {
1056 readonly isAll: boolean;1203 readonly isAll: boolean;
1057 readonly isAllOf: boolean;1204 readonly isAllOf: boolean;
1058 readonly asAllOf: {1205 readonly asAllOf: {
1059 readonly id: XcmV1MultiassetAssetId;1206 readonly id: XcmV3MultiassetAssetId;
1060 readonly fun: XcmV1MultiassetWildFungibility;1207 readonly fun: XcmV3MultiassetWildFungibility;
1061 } & Struct;1208 } & Struct;
1062 readonly type: 'All' | 'AllOf';1209 readonly isAllCounted: boolean;
1210 readonly asAllCounted: Compact<u32>;
1211 readonly isAllOfCounted: boolean;
1212 readonly asAllOfCounted: {
1213 readonly id: XcmV3MultiassetAssetId;
1214 readonly fun: XcmV3MultiassetWildFungibility;
1215 readonly count: Compact<u32>;
1216 } & Struct;
1217 readonly type: 'All' | 'AllOf' | 'AllCounted' | 'AllOfCounted';
1063 }1218 }
10641219
1065 /** @name XcmV1MultiassetWildFungibility (82) */1220 /** @name XcmV3MultiassetWildFungibility (90) */
1066 interface XcmV1MultiassetWildFungibility extends Enum {1221 interface XcmV3MultiassetWildFungibility extends Enum {
1067 readonly isFungible: boolean;1222 readonly isFungible: boolean;
1068 readonly isNonFungible: boolean;1223 readonly isNonFungible: boolean;
1069 readonly type: 'Fungible' | 'NonFungible';1224 readonly type: 'Fungible' | 'NonFungible';
1070 }1225 }
10711226
1072 /** @name XcmV2WeightLimit (83) */1227 /** @name XcmV3WeightLimit (92) */
1073 interface XcmV2WeightLimit extends Enum {1228 interface XcmV3WeightLimit extends Enum {
1074 readonly isUnlimited: boolean;1229 readonly isUnlimited: boolean;
1075 readonly isLimited: boolean;1230 readonly isLimited: boolean;
1076 readonly asLimited: Compact<u64>;1231 readonly asLimited: SpWeightsWeightV2Weight;
1077 readonly type: 'Unlimited' | 'Limited';1232 readonly type: 'Unlimited' | 'Limited';
1078 }1233 }
10791234
1080 /** @name XcmVersionedMultiAssets (85) */1235 /** @name XcmVersionedMultiAssets (93) */
1081 interface XcmVersionedMultiAssets extends Enum {1236 interface XcmVersionedMultiAssets extends Enum {
1082 readonly isV0: boolean;1237 readonly isV2: boolean;
1083 readonly asV0: Vec<XcmV0MultiAsset>;1238 readonly asV2: XcmV2MultiassetMultiAssets;
1084 readonly isV1: boolean;1239 readonly isV3: boolean;
1085 readonly asV1: XcmV1MultiassetMultiAssets;1240 readonly asV3: XcmV3MultiassetMultiAssets;
1086 readonly type: 'V0' | 'V1';1241 readonly type: 'V2' | 'V3';
1087 }1242 }
10881243
1089 /** @name XcmV0MultiAsset (87) */1244 /** @name XcmV2MultiassetMultiAssets (94) */
1090 interface XcmV0MultiAsset extends Enum {1245 interface XcmV2MultiassetMultiAssets extends Vec<XcmV2MultiAsset> {}
1091 readonly isNone: boolean;1246
1092 readonly isAll: boolean;
1093 readonly isAllFungible: boolean;
1094 readonly isAllNonFungible: boolean;
1095 readonly isAllAbstractFungible: boolean;
1096 readonly asAllAbstractFungible: {
1097 readonly id: Bytes;
1098 } & Struct;
1099 readonly isAllAbstractNonFungible: boolean;
1100 readonly asAllAbstractNonFungible: {
1101 readonly class: Bytes;
1102 } & Struct;
1103 readonly isAllConcreteFungible: boolean;
1104 readonly asAllConcreteFungible: {
1105 readonly id: XcmV0MultiLocation;
1106 } & Struct;
1107 readonly isAllConcreteNonFungible: boolean;
1108 readonly asAllConcreteNonFungible: {
1109 readonly class: XcmV0MultiLocation;
1110 } & Struct;
1111 readonly isAbstractFungible: boolean;
1112 readonly asAbstractFungible: {
1113 readonly id: Bytes;
1114 readonly amount: Compact<u128>;
1115 } & Struct;
1116 readonly isAbstractNonFungible: boolean;
1117 readonly asAbstractNonFungible: {1247 /** @name XcmV2MultiAsset (96) */
1118 readonly class: Bytes;1248 interface XcmV2MultiAsset extends Struct {
1119 readonly instance: XcmV1MultiassetAssetInstance;
1120 } & Struct;
1121 readonly isConcreteFungible: boolean;
1122 readonly asConcreteFungible: {
1123 readonly id: XcmV0MultiLocation;1249 readonly id: XcmV2MultiassetAssetId;
1124 readonly amount: Compact<u128>;1250 readonly fun: XcmV2MultiassetFungibility;
1125 } & Struct;
1126 readonly isConcreteNonFungible: boolean;
1127 readonly asConcreteNonFungible: {
1128 readonly class: XcmV0MultiLocation;
1129 readonly instance: XcmV1MultiassetAssetInstance;
1130 } & Struct;
1131 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';
1132 }1251 }
11331252
1134 /** @name XcmV0MultiLocation (88) */1253 /** @name XcmV2MultiassetAssetId (97) */
1135 interface XcmV0MultiLocation extends Enum {1254 interface XcmV2MultiassetAssetId extends Enum {
1136 readonly isNull: boolean;1255 readonly isConcrete: boolean;
1256 readonly asConcrete: XcmV2MultiLocation;
1257 readonly isAbstract: boolean;
1258 readonly asAbstract: Bytes;
1259 readonly type: 'Concrete' | 'Abstract';
1260 }
1261
1262 /** @name XcmV2MultiLocation (98) */
1263 interface XcmV2MultiLocation extends Struct {
1264 readonly parents: u8;
1265 readonly interior: XcmV2MultilocationJunctions;
1266 }
1267
1268 /** @name XcmV2MultilocationJunctions (99) */
1269 interface XcmV2MultilocationJunctions extends Enum {
1270 readonly isHere: boolean;
1137 readonly isX1: boolean;1271 readonly isX1: boolean;
1138 readonly asX1: XcmV0Junction;1272 readonly asX1: XcmV2Junction;
1139 readonly isX2: boolean;1273 readonly isX2: boolean;
1140 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;1274 readonly asX2: ITuple<[XcmV2Junction, XcmV2Junction]>;
1141 readonly isX3: boolean;1275 readonly isX3: boolean;
1142 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1276 readonly asX3: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
1143 readonly isX4: boolean;1277 readonly isX4: boolean;
1144 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1278 readonly asX4: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
1145 readonly isX5: boolean;1279 readonly isX5: boolean;
1146 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1280 readonly asX5: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
1147 readonly isX6: boolean;1281 readonly isX6: boolean;
1148 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1282 readonly asX6: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
1149 readonly isX7: boolean;1283 readonly isX7: boolean;
1150 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1284 readonly asX7: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
1151 readonly isX8: boolean;1285 readonly isX8: boolean;
1152 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1286 readonly asX8: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
1153 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1287 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
1154 }1288 }
11551289
1156 /** @name XcmV0Junction (89) */1290 /** @name XcmV2Junction (100) */
1157 interface XcmV0Junction extends Enum {1291 interface XcmV2Junction extends Enum {
1158 readonly isParent: boolean;
1159 readonly isParachain: boolean;1292 readonly isParachain: boolean;
1160 readonly asParachain: Compact<u32>;1293 readonly asParachain: Compact<u32>;
1161 readonly isAccountId32: boolean;1294 readonly isAccountId32: boolean;
1162 readonly asAccountId32: {1295 readonly asAccountId32: {
1163 readonly network: XcmV0JunctionNetworkId;1296 readonly network: XcmV2NetworkId;
1164 readonly id: U8aFixed;1297 readonly id: U8aFixed;
1165 } & Struct;1298 } & Struct;
1166 readonly isAccountIndex64: boolean;1299 readonly isAccountIndex64: boolean;
1167 readonly asAccountIndex64: {1300 readonly asAccountIndex64: {
1168 readonly network: XcmV0JunctionNetworkId;1301 readonly network: XcmV2NetworkId;
1169 readonly index: Compact<u64>;1302 readonly index: Compact<u64>;
1170 } & Struct;1303 } & Struct;
1171 readonly isAccountKey20: boolean;1304 readonly isAccountKey20: boolean;
1172 readonly asAccountKey20: {1305 readonly asAccountKey20: {
1173 readonly network: XcmV0JunctionNetworkId;1306 readonly network: XcmV2NetworkId;
1174 readonly key: U8aFixed;1307 readonly key: U8aFixed;
1175 } & Struct;1308 } & Struct;
1176 readonly isPalletInstance: boolean;1309 readonly isPalletInstance: boolean;
1182 readonly isOnlyChild: boolean;1315 readonly isOnlyChild: boolean;
1183 readonly isPlurality: boolean;1316 readonly isPlurality: boolean;
1184 readonly asPlurality: {1317 readonly asPlurality: {
1185 readonly id: XcmV0JunctionBodyId;1318 readonly id: XcmV2BodyId;
1186 readonly part: XcmV0JunctionBodyPart;1319 readonly part: XcmV2BodyPart;
1187 } & Struct;1320 } & Struct;
1188 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1321 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
1189 }1322 }
11901323
1191 /** @name XcmVersionedMultiLocation (90) */1324 /** @name XcmV2NetworkId (101) */
1325 interface XcmV2NetworkId extends Enum {
1326 readonly isAny: boolean;
1327 readonly isNamed: boolean;
1328 readonly asNamed: Bytes;
1329 readonly isPolkadot: boolean;
1330 readonly isKusama: boolean;
1331 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';
1332 }
1333
1334 /** @name XcmV2BodyId (103) */
1335 interface XcmV2BodyId extends Enum {
1336 readonly isUnit: boolean;
1337 readonly isNamed: boolean;
1338 readonly asNamed: Bytes;
1339 readonly isIndex: boolean;
1340 readonly asIndex: Compact<u32>;
1341 readonly isExecutive: boolean;
1342 readonly isTechnical: boolean;
1343 readonly isLegislative: boolean;
1344 readonly isJudicial: boolean;
1345 readonly isDefense: boolean;
1346 readonly isAdministration: boolean;
1347 readonly isTreasury: boolean;
1348 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';
1349 }
1350
1351 /** @name XcmV2BodyPart (104) */
1352 interface XcmV2BodyPart extends Enum {
1353 readonly isVoice: boolean;
1354 readonly isMembers: boolean;
1355 readonly asMembers: {
1356 readonly count: Compact<u32>;
1357 } & Struct;
1358 readonly isFraction: boolean;
1359 readonly asFraction: {
1360 readonly nom: Compact<u32>;
1361 readonly denom: Compact<u32>;
1362 } & Struct;
1363 readonly isAtLeastProportion: boolean;
1364 readonly asAtLeastProportion: {
1365 readonly nom: Compact<u32>;
1366 readonly denom: Compact<u32>;
1367 } & Struct;
1368 readonly isMoreThanProportion: boolean;
1369 readonly asMoreThanProportion: {
1370 readonly nom: Compact<u32>;
1371 readonly denom: Compact<u32>;
1372 } & Struct;
1373 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
1374 }
1375
1376 /** @name XcmV2MultiassetFungibility (105) */
1377 interface XcmV2MultiassetFungibility extends Enum {
1378 readonly isFungible: boolean;
1379 readonly asFungible: Compact<u128>;
1380 readonly isNonFungible: boolean;
1381 readonly asNonFungible: XcmV2MultiassetAssetInstance;
1382 readonly type: 'Fungible' | 'NonFungible';
1383 }
1384
1385 /** @name XcmV2MultiassetAssetInstance (106) */
1386 interface XcmV2MultiassetAssetInstance extends Enum {
1387 readonly isUndefined: boolean;
1388 readonly isIndex: boolean;
1389 readonly asIndex: Compact<u128>;
1390 readonly isArray4: boolean;
1391 readonly asArray4: U8aFixed;
1392 readonly isArray8: boolean;
1393 readonly asArray8: U8aFixed;
1394 readonly isArray16: boolean;
1395 readonly asArray16: U8aFixed;
1396 readonly isArray32: boolean;
1397 readonly asArray32: U8aFixed;
1398 readonly isBlob: boolean;
1399 readonly asBlob: Bytes;
1400 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';
1401 }
1402
1403 /** @name XcmVersionedMultiLocation (107) */
1192 interface XcmVersionedMultiLocation extends Enum {1404 interface XcmVersionedMultiLocation extends Enum {
1193 readonly isV0: boolean;1405 readonly isV2: boolean;
1194 readonly asV0: XcmV0MultiLocation;1406 readonly asV2: XcmV2MultiLocation;
1195 readonly isV1: boolean;1407 readonly isV3: boolean;
1196 readonly asV1: XcmV1MultiLocation;1408 readonly asV3: XcmV3MultiLocation;
1197 readonly type: 'V0' | 'V1';1409 readonly type: 'V2' | 'V3';
1198 }1410 }
11991411
1200 /** @name CumulusPalletXcmEvent (91) */1412 /** @name CumulusPalletXcmEvent (108) */
1201 interface CumulusPalletXcmEvent extends Enum {1413 interface CumulusPalletXcmEvent extends Enum {
1202 readonly isInvalidFormat: boolean;1414 readonly isInvalidFormat: boolean;
1203 readonly asInvalidFormat: U8aFixed;1415 readonly asInvalidFormat: U8aFixed;
1204 readonly isUnsupportedVersion: boolean;1416 readonly isUnsupportedVersion: boolean;
1205 readonly asUnsupportedVersion: U8aFixed;1417 readonly asUnsupportedVersion: U8aFixed;
1206 readonly isExecutedDownward: boolean;1418 readonly isExecutedDownward: boolean;
1207 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;1419 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV3TraitsOutcome]>;
1208 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1420 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
1209 }1421 }
12101422
1211 /** @name CumulusPalletDmpQueueEvent (92) */1423 /** @name CumulusPalletDmpQueueEvent (109) */
1212 interface CumulusPalletDmpQueueEvent extends Enum {1424 interface CumulusPalletDmpQueueEvent extends Enum {
1213 readonly isInvalidFormat: boolean;1425 readonly isInvalidFormat: boolean;
1214 readonly asInvalidFormat: {1426 readonly asInvalidFormat: {
1221 readonly isExecutedDownward: boolean;1433 readonly isExecutedDownward: boolean;
1222 readonly asExecutedDownward: {1434 readonly asExecutedDownward: {
1223 readonly messageId: U8aFixed;1435 readonly messageId: U8aFixed;
1224 readonly outcome: XcmV2TraitsOutcome;1436 readonly outcome: XcmV3TraitsOutcome;
1225 } & Struct;1437 } & Struct;
1226 readonly isWeightExhausted: boolean;1438 readonly isWeightExhausted: boolean;
1227 readonly asWeightExhausted: {1439 readonly asWeightExhausted: {
1240 readonly overweightIndex: u64;1452 readonly overweightIndex: u64;
1241 readonly weightUsed: SpWeightsWeightV2Weight;1453 readonly weightUsed: SpWeightsWeightV2Weight;
1242 } & Struct;1454 } & Struct;
1243 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1455 readonly isMaxMessagesExhausted: boolean;
1456 readonly asMaxMessagesExhausted: {
1457 readonly messageId: U8aFixed;
1458 } & Struct;
1459 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced' | 'MaxMessagesExhausted';
1244 }1460 }
12451461
1246 /** @name PalletConfigurationEvent (93) */1462 /** @name PalletConfigurationEvent (110) */
1247 interface PalletConfigurationEvent extends Enum {1463 interface PalletConfigurationEvent extends Enum {
1248 readonly isNewDesiredCollators: boolean;1464 readonly isNewDesiredCollators: boolean;
1249 readonly asNewDesiredCollators: {1465 readonly asNewDesiredCollators: {
1260 readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';1476 readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';
1261 }1477 }
12621478
1263 /** @name PalletCommonEvent (96) */1479 /** @name PalletCommonEvent (113) */
1264 interface PalletCommonEvent extends Enum {1480 interface PalletCommonEvent extends Enum {
1265 readonly isCollectionCreated: boolean;1481 readonly isCollectionCreated: boolean;
1266 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1482 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
1309 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1525 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';
1310 }1526 }
13111527
1312 /** @name PalletEvmAccountBasicCrossAccountIdRepr (99) */1528 /** @name PalletEvmAccountBasicCrossAccountIdRepr (116) */
1313 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1529 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
1314 readonly isSubstrate: boolean;1530 readonly isSubstrate: boolean;
1315 readonly asSubstrate: AccountId32;1531 readonly asSubstrate: AccountId32;
1318 readonly type: 'Substrate' | 'Ethereum';1534 readonly type: 'Substrate' | 'Ethereum';
1319 }1535 }
13201536
1321 /** @name PalletStructureEvent (103) */1537 /** @name PalletStructureEvent (119) */
1322 interface PalletStructureEvent extends Enum {1538 interface PalletStructureEvent extends Enum {
1323 readonly isExecuted: boolean;1539 readonly isExecuted: boolean;
1324 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1540 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
1325 readonly type: 'Executed';1541 readonly type: 'Executed';
1326 }1542 }
13271543
1328 /** @name PalletAppPromotionEvent (104) */1544 /** @name PalletAppPromotionEvent (120) */
1329 interface PalletAppPromotionEvent extends Enum {1545 interface PalletAppPromotionEvent extends Enum {
1330 readonly isStakingRecalculation: boolean;1546 readonly isStakingRecalculation: boolean;
1331 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1547 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;
1338 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1554 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
1339 }1555 }
13401556
1341 /** @name PalletForeignAssetsModuleEvent (105) */1557 /** @name PalletForeignAssetsModuleEvent (121) */
1342 interface PalletForeignAssetsModuleEvent extends Enum {1558 interface PalletForeignAssetsModuleEvent extends Enum {
1343 readonly isForeignAssetRegistered: boolean;1559 readonly isForeignAssetRegistered: boolean;
1344 readonly asForeignAssetRegistered: {1560 readonly asForeignAssetRegistered: {
1345 readonly assetId: u32;1561 readonly assetId: u32;
1346 readonly assetAddress: XcmV1MultiLocation;1562 readonly assetAddress: XcmV3MultiLocation;
1347 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1563 readonly metadata: PalletForeignAssetsModuleAssetMetadata;
1348 } & Struct;1564 } & Struct;
1349 readonly isForeignAssetUpdated: boolean;1565 readonly isForeignAssetUpdated: boolean;
1350 readonly asForeignAssetUpdated: {1566 readonly asForeignAssetUpdated: {
1351 readonly assetId: u32;1567 readonly assetId: u32;
1352 readonly assetAddress: XcmV1MultiLocation;1568 readonly assetAddress: XcmV3MultiLocation;
1353 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1569 readonly metadata: PalletForeignAssetsModuleAssetMetadata;
1354 } & Struct;1570 } & Struct;
1355 readonly isAssetRegistered: boolean;1571 readonly isAssetRegistered: boolean;
1365 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1581 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';
1366 }1582 }
13671583
1368 /** @name PalletForeignAssetsModuleAssetMetadata (106) */1584 /** @name PalletForeignAssetsModuleAssetMetadata (122) */
1369 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1585 interface PalletForeignAssetsModuleAssetMetadata extends Struct {
1370 readonly name: Bytes;1586 readonly name: Bytes;
1371 readonly symbol: Bytes;1587 readonly symbol: Bytes;
1372 readonly decimals: u8;1588 readonly decimals: u8;
1373 readonly minimalBalance: u128;1589 readonly minimalBalance: u128;
1374 }1590 }
13751591
1376 /** @name PalletEvmEvent (107) */1592 /** @name PalletEvmEvent (125) */
1377 interface PalletEvmEvent extends Enum {1593 interface PalletEvmEvent extends Enum {
1378 readonly isLog: boolean;1594 readonly isLog: boolean;
1379 readonly asLog: {1595 readonly asLog: {
1398 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1614 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';
1399 }1615 }
14001616
1401 /** @name EthereumLog (108) */1617 /** @name EthereumLog (126) */
1402 interface EthereumLog extends Struct {1618 interface EthereumLog extends Struct {
1403 readonly address: H160;1619 readonly address: H160;
1404 readonly topics: Vec<H256>;1620 readonly topics: Vec<H256>;
1405 readonly data: Bytes;1621 readonly data: Bytes;
1406 }1622 }
14071623
1408 /** @name PalletEthereumEvent (110) */1624 /** @name PalletEthereumEvent (128) */
1409 interface PalletEthereumEvent extends Enum {1625 interface PalletEthereumEvent extends Enum {
1410 readonly isExecuted: boolean;1626 readonly isExecuted: boolean;
1411 readonly asExecuted: {1627 readonly asExecuted: {
1417 readonly type: 'Executed';1633 readonly type: 'Executed';
1418 }1634 }
14191635
1420 /** @name EvmCoreErrorExitReason (111) */1636 /** @name EvmCoreErrorExitReason (129) */
1421 interface EvmCoreErrorExitReason extends Enum {1637 interface EvmCoreErrorExitReason extends Enum {
1422 readonly isSucceed: boolean;1638 readonly isSucceed: boolean;
1423 readonly asSucceed: EvmCoreErrorExitSucceed;1639 readonly asSucceed: EvmCoreErrorExitSucceed;
1430 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1646 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
1431 }1647 }
14321648
1433 /** @name EvmCoreErrorExitSucceed (112) */1649 /** @name EvmCoreErrorExitSucceed (130) */
1434 interface EvmCoreErrorExitSucceed extends Enum {1650 interface EvmCoreErrorExitSucceed extends Enum {
1435 readonly isStopped: boolean;1651 readonly isStopped: boolean;
1436 readonly isReturned: boolean;1652 readonly isReturned: boolean;
1437 readonly isSuicided: boolean;1653 readonly isSuicided: boolean;
1438 readonly type: 'Stopped' | 'Returned' | 'Suicided';1654 readonly type: 'Stopped' | 'Returned' | 'Suicided';
1439 }1655 }
14401656
1441 /** @name EvmCoreErrorExitError (113) */1657 /** @name EvmCoreErrorExitError (131) */
1442 interface EvmCoreErrorExitError extends Enum {1658 interface EvmCoreErrorExitError extends Enum {
1443 readonly isStackUnderflow: boolean;1659 readonly isStackUnderflow: boolean;
1444 readonly isStackOverflow: boolean;1660 readonly isStackOverflow: boolean;
1460 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1676 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
1461 }1677 }
14621678
1463 /** @name EvmCoreErrorExitRevert (117) */1679 /** @name EvmCoreErrorExitRevert (135) */
1464 interface EvmCoreErrorExitRevert extends Enum {1680 interface EvmCoreErrorExitRevert extends Enum {
1465 readonly isReverted: boolean;1681 readonly isReverted: boolean;
1466 readonly type: 'Reverted';1682 readonly type: 'Reverted';
1467 }1683 }
14681684
1469 /** @name EvmCoreErrorExitFatal (118) */1685 /** @name EvmCoreErrorExitFatal (136) */
1470 interface EvmCoreErrorExitFatal extends Enum {1686 interface EvmCoreErrorExitFatal extends Enum {
1471 readonly isNotSupported: boolean;1687 readonly isNotSupported: boolean;
1472 readonly isUnhandledInterrupt: boolean;1688 readonly isUnhandledInterrupt: boolean;
1477 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1693 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
1478 }1694 }
14791695
1480 /** @name PalletEvmContractHelpersEvent (119) */1696 /** @name PalletEvmContractHelpersEvent (137) */
1481 interface PalletEvmContractHelpersEvent extends Enum {1697 interface PalletEvmContractHelpersEvent extends Enum {
1482 readonly isContractSponsorSet: boolean;1698 readonly isContractSponsorSet: boolean;
1483 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1699 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
1488 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1704 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
1489 }1705 }
14901706
1491 /** @name PalletEvmMigrationEvent (120) */1707 /** @name PalletEvmMigrationEvent (138) */
1492 interface PalletEvmMigrationEvent extends Enum {1708 interface PalletEvmMigrationEvent extends Enum {
1493 readonly isTestEvent: boolean;1709 readonly isTestEvent: boolean;
1494 readonly type: 'TestEvent';1710 readonly type: 'TestEvent';
1495 }1711 }
14961712
1497 /** @name PalletMaintenanceEvent (121) */1713 /** @name PalletMaintenanceEvent (139) */
1498 interface PalletMaintenanceEvent extends Enum {1714 interface PalletMaintenanceEvent extends Enum {
1499 readonly isMaintenanceEnabled: boolean;1715 readonly isMaintenanceEnabled: boolean;
1500 readonly isMaintenanceDisabled: boolean;1716 readonly isMaintenanceDisabled: boolean;
1501 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1717 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';
1502 }1718 }
15031719
1504 /** @name PalletTestUtilsEvent (122) */1720 /** @name PalletTestUtilsEvent (140) */
1505 interface PalletTestUtilsEvent extends Enum {1721 interface PalletTestUtilsEvent extends Enum {
1506 readonly isValueIsSet: boolean;1722 readonly isValueIsSet: boolean;
1507 readonly isShouldRollback: boolean;1723 readonly isShouldRollback: boolean;
1508 readonly isBatchCompleted: boolean;1724 readonly isBatchCompleted: boolean;
1509 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1725 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';
1510 }1726 }
15111727
1512 /** @name FrameSystemPhase (123) */1728 /** @name FrameSystemPhase (141) */
1513 interface FrameSystemPhase extends Enum {1729 interface FrameSystemPhase extends Enum {
1514 readonly isApplyExtrinsic: boolean;1730 readonly isApplyExtrinsic: boolean;
1515 readonly asApplyExtrinsic: u32;1731 readonly asApplyExtrinsic: u32;
1518 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1734 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
1519 }1735 }
15201736
1521 /** @name FrameSystemLastRuntimeUpgradeInfo (126) */1737 /** @name FrameSystemLastRuntimeUpgradeInfo (144) */
1522 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1738 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
1523 readonly specVersion: Compact<u32>;1739 readonly specVersion: Compact<u32>;
1524 readonly specName: Text;1740 readonly specName: Text;
1525 }1741 }
15261742
1527 /** @name FrameSystemCall (127) */1743 /** @name FrameSystemCall (145) */
1528 interface FrameSystemCall extends Enum {1744 interface FrameSystemCall extends Enum {
1529 readonly isRemark: boolean;1745 readonly isRemark: boolean;
1530 readonly asRemark: {1746 readonly asRemark: {
1562 readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1778 readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
1563 }1779 }
15641780
1565 /** @name FrameSystemLimitsBlockWeights (131) */1781 /** @name FrameSystemLimitsBlockWeights (149) */
1566 interface FrameSystemLimitsBlockWeights extends Struct {1782 interface FrameSystemLimitsBlockWeights extends Struct {
1567 readonly baseBlock: SpWeightsWeightV2Weight;1783 readonly baseBlock: SpWeightsWeightV2Weight;
1568 readonly maxBlock: SpWeightsWeightV2Weight;1784 readonly maxBlock: SpWeightsWeightV2Weight;
1569 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1785 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
1570 }1786 }
15711787
1572 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (132) */1788 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (150) */
1573 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1789 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
1574 readonly normal: FrameSystemLimitsWeightsPerClass;1790 readonly normal: FrameSystemLimitsWeightsPerClass;
1575 readonly operational: FrameSystemLimitsWeightsPerClass;1791 readonly operational: FrameSystemLimitsWeightsPerClass;
1576 readonly mandatory: FrameSystemLimitsWeightsPerClass;1792 readonly mandatory: FrameSystemLimitsWeightsPerClass;
1577 }1793 }
15781794
1579 /** @name FrameSystemLimitsWeightsPerClass (133) */1795 /** @name FrameSystemLimitsWeightsPerClass (151) */
1580 interface FrameSystemLimitsWeightsPerClass extends Struct {1796 interface FrameSystemLimitsWeightsPerClass extends Struct {
1581 readonly baseExtrinsic: SpWeightsWeightV2Weight;1797 readonly baseExtrinsic: SpWeightsWeightV2Weight;
1582 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1798 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
1583 readonly maxTotal: Option<SpWeightsWeightV2Weight>;1799 readonly maxTotal: Option<SpWeightsWeightV2Weight>;
1584 readonly reserved: Option<SpWeightsWeightV2Weight>;1800 readonly reserved: Option<SpWeightsWeightV2Weight>;
1585 }1801 }
15861802
1587 /** @name FrameSystemLimitsBlockLength (135) */1803 /** @name FrameSystemLimitsBlockLength (153) */
1588 interface FrameSystemLimitsBlockLength extends Struct {1804 interface FrameSystemLimitsBlockLength extends Struct {
1589 readonly max: FrameSupportDispatchPerDispatchClassU32;1805 readonly max: FrameSupportDispatchPerDispatchClassU32;
1590 }1806 }
15911807
1592 /** @name FrameSupportDispatchPerDispatchClassU32 (136) */1808 /** @name FrameSupportDispatchPerDispatchClassU32 (154) */
1593 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1809 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
1594 readonly normal: u32;1810 readonly normal: u32;
1595 readonly operational: u32;1811 readonly operational: u32;
1596 readonly mandatory: u32;1812 readonly mandatory: u32;
1597 }1813 }
15981814
1599 /** @name SpWeightsRuntimeDbWeight (137) */1815 /** @name SpWeightsRuntimeDbWeight (155) */
1600 interface SpWeightsRuntimeDbWeight extends Struct {1816 interface SpWeightsRuntimeDbWeight extends Struct {
1601 readonly read: u64;1817 readonly read: u64;
1602 readonly write: u64;1818 readonly write: u64;
1603 }1819 }
16041820
1605 /** @name SpVersionRuntimeVersion (138) */1821 /** @name SpVersionRuntimeVersion (156) */
1606 interface SpVersionRuntimeVersion extends Struct {1822 interface SpVersionRuntimeVersion extends Struct {
1607 readonly specName: Text;1823 readonly specName: Text;
1608 readonly implName: Text;1824 readonly implName: Text;
1614 readonly stateVersion: u8;1830 readonly stateVersion: u8;
1615 }1831 }
16161832
1617 /** @name FrameSystemError (143) */1833 /** @name FrameSystemError (161) */
1618 interface FrameSystemError extends Enum {1834 interface FrameSystemError extends Enum {
1619 readonly isInvalidSpecName: boolean;1835 readonly isInvalidSpecName: boolean;
1620 readonly isSpecVersionNeedsToIncrease: boolean;1836 readonly isSpecVersionNeedsToIncrease: boolean;
1625 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1841 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
1626 }1842 }
16271843
1628 /** @name PolkadotPrimitivesV2PersistedValidationData (144) */1844 /** @name PolkadotPrimitivesV2PersistedValidationData (162) */
1629 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1845 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
1630 readonly parentHead: Bytes;1846 readonly parentHead: Bytes;
1631 readonly relayParentNumber: u32;1847 readonly relayParentNumber: u32;
1632 readonly relayParentStorageRoot: H256;1848 readonly relayParentStorageRoot: H256;
1633 readonly maxPovSize: u32;1849 readonly maxPovSize: u32;
1634 }1850 }
16351851
1636 /** @name PolkadotPrimitivesV2UpgradeRestriction (147) */1852 /** @name PolkadotPrimitivesV2UpgradeRestriction (165) */
1637 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1853 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
1638 readonly isPresent: boolean;1854 readonly isPresent: boolean;
1639 readonly type: 'Present';1855 readonly type: 'Present';
1640 }1856 }
16411857
1642 /** @name SpTrieStorageProof (148) */1858 /** @name SpTrieStorageProof (166) */
1643 interface SpTrieStorageProof extends Struct {1859 interface SpTrieStorageProof extends Struct {
1644 readonly trieNodes: BTreeSet<Bytes>;1860 readonly trieNodes: BTreeSet<Bytes>;
1645 }1861 }
16461862
1647 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (150) */1863 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (168) */
1648 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1864 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
1649 readonly dmqMqcHead: H256;1865 readonly dmqMqcHead: H256;
1650 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1866 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
1651 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1867 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
1652 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1868 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
1653 }1869 }
16541870
1655 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (153) */1871 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (171) */
1656 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1872 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
1657 readonly maxCapacity: u32;1873 readonly maxCapacity: u32;
1658 readonly maxTotalSize: u32;1874 readonly maxTotalSize: u32;
1662 readonly mqcHead: Option<H256>;1878 readonly mqcHead: Option<H256>;
1663 }1879 }
16641880
1665 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (154) */1881 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (173) */
1666 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1882 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
1667 readonly maxCodeSize: u32;1883 readonly maxCodeSize: u32;
1668 readonly maxHeadDataSize: u32;1884 readonly maxHeadDataSize: u32;
1675 readonly validationUpgradeDelay: u32;1891 readonly validationUpgradeDelay: u32;
1676 }1892 }
16771893
1678 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (160) */1894 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (179) */
1679 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1895 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
1680 readonly recipient: u32;1896 readonly recipient: u32;
1681 readonly data: Bytes;1897 readonly data: Bytes;
1682 }1898 }
16831899
1684 /** @name CumulusPalletParachainSystemCall (161) */1900 /** @name CumulusPalletParachainSystemCall (180) */
1685 interface CumulusPalletParachainSystemCall extends Enum {1901 interface CumulusPalletParachainSystemCall extends Enum {
1686 readonly isSetValidationData: boolean;1902 readonly isSetValidationData: boolean;
1687 readonly asSetValidationData: {1903 readonly asSetValidationData: {
1702 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1918 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
1703 }1919 }
17041920
1705 /** @name CumulusPrimitivesParachainInherentParachainInherentData (162) */1921 /** @name CumulusPrimitivesParachainInherentParachainInherentData (181) */
1706 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1922 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
1707 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1923 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
1708 readonly relayChainState: SpTrieStorageProof;1924 readonly relayChainState: SpTrieStorageProof;
1709 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1925 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;
1710 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1926 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
1711 }1927 }
17121928
1713 /** @name PolkadotCorePrimitivesInboundDownwardMessage (164) */1929 /** @name PolkadotCorePrimitivesInboundDownwardMessage (183) */
1714 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1930 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
1715 readonly sentAt: u32;1931 readonly sentAt: u32;
1716 readonly msg: Bytes;1932 readonly msg: Bytes;
1717 }1933 }
17181934
1719 /** @name PolkadotCorePrimitivesInboundHrmpMessage (167) */1935 /** @name PolkadotCorePrimitivesInboundHrmpMessage (186) */
1720 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1936 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
1721 readonly sentAt: u32;1937 readonly sentAt: u32;
1722 readonly data: Bytes;1938 readonly data: Bytes;
1723 }1939 }
17241940
1725 /** @name CumulusPalletParachainSystemError (170) */1941 /** @name CumulusPalletParachainSystemError (189) */
1726 interface CumulusPalletParachainSystemError extends Enum {1942 interface CumulusPalletParachainSystemError extends Enum {
1727 readonly isOverlappingUpgrades: boolean;1943 readonly isOverlappingUpgrades: boolean;
1728 readonly isProhibitedByPolkadot: boolean;1944 readonly isProhibitedByPolkadot: boolean;
1735 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1951 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';
1736 }1952 }
17371953
1738 /** @name PalletAuthorshipUncleEntryItem (172) */1954 /** @name ParachainInfoCall (190) */
1739 interface PalletAuthorshipUncleEntryItem extends Enum {1955 type ParachainInfoCall = Null;
1740 readonly isInclusionHeight: boolean;
1741 readonly asInclusionHeight: u32;
1742 readonly isUncle: boolean;
1743 readonly asUncle: ITuple<[H256, Option<AccountId32>]>;
1744 readonly type: 'InclusionHeight' | 'Uncle';
1745 }
17461956
1747 /** @name PalletAuthorshipCall (174) */1957 /** @name PalletCollatorSelectionCall (193) */
1748 interface PalletAuthorshipCall extends Enum {
1749 readonly isSetUncles: boolean;
1750 readonly asSetUncles: {
1751 readonly newUncles: Vec<SpRuntimeHeader>;
1752 } & Struct;
1753 readonly type: 'SetUncles';
1754 }
1755
1756 /** @name SpRuntimeHeader (176) */
1757 interface SpRuntimeHeader extends Struct {
1758 readonly parentHash: H256;
1759 readonly number: Compact<u32>;
1760 readonly stateRoot: H256;
1761 readonly extrinsicsRoot: H256;
1762 readonly digest: SpRuntimeDigest;
1763 }
1764
1765 /** @name SpRuntimeBlakeTwo256 (177) */
1766 type SpRuntimeBlakeTwo256 = Null;
1767
1768 /** @name PalletAuthorshipError (178) */
1769 interface PalletAuthorshipError extends Enum {
1770 readonly isInvalidUncleParent: boolean;
1771 readonly isUnclesAlreadySet: boolean;
1772 readonly isTooManyUncles: boolean;
1773 readonly isGenesisUncle: boolean;
1774 readonly isTooHighUncle: boolean;
1775 readonly isUncleAlreadyIncluded: boolean;
1776 readonly isOldUncle: boolean;
1777 readonly type: 'InvalidUncleParent' | 'UnclesAlreadySet' | 'TooManyUncles' | 'GenesisUncle' | 'TooHighUncle' | 'UncleAlreadyIncluded' | 'OldUncle';
1778 }
1779
1780 /** @name PalletCollatorSelectionCall (181) */
1781 interface PalletCollatorSelectionCall extends Enum {1958 interface PalletCollatorSelectionCall extends Enum {
1782 readonly isAddInvulnerable: boolean;1959 readonly isAddInvulnerable: boolean;
1783 readonly asAddInvulnerable: {1960 readonly asAddInvulnerable: {
1798 readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceReleaseLicense';1975 readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceReleaseLicense';
1799 }1976 }
18001977
1801 /** @name PalletCollatorSelectionError (182) */1978 /** @name PalletCollatorSelectionError (194) */
1802 interface PalletCollatorSelectionError extends Enum {1979 interface PalletCollatorSelectionError extends Enum {
1803 readonly isTooManyCandidates: boolean;1980 readonly isTooManyCandidates: boolean;
1804 readonly isUnknown: boolean;1981 readonly isUnknown: boolean;
1816 readonly type: 'TooManyCandidates' | 'Unknown' | 'Permission' | 'AlreadyHoldingLicense' | 'NoLicense' | 'AlreadyCandidate' | 'NotCandidate' | 'TooManyInvulnerables' | 'TooFewInvulnerables' | 'AlreadyInvulnerable' | 'NotInvulnerable' | 'NoAssociatedValidatorId' | 'ValidatorNotRegistered';1993 readonly type: 'TooManyCandidates' | 'Unknown' | 'Permission' | 'AlreadyHoldingLicense' | 'NoLicense' | 'AlreadyCandidate' | 'NotCandidate' | 'TooManyInvulnerables' | 'TooFewInvulnerables' | 'AlreadyInvulnerable' | 'NotInvulnerable' | 'NoAssociatedValidatorId' | 'ValidatorNotRegistered';
1817 }1994 }
18181995
1819 /** @name OpalRuntimeRuntimeCommonSessionKeys (185) */1996 /** @name OpalRuntimeRuntimeCommonSessionKeys (197) */
1820 interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {1997 interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {
1821 readonly aura: SpConsensusAuraSr25519AppSr25519Public;1998 readonly aura: SpConsensusAuraSr25519AppSr25519Public;
1822 }1999 }
18232000
1824 /** @name SpConsensusAuraSr25519AppSr25519Public (186) */2001 /** @name SpConsensusAuraSr25519AppSr25519Public (198) */
1825 interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}2002 interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}
18262003
1827 /** @name SpCoreSr25519Public (187) */2004 /** @name SpCoreSr25519Public (199) */
1828 interface SpCoreSr25519Public extends U8aFixed {}2005 interface SpCoreSr25519Public extends U8aFixed {}
18292006
1830 /** @name SpCoreCryptoKeyTypeId (190) */2007 /** @name SpCoreCryptoKeyTypeId (202) */
1831 interface SpCoreCryptoKeyTypeId extends U8aFixed {}2008 interface SpCoreCryptoKeyTypeId extends U8aFixed {}
18322009
1833 /** @name PalletSessionCall (191) */2010 /** @name PalletSessionCall (203) */
1834 interface PalletSessionCall extends Enum {2011 interface PalletSessionCall extends Enum {
1835 readonly isSetKeys: boolean;2012 readonly isSetKeys: boolean;
1836 readonly asSetKeys: {2013 readonly asSetKeys: {
1841 readonly type: 'SetKeys' | 'PurgeKeys';2018 readonly type: 'SetKeys' | 'PurgeKeys';
1842 }2019 }
18432020
1844 /** @name PalletSessionError (192) */2021 /** @name PalletSessionError (204) */
1845 interface PalletSessionError extends Enum {2022 interface PalletSessionError extends Enum {
1846 readonly isInvalidProof: boolean;2023 readonly isInvalidProof: boolean;
1847 readonly isNoAssociatedValidatorId: boolean;2024 readonly isNoAssociatedValidatorId: boolean;
1851 readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';2028 readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
1852 }2029 }
18532030
1854 /** @name PalletBalancesBalanceLock (194) */2031 /** @name PalletBalancesBalanceLock (209) */
1855 interface PalletBalancesBalanceLock extends Struct {2032 interface PalletBalancesBalanceLock extends Struct {
1856 readonly id: U8aFixed;2033 readonly id: U8aFixed;
1857 readonly amount: u128;2034 readonly amount: u128;
1858 readonly reasons: PalletBalancesReasons;2035 readonly reasons: PalletBalancesReasons;
1859 }2036 }
18602037
1861 /** @name PalletBalancesReasons (195) */2038 /** @name PalletBalancesReasons (210) */
1862 interface PalletBalancesReasons extends Enum {2039 interface PalletBalancesReasons extends Enum {
1863 readonly isFee: boolean;2040 readonly isFee: boolean;
1864 readonly isMisc: boolean;2041 readonly isMisc: boolean;
1865 readonly isAll: boolean;2042 readonly isAll: boolean;
1866 readonly type: 'Fee' | 'Misc' | 'All';2043 readonly type: 'Fee' | 'Misc' | 'All';
1867 }2044 }
18682045
1869 /** @name PalletBalancesReserveData (198) */2046 /** @name PalletBalancesReserveData (213) */
1870 interface PalletBalancesReserveData extends Struct {2047 interface PalletBalancesReserveData extends Struct {
1871 readonly id: U8aFixed;2048 readonly id: U8aFixed;
1872 readonly amount: u128;2049 readonly amount: u128;
1873 }2050 }
18742051
1875 /** @name PalletBalancesCall (200) */2052 /** @name PalletBalancesCall (215) */
1876 interface PalletBalancesCall extends Enum {2053 interface PalletBalancesCall extends Enum {
1877 readonly isTransfer: boolean;2054 readonly isTransfer: boolean;
1878 readonly asTransfer: {2055 readonly asTransfer: {
1909 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';2086 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
1910 }2087 }
19112088
1912 /** @name PalletBalancesError (203) */2089 /** @name PalletBalancesError (218) */
1913 interface PalletBalancesError extends Enum {2090 interface PalletBalancesError extends Enum {
1914 readonly isVestingBalance: boolean;2091 readonly isVestingBalance: boolean;
1915 readonly isLiquidityRestrictions: boolean;2092 readonly isLiquidityRestrictions: boolean;
1922 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';2099 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
1923 }2100 }
19242101
1925 /** @name PalletTimestampCall (205) */2102 /** @name PalletTimestampCall (219) */
1926 interface PalletTimestampCall extends Enum {2103 interface PalletTimestampCall extends Enum {
1927 readonly isSet: boolean;2104 readonly isSet: boolean;
1928 readonly asSet: {2105 readonly asSet: {
1931 readonly type: 'Set';2108 readonly type: 'Set';
1932 }2109 }
19332110
1934 /** @name PalletTransactionPaymentReleases (207) */2111 /** @name PalletTransactionPaymentReleases (221) */
1935 interface PalletTransactionPaymentReleases extends Enum {2112 interface PalletTransactionPaymentReleases extends Enum {
1936 readonly isV1Ancient: boolean;2113 readonly isV1Ancient: boolean;
1937 readonly isV2: boolean;2114 readonly isV2: boolean;
1938 readonly type: 'V1Ancient' | 'V2';2115 readonly type: 'V1Ancient' | 'V2';
1939 }2116 }
19402117
1941 /** @name PalletTreasuryProposal (208) */2118 /** @name PalletTreasuryProposal (222) */
1942 interface PalletTreasuryProposal extends Struct {2119 interface PalletTreasuryProposal extends Struct {
1943 readonly proposer: AccountId32;2120 readonly proposer: AccountId32;
1944 readonly value: u128;2121 readonly value: u128;
1945 readonly beneficiary: AccountId32;2122 readonly beneficiary: AccountId32;
1946 readonly bond: u128;2123 readonly bond: u128;
1947 }2124 }
19482125
1949 /** @name PalletTreasuryCall (210) */2126 /** @name PalletTreasuryCall (224) */
1950 interface PalletTreasuryCall extends Enum {2127 interface PalletTreasuryCall extends Enum {
1951 readonly isProposeSpend: boolean;2128 readonly isProposeSpend: boolean;
1952 readonly asProposeSpend: {2129 readonly asProposeSpend: {
1973 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';2150 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';
1974 }2151 }
19752152
1976 /** @name FrameSupportPalletId (212) */2153 /** @name FrameSupportPalletId (226) */
1977 interface FrameSupportPalletId extends U8aFixed {}2154 interface FrameSupportPalletId extends U8aFixed {}
19782155
1979 /** @name PalletTreasuryError (213) */2156 /** @name PalletTreasuryError (227) */
1980 interface PalletTreasuryError extends Enum {2157 interface PalletTreasuryError extends Enum {
1981 readonly isInsufficientProposersBalance: boolean;2158 readonly isInsufficientProposersBalance: boolean;
1982 readonly isInvalidIndex: boolean;2159 readonly isInvalidIndex: boolean;
1986 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';2163 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';
1987 }2164 }
19882165
1989 /** @name PalletSudoCall (214) */2166 /** @name PalletSudoCall (228) */
1990 interface PalletSudoCall extends Enum {2167 interface PalletSudoCall extends Enum {
1991 readonly isSudo: boolean;2168 readonly isSudo: boolean;
1992 readonly asSudo: {2169 readonly asSudo: {
2009 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';2186 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
2010 }2187 }
20112188
2012 /** @name OrmlVestingModuleCall (216) */2189 /** @name OrmlVestingModuleCall (230) */
2013 interface OrmlVestingModuleCall extends Enum {2190 interface OrmlVestingModuleCall extends Enum {
2014 readonly isClaim: boolean;2191 readonly isClaim: boolean;
2015 readonly isVestedTransfer: boolean;2192 readonly isVestedTransfer: boolean;
2029 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';2206 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
2030 }2207 }
20312208
2032 /** @name OrmlXtokensModuleCall (218) */2209 /** @name OrmlXtokensModuleCall (232) */
2033 interface OrmlXtokensModuleCall extends Enum {2210 interface OrmlXtokensModuleCall extends Enum {
2034 readonly isTransfer: boolean;2211 readonly isTransfer: boolean;
2035 readonly asTransfer: {2212 readonly asTransfer: {
2036 readonly currencyId: PalletForeignAssetsAssetIds;2213 readonly currencyId: PalletForeignAssetsAssetIds;
2037 readonly amount: u128;2214 readonly amount: u128;
2038 readonly dest: XcmVersionedMultiLocation;2215 readonly dest: XcmVersionedMultiLocation;
2039 readonly destWeightLimit: XcmV2WeightLimit;2216 readonly destWeightLimit: XcmV3WeightLimit;
2040 } & Struct;2217 } & Struct;
2041 readonly isTransferMultiasset: boolean;2218 readonly isTransferMultiasset: boolean;
2042 readonly asTransferMultiasset: {2219 readonly asTransferMultiasset: {
2043 readonly asset: XcmVersionedMultiAsset;2220 readonly asset: XcmVersionedMultiAsset;
2044 readonly dest: XcmVersionedMultiLocation;2221 readonly dest: XcmVersionedMultiLocation;
2045 readonly destWeightLimit: XcmV2WeightLimit;2222 readonly destWeightLimit: XcmV3WeightLimit;
2046 } & Struct;2223 } & Struct;
2047 readonly isTransferWithFee: boolean;2224 readonly isTransferWithFee: boolean;
2048 readonly asTransferWithFee: {2225 readonly asTransferWithFee: {
2049 readonly currencyId: PalletForeignAssetsAssetIds;2226 readonly currencyId: PalletForeignAssetsAssetIds;
2050 readonly amount: u128;2227 readonly amount: u128;
2051 readonly fee: u128;2228 readonly fee: u128;
2052 readonly dest: XcmVersionedMultiLocation;2229 readonly dest: XcmVersionedMultiLocation;
2053 readonly destWeightLimit: XcmV2WeightLimit;2230 readonly destWeightLimit: XcmV3WeightLimit;
2054 } & Struct;2231 } & Struct;
2055 readonly isTransferMultiassetWithFee: boolean;2232 readonly isTransferMultiassetWithFee: boolean;
2056 readonly asTransferMultiassetWithFee: {2233 readonly asTransferMultiassetWithFee: {
2057 readonly asset: XcmVersionedMultiAsset;2234 readonly asset: XcmVersionedMultiAsset;
2058 readonly fee: XcmVersionedMultiAsset;2235 readonly fee: XcmVersionedMultiAsset;
2059 readonly dest: XcmVersionedMultiLocation;2236 readonly dest: XcmVersionedMultiLocation;
2060 readonly destWeightLimit: XcmV2WeightLimit;2237 readonly destWeightLimit: XcmV3WeightLimit;
2061 } & Struct;2238 } & Struct;
2062 readonly isTransferMulticurrencies: boolean;2239 readonly isTransferMulticurrencies: boolean;
2063 readonly asTransferMulticurrencies: {2240 readonly asTransferMulticurrencies: {
2064 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;2241 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;
2065 readonly feeItem: u32;2242 readonly feeItem: u32;
2066 readonly dest: XcmVersionedMultiLocation;2243 readonly dest: XcmVersionedMultiLocation;
2067 readonly destWeightLimit: XcmV2WeightLimit;2244 readonly destWeightLimit: XcmV3WeightLimit;
2068 } & Struct;2245 } & Struct;
2069 readonly isTransferMultiassets: boolean;2246 readonly isTransferMultiassets: boolean;
2070 readonly asTransferMultiassets: {2247 readonly asTransferMultiassets: {
2071 readonly assets: XcmVersionedMultiAssets;2248 readonly assets: XcmVersionedMultiAssets;
2072 readonly feeItem: u32;2249 readonly feeItem: u32;
2073 readonly dest: XcmVersionedMultiLocation;2250 readonly dest: XcmVersionedMultiLocation;
2074 readonly destWeightLimit: XcmV2WeightLimit;2251 readonly destWeightLimit: XcmV3WeightLimit;
2075 } & Struct;2252 } & Struct;
2076 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';2253 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
2077 }2254 }
20782255
2079 /** @name XcmVersionedMultiAsset (219) */2256 /** @name XcmVersionedMultiAsset (233) */
2080 interface XcmVersionedMultiAsset extends Enum {2257 interface XcmVersionedMultiAsset extends Enum {
2081 readonly isV0: boolean;2258 readonly isV2: boolean;
2082 readonly asV0: XcmV0MultiAsset;2259 readonly asV2: XcmV2MultiAsset;
2083 readonly isV1: boolean;2260 readonly isV3: boolean;
2084 readonly asV1: XcmV1MultiAsset;2261 readonly asV3: XcmV3MultiAsset;
2085 readonly type: 'V0' | 'V1';2262 readonly type: 'V2' | 'V3';
2086 }2263 }
20872264
2088 /** @name OrmlTokensModuleCall (222) */2265 /** @name OrmlTokensModuleCall (236) */
2089 interface OrmlTokensModuleCall extends Enum {2266 interface OrmlTokensModuleCall extends Enum {
2090 readonly isTransfer: boolean;2267 readonly isTransfer: boolean;
2091 readonly asTransfer: {2268 readonly asTransfer: {
2122 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';2299 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';
2123 }2300 }
21242301
2125 /** @name PalletIdentityCall (223) */2302 /** @name PalletIdentityCall (237) */
2126 interface PalletIdentityCall extends Enum {2303 interface PalletIdentityCall extends Enum {
2127 readonly isAddRegistrar: boolean;2304 readonly isAddRegistrar: boolean;
2128 readonly asAddRegistrar: {2305 readonly asAddRegistrar: {
2202 readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'ForceInsertIdentities' | 'ForceRemoveIdentities' | 'ForceSetSubs';2379 readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'ForceInsertIdentities' | 'ForceRemoveIdentities' | 'ForceSetSubs';
2203 }2380 }
22042381
2205 /** @name PalletIdentityIdentityInfo (224) */2382 /** @name PalletIdentityIdentityInfo (238) */
2206 interface PalletIdentityIdentityInfo extends Struct {2383 interface PalletIdentityIdentityInfo extends Struct {
2207 readonly additional: Vec<ITuple<[Data, Data]>>;2384 readonly additional: Vec<ITuple<[Data, Data]>>;
2208 readonly display: Data;2385 readonly display: Data;
2215 readonly twitter: Data;2392 readonly twitter: Data;
2216 }2393 }
22172394
2218 /** @name PalletIdentityBitFlags (260) */2395 /** @name PalletIdentityBitFlags (274) */
2219 interface PalletIdentityBitFlags extends Set {2396 interface PalletIdentityBitFlags extends Set {
2220 readonly isDisplay: boolean;2397 readonly isDisplay: boolean;
2221 readonly isLegal: boolean;2398 readonly isLegal: boolean;
2227 readonly isTwitter: boolean;2404 readonly isTwitter: boolean;
2228 }2405 }
22292406
2230 /** @name PalletIdentityIdentityField (261) */2407 /** @name PalletIdentityIdentityField (275) */
2231 interface PalletIdentityIdentityField extends Enum {2408 interface PalletIdentityIdentityField extends Enum {
2232 readonly isDisplay: boolean;2409 readonly isDisplay: boolean;
2233 readonly isLegal: boolean;2410 readonly isLegal: boolean;
2240 readonly type: 'Display' | 'Legal' | 'Web' | 'Riot' | 'Email' | 'PgpFingerprint' | 'Image' | 'Twitter';2417 readonly type: 'Display' | 'Legal' | 'Web' | 'Riot' | 'Email' | 'PgpFingerprint' | 'Image' | 'Twitter';
2241 }2418 }
22422419
2243 /** @name PalletIdentityJudgement (262) */2420 /** @name PalletIdentityJudgement (276) */
2244 interface PalletIdentityJudgement extends Enum {2421 interface PalletIdentityJudgement extends Enum {
2245 readonly isUnknown: boolean;2422 readonly isUnknown: boolean;
2246 readonly isFeePaid: boolean;2423 readonly isFeePaid: boolean;
2253 readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';2430 readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';
2254 }2431 }
22552432
2256 /** @name PalletIdentityRegistration (265) */2433 /** @name PalletIdentityRegistration (279) */
2257 interface PalletIdentityRegistration extends Struct {2434 interface PalletIdentityRegistration extends Struct {
2258 readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;2435 readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;
2259 readonly deposit: u128;2436 readonly deposit: u128;
2260 readonly info: PalletIdentityIdentityInfo;2437 readonly info: PalletIdentityIdentityInfo;
2261 }2438 }
22622439
2263 /** @name PalletPreimageCall (273) */2440 /** @name PalletPreimageCall (287) */
2264 interface PalletPreimageCall extends Enum {2441 interface PalletPreimageCall extends Enum {
2265 readonly isNotePreimage: boolean;2442 readonly isNotePreimage: boolean;
2266 readonly asNotePreimage: {2443 readonly asNotePreimage: {
2281 readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage';2458 readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage';
2282 }2459 }
22832460
2284 /** @name CumulusPalletXcmpQueueCall (274) */2461 /** @name CumulusPalletXcmpQueueCall (288) */
2285 interface CumulusPalletXcmpQueueCall extends Enum {2462 interface CumulusPalletXcmpQueueCall extends Enum {
2286 readonly isServiceOverweight: boolean;2463 readonly isServiceOverweight: boolean;
2287 readonly asServiceOverweight: {2464 readonly asServiceOverweight: {
2288 readonly index: u64;2465 readonly index: u64;
2289 readonly weightLimit: u64;2466 readonly weightLimit: SpWeightsWeightV2Weight;
2290 } & Struct;2467 } & Struct;
2291 readonly isSuspendXcmExecution: boolean;2468 readonly isSuspendXcmExecution: boolean;
2292 readonly isResumeXcmExecution: boolean;2469 readonly isResumeXcmExecution: boolean;
2304 } & Struct;2481 } & Struct;
2305 readonly isUpdateThresholdWeight: boolean;2482 readonly isUpdateThresholdWeight: boolean;
2306 readonly asUpdateThresholdWeight: {2483 readonly asUpdateThresholdWeight: {
2307 readonly new_: u64;2484 readonly new_: SpWeightsWeightV2Weight;
2308 } & Struct;2485 } & Struct;
2309 readonly isUpdateWeightRestrictDecay: boolean;2486 readonly isUpdateWeightRestrictDecay: boolean;
2310 readonly asUpdateWeightRestrictDecay: {2487 readonly asUpdateWeightRestrictDecay: {
2311 readonly new_: u64;2488 readonly new_: SpWeightsWeightV2Weight;
2312 } & Struct;2489 } & Struct;
2313 readonly isUpdateXcmpMaxIndividualWeight: boolean;2490 readonly isUpdateXcmpMaxIndividualWeight: boolean;
2314 readonly asUpdateXcmpMaxIndividualWeight: {2491 readonly asUpdateXcmpMaxIndividualWeight: {
2315 readonly new_: u64;2492 readonly new_: SpWeightsWeightV2Weight;
2316 } & Struct;2493 } & Struct;
2317 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2494 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
2318 }2495 }
23192496
2320 /** @name PalletXcmCall (275) */2497 /** @name PalletXcmCall (289) */
2321 interface PalletXcmCall extends Enum {2498 interface PalletXcmCall extends Enum {
2322 readonly isSend: boolean;2499 readonly isSend: boolean;
2323 readonly asSend: {2500 readonly asSend: {
2341 readonly isExecute: boolean;2518 readonly isExecute: boolean;
2342 readonly asExecute: {2519 readonly asExecute: {
2343 readonly message: XcmVersionedXcm;2520 readonly message: XcmVersionedXcm;
2344 readonly maxWeight: u64;2521 readonly maxWeight: SpWeightsWeightV2Weight;
2345 } & Struct;2522 } & Struct;
2346 readonly isForceXcmVersion: boolean;2523 readonly isForceXcmVersion: boolean;
2347 readonly asForceXcmVersion: {2524 readonly asForceXcmVersion: {
2348 readonly location: XcmV1MultiLocation;2525 readonly location: XcmV3MultiLocation;
2349 readonly xcmVersion: u32;2526 readonly xcmVersion: u32;
2350 } & Struct;2527 } & Struct;
2351 readonly isForceDefaultXcmVersion: boolean;2528 readonly isForceDefaultXcmVersion: boolean;
2366 readonly beneficiary: XcmVersionedMultiLocation;2543 readonly beneficiary: XcmVersionedMultiLocation;
2367 readonly assets: XcmVersionedMultiAssets;2544 readonly assets: XcmVersionedMultiAssets;
2368 readonly feeAssetItem: u32;2545 readonly feeAssetItem: u32;
2369 readonly weightLimit: XcmV2WeightLimit;2546 readonly weightLimit: XcmV3WeightLimit;
2370 } & Struct;2547 } & Struct;
2371 readonly isLimitedTeleportAssets: boolean;2548 readonly isLimitedTeleportAssets: boolean;
2372 readonly asLimitedTeleportAssets: {2549 readonly asLimitedTeleportAssets: {
2373 readonly dest: XcmVersionedMultiLocation;2550 readonly dest: XcmVersionedMultiLocation;
2374 readonly beneficiary: XcmVersionedMultiLocation;2551 readonly beneficiary: XcmVersionedMultiLocation;
2375 readonly assets: XcmVersionedMultiAssets;2552 readonly assets: XcmVersionedMultiAssets;
2376 readonly feeAssetItem: u32;2553 readonly feeAssetItem: u32;
2377 readonly weightLimit: XcmV2WeightLimit;2554 readonly weightLimit: XcmV3WeightLimit;
2378 } & Struct;2555 } & Struct;
2379 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2556 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
2380 }2557 }
23812558
2382 /** @name XcmVersionedXcm (276) */2559 /** @name XcmVersionedXcm (290) */
2383 interface XcmVersionedXcm extends Enum {2560 interface XcmVersionedXcm extends Enum {
2384 readonly isV0: boolean;
2385 readonly asV0: XcmV0Xcm;
2386 readonly isV1: boolean;
2387 readonly asV1: XcmV1Xcm;
2388 readonly isV2: boolean;2561 readonly isV2: boolean;
2389 readonly asV2: XcmV2Xcm;2562 readonly asV2: XcmV2Xcm;
2390 readonly type: 'V0' | 'V1' | 'V2';2563 readonly isV3: boolean;
2564 readonly asV3: XcmV3Xcm;
2565 readonly type: 'V2' | 'V3';
2391 }2566 }
23922567
2393 /** @name XcmV0Xcm (277) */2568 /** @name XcmV2Xcm (291) */
2394 interface XcmV0Xcm extends Enum {2569 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}
2570
2571 /** @name XcmV2Instruction (293) */
2572 interface XcmV2Instruction extends Enum {
2395 readonly isWithdrawAsset: boolean;2573 readonly isWithdrawAsset: boolean;
2396 readonly asWithdrawAsset: {2574 readonly asWithdrawAsset: XcmV2MultiassetMultiAssets;
2397 readonly assets: Vec<XcmV0MultiAsset>;
2398 readonly effects: Vec<XcmV0Order>;2575 readonly isReserveAssetDeposited: boolean;
2399 } & Struct;
2400 readonly isReserveAssetDeposit: boolean;
2401 readonly asReserveAssetDeposit: {2576 readonly asReserveAssetDeposited: XcmV2MultiassetMultiAssets;
2402 readonly assets: Vec<XcmV0MultiAsset>;
2403 readonly effects: Vec<XcmV0Order>;2577 readonly isReceiveTeleportedAsset: boolean;
2404 } & Struct;
2405 readonly isTeleportAsset: boolean;
2406 readonly asTeleportAsset: {2578 readonly asReceiveTeleportedAsset: XcmV2MultiassetMultiAssets;
2407 readonly assets: Vec<XcmV0MultiAsset>;
2408 readonly effects: Vec<XcmV0Order>;
2409 } & Struct;
2410 readonly isQueryResponse: boolean;2579 readonly isQueryResponse: boolean;
2411 readonly asQueryResponse: {2580 readonly asQueryResponse: {
2412 readonly queryId: Compact<u64>;2581 readonly queryId: Compact<u64>;
2413 readonly response: XcmV0Response;2582 readonly response: XcmV2Response;
2583 readonly maxWeight: Compact<u64>;
2414 } & Struct;2584 } & Struct;
2415 readonly isTransferAsset: boolean;2585 readonly isTransferAsset: boolean;
2416 readonly asTransferAsset: {2586 readonly asTransferAsset: {
2417 readonly assets: Vec<XcmV0MultiAsset>;2587 readonly assets: XcmV2MultiassetMultiAssets;
2418 readonly dest: XcmV0MultiLocation;2588 readonly beneficiary: XcmV2MultiLocation;
2419 } & Struct;2589 } & Struct;
2420 readonly isTransferReserveAsset: boolean;2590 readonly isTransferReserveAsset: boolean;
2421 readonly asTransferReserveAsset: {2591 readonly asTransferReserveAsset: {
2422 readonly assets: Vec<XcmV0MultiAsset>;2592 readonly assets: XcmV2MultiassetMultiAssets;
2423 readonly dest: XcmV0MultiLocation;2593 readonly dest: XcmV2MultiLocation;
2424 readonly effects: Vec<XcmV0Order>;2594 readonly xcm: XcmV2Xcm;
2425 } & Struct;2595 } & Struct;
2426 readonly isTransact: boolean;2596 readonly isTransact: boolean;
2427 readonly asTransact: {2597 readonly asTransact: {
2428 readonly originType: XcmV0OriginKind;2598 readonly originType: XcmV2OriginKind;
2429 readonly requireWeightAtMost: u64;2599 readonly requireWeightAtMost: Compact<u64>;
2430 readonly call: XcmDoubleEncoded;2600 readonly call: XcmDoubleEncoded;
2431 } & Struct;2601 } & Struct;
2432 readonly isHrmpNewChannelOpenRequest: boolean;2602 readonly isHrmpNewChannelOpenRequest: boolean;
2445 readonly sender: Compact<u32>;2615 readonly sender: Compact<u32>;
2446 readonly recipient: Compact<u32>;2616 readonly recipient: Compact<u32>;
2447 } & Struct;2617 } & Struct;
2448 readonly isRelayedFrom: boolean;2618 readonly isClearOrigin: boolean;
2449 readonly asRelayedFrom: {2619 readonly isDescendOrigin: boolean;
2620 readonly asDescendOrigin: XcmV2MultilocationJunctions;
2621 readonly isReportError: boolean;
2622 readonly asReportError: {
2623 readonly queryId: Compact<u64>;
2450 readonly who: XcmV0MultiLocation;2624 readonly dest: XcmV2MultiLocation;
2451 readonly message: XcmV0Xcm;2625 readonly maxResponseWeight: Compact<u64>;
2452 } & Struct;2626 } & Struct;
2453 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
2454 }
2455
2456 /** @name XcmV0Order (279) */
2457 interface XcmV0Order extends Enum {
2458 readonly isNull: boolean;
2459 readonly isDepositAsset: boolean;2627 readonly isDepositAsset: boolean;
2460 readonly asDepositAsset: {2628 readonly asDepositAsset: {
2461 readonly assets: Vec<XcmV0MultiAsset>;2629 readonly assets: XcmV2MultiassetMultiAssetFilter;
2630 readonly maxAssets: Compact<u32>;
2462 readonly dest: XcmV0MultiLocation;2631 readonly beneficiary: XcmV2MultiLocation;
2463 } & Struct;2632 } & Struct;
2464 readonly isDepositReserveAsset: boolean;2633 readonly isDepositReserveAsset: boolean;
2465 readonly asDepositReserveAsset: {2634 readonly asDepositReserveAsset: {
2466 readonly assets: Vec<XcmV0MultiAsset>;2635 readonly assets: XcmV2MultiassetMultiAssetFilter;
2636 readonly maxAssets: Compact<u32>;
2467 readonly dest: XcmV0MultiLocation;2637 readonly dest: XcmV2MultiLocation;
2468 readonly effects: Vec<XcmV0Order>;2638 readonly xcm: XcmV2Xcm;
2469 } & Struct;2639 } & Struct;
2470 readonly isExchangeAsset: boolean;2640 readonly isExchangeAsset: boolean;
2471 readonly asExchangeAsset: {2641 readonly asExchangeAsset: {
2472 readonly give: Vec<XcmV0MultiAsset>;2642 readonly give: XcmV2MultiassetMultiAssetFilter;
2473 readonly receive: Vec<XcmV0MultiAsset>;2643 readonly receive: XcmV2MultiassetMultiAssets;
2474 } & Struct;2644 } & Struct;
2475 readonly isInitiateReserveWithdraw: boolean;2645 readonly isInitiateReserveWithdraw: boolean;
2476 readonly asInitiateReserveWithdraw: {2646 readonly asInitiateReserveWithdraw: {
2477 readonly assets: Vec<XcmV0MultiAsset>;2647 readonly assets: XcmV2MultiassetMultiAssetFilter;
2478 readonly reserve: XcmV0MultiLocation;2648 readonly reserve: XcmV2MultiLocation;
2479 readonly effects: Vec<XcmV0Order>;2649 readonly xcm: XcmV2Xcm;
2480 } & Struct;2650 } & Struct;
2481 readonly isInitiateTeleport: boolean;2651 readonly isInitiateTeleport: boolean;
2482 readonly asInitiateTeleport: {2652 readonly asInitiateTeleport: {
2483 readonly assets: Vec<XcmV0MultiAsset>;2653 readonly assets: XcmV2MultiassetMultiAssetFilter;
2484 readonly dest: XcmV0MultiLocation;2654 readonly dest: XcmV2MultiLocation;
2485 readonly effects: Vec<XcmV0Order>;2655 readonly xcm: XcmV2Xcm;
2486 } & Struct;2656 } & Struct;
2487 readonly isQueryHolding: boolean;2657 readonly isQueryHolding: boolean;
2488 readonly asQueryHolding: {2658 readonly asQueryHolding: {
2489 readonly queryId: Compact<u64>;2659 readonly queryId: Compact<u64>;
2490 readonly dest: XcmV0MultiLocation;2660 readonly dest: XcmV2MultiLocation;
2491 readonly assets: Vec<XcmV0MultiAsset>;2661 readonly assets: XcmV2MultiassetMultiAssetFilter;
2662 readonly maxResponseWeight: Compact<u64>;
2492 } & Struct;2663 } & Struct;
2493 readonly isBuyExecution: boolean;2664 readonly isBuyExecution: boolean;
2494 readonly asBuyExecution: {2665 readonly asBuyExecution: {
2495 readonly fees: XcmV0MultiAsset;2666 readonly fees: XcmV2MultiAsset;
2496 readonly weight: u64;2667 readonly weightLimit: XcmV2WeightLimit;
2497 readonly debt: u64;
2498 readonly haltOnError: bool;
2499 readonly xcm: Vec<XcmV0Xcm>;
2500 } & Struct;2668 } & Struct;
2501 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2669 readonly isRefundSurplus: boolean;
2502 }2670 readonly isSetErrorHandler: boolean;
2503
2504 /** @name XcmV0Response (281) */
2505 interface XcmV0Response extends Enum {
2506 readonly isAssets: boolean;
2507 readonly asAssets: Vec<XcmV0MultiAsset>;2671 readonly asSetErrorHandler: XcmV2Xcm;
2508 readonly type: 'Assets';2672 readonly isSetAppendix: boolean;
2509 }2673 readonly asSetAppendix: XcmV2Xcm;
2510
2511 /** @name XcmV1Xcm (282) */
2512 interface XcmV1Xcm extends Enum {2674 readonly isClearError: boolean;
2513 readonly isWithdrawAsset: boolean;2675 readonly isClaimAsset: boolean;
2514 readonly asWithdrawAsset: {2676 readonly asClaimAsset: {
2515 readonly assets: XcmV1MultiassetMultiAssets;2677 readonly assets: XcmV2MultiassetMultiAssets;
2516 readonly effects: Vec<XcmV1Order>;2678 readonly ticket: XcmV2MultiLocation;
2517 } & Struct;2679 } & Struct;
2518 readonly isReserveAssetDeposited: boolean;2680 readonly isTrap: boolean;
2519 readonly asReserveAssetDeposited: {2681 readonly asTrap: Compact<u64>;
2520 readonly assets: XcmV1MultiassetMultiAssets;
2521 readonly effects: Vec<XcmV1Order>;
2522 } & Struct;
2523 readonly isReceiveTeleportedAsset: boolean;
2524 readonly asReceiveTeleportedAsset: {
2525 readonly assets: XcmV1MultiassetMultiAssets;
2526 readonly effects: Vec<XcmV1Order>;
2527 } & Struct;
2528 readonly isQueryResponse: boolean;
2529 readonly asQueryResponse: {
2530 readonly queryId: Compact<u64>;
2531 readonly response: XcmV1Response;
2532 } & Struct;
2533 readonly isTransferAsset: boolean;
2534 readonly asTransferAsset: {
2535 readonly assets: XcmV1MultiassetMultiAssets;
2536 readonly beneficiary: XcmV1MultiLocation;
2537 } & Struct;
2538 readonly isTransferReserveAsset: boolean;
2539 readonly asTransferReserveAsset: {
2540 readonly assets: XcmV1MultiassetMultiAssets;
2541 readonly dest: XcmV1MultiLocation;
2542 readonly effects: Vec<XcmV1Order>;
2543 } & Struct;
2544 readonly isTransact: boolean;
2545 readonly asTransact: {
2546 readonly originType: XcmV0OriginKind;
2547 readonly requireWeightAtMost: u64;
2548 readonly call: XcmDoubleEncoded;
2549 } & Struct;
2550 readonly isHrmpNewChannelOpenRequest: boolean;
2551 readonly asHrmpNewChannelOpenRequest: {
2552 readonly sender: Compact<u32>;
2553 readonly maxMessageSize: Compact<u32>;
2554 readonly maxCapacity: Compact<u32>;
2555 } & Struct;
2556 readonly isHrmpChannelAccepted: boolean;
2557 readonly asHrmpChannelAccepted: {
2558 readonly recipient: Compact<u32>;
2559 } & Struct;
2560 readonly isHrmpChannelClosing: boolean;
2561 readonly asHrmpChannelClosing: {
2562 readonly initiator: Compact<u32>;
2563 readonly sender: Compact<u32>;
2564 readonly recipient: Compact<u32>;
2565 } & Struct;
2566 readonly isRelayedFrom: boolean;
2567 readonly asRelayedFrom: {
2568 readonly who: XcmV1MultilocationJunctions;
2569 readonly message: XcmV1Xcm;
2570 } & Struct;
2571 readonly isSubscribeVersion: boolean;2682 readonly isSubscribeVersion: boolean;
2572 readonly asSubscribeVersion: {2683 readonly asSubscribeVersion: {
2573 readonly queryId: Compact<u64>;2684 readonly queryId: Compact<u64>;
2574 readonly maxResponseWeight: Compact<u64>;2685 readonly maxResponseWeight: Compact<u64>;
2575 } & Struct;2686 } & Struct;
2576 readonly isUnsubscribeVersion: boolean;2687 readonly isUnsubscribeVersion: boolean;
2577 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2688 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';
2578 }2689 }
25792690
2580 /** @name XcmV1Order (284) */2691 /** @name XcmV2Response (294) */
2581 interface XcmV1Order extends Enum {2692 interface XcmV2Response extends Enum {
2582 readonly isNoop: boolean;2693 readonly isNull: boolean;
2583 readonly isDepositAsset: boolean;
2584 readonly asDepositAsset: {
2585 readonly assets: XcmV1MultiassetMultiAssetFilter;
2586 readonly maxAssets: u32;
2587 readonly beneficiary: XcmV1MultiLocation;
2588 } & Struct;
2589 readonly isDepositReserveAsset: boolean;
2590 readonly asDepositReserveAsset: {
2591 readonly assets: XcmV1MultiassetMultiAssetFilter;
2592 readonly maxAssets: u32;
2593 readonly dest: XcmV1MultiLocation;
2594 readonly effects: Vec<XcmV1Order>;
2595 } & Struct;
2596 readonly isExchangeAsset: boolean;
2597 readonly asExchangeAsset: {
2598 readonly give: XcmV1MultiassetMultiAssetFilter;
2599 readonly receive: XcmV1MultiassetMultiAssets;
2600 } & Struct;
2601 readonly isInitiateReserveWithdraw: boolean;
2602 readonly asInitiateReserveWithdraw: {
2603 readonly assets: XcmV1MultiassetMultiAssetFilter;
2604 readonly reserve: XcmV1MultiLocation;
2605 readonly effects: Vec<XcmV1Order>;
2606 } & Struct;
2607 readonly isInitiateTeleport: boolean;
2608 readonly asInitiateTeleport: {
2609 readonly assets: XcmV1MultiassetMultiAssetFilter;
2610 readonly dest: XcmV1MultiLocation;
2611 readonly effects: Vec<XcmV1Order>;
2612 } & Struct;
2613 readonly isQueryHolding: boolean;
2614 readonly asQueryHolding: {
2615 readonly queryId: Compact<u64>;
2616 readonly dest: XcmV1MultiLocation;
2617 readonly assets: XcmV1MultiassetMultiAssetFilter;
2618 } & Struct;
2619 readonly isBuyExecution: boolean;
2620 readonly asBuyExecution: {
2621 readonly fees: XcmV1MultiAsset;
2622 readonly weight: u64;
2623 readonly debt: u64;
2624 readonly haltOnError: bool;
2625 readonly instructions: Vec<XcmV1Xcm>;
2626 } & Struct;
2627 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
2628 }
2629
2630 /** @name XcmV1Response (286) */
2631 interface XcmV1Response extends Enum {
2632 readonly isAssets: boolean;2694 readonly isAssets: boolean;
2633 readonly asAssets: XcmV1MultiassetMultiAssets;2695 readonly asAssets: XcmV2MultiassetMultiAssets;
2696 readonly isExecutionResult: boolean;
2697 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;
2634 readonly isVersion: boolean;2698 readonly isVersion: boolean;
2635 readonly asVersion: u32;2699 readonly asVersion: u32;
2636 readonly type: 'Assets' | 'Version';2700 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';
2637 }2701 }
26382702
2639 /** @name CumulusPalletXcmCall (300) */2703 /** @name XcmV2TraitsError (297) */
2704 interface XcmV2TraitsError extends Enum {
2705 readonly isOverflow: boolean;
2706 readonly isUnimplemented: boolean;
2707 readonly isUntrustedReserveLocation: boolean;
2708 readonly isUntrustedTeleportLocation: boolean;
2709 readonly isMultiLocationFull: boolean;
2710 readonly isMultiLocationNotInvertible: boolean;
2711 readonly isBadOrigin: boolean;
2712 readonly isInvalidLocation: boolean;
2713 readonly isAssetNotFound: boolean;
2714 readonly isFailedToTransactAsset: boolean;
2715 readonly isNotWithdrawable: boolean;
2716 readonly isLocationCannotHold: boolean;
2717 readonly isExceedsMaxMessageSize: boolean;
2718 readonly isDestinationUnsupported: boolean;
2719 readonly isTransport: boolean;
2720 readonly isUnroutable: boolean;
2721 readonly isUnknownClaim: boolean;
2722 readonly isFailedToDecode: boolean;
2723 readonly isMaxWeightInvalid: boolean;
2724 readonly isNotHoldingFees: boolean;
2725 readonly isTooExpensive: boolean;
2726 readonly isTrap: boolean;
2727 readonly asTrap: u64;
2728 readonly isUnhandledXcmVersion: boolean;
2729 readonly isWeightLimitReached: boolean;
2730 readonly asWeightLimitReached: u64;
2731 readonly isBarrier: boolean;
2732 readonly isWeightNotComputable: boolean;
2733 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';
2734 }
2735
2736 /** @name XcmV2MultiassetMultiAssetFilter (298) */
2737 interface XcmV2MultiassetMultiAssetFilter extends Enum {
2738 readonly isDefinite: boolean;
2739 readonly asDefinite: XcmV2MultiassetMultiAssets;
2740 readonly isWild: boolean;
2741 readonly asWild: XcmV2MultiassetWildMultiAsset;
2742 readonly type: 'Definite' | 'Wild';
2743 }
2744
2745 /** @name XcmV2MultiassetWildMultiAsset (299) */
2746 interface XcmV2MultiassetWildMultiAsset extends Enum {
2747 readonly isAll: boolean;
2748 readonly isAllOf: boolean;
2749 readonly asAllOf: {
2750 readonly id: XcmV2MultiassetAssetId;
2751 readonly fun: XcmV2MultiassetWildFungibility;
2752 } & Struct;
2753 readonly type: 'All' | 'AllOf';
2754 }
2755
2756 /** @name XcmV2MultiassetWildFungibility (300) */
2757 interface XcmV2MultiassetWildFungibility extends Enum {
2758 readonly isFungible: boolean;
2759 readonly isNonFungible: boolean;
2760 readonly type: 'Fungible' | 'NonFungible';
2761 }
2762
2763 /** @name XcmV2WeightLimit (301) */
2764 interface XcmV2WeightLimit extends Enum {
2765 readonly isUnlimited: boolean;
2766 readonly isLimited: boolean;
2767 readonly asLimited: Compact<u64>;
2768 readonly type: 'Unlimited' | 'Limited';
2769 }
2770
2771 /** @name CumulusPalletXcmCall (310) */
2640 type CumulusPalletXcmCall = Null;2772 type CumulusPalletXcmCall = Null;
26412773
2642 /** @name CumulusPalletDmpQueueCall (301) */2774 /** @name CumulusPalletDmpQueueCall (311) */
2643 interface CumulusPalletDmpQueueCall extends Enum {2775 interface CumulusPalletDmpQueueCall extends Enum {
2644 readonly isServiceOverweight: boolean;2776 readonly isServiceOverweight: boolean;
2645 readonly asServiceOverweight: {2777 readonly asServiceOverweight: {
2646 readonly index: u64;2778 readonly index: u64;
2647 readonly weightLimit: u64;2779 readonly weightLimit: SpWeightsWeightV2Weight;
2648 } & Struct;2780 } & Struct;
2649 readonly type: 'ServiceOverweight';2781 readonly type: 'ServiceOverweight';
2650 }2782 }
26512783
2652 /** @name PalletInflationCall (302) */2784 /** @name PalletInflationCall (312) */
2653 interface PalletInflationCall extends Enum {2785 interface PalletInflationCall extends Enum {
2654 readonly isStartInflation: boolean;2786 readonly isStartInflation: boolean;
2655 readonly asStartInflation: {2787 readonly asStartInflation: {
2658 readonly type: 'StartInflation';2790 readonly type: 'StartInflation';
2659 }2791 }
26602792
2661 /** @name PalletUniqueCall (303) */2793 /** @name PalletUniqueCall (313) */
2662 interface PalletUniqueCall extends Enum {2794 interface PalletUniqueCall extends Enum {
2663 readonly isCreateCollection: boolean;2795 readonly isCreateCollection: boolean;
2664 readonly asCreateCollection: {2796 readonly asCreateCollection: {
2839 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'ApproveFrom' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';2971 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'ApproveFrom' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';
2840 }2972 }
28412973
2842 /** @name UpDataStructsCollectionMode (308) */2974 /** @name UpDataStructsCollectionMode (318) */
2843 interface UpDataStructsCollectionMode extends Enum {2975 interface UpDataStructsCollectionMode extends Enum {
2844 readonly isNft: boolean;2976 readonly isNft: boolean;
2845 readonly isFungible: boolean;2977 readonly isFungible: boolean;
2848 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2980 readonly type: 'Nft' | 'Fungible' | 'ReFungible';
2849 }2981 }
28502982
2851 /** @name UpDataStructsCreateCollectionData (309) */2983 /** @name UpDataStructsCreateCollectionData (319) */
2852 interface UpDataStructsCreateCollectionData extends Struct {2984 interface UpDataStructsCreateCollectionData extends Struct {
2853 readonly mode: UpDataStructsCollectionMode;2985 readonly mode: UpDataStructsCollectionMode;
2854 readonly access: Option<UpDataStructsAccessMode>;2986 readonly access: Option<UpDataStructsAccessMode>;
2862 readonly properties: Vec<UpDataStructsProperty>;2994 readonly properties: Vec<UpDataStructsProperty>;
2863 }2995 }
28642996
2865 /** @name UpDataStructsAccessMode (311) */2997 /** @name UpDataStructsAccessMode (321) */
2866 interface UpDataStructsAccessMode extends Enum {2998 interface UpDataStructsAccessMode extends Enum {
2867 readonly isNormal: boolean;2999 readonly isNormal: boolean;
2868 readonly isAllowList: boolean;3000 readonly isAllowList: boolean;
2869 readonly type: 'Normal' | 'AllowList';3001 readonly type: 'Normal' | 'AllowList';
2870 }3002 }
28713003
2872 /** @name UpDataStructsCollectionLimits (313) */3004 /** @name UpDataStructsCollectionLimits (323) */
2873 interface UpDataStructsCollectionLimits extends Struct {3005 interface UpDataStructsCollectionLimits extends Struct {
2874 readonly accountTokenOwnershipLimit: Option<u32>;3006 readonly accountTokenOwnershipLimit: Option<u32>;
2875 readonly sponsoredDataSize: Option<u32>;3007 readonly sponsoredDataSize: Option<u32>;
2882 readonly transfersEnabled: Option<bool>;3014 readonly transfersEnabled: Option<bool>;
2883 }3015 }
28843016
2885 /** @name UpDataStructsSponsoringRateLimit (315) */3017 /** @name UpDataStructsSponsoringRateLimit (325) */
2886 interface UpDataStructsSponsoringRateLimit extends Enum {3018 interface UpDataStructsSponsoringRateLimit extends Enum {
2887 readonly isSponsoringDisabled: boolean;3019 readonly isSponsoringDisabled: boolean;
2888 readonly isBlocks: boolean;3020 readonly isBlocks: boolean;
2889 readonly asBlocks: u32;3021 readonly asBlocks: u32;
2890 readonly type: 'SponsoringDisabled' | 'Blocks';3022 readonly type: 'SponsoringDisabled' | 'Blocks';
2891 }3023 }
28923024
2893 /** @name UpDataStructsCollectionPermissions (318) */3025 /** @name UpDataStructsCollectionPermissions (328) */
2894 interface UpDataStructsCollectionPermissions extends Struct {3026 interface UpDataStructsCollectionPermissions extends Struct {
2895 readonly access: Option<UpDataStructsAccessMode>;3027 readonly access: Option<UpDataStructsAccessMode>;
2896 readonly mintMode: Option<bool>;3028 readonly mintMode: Option<bool>;
2897 readonly nesting: Option<UpDataStructsNestingPermissions>;3029 readonly nesting: Option<UpDataStructsNestingPermissions>;
2898 }3030 }
28993031
2900 /** @name UpDataStructsNestingPermissions (320) */3032 /** @name UpDataStructsNestingPermissions (330) */
2901 interface UpDataStructsNestingPermissions extends Struct {3033 interface UpDataStructsNestingPermissions extends Struct {
2902 readonly tokenOwner: bool;3034 readonly tokenOwner: bool;
2903 readonly collectionAdmin: bool;3035 readonly collectionAdmin: bool;
2904 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;3036 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;
2905 }3037 }
29063038
2907 /** @name UpDataStructsOwnerRestrictedSet (322) */3039 /** @name UpDataStructsOwnerRestrictedSet (332) */
2908 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}3040 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}
29093041
2910 /** @name UpDataStructsPropertyKeyPermission (327) */3042 /** @name UpDataStructsPropertyKeyPermission (337) */
2911 interface UpDataStructsPropertyKeyPermission extends Struct {3043 interface UpDataStructsPropertyKeyPermission extends Struct {
2912 readonly key: Bytes;3044 readonly key: Bytes;
2913 readonly permission: UpDataStructsPropertyPermission;3045 readonly permission: UpDataStructsPropertyPermission;
2914 }3046 }
29153047
2916 /** @name UpDataStructsPropertyPermission (328) */3048 /** @name UpDataStructsPropertyPermission (338) */
2917 interface UpDataStructsPropertyPermission extends Struct {3049 interface UpDataStructsPropertyPermission extends Struct {
2918 readonly mutable: bool;3050 readonly mutable: bool;
2919 readonly collectionAdmin: bool;3051 readonly collectionAdmin: bool;
2920 readonly tokenOwner: bool;3052 readonly tokenOwner: bool;
2921 }3053 }
29223054
2923 /** @name UpDataStructsProperty (331) */3055 /** @name UpDataStructsProperty (341) */
2924 interface UpDataStructsProperty extends Struct {3056 interface UpDataStructsProperty extends Struct {
2925 readonly key: Bytes;3057 readonly key: Bytes;
2926 readonly value: Bytes;3058 readonly value: Bytes;
2927 }3059 }
29283060
2929 /** @name UpDataStructsCreateItemData (334) */3061 /** @name UpDataStructsCreateItemData (344) */
2930 interface UpDataStructsCreateItemData extends Enum {3062 interface UpDataStructsCreateItemData extends Enum {
2931 readonly isNft: boolean;3063 readonly isNft: boolean;
2932 readonly asNft: UpDataStructsCreateNftData;3064 readonly asNft: UpDataStructsCreateNftData;
2937 readonly type: 'Nft' | 'Fungible' | 'ReFungible';3069 readonly type: 'Nft' | 'Fungible' | 'ReFungible';
2938 }3070 }
29393071
2940 /** @name UpDataStructsCreateNftData (335) */3072 /** @name UpDataStructsCreateNftData (345) */
2941 interface UpDataStructsCreateNftData extends Struct {3073 interface UpDataStructsCreateNftData extends Struct {
2942 readonly properties: Vec<UpDataStructsProperty>;3074 readonly properties: Vec<UpDataStructsProperty>;
2943 }3075 }
29443076
2945 /** @name UpDataStructsCreateFungibleData (336) */3077 /** @name UpDataStructsCreateFungibleData (346) */
2946 interface UpDataStructsCreateFungibleData extends Struct {3078 interface UpDataStructsCreateFungibleData extends Struct {
2947 readonly value: u128;3079 readonly value: u128;
2948 }3080 }
29493081
2950 /** @name UpDataStructsCreateReFungibleData (337) */3082 /** @name UpDataStructsCreateReFungibleData (347) */
2951 interface UpDataStructsCreateReFungibleData extends Struct {3083 interface UpDataStructsCreateReFungibleData extends Struct {
2952 readonly pieces: u128;3084 readonly pieces: u128;
2953 readonly properties: Vec<UpDataStructsProperty>;3085 readonly properties: Vec<UpDataStructsProperty>;
2954 }3086 }
29553087
2956 /** @name UpDataStructsCreateItemExData (340) */3088 /** @name UpDataStructsCreateItemExData (350) */
2957 interface UpDataStructsCreateItemExData extends Enum {3089 interface UpDataStructsCreateItemExData extends Enum {
2958 readonly isNft: boolean;3090 readonly isNft: boolean;
2959 readonly asNft: Vec<UpDataStructsCreateNftExData>;3091 readonly asNft: Vec<UpDataStructsCreateNftExData>;
2966 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';3098 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
2967 }3099 }
29683100
2969 /** @name UpDataStructsCreateNftExData (342) */3101 /** @name UpDataStructsCreateNftExData (352) */
2970 interface UpDataStructsCreateNftExData extends Struct {3102 interface UpDataStructsCreateNftExData extends Struct {
2971 readonly properties: Vec<UpDataStructsProperty>;3103 readonly properties: Vec<UpDataStructsProperty>;
2972 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3104 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
2973 }3105 }
29743106
2975 /** @name UpDataStructsCreateRefungibleExSingleOwner (349) */3107 /** @name UpDataStructsCreateRefungibleExSingleOwner (359) */
2976 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {3108 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {
2977 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;3109 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;
2978 readonly pieces: u128;3110 readonly pieces: u128;
2979 readonly properties: Vec<UpDataStructsProperty>;3111 readonly properties: Vec<UpDataStructsProperty>;
2980 }3112 }
29813113
2982 /** @name UpDataStructsCreateRefungibleExMultipleOwners (351) */3114 /** @name UpDataStructsCreateRefungibleExMultipleOwners (361) */
2983 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {3115 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {
2984 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;3116 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
2985 readonly properties: Vec<UpDataStructsProperty>;3117 readonly properties: Vec<UpDataStructsProperty>;
2986 }3118 }
29873119
2988 /** @name PalletConfigurationCall (352) */3120 /** @name PalletConfigurationCall (362) */
2989 interface PalletConfigurationCall extends Enum {3121 interface PalletConfigurationCall extends Enum {
2990 readonly isSetWeightToFeeCoefficientOverride: boolean;3122 readonly isSetWeightToFeeCoefficientOverride: boolean;
2991 readonly asSetWeightToFeeCoefficientOverride: {3123 readonly asSetWeightToFeeCoefficientOverride: {
2995 readonly asSetMinGasPriceOverride: {3127 readonly asSetMinGasPriceOverride: {
2996 readonly coeff: Option<u64>;3128 readonly coeff: Option<u64>;
2997 } & Struct;3129 } & Struct;
2998 readonly isSetXcmAllowedLocations: boolean;
2999 readonly asSetXcmAllowedLocations: {
3000 readonly locations: Option<Vec<XcmV1MultiLocation>>;
3001 } & Struct;
3002 readonly isSetAppPromotionConfigurationOverride: boolean;3130 readonly isSetAppPromotionConfigurationOverride: boolean;
3003 readonly asSetAppPromotionConfigurationOverride: {3131 readonly asSetAppPromotionConfigurationOverride: {
3004 readonly configuration: PalletConfigurationAppPromotionConfiguration;3132 readonly configuration: PalletConfigurationAppPromotionConfiguration;
3015 readonly asSetCollatorSelectionKickThreshold: {3143 readonly asSetCollatorSelectionKickThreshold: {
3016 readonly threshold: Option<u32>;3144 readonly threshold: Option<u32>;
3017 } & Struct;3145 } & Struct;
3018 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';3146 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';
3019 }3147 }
30203148
3021 /** @name PalletConfigurationAppPromotionConfiguration (357) */3149 /** @name PalletConfigurationAppPromotionConfiguration (364) */
3022 interface PalletConfigurationAppPromotionConfiguration extends Struct {3150 interface PalletConfigurationAppPromotionConfiguration extends Struct {
3023 readonly recalculationInterval: Option<u32>;3151 readonly recalculationInterval: Option<u32>;
3024 readonly pendingInterval: Option<u32>;3152 readonly pendingInterval: Option<u32>;
3025 readonly intervalIncome: Option<Perbill>;3153 readonly intervalIncome: Option<Perbill>;
3026 readonly maxStakersPerCalculation: Option<u8>;3154 readonly maxStakersPerCalculation: Option<u8>;
3027 }3155 }
30283156
3029 /** @name PalletTemplateTransactionPaymentCall (361) */3157 /** @name PalletTemplateTransactionPaymentCall (368) */
3030 type PalletTemplateTransactionPaymentCall = Null;3158 type PalletTemplateTransactionPaymentCall = Null;
30313159
3032 /** @name PalletStructureCall (362) */3160 /** @name PalletStructureCall (369) */
3033 type PalletStructureCall = Null;3161 type PalletStructureCall = Null;
30343162
3035 /** @name PalletAppPromotionCall (363) */3163 /** @name PalletAppPromotionCall (370) */
3036 interface PalletAppPromotionCall extends Enum {3164 interface PalletAppPromotionCall extends Enum {
3037 readonly isSetAdminAddress: boolean;3165 readonly isSetAdminAddress: boolean;
3038 readonly asSetAdminAddress: {3166 readonly asSetAdminAddress: {
3070 readonly type: 'SetAdminAddress' | 'Stake' | 'UnstakeAll' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers' | 'UnstakePartial';3198 readonly type: 'SetAdminAddress' | 'Stake' | 'UnstakeAll' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers' | 'UnstakePartial';
3071 }3199 }
30723200
3073 /** @name PalletForeignAssetsModuleCall (364) */3201 /** @name PalletForeignAssetsModuleCall (371) */
3074 interface PalletForeignAssetsModuleCall extends Enum {3202 interface PalletForeignAssetsModuleCall extends Enum {
3075 readonly isRegisterForeignAsset: boolean;3203 readonly isRegisterForeignAsset: boolean;
3076 readonly asRegisterForeignAsset: {3204 readonly asRegisterForeignAsset: {
3087 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3215 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
3088 }3216 }
30893217
3090 /** @name PalletEvmCall (365) */3218 /** @name PalletEvmCall (372) */
3091 interface PalletEvmCall extends Enum {3219 interface PalletEvmCall extends Enum {
3092 readonly isWithdraw: boolean;3220 readonly isWithdraw: boolean;
3093 readonly asWithdraw: {3221 readonly asWithdraw: {
3132 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3260 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
3133 }3261 }
31343262
3135 /** @name PalletEthereumCall (371) */3263 /** @name PalletEthereumCall (378) */
3136 interface PalletEthereumCall extends Enum {3264 interface PalletEthereumCall extends Enum {
3137 readonly isTransact: boolean;3265 readonly isTransact: boolean;
3138 readonly asTransact: {3266 readonly asTransact: {
3141 readonly type: 'Transact';3269 readonly type: 'Transact';
3142 }3270 }
31433271
3144 /** @name EthereumTransactionTransactionV2 (372) */3272 /** @name EthereumTransactionTransactionV2 (379) */
3145 interface EthereumTransactionTransactionV2 extends Enum {3273 interface EthereumTransactionTransactionV2 extends Enum {
3146 readonly isLegacy: boolean;3274 readonly isLegacy: boolean;
3147 readonly asLegacy: EthereumTransactionLegacyTransaction;3275 readonly asLegacy: EthereumTransactionLegacyTransaction;
3152 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3280 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
3153 }3281 }
31543282
3155 /** @name EthereumTransactionLegacyTransaction (373) */3283 /** @name EthereumTransactionLegacyTransaction (380) */
3156 interface EthereumTransactionLegacyTransaction extends Struct {3284 interface EthereumTransactionLegacyTransaction extends Struct {
3157 readonly nonce: U256;3285 readonly nonce: U256;
3158 readonly gasPrice: U256;3286 readonly gasPrice: U256;
3163 readonly signature: EthereumTransactionTransactionSignature;3291 readonly signature: EthereumTransactionTransactionSignature;
3164 }3292 }
31653293
3166 /** @name EthereumTransactionTransactionAction (374) */3294 /** @name EthereumTransactionTransactionAction (381) */
3167 interface EthereumTransactionTransactionAction extends Enum {3295 interface EthereumTransactionTransactionAction extends Enum {
3168 readonly isCall: boolean;3296 readonly isCall: boolean;
3169 readonly asCall: H160;3297 readonly asCall: H160;
3170 readonly isCreate: boolean;3298 readonly isCreate: boolean;
3171 readonly type: 'Call' | 'Create';3299 readonly type: 'Call' | 'Create';
3172 }3300 }
31733301
3174 /** @name EthereumTransactionTransactionSignature (375) */3302 /** @name EthereumTransactionTransactionSignature (382) */
3175 interface EthereumTransactionTransactionSignature extends Struct {3303 interface EthereumTransactionTransactionSignature extends Struct {
3176 readonly v: u64;3304 readonly v: u64;
3177 readonly r: H256;3305 readonly r: H256;
3178 readonly s: H256;3306 readonly s: H256;
3179 }3307 }
31803308
3181 /** @name EthereumTransactionEip2930Transaction (377) */3309 /** @name EthereumTransactionEip2930Transaction (384) */
3182 interface EthereumTransactionEip2930Transaction extends Struct {3310 interface EthereumTransactionEip2930Transaction extends Struct {
3183 readonly chainId: u64;3311 readonly chainId: u64;
3184 readonly nonce: U256;3312 readonly nonce: U256;
3193 readonly s: H256;3321 readonly s: H256;
3194 }3322 }
31953323
3196 /** @name EthereumTransactionAccessListItem (379) */3324 /** @name EthereumTransactionAccessListItem (386) */
3197 interface EthereumTransactionAccessListItem extends Struct {3325 interface EthereumTransactionAccessListItem extends Struct {
3198 readonly address: H160;3326 readonly address: H160;
3199 readonly storageKeys: Vec<H256>;3327 readonly storageKeys: Vec<H256>;
3200 }3328 }
32013329
3202 /** @name EthereumTransactionEip1559Transaction (380) */3330 /** @name EthereumTransactionEip1559Transaction (387) */
3203 interface EthereumTransactionEip1559Transaction extends Struct {3331 interface EthereumTransactionEip1559Transaction extends Struct {
3204 readonly chainId: u64;3332 readonly chainId: u64;
3205 readonly nonce: U256;3333 readonly nonce: U256;
3215 readonly s: H256;3343 readonly s: H256;
3216 }3344 }
32173345
3218 /** @name PalletEvmMigrationCall (381) */3346 /** @name PalletEvmCoderSubstrateCall (388) */
3347 interface PalletEvmCoderSubstrateCall extends Enum {
3348 readonly isEmptyCall: boolean;
3349 readonly type: 'EmptyCall';
3350 }
3351
3352 /** @name PalletEvmContractHelpersCall (389) */
3353 interface PalletEvmContractHelpersCall extends Enum {
3354 readonly isMigrateFromSelfSponsoring: boolean;
3355 readonly asMigrateFromSelfSponsoring: {
3356 readonly addresses: Vec<H160>;
3357 } & Struct;
3358 readonly type: 'MigrateFromSelfSponsoring';
3359 }
3360
3361 /** @name PalletEvmMigrationCall (391) */
3219 interface PalletEvmMigrationCall extends Enum {3362 interface PalletEvmMigrationCall extends Enum {
3220 readonly isBegin: boolean;3363 readonly isBegin: boolean;
3221 readonly asBegin: {3364 readonly asBegin: {
3243 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents' | 'RemoveRmrkData';3386 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents' | 'RemoveRmrkData';
3244 }3387 }
32453388
3246 /** @name PalletMaintenanceCall (385) */3389 /** @name PalletMaintenanceCall (395) */
3247 interface PalletMaintenanceCall extends Enum {3390 interface PalletMaintenanceCall extends Enum {
3248 readonly isEnable: boolean;3391 readonly isEnable: boolean;
3249 readonly isDisable: boolean;3392 readonly isDisable: boolean;
3255 readonly type: 'Enable' | 'Disable' | 'ExecutePreimage';3398 readonly type: 'Enable' | 'Disable' | 'ExecutePreimage';
3256 }3399 }
32573400
3258 /** @name PalletTestUtilsCall (386) */3401 /** @name PalletTestUtilsCall (396) */
3259 interface PalletTestUtilsCall extends Enum {3402 interface PalletTestUtilsCall extends Enum {
3260 readonly isEnable: boolean;3403 readonly isEnable: boolean;
3261 readonly isSetTestValue: boolean;3404 readonly isSetTestValue: boolean;
3275 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';3418 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';
3276 }3419 }
32773420
3278 /** @name PalletSudoError (388) */3421 /** @name PalletSudoError (398) */
3279 interface PalletSudoError extends Enum {3422 interface PalletSudoError extends Enum {
3280 readonly isRequireSudo: boolean;3423 readonly isRequireSudo: boolean;
3281 readonly type: 'RequireSudo';3424 readonly type: 'RequireSudo';
3282 }3425 }
32833426
3284 /** @name OrmlVestingModuleError (390) */3427 /** @name OrmlVestingModuleError (400) */
3285 interface OrmlVestingModuleError extends Enum {3428 interface OrmlVestingModuleError extends Enum {
3286 readonly isZeroVestingPeriod: boolean;3429 readonly isZeroVestingPeriod: boolean;
3287 readonly isZeroVestingPeriodCount: boolean;3430 readonly isZeroVestingPeriodCount: boolean;
3292 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3435 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
3293 }3436 }
32943437
3295 /** @name OrmlXtokensModuleError (391) */3438 /** @name OrmlXtokensModuleError (401) */
3296 interface OrmlXtokensModuleError extends Enum {3439 interface OrmlXtokensModuleError extends Enum {
3297 readonly isAssetHasNoReserve: boolean;3440 readonly isAssetHasNoReserve: boolean;
3298 readonly isNotCrossChainTransfer: boolean;3441 readonly isNotCrossChainTransfer: boolean;
3316 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3459 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
3317 }3460 }
33183461
3319 /** @name OrmlTokensBalanceLock (394) */3462 /** @name OrmlTokensBalanceLock (404) */
3320 interface OrmlTokensBalanceLock extends Struct {3463 interface OrmlTokensBalanceLock extends Struct {
3321 readonly id: U8aFixed;3464 readonly id: U8aFixed;
3322 readonly amount: u128;3465 readonly amount: u128;
3323 }3466 }
33243467
3325 /** @name OrmlTokensAccountData (396) */3468 /** @name OrmlTokensAccountData (406) */
3326 interface OrmlTokensAccountData extends Struct {3469 interface OrmlTokensAccountData extends Struct {
3327 readonly free: u128;3470 readonly free: u128;
3328 readonly reserved: u128;3471 readonly reserved: u128;
3329 readonly frozen: u128;3472 readonly frozen: u128;
3330 }3473 }
33313474
3332 /** @name OrmlTokensReserveData (398) */3475 /** @name OrmlTokensReserveData (408) */
3333 interface OrmlTokensReserveData extends Struct {3476 interface OrmlTokensReserveData extends Struct {
3334 readonly id: Null;3477 readonly id: Null;
3335 readonly amount: u128;3478 readonly amount: u128;
3336 }3479 }
33373480
3338 /** @name OrmlTokensModuleError (400) */3481 /** @name OrmlTokensModuleError (410) */
3339 interface OrmlTokensModuleError extends Enum {3482 interface OrmlTokensModuleError extends Enum {
3340 readonly isBalanceTooLow: boolean;3483 readonly isBalanceTooLow: boolean;
3341 readonly isAmountIntoBalanceFailed: boolean;3484 readonly isAmountIntoBalanceFailed: boolean;
3348 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3491 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
3349 }3492 }
33503493
3351 /** @name PalletIdentityRegistrarInfo (405) */3494 /** @name PalletIdentityRegistrarInfo (415) */
3352 interface PalletIdentityRegistrarInfo extends Struct {3495 interface PalletIdentityRegistrarInfo extends Struct {
3353 readonly account: AccountId32;3496 readonly account: AccountId32;
3354 readonly fee: u128;3497 readonly fee: u128;
3355 readonly fields: PalletIdentityBitFlags;3498 readonly fields: PalletIdentityBitFlags;
3356 }3499 }
33573500
3358 /** @name PalletIdentityError (407) */3501 /** @name PalletIdentityError (417) */
3359 interface PalletIdentityError extends Enum {3502 interface PalletIdentityError extends Enum {
3360 readonly isTooManySubAccounts: boolean;3503 readonly isTooManySubAccounts: boolean;
3361 readonly isNotFound: boolean;3504 readonly isNotFound: boolean;
3378 readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';3521 readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';
3379 }3522 }
33803523
3381 /** @name PalletPreimageRequestStatus (408) */3524 /** @name PalletPreimageRequestStatus (418) */
3382 interface PalletPreimageRequestStatus extends Enum {3525 interface PalletPreimageRequestStatus extends Enum {
3383 readonly isUnrequested: boolean;3526 readonly isUnrequested: boolean;
3384 readonly asUnrequested: {3527 readonly asUnrequested: {
3394 readonly type: 'Unrequested' | 'Requested';3537 readonly type: 'Unrequested' | 'Requested';
3395 }3538 }
33963539
3397 /** @name PalletPreimageError (413) */3540 /** @name PalletPreimageError (423) */
3398 interface PalletPreimageError extends Enum {3541 interface PalletPreimageError extends Enum {
3399 readonly isTooBig: boolean;3542 readonly isTooBig: boolean;
3400 readonly isAlreadyNoted: boolean;3543 readonly isAlreadyNoted: boolean;
3405 readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested';3548 readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested';
3406 }3549 }
34073550
3408 /** @name CumulusPalletXcmpQueueInboundChannelDetails (415) */3551 /** @name CumulusPalletXcmpQueueInboundChannelDetails (425) */
3409 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3552 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
3410 readonly sender: u32;3553 readonly sender: u32;
3411 readonly state: CumulusPalletXcmpQueueInboundState;3554 readonly state: CumulusPalletXcmpQueueInboundState;
3412 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3555 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
3413 }3556 }
34143557
3415 /** @name CumulusPalletXcmpQueueInboundState (416) */3558 /** @name CumulusPalletXcmpQueueInboundState (426) */
3416 interface CumulusPalletXcmpQueueInboundState extends Enum {3559 interface CumulusPalletXcmpQueueInboundState extends Enum {
3417 readonly isOk: boolean;3560 readonly isOk: boolean;
3418 readonly isSuspended: boolean;3561 readonly isSuspended: boolean;
3419 readonly type: 'Ok' | 'Suspended';3562 readonly type: 'Ok' | 'Suspended';
3420 }3563 }
34213564
3422 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (419) */3565 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (429) */
3423 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3566 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
3424 readonly isConcatenatedVersionedXcm: boolean;3567 readonly isConcatenatedVersionedXcm: boolean;
3425 readonly isConcatenatedEncodedBlob: boolean;3568 readonly isConcatenatedEncodedBlob: boolean;
3426 readonly isSignals: boolean;3569 readonly isSignals: boolean;
3427 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3570 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
3428 }3571 }
34293572
3430 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (422) */3573 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (432) */
3431 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3574 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
3432 readonly recipient: u32;3575 readonly recipient: u32;
3433 readonly state: CumulusPalletXcmpQueueOutboundState;3576 readonly state: CumulusPalletXcmpQueueOutboundState;
3436 readonly lastIndex: u16;3579 readonly lastIndex: u16;
3437 }3580 }
34383581
3439 /** @name CumulusPalletXcmpQueueOutboundState (423) */3582 /** @name CumulusPalletXcmpQueueOutboundState (433) */
3440 interface CumulusPalletXcmpQueueOutboundState extends Enum {3583 interface CumulusPalletXcmpQueueOutboundState extends Enum {
3441 readonly isOk: boolean;3584 readonly isOk: boolean;
3442 readonly isSuspended: boolean;3585 readonly isSuspended: boolean;
3443 readonly type: 'Ok' | 'Suspended';3586 readonly type: 'Ok' | 'Suspended';
3444 }3587 }
34453588
3446 /** @name CumulusPalletXcmpQueueQueueConfigData (425) */3589 /** @name CumulusPalletXcmpQueueQueueConfigData (435) */
3447 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3590 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
3448 readonly suspendThreshold: u32;3591 readonly suspendThreshold: u32;
3449 readonly dropThreshold: u32;3592 readonly dropThreshold: u32;
3453 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3596 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;
3454 }3597 }
34553598
3456 /** @name CumulusPalletXcmpQueueError (427) */3599 /** @name CumulusPalletXcmpQueueError (437) */
3457 interface CumulusPalletXcmpQueueError extends Enum {3600 interface CumulusPalletXcmpQueueError extends Enum {
3458 readonly isFailedToSend: boolean;3601 readonly isFailedToSend: boolean;
3459 readonly isBadXcmOrigin: boolean;3602 readonly isBadXcmOrigin: boolean;
3463 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3606 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
3464 }3607 }
34653608
3466 /** @name PalletXcmError (428) */3609 /** @name PalletXcmQueryStatus (438) */
3610 interface PalletXcmQueryStatus extends Enum {
3611 readonly isPending: boolean;
3612 readonly asPending: {
3613 readonly responder: XcmVersionedMultiLocation;
3614 readonly maybeMatchQuerier: Option<XcmVersionedMultiLocation>;
3615 readonly maybeNotify: Option<ITuple<[u8, u8]>>;
3616 readonly timeout: u32;
3617 } & Struct;
3618 readonly isVersionNotifier: boolean;
3619 readonly asVersionNotifier: {
3620 readonly origin: XcmVersionedMultiLocation;
3621 readonly isActive: bool;
3622 } & Struct;
3623 readonly isReady: boolean;
3624 readonly asReady: {
3625 readonly response: XcmVersionedResponse;
3626 readonly at: u32;
3627 } & Struct;
3628 readonly type: 'Pending' | 'VersionNotifier' | 'Ready';
3629 }
3630
3631 /** @name XcmVersionedResponse (442) */
3632 interface XcmVersionedResponse extends Enum {
3633 readonly isV2: boolean;
3634 readonly asV2: XcmV2Response;
3635 readonly isV3: boolean;
3636 readonly asV3: XcmV3Response;
3637 readonly type: 'V2' | 'V3';
3638 }
3639
3640 /** @name PalletXcmVersionMigrationStage (448) */
3641 interface PalletXcmVersionMigrationStage extends Enum {
3642 readonly isMigrateSupportedVersion: boolean;
3643 readonly isMigrateVersionNotifiers: boolean;
3644 readonly isNotifyCurrentTargets: boolean;
3645 readonly asNotifyCurrentTargets: Option<Bytes>;
3646 readonly isMigrateAndNotifyOldTargets: boolean;
3647 readonly type: 'MigrateSupportedVersion' | 'MigrateVersionNotifiers' | 'NotifyCurrentTargets' | 'MigrateAndNotifyOldTargets';
3648 }
3649
3650 /** @name XcmVersionedAssetId (451) */
3651 interface XcmVersionedAssetId extends Enum {
3652 readonly isV3: boolean;
3653 readonly asV3: XcmV3MultiassetAssetId;
3654 readonly type: 'V3';
3655 }
3656
3657 /** @name PalletXcmRemoteLockedFungibleRecord (452) */
3658 interface PalletXcmRemoteLockedFungibleRecord extends Struct {
3659 readonly amount: u128;
3660 readonly owner: XcmVersionedMultiLocation;
3661 readonly locker: XcmVersionedMultiLocation;
3662 readonly users: u32;
3663 }
3664
3665 /** @name PalletXcmError (456) */
3467 interface PalletXcmError extends Enum {3666 interface PalletXcmError extends Enum {
3468 readonly isUnreachable: boolean;3667 readonly isUnreachable: boolean;
3469 readonly isSendFailure: boolean;3668 readonly isSendFailure: boolean;
3478 readonly isBadLocation: boolean;3677 readonly isBadLocation: boolean;
3479 readonly isNoSubscription: boolean;3678 readonly isNoSubscription: boolean;
3480 readonly isAlreadySubscribed: boolean;3679 readonly isAlreadySubscribed: boolean;
3481 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3680 readonly isInvalidAsset: boolean;
3681 readonly isLowBalance: boolean;
3682 readonly isTooManyLocks: boolean;
3683 readonly isAccountNotSovereign: boolean;
3684 readonly isFeesNotMet: boolean;
3685 readonly isLockNotFound: boolean;
3686 readonly isInUse: boolean;
3687 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed' | 'InvalidAsset' | 'LowBalance' | 'TooManyLocks' | 'AccountNotSovereign' | 'FeesNotMet' | 'LockNotFound' | 'InUse';
3482 }3688 }
34833689
3484 /** @name CumulusPalletXcmError (429) */3690 /** @name CumulusPalletXcmError (457) */
3485 type CumulusPalletXcmError = Null;3691 type CumulusPalletXcmError = Null;
34863692
3487 /** @name CumulusPalletDmpQueueConfigData (430) */3693 /** @name CumulusPalletDmpQueueConfigData (458) */
3488 interface CumulusPalletDmpQueueConfigData extends Struct {3694 interface CumulusPalletDmpQueueConfigData extends Struct {
3489 readonly maxIndividual: SpWeightsWeightV2Weight;3695 readonly maxIndividual: SpWeightsWeightV2Weight;
3490 }3696 }
34913697
3492 /** @name CumulusPalletDmpQueuePageIndexData (431) */3698 /** @name CumulusPalletDmpQueuePageIndexData (459) */
3493 interface CumulusPalletDmpQueuePageIndexData extends Struct {3699 interface CumulusPalletDmpQueuePageIndexData extends Struct {
3494 readonly beginUsed: u32;3700 readonly beginUsed: u32;
3495 readonly endUsed: u32;3701 readonly endUsed: u32;
3496 readonly overweightCount: u64;3702 readonly overweightCount: u64;
3497 }3703 }
34983704
3499 /** @name CumulusPalletDmpQueueError (434) */3705 /** @name CumulusPalletDmpQueueError (462) */
3500 interface CumulusPalletDmpQueueError extends Enum {3706 interface CumulusPalletDmpQueueError extends Enum {
3501 readonly isUnknown: boolean;3707 readonly isUnknown: boolean;
3502 readonly isOverLimit: boolean;3708 readonly isOverLimit: boolean;
3503 readonly type: 'Unknown' | 'OverLimit';3709 readonly type: 'Unknown' | 'OverLimit';
3504 }3710 }
35053711
3506 /** @name PalletUniqueError (438) */3712 /** @name PalletUniqueError (466) */
3507 interface PalletUniqueError extends Enum {3713 interface PalletUniqueError extends Enum {
3508 readonly isCollectionDecimalPointLimitExceeded: boolean;3714 readonly isCollectionDecimalPointLimitExceeded: boolean;
3509 readonly isEmptyArgument: boolean;3715 readonly isEmptyArgument: boolean;
3510 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3716 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;
3511 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3717 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
3512 }3718 }
35133719
3514 /** @name PalletConfigurationError (439) */3720 /** @name PalletConfigurationError (467) */
3515 interface PalletConfigurationError extends Enum {3721 interface PalletConfigurationError extends Enum {
3516 readonly isInconsistentConfiguration: boolean;3722 readonly isInconsistentConfiguration: boolean;
3517 readonly type: 'InconsistentConfiguration';3723 readonly type: 'InconsistentConfiguration';
3518 }3724 }
35193725
3520 /** @name UpDataStructsCollection (440) */3726 /** @name UpDataStructsCollection (468) */
3521 interface UpDataStructsCollection extends Struct {3727 interface UpDataStructsCollection extends Struct {
3522 readonly owner: AccountId32;3728 readonly owner: AccountId32;
3523 readonly mode: UpDataStructsCollectionMode;3729 readonly mode: UpDataStructsCollectionMode;
3530 readonly flags: U8aFixed;3736 readonly flags: U8aFixed;
3531 }3737 }
35323738
3533 /** @name UpDataStructsSponsorshipStateAccountId32 (441) */3739 /** @name UpDataStructsSponsorshipStateAccountId32 (469) */
3534 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3740 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
3535 readonly isDisabled: boolean;3741 readonly isDisabled: boolean;
3536 readonly isUnconfirmed: boolean;3742 readonly isUnconfirmed: boolean;
3540 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3746 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
3541 }3747 }
35423748
3543 /** @name UpDataStructsProperties (442) */3749 /** @name UpDataStructsProperties (470) */
3544 interface UpDataStructsProperties extends Struct {3750 interface UpDataStructsProperties extends Struct {
3545 readonly map: UpDataStructsPropertiesMapBoundedVec;3751 readonly map: UpDataStructsPropertiesMapBoundedVec;
3546 readonly consumedSpace: u32;3752 readonly consumedSpace: u32;
3547 readonly spaceLimit: u32;3753 readonly reserved: u32;
3548 }3754 }
35493755
3550 /** @name UpDataStructsPropertiesMapBoundedVec (443) */3756 /** @name UpDataStructsPropertiesMapBoundedVec (471) */
3551 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}3757 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
35523758
3553 /** @name UpDataStructsPropertiesMapPropertyPermission (448) */3759 /** @name UpDataStructsPropertiesMapPropertyPermission (476) */
3554 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}3760 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
35553761
3556 /** @name UpDataStructsCollectionStats (455) */3762 /** @name UpDataStructsCollectionStats (483) */
3557 interface UpDataStructsCollectionStats extends Struct {3763 interface UpDataStructsCollectionStats extends Struct {
3558 readonly created: u32;3764 readonly created: u32;
3559 readonly destroyed: u32;3765 readonly destroyed: u32;
3560 readonly alive: u32;3766 readonly alive: u32;
3561 }3767 }
35623768
3563 /** @name UpDataStructsTokenChild (456) */3769 /** @name UpDataStructsTokenChild (484) */
3564 interface UpDataStructsTokenChild extends Struct {3770 interface UpDataStructsTokenChild extends Struct {
3565 readonly token: u32;3771 readonly token: u32;
3566 readonly collection: u32;3772 readonly collection: u32;
3567 }3773 }
35683774
3569 /** @name PhantomTypeUpDataStructs (457) */3775 /** @name PhantomTypeUpDataStructs (485) */
3570 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpPovEstimateRpcPovInfo]>> {}3776 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpPovEstimateRpcPovInfo]>> {}
35713777
3572 /** @name UpDataStructsTokenData (459) */3778 /** @name UpDataStructsTokenData (487) */
3573 interface UpDataStructsTokenData extends Struct {3779 interface UpDataStructsTokenData extends Struct {
3574 readonly properties: Vec<UpDataStructsProperty>;3780 readonly properties: Vec<UpDataStructsProperty>;
3575 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3781 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
3576 readonly pieces: u128;3782 readonly pieces: u128;
3577 }3783 }
35783784
3579 /** @name UpDataStructsRpcCollection (461) */3785 /** @name UpDataStructsRpcCollection (489) */
3580 interface UpDataStructsRpcCollection extends Struct {3786 interface UpDataStructsRpcCollection extends Struct {
3581 readonly owner: AccountId32;3787 readonly owner: AccountId32;
3582 readonly mode: UpDataStructsCollectionMode;3788 readonly mode: UpDataStructsCollectionMode;
3592 readonly flags: UpDataStructsRpcCollectionFlags;3798 readonly flags: UpDataStructsRpcCollectionFlags;
3593 }3799 }
35943800
3595 /** @name UpDataStructsRpcCollectionFlags (462) */3801 /** @name UpDataStructsRpcCollectionFlags (490) */
3596 interface UpDataStructsRpcCollectionFlags extends Struct {3802 interface UpDataStructsRpcCollectionFlags extends Struct {
3597 readonly foreign: bool;3803 readonly foreign: bool;
3598 readonly erc721metadata: bool;3804 readonly erc721metadata: bool;
3599 }3805 }
36003806
3601 /** @name UpPovEstimateRpcPovInfo (463) */3807 /** @name UpPovEstimateRpcPovInfo (491) */
3602 interface UpPovEstimateRpcPovInfo extends Struct {3808 interface UpPovEstimateRpcPovInfo extends Struct {
3603 readonly proofSize: u64;3809 readonly proofSize: u64;
3604 readonly compactProofSize: u64;3810 readonly compactProofSize: u64;
3607 readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;3813 readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;
3608 }3814 }
36093815
3610 /** @name SpRuntimeTransactionValidityTransactionValidityError (466) */3816 /** @name SpRuntimeTransactionValidityTransactionValidityError (494) */
3611 interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {3817 interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {
3612 readonly isInvalid: boolean;3818 readonly isInvalid: boolean;
3613 readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;3819 readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;
3616 readonly type: 'Invalid' | 'Unknown';3822 readonly type: 'Invalid' | 'Unknown';
3617 }3823 }
36183824
3619 /** @name SpRuntimeTransactionValidityInvalidTransaction (467) */3825 /** @name SpRuntimeTransactionValidityInvalidTransaction (495) */
3620 interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {3826 interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {
3621 readonly isCall: boolean;3827 readonly isCall: boolean;
3622 readonly isPayment: boolean;3828 readonly isPayment: boolean;
3633 readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';3839 readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';
3634 }3840 }
36353841
3636 /** @name SpRuntimeTransactionValidityUnknownTransaction (468) */3842 /** @name SpRuntimeTransactionValidityUnknownTransaction (496) */
3637 interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {3843 interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {
3638 readonly isCannotLookup: boolean;3844 readonly isCannotLookup: boolean;
3639 readonly isNoUnsignedValidator: boolean;3845 readonly isNoUnsignedValidator: boolean;
3642 readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';3848 readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';
3643 }3849 }
36443850
3645 /** @name UpPovEstimateRpcTrieKeyValue (470) */3851 /** @name UpPovEstimateRpcTrieKeyValue (498) */
3646 interface UpPovEstimateRpcTrieKeyValue extends Struct {3852 interface UpPovEstimateRpcTrieKeyValue extends Struct {
3647 readonly key: Bytes;3853 readonly key: Bytes;
3648 readonly value: Bytes;3854 readonly value: Bytes;
3649 }3855 }
36503856
3651 /** @name PalletCommonError (472) */3857 /** @name PalletCommonError (500) */
3652 interface PalletCommonError extends Enum {3858 interface PalletCommonError extends Enum {
3653 readonly isCollectionNotFound: boolean;3859 readonly isCollectionNotFound: boolean;
3654 readonly isMustBeTokenOwner: boolean;3860 readonly isMustBeTokenOwner: boolean;
3690 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsNotEthMirror' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';3896 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsNotEthMirror' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';
3691 }3897 }
36923898
3693 /** @name PalletFungibleError (474) */3899 /** @name PalletFungibleError (502) */
3694 interface PalletFungibleError extends Enum {3900 interface PalletFungibleError extends Enum {
3695 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3901 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
3696 readonly isFungibleItemsHaveNoId: boolean;3902 readonly isFungibleItemsHaveNoId: boolean;
3702 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';3908 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';
3703 }3909 }
37043910
3705 /** @name PalletRefungibleError (478) */3911 /** @name PalletRefungibleError (507) */
3706 interface PalletRefungibleError extends Enum {3912 interface PalletRefungibleError extends Enum {
3707 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3913 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
3708 readonly isWrongRefungiblePieces: boolean;3914 readonly isWrongRefungiblePieces: boolean;
3712 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3918 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
3713 }3919 }
37143920
3715 /** @name PalletNonfungibleItemData (479) */3921 /** @name PalletNonfungibleItemData (508) */
3716 interface PalletNonfungibleItemData extends Struct {3922 interface PalletNonfungibleItemData extends Struct {
3717 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3923 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
3718 }3924 }
37193925
3720 /** @name UpDataStructsPropertyScope (481) */3926 /** @name UpDataStructsPropertyScope (510) */
3721 interface UpDataStructsPropertyScope extends Enum {3927 interface UpDataStructsPropertyScope extends Enum {
3722 readonly isNone: boolean;3928 readonly isNone: boolean;
3723 readonly isRmrk: boolean;3929 readonly isRmrk: boolean;
3724 readonly type: 'None' | 'Rmrk';3930 readonly type: 'None' | 'Rmrk';
3725 }3931 }
37263932
3727 /** @name PalletNonfungibleError (484) */3933 /** @name PalletNonfungibleError (513) */
3728 interface PalletNonfungibleError extends Enum {3934 interface PalletNonfungibleError extends Enum {
3729 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3935 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
3730 readonly isNonfungibleItemsHaveNoAmount: boolean;3936 readonly isNonfungibleItemsHaveNoAmount: boolean;
3731 readonly isCantBurnNftWithChildren: boolean;3937 readonly isCantBurnNftWithChildren: boolean;
3732 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3938 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
3733 }3939 }
37343940
3735 /** @name PalletStructureError (485) */3941 /** @name PalletStructureError (514) */
3736 interface PalletStructureError extends Enum {3942 interface PalletStructureError extends Enum {
3737 readonly isOuroborosDetected: boolean;3943 readonly isOuroborosDetected: boolean;
3738 readonly isDepthLimit: boolean;3944 readonly isDepthLimit: boolean;
3742 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound' | 'CantNestTokenUnderCollection';3948 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound' | 'CantNestTokenUnderCollection';
3743 }3949 }
37443950
3745 /** @name PalletAppPromotionError (490) */3951 /** @name PalletAppPromotionError (519) */
3746 interface PalletAppPromotionError extends Enum {3952 interface PalletAppPromotionError extends Enum {
3747 readonly isAdminNotSet: boolean;3953 readonly isAdminNotSet: boolean;
3748 readonly isNoPermission: boolean;3954 readonly isNoPermission: boolean;
3754 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation' | 'InsufficientStakedBalance';3960 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation' | 'InsufficientStakedBalance';
3755 }3961 }
37563962
3757 /** @name PalletForeignAssetsModuleError (491) */3963 /** @name PalletForeignAssetsModuleError (520) */
3758 interface PalletForeignAssetsModuleError extends Enum {3964 interface PalletForeignAssetsModuleError extends Enum {
3759 readonly isBadLocation: boolean;3965 readonly isBadLocation: boolean;
3760 readonly isMultiLocationExisted: boolean;3966 readonly isMultiLocationExisted: boolean;
3763 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3969 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
3764 }3970 }
37653971
3766 /** @name PalletEvmError (493) */3972 /** @name PalletEvmError (522) */
3767 interface PalletEvmError extends Enum {3973 interface PalletEvmError extends Enum {
3768 readonly isBalanceLow: boolean;3974 readonly isBalanceLow: boolean;
3769 readonly isFeeOverflow: boolean;3975 readonly isFeeOverflow: boolean;
3779 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';3985 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';
3780 }3986 }
37813987
3782 /** @name FpRpcTransactionStatus (496) */3988 /** @name FpRpcTransactionStatus (525) */
3783 interface FpRpcTransactionStatus extends Struct {3989 interface FpRpcTransactionStatus extends Struct {
3784 readonly transactionHash: H256;3990 readonly transactionHash: H256;
3785 readonly transactionIndex: u32;3991 readonly transactionIndex: u32;
3790 readonly logsBloom: EthbloomBloom;3996 readonly logsBloom: EthbloomBloom;
3791 }3997 }
37923998
3793 /** @name EthbloomBloom (498) */3999 /** @name EthbloomBloom (527) */
3794 interface EthbloomBloom extends U8aFixed {}4000 interface EthbloomBloom extends U8aFixed {}
37954001
3796 /** @name EthereumReceiptReceiptV3 (500) */4002 /** @name EthereumReceiptReceiptV3 (529) */
3797 interface EthereumReceiptReceiptV3 extends Enum {4003 interface EthereumReceiptReceiptV3 extends Enum {
3798 readonly isLegacy: boolean;4004 readonly isLegacy: boolean;
3799 readonly asLegacy: EthereumReceiptEip658ReceiptData;4005 readonly asLegacy: EthereumReceiptEip658ReceiptData;
3804 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';4010 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
3805 }4011 }
38064012
3807 /** @name EthereumReceiptEip658ReceiptData (501) */4013 /** @name EthereumReceiptEip658ReceiptData (530) */
3808 interface EthereumReceiptEip658ReceiptData extends Struct {4014 interface EthereumReceiptEip658ReceiptData extends Struct {
3809 readonly statusCode: u8;4015 readonly statusCode: u8;
3810 readonly usedGas: U256;4016 readonly usedGas: U256;
3811 readonly logsBloom: EthbloomBloom;4017 readonly logsBloom: EthbloomBloom;
3812 readonly logs: Vec<EthereumLog>;4018 readonly logs: Vec<EthereumLog>;
3813 }4019 }
38144020
3815 /** @name EthereumBlock (502) */4021 /** @name EthereumBlock (531) */
3816 interface EthereumBlock extends Struct {4022 interface EthereumBlock extends Struct {
3817 readonly header: EthereumHeader;4023 readonly header: EthereumHeader;
3818 readonly transactions: Vec<EthereumTransactionTransactionV2>;4024 readonly transactions: Vec<EthereumTransactionTransactionV2>;
3819 readonly ommers: Vec<EthereumHeader>;4025 readonly ommers: Vec<EthereumHeader>;
3820 }4026 }
38214027
3822 /** @name EthereumHeader (503) */4028 /** @name EthereumHeader (532) */
3823 interface EthereumHeader extends Struct {4029 interface EthereumHeader extends Struct {
3824 readonly parentHash: H256;4030 readonly parentHash: H256;
3825 readonly ommersHash: H256;4031 readonly ommersHash: H256;
3838 readonly nonce: EthereumTypesHashH64;4044 readonly nonce: EthereumTypesHashH64;
3839 }4045 }
38404046
3841 /** @name EthereumTypesHashH64 (504) */4047 /** @name EthereumTypesHashH64 (533) */
3842 interface EthereumTypesHashH64 extends U8aFixed {}4048 interface EthereumTypesHashH64 extends U8aFixed {}
38434049
3844 /** @name PalletEthereumError (509) */4050 /** @name PalletEthereumError (538) */
3845 interface PalletEthereumError extends Enum {4051 interface PalletEthereumError extends Enum {
3846 readonly isInvalidSignature: boolean;4052 readonly isInvalidSignature: boolean;
3847 readonly isPreLogExists: boolean;4053 readonly isPreLogExists: boolean;
3848 readonly type: 'InvalidSignature' | 'PreLogExists';4054 readonly type: 'InvalidSignature' | 'PreLogExists';
3849 }4055 }
38504056
3851 /** @name PalletEvmCoderSubstrateError (510) */4057 /** @name PalletEvmCoderSubstrateError (539) */
3852 interface PalletEvmCoderSubstrateError extends Enum {4058 interface PalletEvmCoderSubstrateError extends Enum {
3853 readonly isOutOfGas: boolean;4059 readonly isOutOfGas: boolean;
3854 readonly isOutOfFund: boolean;4060 readonly isOutOfFund: boolean;
3855 readonly type: 'OutOfGas' | 'OutOfFund';4061 readonly type: 'OutOfGas' | 'OutOfFund';
3856 }4062 }
38574063
3858 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (511) */4064 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (540) */
3859 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {4065 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
3860 readonly isDisabled: boolean;4066 readonly isDisabled: boolean;
3861 readonly isUnconfirmed: boolean;4067 readonly isUnconfirmed: boolean;
3865 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';4071 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
3866 }4072 }
38674073
3868 /** @name PalletEvmContractHelpersSponsoringModeT (512) */4074 /** @name PalletEvmContractHelpersSponsoringModeT (541) */
3869 interface PalletEvmContractHelpersSponsoringModeT extends Enum {4075 interface PalletEvmContractHelpersSponsoringModeT extends Enum {
3870 readonly isDisabled: boolean;4076 readonly isDisabled: boolean;
3871 readonly isAllowlisted: boolean;4077 readonly isAllowlisted: boolean;
3872 readonly isGenerous: boolean;4078 readonly isGenerous: boolean;
3873 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';4079 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
3874 }4080 }
38754081
3876 /** @name PalletEvmContractHelpersError (518) */4082 /** @name PalletEvmContractHelpersError (547) */
3877 interface PalletEvmContractHelpersError extends Enum {4083 interface PalletEvmContractHelpersError extends Enum {
3878 readonly isNoPermission: boolean;4084 readonly isNoPermission: boolean;
3879 readonly isNoPendingSponsor: boolean;4085 readonly isNoPendingSponsor: boolean;
3880 readonly isTooManyMethodsHaveSponsoredLimit: boolean;4086 readonly isTooManyMethodsHaveSponsoredLimit: boolean;
3881 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';4087 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
3882 }4088 }
38834089
3884 /** @name PalletEvmMigrationError (519) */4090 /** @name PalletEvmMigrationError (548) */
3885 interface PalletEvmMigrationError extends Enum {4091 interface PalletEvmMigrationError extends Enum {
3886 readonly isAccountNotEmpty: boolean;4092 readonly isAccountNotEmpty: boolean;
3887 readonly isAccountIsNotMigrating: boolean;4093 readonly isAccountIsNotMigrating: boolean;
3888 readonly isBadEvent: boolean;4094 readonly isBadEvent: boolean;
3889 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';4095 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
3890 }4096 }
38914097
3892 /** @name PalletMaintenanceError (520) */4098 /** @name PalletMaintenanceError (549) */
3893 type PalletMaintenanceError = Null;4099 type PalletMaintenanceError = Null;
38944100
3895 /** @name PalletTestUtilsError (521) */4101 /** @name PalletTestUtilsError (550) */
3896 interface PalletTestUtilsError extends Enum {4102 interface PalletTestUtilsError extends Enum {
3897 readonly isTestPalletDisabled: boolean;4103 readonly isTestPalletDisabled: boolean;
3898 readonly isTriggerRollback: boolean;4104 readonly isTriggerRollback: boolean;
3899 readonly type: 'TestPalletDisabled' | 'TriggerRollback';4105 readonly type: 'TestPalletDisabled' | 'TriggerRollback';
3900 }4106 }
39014107
3902 /** @name SpRuntimeMultiSignature (523) */4108 /** @name SpRuntimeMultiSignature (552) */
3903 interface SpRuntimeMultiSignature extends Enum {4109 interface SpRuntimeMultiSignature extends Enum {
3904 readonly isEd25519: boolean;4110 readonly isEd25519: boolean;
3905 readonly asEd25519: SpCoreEd25519Signature;4111 readonly asEd25519: SpCoreEd25519Signature;
3910 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';4116 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
3911 }4117 }
39124118
3913 /** @name SpCoreEd25519Signature (524) */4119 /** @name SpCoreEd25519Signature (553) */
3914 interface SpCoreEd25519Signature extends U8aFixed {}4120 interface SpCoreEd25519Signature extends U8aFixed {}
39154121
3916 /** @name SpCoreSr25519Signature (526) */4122 /** @name SpCoreSr25519Signature (555) */
3917 interface SpCoreSr25519Signature extends U8aFixed {}4123 interface SpCoreSr25519Signature extends U8aFixed {}
39184124
3919 /** @name SpCoreEcdsaSignature (527) */4125 /** @name SpCoreEcdsaSignature (556) */
3920 interface SpCoreEcdsaSignature extends U8aFixed {}4126 interface SpCoreEcdsaSignature extends U8aFixed {}
39214127
3922 /** @name FrameSystemExtensionsCheckSpecVersion (530) */4128 /** @name FrameSystemExtensionsCheckSpecVersion (559) */
3923 type FrameSystemExtensionsCheckSpecVersion = Null;4129 type FrameSystemExtensionsCheckSpecVersion = Null;
39244130
3925 /** @name FrameSystemExtensionsCheckTxVersion (531) */4131 /** @name FrameSystemExtensionsCheckTxVersion (560) */
3926 type FrameSystemExtensionsCheckTxVersion = Null;4132 type FrameSystemExtensionsCheckTxVersion = Null;
39274133
3928 /** @name FrameSystemExtensionsCheckGenesis (532) */4134 /** @name FrameSystemExtensionsCheckGenesis (561) */
3929 type FrameSystemExtensionsCheckGenesis = Null;4135 type FrameSystemExtensionsCheckGenesis = Null;
39304136
3931 /** @name FrameSystemExtensionsCheckNonce (535) */4137 /** @name FrameSystemExtensionsCheckNonce (564) */
3932 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}4138 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
39334139
3934 /** @name FrameSystemExtensionsCheckWeight (536) */4140 /** @name FrameSystemExtensionsCheckWeight (565) */
3935 type FrameSystemExtensionsCheckWeight = Null;4141 type FrameSystemExtensionsCheckWeight = Null;
39364142
3937 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (537) */4143 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (566) */
3938 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;4144 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
39394145
3940 /** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls (538) */4146 /** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls (567) */
3941 type OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;4147 type OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;
39424148
3943 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (539) */4149 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (568) */
3944 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}4150 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
39454151
3946 /** @name OpalRuntimeRuntime (540) */4152 /** @name OpalRuntimeRuntime (569) */
3947 type OpalRuntimeRuntime = Null;4153 type OpalRuntimeRuntime = Null;
39484154
3949 /** @name PalletEthereumFakeTransactionFinalizer (541) */4155 /** @name PalletEthereumFakeTransactionFinalizer (570) */
3950 type PalletEthereumFakeTransactionFinalizer = Null;4156 type PalletEthereumFakeTransactionFinalizer = Null;
39514157
3952} // declare module4158} // declare module
modifiedtests/src/interfaces/types.tsdiffbeforeafterboth
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2/* eslint-disable */2/* eslint-disable */
33
4export * from './unique/types';4export * from './appPromotion/types.js';
5export * from './appPromotion/types';5export * from './default/types.js';
6export * from './povinfo/types';6export * from './povinfo/types.js';
7export * from './default/types';7export * from './unique/types.js';
88
modifiedtests/src/interfaces/unique/index.tsdiffbeforeafterboth
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2/* eslint-disable */2/* eslint-disable */
33
4export * from './types';4export * from './types.js';
55
modifiedtests/src/limits.test.tsdiffbeforeafterboth
2222
23 before(async () => {23 before(async () => {
24 await usingPlaygrounds(async (helper, privateKey) => {24 await usingPlaygrounds(async (helper, privateKey) => {
25 const donor = await privateKey({filename: __filename});25 const donor = await privateKey({url: import.meta.url});
26 [alice] = await helper.arrange.createAccounts([10n], donor);26 [alice] = await helper.arrange.createAccounts([10n], donor);
27 });27 });
28 });28 });
60 await usingPlaygrounds(async (helper, privateKey) => {60 await usingPlaygrounds(async (helper, privateKey) => {
61 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);61 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
6262
63 const donor = await privateKey({filename: __filename});63 const donor = await privateKey({url: import.meta.url});
64 [alice] = await helper.arrange.createAccounts([10n], donor);64 [alice] = await helper.arrange.createAccounts([10n], donor);
65 });65 });
66 });66 });
292292
293 before(async () => {293 before(async () => {
294 await usingPlaygrounds(async (helper, privateKey) => {294 await usingPlaygrounds(async (helper, privateKey) => {
295 const donor = await privateKey({filename: __filename});295 const donor = await privateKey({url: import.meta.url});
296 [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);296 [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);
297 });297 });
298 });298 });
333333
334 before(async () => {334 before(async () => {
335 await usingPlaygrounds(async (helper, privateKey) => {335 await usingPlaygrounds(async (helper, privateKey) => {
336 const donor = await privateKey({filename: __filename});336 const donor = await privateKey({url: import.meta.url});
337 [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);337 [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);
338 });338 });
339 });339 });
366 await usingPlaygrounds(async (helper, privateKey) => {366 await usingPlaygrounds(async (helper, privateKey) => {
367 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);367 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
368368
369 const donor = await privateKey({filename: __filename});369 const donor = await privateKey({url: import.meta.url});
370 [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);370 [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);
371 });371 });
372 });372 });
404404
405 before(async () => {405 before(async () => {
406 await usingPlaygrounds(async (helper, privateKey) => {406 await usingPlaygrounds(async (helper, privateKey) => {
407 const donor = await privateKey({filename: __filename});407 const donor = await privateKey({url: import.meta.url});
408 [alice] = await helper.arrange.createAccounts([10n], donor);408 [alice] = await helper.arrange.createAccounts([10n], donor);
409 });409 });
410 });410 });
modifiedtests/src/maintenance.seqtest.tsdiffbeforeafterboth
33 await usingPlaygrounds(async (helper, privateKey) => {33 await usingPlaygrounds(async (helper, privateKey) => {
34 requirePalletsOrSkip(this, helper, [Pallets.Maintenance]);34 requirePalletsOrSkip(this, helper, [Pallets.Maintenance]);
35 superuser = await privateKey('//Alice');35 superuser = await privateKey('//Alice');
36 donor = await privateKey({filename: __filename});36 donor = await privateKey({url: import.meta.url});
37 [bob] = await helper.arrange.createAccounts([10000n], donor);37 [bob] = await helper.arrange.createAccounts([10000n], donor);
3838
39 });39 });
modifiedtests/src/nesting/collectionProperties.seqtest.tsdiffbeforeafterboth
24 before(async () => {24 before(async () => {
25 await usingPlaygrounds(async (helper, privateKey) => {25 await usingPlaygrounds(async (helper, privateKey) => {
26 superuser = await privateKey('//Alice');26 superuser = await privateKey('//Alice');
27 const donor = await privateKey({filename: __filename});27 const donor = await privateKey({url: import.meta.url});
28 [alice] = await helper.arrange.createAccounts([100n], donor);28 [alice] = await helper.arrange.createAccounts([100n], donor);
29 });29 });
30 });30 });
modifiedtests/src/nesting/collectionProperties.test.tsdiffbeforeafterboth
2323
24 before(async () => {24 before(async () => {
25 await usingPlaygrounds(async (helper, privateKey) => {25 await usingPlaygrounds(async (helper, privateKey) => {
26 const donor = await privateKey({filename: __filename});26 const donor = await privateKey({url: import.meta.url});
27 [alice, bob] = await helper.arrange.createAccounts([200n, 10n], donor);27 [alice, bob] = await helper.arrange.createAccounts([200n, 10n], donor);
28 });28 });
29 });29 });
206206
207 before(async () => {207 before(async () => {
208 await usingPlaygrounds(async (helper, privateKey) => {208 await usingPlaygrounds(async (helper, privateKey) => {
209 const donor = await privateKey({filename: __filename});209 const donor = await privateKey({url: import.meta.url});
210 [alice, bob] = await helper.arrange.createAccounts([1000n, 100n], donor);210 [alice, bob] = await helper.arrange.createAccounts([1000n, 100n], donor);
211 });211 });
212 });212 });
modifiedtests/src/nesting/graphs.test.tsdiffbeforeafterboth
4545
46 before(async () => {46 before(async () => {
47 await usingPlaygrounds(async (helper, privateKey) => {47 await usingPlaygrounds(async (helper, privateKey) => {
48 const donor = await privateKey({filename: __filename});48 const donor = await privateKey({url: import.meta.url});
49 [alice] = await helper.arrange.createAccounts([10n], donor);49 [alice] = await helper.arrange.createAccounts([10n], donor);
50 });50 });
51 });51 });
modifiedtests/src/nesting/propertyPermissions.test.tsdiffbeforeafterboth
2424
25 before(async () => {25 before(async () => {
26 await usingPlaygrounds(async (helper, privateKey) => {26 await usingPlaygrounds(async (helper, privateKey) => {
27 const donor = await privateKey({filename: __filename});27 const donor = await privateKey({url: import.meta.url});
28 [alice, bob] = await helper.arrange.createAccounts([100n, 10n], donor);28 [alice, bob] = await helper.arrange.createAccounts([100n, 10n], donor);
29 });29 });
30 });30 });
8787
88 before(async () => {88 before(async () => {
89 await usingPlaygrounds(async (helper, privateKey) => {89 await usingPlaygrounds(async (helper, privateKey) => {
90 const donor = await privateKey({filename: __filename});90 const donor = await privateKey({url: import.meta.url});
91 [alice, bob] = await helper.arrange.createAccounts([50n, 10n], donor);91 [alice, bob] = await helper.arrange.createAccounts([50n, 10n], donor);
92 });92 });
93 });93 });
modifiedtests/src/nesting/tokenProperties.seqtest.tsdiffbeforeafterboth
24 before(async () => {24 before(async () => {
25 await usingPlaygrounds(async (helper, privateKey) => {25 await usingPlaygrounds(async (helper, privateKey) => {
26 superuser = await privateKey('//Alice');26 superuser = await privateKey('//Alice');
27 const donor = await privateKey({filename: __filename});27 const donor = await privateKey({url: import.meta.url});
28 [alice] = await helper.arrange.createAccounts([100n], donor);28 [alice] = await helper.arrange.createAccounts([100n], donor);
29 });29 });
30 });30 });
modifiedtests/src/nesting/tokenProperties.test.tsdiffbeforeafterboth
2727
28 before(async () => {28 before(async () => {
29 await usingPlaygrounds(async (helper, privateKey) => {29 await usingPlaygrounds(async (helper, privateKey) => {
30 const donor = await privateKey({filename: __filename});30 const donor = await privateKey({url: import.meta.url});
31 [alice, bob, charlie] = await helper.arrange.createAccounts([200n, 100n, 100n], donor);31 [alice, bob, charlie] = await helper.arrange.createAccounts([200n, 100n, 100n], donor);
32 });32 });
3333
459459
460 before(async () => {460 before(async () => {
461 await usingPlaygrounds(async (helper, privateKey) => {461 await usingPlaygrounds(async (helper, privateKey) => {
462 const donor = await privateKey({filename: __filename});462 const donor = await privateKey({url: import.meta.url});
463 let dave: IKeyringPair;463 let dave: IKeyringPair;
464 [alice, bob, charlie, dave] = await helper.arrange.createAccounts([100n, 100n, 100n, 100n], donor);464 [alice, bob, charlie, dave] = await helper.arrange.createAccounts([100n, 100n, 100n, 100n], donor);
465465
702 await usingPlaygrounds(async (helper, privateKey) => {702 await usingPlaygrounds(async (helper, privateKey) => {
703 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);703 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
704704
705 const donor = await privateKey({filename: __filename});705 const donor = await privateKey({url: import.meta.url});
706 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);706 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
707 });707 });
708 });708 });
modifiedtests/src/nesting/unnest.test.tsdiffbeforeafterboth
2525
26 before(async () => {26 before(async () => {
27 await usingPlaygrounds(async (helper, privateKey) => {27 await usingPlaygrounds(async (helper, privateKey) => {
28 const donor = await privateKey({filename: __filename});28 const donor = await privateKey({url: import.meta.url});
29 [alice, bob, charlie] = await helper.arrange.createAccounts([200n, 50n, 50n], donor);29 [alice, bob, charlie] = await helper.arrange.createAccounts([200n, 50n, 50n], donor);
30 });30 });
31 });31 });
276276
277 before(async () => {277 before(async () => {
278 await usingPlaygrounds(async (helper, privateKey) => {278 await usingPlaygrounds(async (helper, privateKey) => {
279 const donor = await privateKey({filename: __filename});279 const donor = await privateKey({url: import.meta.url});
280 [alice, bob] = await helper.arrange.createAccounts([50n, 10n], donor);280 [alice, bob] = await helper.arrange.createAccounts([50n, 10n], donor);
281 });281 });
282 });282 });
modifiedtests/src/nextSponsoring.test.tsdiffbeforeafterboth
2525
26 before(async () => {26 before(async () => {
27 await usingPlaygrounds(async (helper, privateKey) => {27 await usingPlaygrounds(async (helper, privateKey) => {
28 const donor = await privateKey({filename: __filename});28 const donor = await privateKey({url: import.meta.url});
29 [alice, bob] = await helper.arrange.createAccounts([20n, 10n], donor);29 [alice, bob] = await helper.arrange.createAccounts([20n, 10n], donor);
30 });30 });
31 });31 });
modifiedtests/src/refungible.test.tsdiffbeforeafterboth
28 await usingPlaygrounds(async (helper, privateKey) => {28 await usingPlaygrounds(async (helper, privateKey) => {
29 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);29 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
3030
31 donor = await privateKey({filename: __filename});31 donor = await privateKey({url: import.meta.url});
32 [alice, bob] = await helper.arrange.createAccounts([100n, 10n], donor);32 [alice, bob] = await helper.arrange.createAccounts([100n, 10n], donor);
33 });33 });
34 });34 });
modifiedtests/src/removeCollectionAdmin.test.tsdiffbeforeafterboth
2323
24 before(async () => {24 before(async () => {
25 await usingPlaygrounds(async (helper, privateKey) => {25 await usingPlaygrounds(async (helper, privateKey) => {
26 const donor = await privateKey({filename: __filename});26 const donor = await privateKey({url: import.meta.url});
27 [alice, bob] = await helper.arrange.createAccounts([20n, 10n], donor);27 [alice, bob] = await helper.arrange.createAccounts([20n, 10n], donor);
28 });28 });
29 });29 });
6262
63 before(async () => {63 before(async () => {
64 await usingPlaygrounds(async (helper, privateKey) => {64 await usingPlaygrounds(async (helper, privateKey) => {
65 const donor = await privateKey({filename: __filename});65 const donor = await privateKey({url: import.meta.url});
66 [alice, bob, charlie] = await helper.arrange.createAccounts([20n, 10n, 10n], donor);66 [alice, bob, charlie] = await helper.arrange.createAccounts([20n, 10n, 10n], donor);
67 });67 });
68 });68 });
modifiedtests/src/removeCollectionSponsor.test.tsdiffbeforeafterboth
2525
26 before(async () => {26 before(async () => {
27 await usingPlaygrounds(async (helper, privateKey) => {27 await usingPlaygrounds(async (helper, privateKey) => {
28 donor = await privateKey({filename: __filename});28 donor = await privateKey({url: import.meta.url});
29 [alice, bob, charlie] = await helper.arrange.createAccounts([20n, 10n, 10n], donor);29 [alice, bob, charlie] = await helper.arrange.createAccounts([20n, 10n, 10n], donor);
30 });30 });
31 });31 });
8585
86 before(async () => {86 before(async () => {
87 await usingPlaygrounds(async (helper, privateKey) => {87 await usingPlaygrounds(async (helper, privateKey) => {
88 const donor = await privateKey({filename: __filename});88 const donor = await privateKey({url: import.meta.url});
89 [alice, bob, charlie] = await helper.arrange.createAccounts([20n, 10n, 10n], donor);89 [alice, bob, charlie] = await helper.arrange.createAccounts([20n, 10n, 10n], donor);
90 });90 });
91 });91 });
modifiedtests/src/rpc.test.tsdiffbeforeafterboth
2525
26 before(async () => {26 before(async () => {
27 await usingPlaygrounds(async (helper, privateKey) => {27 await usingPlaygrounds(async (helper, privateKey) => {
28 donor = await privateKey({filename: __filename});28 donor = await privateKey({url: import.meta.url});
29 [alice, bob] = await helper.arrange.createAccounts([20n, 10n], donor);29 [alice, bob] = await helper.arrange.createAccounts([20n, 10n], donor);
30 });30 });
31 });31 });
modifiedtests/src/scheduler.seqtest.tsdiffbeforeafterboth
29 requirePalletsOrSkip(this, helper, [Pallets.Scheduler]);29 requirePalletsOrSkip(this, helper, [Pallets.Scheduler]);
3030
31 superuser = await privateKey('//Alice');31 superuser = await privateKey('//Alice');
32 const donor = await privateKey({filename: __filename});32 const donor = await privateKey({url: import.meta.url});
33 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);33 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
3434
35 await helper.testUtils.enable();35 await helper.testUtils.enable();
575 await usingPlaygrounds(async (helper, privateKey) => {575 await usingPlaygrounds(async (helper, privateKey) => {
576 requirePalletsOrSkip(this, helper, [Pallets.Scheduler]);576 requirePalletsOrSkip(this, helper, [Pallets.Scheduler]);
577577
578 const donor = await privateKey({filename: __filename});578 const donor = await privateKey({url: import.meta.url});
579 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);579 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
580580
581 await helper.testUtils.enable();581 await helper.testUtils.enable();
modifiedtests/src/setCollectionLimits.test.tsdiffbeforeafterboth
2929
30 before(async () => {30 before(async () => {
31 await usingPlaygrounds(async (helper, privateKey) => {31 await usingPlaygrounds(async (helper, privateKey) => {
32 const donor = await privateKey({filename: __filename});32 const donor = await privateKey({url: import.meta.url});
33 [alice, bob] = await helper.arrange.createAccounts([20n, 10n], donor);33 [alice, bob] = await helper.arrange.createAccounts([20n, 10n], donor);
34 });34 });
35 });35 });
104104
105 before(async () => {105 before(async () => {
106 await usingPlaygrounds(async (helper, privateKey) => {106 await usingPlaygrounds(async (helper, privateKey) => {
107 const donor = await privateKey({filename: __filename});107 const donor = await privateKey({url: import.meta.url});
108 [alice, bob] = await helper.arrange.createAccounts([20n, 10n], donor);108 [alice, bob] = await helper.arrange.createAccounts([20n, 10n], donor);
109 });109 });
110 });110 });
modifiedtests/src/setCollectionSponsor.test.tsdiffbeforeafterboth
2424
25 before(async () => {25 before(async () => {
26 await usingPlaygrounds(async (helper, privateKey) => {26 await usingPlaygrounds(async (helper, privateKey) => {
27 const donor = await privateKey({filename: __filename});27 const donor = await privateKey({url: import.meta.url});
28 [alice, bob, charlie] = await helper.arrange.createAccounts([20n, 10n, 10n], donor);28 [alice, bob, charlie] = await helper.arrange.createAccounts([20n, 10n, 10n], donor);
29 });29 });
30 });30 });
9393
94 before(async () => {94 before(async () => {
95 await usingPlaygrounds(async (helper, privateKey) => {95 await usingPlaygrounds(async (helper, privateKey) => {
96 const donor = await privateKey({filename: __filename});96 const donor = await privateKey({url: import.meta.url});
97 [alice, bob] = await helper.arrange.createAccounts([10n, 5n], donor);97 [alice, bob] = await helper.arrange.createAccounts([10n, 5n], donor);
98 });98 });
99 });99 });
modifiedtests/src/setPermissions.test.tsdiffbeforeafterboth
2323
24 before(async () => {24 before(async () => {
25 await usingPlaygrounds(async (helper, privateKey) => {25 await usingPlaygrounds(async (helper, privateKey) => {
26 const donor = await privateKey({filename: __filename});26 const donor = await privateKey({url: import.meta.url});
27 [alice, bob] = await helper.arrange.createAccounts([10n, 10n], donor);27 [alice, bob] = await helper.arrange.createAccounts([10n, 10n], donor);
28 });28 });
29 });29 });
7979
80 before(async () => {80 before(async () => {
81 await usingPlaygrounds(async (helper, privateKey) => {81 await usingPlaygrounds(async (helper, privateKey) => {
82 const donor = await privateKey({filename: __filename});82 const donor = await privateKey({url: import.meta.url});
83 [alice, bob] = await helper.arrange.createAccounts([10n, 10n], donor);83 [alice, bob] = await helper.arrange.createAccounts([10n, 10n], donor);
84 });84 });
85 });85 });
modifiedtests/src/sub/appPromotion/appPromotion.seqtest.tsdiffbeforeafterboth
27 await usingPlaygrounds(async (helper, privateKey) => {27 await usingPlaygrounds(async (helper, privateKey) => {
28 requirePalletsOrSkip(this, helper, [Pallets.AppPromotion]);28 requirePalletsOrSkip(this, helper, [Pallets.AppPromotion]);
29 superuser = await privateKey('//Alice');29 superuser = await privateKey('//Alice');
30 donor = await privateKey({filename: __filename});30 donor = await privateKey({url: import.meta.url});
31 palletAdmin = await privateKey('//PromotionAdmin');31 palletAdmin = await privateKey('//PromotionAdmin');
32 const api = helper.getApi();32 const api = helper.getApi();
33 await helper.signTransaction(superuser, api.tx.sudo.sudo(api.tx.appPromotion.setAdminAddress({Substrate: palletAdmin.address})));33 await helper.signTransaction(superuser, api.tx.sudo.sudo(api.tx.appPromotion.setAdminAddress({Substrate: palletAdmin.address})));
modifiedtests/src/sub/appPromotion/appPromotion.test.tsdiffbeforeafterboth
41 before(async function () {41 before(async function () {
42 await usingPlaygrounds(async (helper, privateKey) => {42 await usingPlaygrounds(async (helper, privateKey) => {
43 requirePalletsOrSkip(this, helper, [Pallets.AppPromotion]);43 requirePalletsOrSkip(this, helper, [Pallets.AppPromotion]);
44 donor = await privateKey({filename: __filename});44 donor = await privateKey({url: import.meta.url});
45 palletAddress = helper.arrange.calculatePalletAddress('appstake');45 palletAddress = helper.arrange.calculatePalletAddress('appstake');
46 palletAdmin = await privateKey('//PromotionAdmin');46 palletAdmin = await privateKey('//PromotionAdmin');
47 nominal = helper.balance.getOneTokenNominal();47 nominal = helper.balance.getOneTokenNominal();
modifiedtests/src/sub/nesting/admin.test.tsdiffbeforeafterboth
2424
25 before(async () => {25 before(async () => {
26 await usingPlaygrounds(async (helper, privateKey) => {26 await usingPlaygrounds(async (helper, privateKey) => {
27 const donor = await privateKey({filename: __filename});27 const donor = await privateKey({url: import.meta.url});
28 [alice, bob, charlie] = await helper.arrange.createAccounts([200n, 10n, 10n], donor);28 [alice, bob, charlie] = await helper.arrange.createAccounts([200n, 10n, 10n], donor);
29 });29 });
30 });30 });
modifiedtests/src/sub/nesting/common.test.tsdiffbeforeafterboth
2323
24before(async () => {24before(async () => {
25 await usingPlaygrounds(async (helper, privateKey) => {25 await usingPlaygrounds(async (helper, privateKey) => {
26 const donor = await privateKey({filename: __filename});26 const donor = await privateKey({url: import.meta.url});
27 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);27 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
28 });28 });
29});29});
modifiedtests/src/sub/nesting/e2e.test.tsdiffbeforeafterboth
2323
24 before(async () => {24 before(async () => {
25 await usingPlaygrounds(async (helper, privateKey) => {25 await usingPlaygrounds(async (helper, privateKey) => {
26 const donor = await privateKey({filename: __filename});26 const donor = await privateKey({url: import.meta.url});
27 [alice, bob] = await helper.arrange.createAccounts([50n, 10n], donor);27 [alice, bob] = await helper.arrange.createAccounts([50n, 10n], donor);
28 });28 });
29 });29 });
modifiedtests/src/sub/nesting/nesting.negative.test.tsdiffbeforeafterboth
2525
26before(async () => {26before(async () => {
27 await usingPlaygrounds(async (helper, privateKey) => {27 await usingPlaygrounds(async (helper, privateKey) => {
28 const donor = await privateKey({filename: __filename});28 const donor = await privateKey({url: import.meta.url});
29 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);29 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
30 });30 });
31});31});
modifiedtests/src/sub/nesting/refungible.test.tsdiffbeforeafterboth
2222
23before(async () => {23before(async () => {
24 await usingPlaygrounds(async (helper, privateKey) => {24 await usingPlaygrounds(async (helper, privateKey) => {
25 const donor = await privateKey({filename: __filename});25 const donor = await privateKey({url: import.meta.url});
26 [alice] = await helper.arrange.createAccounts([200n], donor);26 [alice] = await helper.arrange.createAccounts([200n], donor);
27 });27 });
28});28});
modifiedtests/src/sub/nesting/unnesting.negative.test.tsdiffbeforeafterboth
2323
24 before(async () => {24 before(async () => {
25 await usingPlaygrounds(async (helper, privateKey) => {25 await usingPlaygrounds(async (helper, privateKey) => {
26 const donor = await privateKey({filename: __filename});26 const donor = await privateKey({url: import.meta.url});
27 [alice, bob] = await helper.arrange.createAccounts([100n, 50n], donor);27 [alice, bob] = await helper.arrange.createAccounts([100n, 50n], donor);
28 });28 });
29 });29 });
modifiedtests/src/sub/refungible/burn.test.tsdiffbeforeafterboth
26 await usingPlaygrounds(async (helper, privateKey) => {26 await usingPlaygrounds(async (helper, privateKey) => {
27 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);27 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
2828
29 donor = await privateKey({filename: __filename});29 donor = await privateKey({url: import.meta.url});
30 [alice, bob] = await helper.arrange.createAccounts([100n, 10n], donor);30 [alice, bob] = await helper.arrange.createAccounts([100n, 10n], donor);
31 });31 });
32 });32 });
95 before(async function() {95 before(async function() {
96 await usingPlaygrounds(async (helper, privateKey) => {96 await usingPlaygrounds(async (helper, privateKey) => {
97 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);97 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
98 donor = await privateKey({filename: __filename});98 donor = await privateKey({url: import.meta.url});
99 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);99 [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
100 });100 });
101 });101 });
modifiedtests/src/sub/refungible/nesting.test.tsdiffbeforeafterboth
24 before(async function() {24 before(async function() {
25 await usingPlaygrounds(async (helper, privateKey) => {25 await usingPlaygrounds(async (helper, privateKey) => {
26 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);26 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
27 const donor = await privateKey({filename: __filename});27 const donor = await privateKey({url: import.meta.url});
28 [alice, charlie] = await helper.arrange.createAccounts([50n, 10n], donor);28 [alice, charlie] = await helper.arrange.createAccounts([50n, 10n], donor);
29 });29 });
30 });30 });
111 before(async function() {111 before(async function() {
112 await usingPlaygrounds(async (helper, privateKey) => {112 await usingPlaygrounds(async (helper, privateKey) => {
113 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);113 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
114 const donor = await privateKey({filename: __filename});114 const donor = await privateKey({url: import.meta.url});
115 [alice, bob] = await helper.arrange.createAccounts([100n, 50n], donor);115 [alice, bob] = await helper.arrange.createAccounts([100n, 50n], donor);
116 });116 });
117 });117 });
modifiedtests/src/sub/refungible/repartition.test.tsdiffbeforeafterboth
26 await usingPlaygrounds(async (helper, privateKey) => {26 await usingPlaygrounds(async (helper, privateKey) => {
27 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);27 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
2828
29 donor = await privateKey({filename: __filename});29 donor = await privateKey({url: import.meta.url});
30 [alice, bob] = await helper.arrange.createAccounts([100n, 10n], donor);30 [alice, bob] = await helper.arrange.createAccounts([100n, 10n], donor);
31 });31 });
32 });32 });
modifiedtests/src/sub/refungible/transfer.test.tsdiffbeforeafterboth
27 await usingPlaygrounds(async (helper, privateKey) => {27 await usingPlaygrounds(async (helper, privateKey) => {
28 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);28 requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
2929
30 donor = await privateKey({filename: __filename});30 donor = await privateKey({url: import.meta.url});
31 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);31 [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
32 });32 });
33 });33 });
modifiedtests/src/transfer.test.tsdiffbeforeafterboth
2525
26 before(async () => {26 before(async () => {
27 await usingPlaygrounds(async (helper, privateKey) => {27 await usingPlaygrounds(async (helper, privateKey) => {
28 donor = await privateKey({filename: __filename});28 donor = await privateKey({url: import.meta.url});
29 [alice, bob] = await helper.arrange.createAccounts([50n, 10n], donor);29 [alice, bob] = await helper.arrange.createAccounts([50n, 10n], donor);
30 });30 });
31 });31 });
117117
118 before(async () => {118 before(async () => {
119 await usingPlaygrounds(async (helper, privateKey) => {119 await usingPlaygrounds(async (helper, privateKey) => {
120 const donor = await privateKey({filename: __filename});120 const donor = await privateKey({url: import.meta.url});
121 [alice, bob] = await helper.arrange.createAccounts([50n, 10n], donor);121 [alice, bob] = await helper.arrange.createAccounts([50n, 10n], donor);
122 });122 });
123 });123 });
276276
277 before(async function() {277 before(async function() {
278 await usingEthPlaygrounds(async (_, privateKey) => {278 await usingEthPlaygrounds(async (_, privateKey) => {
279 donor = await privateKey({filename: __filename});279 donor = await privateKey({url: import.meta.url});
280 });280 });
281 });281 });
282282
modifiedtests/src/transferFrom.test.tsdiffbeforeafterboth
2424
25 before(async () => {25 before(async () => {
26 await usingPlaygrounds(async (helper, privateKey) => {26 await usingPlaygrounds(async (helper, privateKey) => {
27 const donor = await privateKey({filename: __filename});27 const donor = await privateKey({url: import.meta.url});
28 [alice, bob, charlie] = await helper.arrange.createAccounts([20n, 10n, 10n], donor);28 [alice, bob, charlie] = await helper.arrange.createAccounts([20n, 10n, 10n], donor);
29 });29 });
30 });30 });
9191
92 before(async () => {92 before(async () => {
93 await usingPlaygrounds(async (helper, privateKey) => {93 await usingPlaygrounds(async (helper, privateKey) => {
94 const donor = await privateKey({filename: __filename});94 const donor = await privateKey({url: import.meta.url});
95 [alice, bob, charlie] = await helper.arrange.createAccounts([50n, 10n, 10n], donor);95 [alice, bob, charlie] = await helper.arrange.createAccounts([50n, 10n, 10n], donor);
96 });96 });
97 });97 });
modifiedtests/src/util/globalSetup.tsdiffbeforeafterboth
2// SPDX-License-Identifier: Apache-2.02// SPDX-License-Identifier: Apache-2.0
33
4import {4import {
5 usingPlaygrounds, Pallets, DONOR_FUNDING, MINIMUM_DONOR_FUND, LOCKING_PERIOD, UNLOCKING_PERIOD,5 usingPlaygrounds, Pallets, DONOR_FUNDING, MINIMUM_DONOR_FUND, LOCKING_PERIOD, UNLOCKING_PERIOD, makeNames,
6} from './index';6} from './index';
7import * as path from 'path';7import * as path from 'path';
8import {promises as fs} from 'fs';8import {promises as fs} from 'fs';
9
10const {dirname} = makeNames(import.meta.url);
911
10// This function should be called before running test suites.12// This function should be called before running test suites.
11const globalSetup = async (): Promise<void> => {13const globalSetup = async (): Promise<void> => {
62 const oneToken = helper.balance.getOneTokenNominal();64 const oneToken = helper.balance.getOneTokenNominal();
63 const alice = await privateKey('//Alice');65 const alice = await privateKey('//Alice');
64 const nonce = await helper.chain.getNonce(alice.address);66 const nonce = await helper.chain.getNonce(alice.address);
65 const filenames = await getFiles(path.resolve(__dirname, '..'));67 const filenames = await getFiles(path.resolve(dirname, '..'));
6668
67 // batching is actually undesireable, it takes away the time while all the transactions actually succeed69 // batching is actually undesireable, it takes away the time while all the transactions actually succeed
68 const batchSize = 300;70 const batchSize = 300;
modifiedtests/src/util/index.tsdiffbeforeafterboth
12import {ChainHelperBase} from './playgrounds/unique';12import {ChainHelperBase} from './playgrounds/unique';
13import {ILogger} from './playgrounds/types';13import {ILogger} from './playgrounds/types';
14import {DevUniqueHelper, SilentLogger, SilentConsole, DevMoonbeamHelper, DevMoonriverHelper, DevAcalaHelper, DevKaruraHelper, DevRelayHelper, DevWestmintHelper, DevStatemineHelper, DevStatemintHelper} from './playgrounds/unique.dev';14import {DevUniqueHelper, SilentLogger, SilentConsole, DevMoonbeamHelper, DevMoonriverHelper, DevAcalaHelper, DevKaruraHelper, DevRelayHelper, DevWestmintHelper, DevStatemineHelper, DevStatemintHelper} from './playgrounds/unique.dev';
15import {dirname} from 'path';
16import {fileURLToPath} from 'url';
1517
16chai.use(chaiAsPromised);18chai.use(chaiAsPromised);
17chai.use(chaiSubset);19chai.use(chaiSubset);
25 return `//Alice+${getTestHash(filename)}`;27 return `//Alice+${getTestHash(filename)}`;
26};28};
2729
28async function usingPlaygroundsGeneral<T extends ChainHelperBase>(helperType: new(logger: ILogger) => T, url: string, code: (helper: T, privateKey: (seed: string | {filename: string, ignoreFundsPresence?: boolean}) => Promise<IKeyringPair>) => Promise<void>) {30async function usingPlaygroundsGeneral<T extends ChainHelperBase>(helperType: new(logger: ILogger) => T, url: string, code: (helper: T, privateKey: (seed: string | {filename?: string, url?: string, ignoreFundsPresence?: boolean}) => Promise<IKeyringPair>) => Promise<void>) {
29 const silentConsole = new SilentConsole();31 const silentConsole = new SilentConsole();
30 silentConsole.enable();32 silentConsole.enable();
3133
34 try {36 try {
35 await helper.connect(url);37 await helper.connect(url);
36 const ss58Format = helper.chain.getChainProperties().ss58Format;38 const ss58Format = helper.chain.getChainProperties().ss58Format;
37 const privateKey = async (seed: string | {filename: string, ignoreFundsPresence?: boolean}) => {39 const privateKey = async (seed: string | {filename?: string, url?: string, ignoreFundsPresence?: boolean}) => {
38 if (typeof seed === 'string') {40 if (typeof seed === 'string') {
39 return helper.util.fromSeed(seed, ss58Format);41 return helper.util.fromSeed(seed, ss58Format);
40 }42 }
41 else {43 if (seed.url) {
44 const {filename} = makeNames(seed.url);
45 seed.filename = filename;
46 } else if (seed.filename) {
47 // Pass
48 } else {
49 throw new Error('no url nor filename set');
50 }
42 const actualSeed = getTestSeed(seed.filename);51 const actualSeed = getTestSeed(seed.filename);
43 let account = helper.util.fromSeed(actualSeed, ss58Format);52 let account = helper.util.fromSeed(actualSeed, ss58Format);
44 // here's to hoping that no53 // here's to hoping that no
47 account = helper.util.fromSeed('//Alice', ss58Format);56 account = helper.util.fromSeed('//Alice', ss58Format);
48 }57 }
49 return account;58 return account;
50 }
51 };59 };
52 await code(helper, privateKey);60 await code(helper, privateKey);
53 }61 }
57 }65 }
58}66}
5967
60export const usingPlaygrounds = (code: (helper: DevUniqueHelper, privateKey: (seed: string | {filename: string, ignoreFundsPresence?: boolean}) => Promise<IKeyringPair>) => Promise<void>, url: string = config.substrateUrl) => {68export const usingPlaygrounds = (code: (helper: DevUniqueHelper, privateKey: (seed: string | {filename?: string, url?: string, ignoreFundsPresence?: boolean}) => Promise<IKeyringPair>) => Promise<void>, url: string = config.substrateUrl) => {
61 return usingPlaygroundsGeneral<DevUniqueHelper>(DevUniqueHelper, url, code);69 return usingPlaygroundsGeneral<DevUniqueHelper>(DevUniqueHelper, url, code);
62};70};
6371
200 return sizeOfEncodedStr(prop.key) + sizeOfEncodedStr(prop.value);208 return sizeOfEncodedStr(prop.key) + sizeOfEncodedStr(prop.value);
201}209}
210
211export function makeNames(url: string) {
212 const filename = fileURLToPath(url);
213 return {
214 filename,
215 dirname: dirname(filename),
216 };
217}
202218
modifiedtests/src/vesting.test.tsdiffbeforeafterboth
2323
24 before(async () => {24 before(async () => {
25 await usingPlaygrounds(async (helper, privateKey) => {25 await usingPlaygrounds(async (helper, privateKey) => {
26 donor = await privateKey({filename: __filename});26 donor = await privateKey({url: import.meta.url});
27 nominal = helper.balance.getOneTokenNominal();27 nominal = helper.balance.getOneTokenNominal();
28 });28 });
29 });29 });