difftreelog
fix PR
in: master
18 files changed
pallets/common/src/lib.rsdiffbeforeafterboth--- a/pallets/common/src/lib.rs
+++ b/pallets/common/src/lib.rs
@@ -284,7 +284,7 @@
self.check_is_internal()?;
ensure!(
self.collection.sponsorship.pending_sponsor() == Some(sender),
- Error::<T>::ConfirmUnsetSponsorFail
+ Error::<T>::ConfirmSponsorshipFail
);
self.collection.sponsorship = SponsorshipState::Confirmed(sender.clone());
@@ -303,7 +303,7 @@
/// Remove collection sponsor.
pub fn remove_sponsor(&mut self, sender: &T::CrossAccountId) -> DispatchResult {
self.check_is_internal()?;
- self.check_is_owner(sender)?;
+ self.check_is_owner_or_admin(sender)?;
self.collection.sponsorship = SponsorshipState::Disabled;
@@ -420,7 +420,7 @@
self.check_is_owner(&caller)?;
self.collection.owner = new_owner.as_sub().clone();
- <Pallet<T>>::deposit_event(Event::<T>::CollectionOwnedChanged(
+ <Pallet<T>>::deposit_event(Event::<T>::CollectionOwnerChanged(
self.id,
new_owner.as_sub().clone(),
));
@@ -663,7 +663,7 @@
),
/// Collection owned was changed.
- CollectionOwnedChanged(
+ CollectionOwnerChanged(
/// ID of the affected collection.
CollectionId,
/// New owner address.
@@ -785,10 +785,10 @@
CollectionIsInternal,
/// This address is not set as sponsor, use setCollectionSponsor first.
- ConfirmUnsetSponsorFail,
+ ConfirmSponsorshipFail,
/// The user is not an administrator.
- UserIsNotAdmin,
+ UserIsNotCollectionAdmin,
}
/// Storage of the count of created collections. Essentially contains the last collection ID.
@@ -1578,7 +1578,7 @@
if admin {
return Ok(());
} else {
- ensure!(false, Error::<T>::UserIsNotAdmin);
+ return Err(Error::<T>::UserIsNotCollectionAdmin.into());
}
}
let amount = <AdminAmount<T>>::get(collection.id);
@@ -1591,8 +1591,6 @@
amount <= Self::collection_admins_limit(),
<Error<T>>::CollectionAdminCountExceeded,
);
-
- // =========
<AdminAmount<T>>::insert(collection.id, amount);
<IsAdmin<T>>::insert((collection.id, user), true);
tests/src/change-collection-owner.test.tsdiffbeforeafterboth--- a/tests/src/change-collection-owner.test.ts
+++ b/tests/src/change-collection-owner.test.ts
@@ -146,7 +146,7 @@
const confirmSponsorshipTx = () => collection.confirmSponsorship(alice);
const removeSponsorTx = () => collection.removeSponsor(alice);
await expect(setSponsorTx()).to.be.rejectedWith(/common\.NoPermission/);
- await expect(confirmSponsorshipTx()).to.be.rejectedWith(/common\.ConfirmUnsetSponsorFail/);
+ await expect(confirmSponsorshipTx()).to.be.rejectedWith(/common\.ConfirmSponsorshipFail/);
await expect(removeSponsorTx()).to.be.rejectedWith(/common\.NoPermission/);
const limits = {
tests/src/confirmSponsorship.test.tsdiffbeforeafterboth--- a/tests/src/confirmSponsorship.test.ts
+++ b/tests/src/confirmSponsorship.test.ts
@@ -207,14 +207,14 @@
const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
await collection.setSponsor(alice, bob.address);
const confirmSponsorshipTx = () => collection.confirmSponsorship(charlie);
- await expect(confirmSponsorshipTx()).to.be.rejectedWith(/common\.ConfirmUnsetSponsorFail/);
+ await expect(confirmSponsorshipTx()).to.be.rejectedWith(/common\.ConfirmSponsorshipFail/);
});
itSub('(!negative test!) Confirm sponsorship using owner address', async ({helper}) => {
const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
await collection.setSponsor(alice, bob.address);
const confirmSponsorshipTx = () => collection.confirmSponsorship(alice);
- await expect(confirmSponsorshipTx()).to.be.rejectedWith(/common\.ConfirmUnsetSponsorFail/);
+ await expect(confirmSponsorshipTx()).to.be.rejectedWith(/common\.ConfirmSponsorshipFail/);
});
itSub('(!negative test!) Confirm sponsorship by collection admin', async ({helper}) => {
@@ -222,13 +222,13 @@
await collection.setSponsor(alice, bob.address);
await collection.addAdmin(alice, {Substrate: charlie.address});
const confirmSponsorshipTx = () => collection.confirmSponsorship(charlie);
- await expect(confirmSponsorshipTx()).to.be.rejectedWith(/common\.ConfirmUnsetSponsorFail/);
+ await expect(confirmSponsorshipTx()).to.be.rejectedWith(/common\.ConfirmSponsorshipFail/);
});
itSub('(!negative test!) Confirm sponsorship without sponsor being set with setCollectionSponsor', async ({helper}) => {
const collection = await helper.nft.mintCollection(alice, {name: 'col', description: 'descr', tokenPrefix: 'COL'});
const confirmSponsorshipTx = () => collection.confirmSponsorship(charlie);
- await expect(confirmSponsorshipTx()).to.be.rejectedWith(/common\.ConfirmUnsetSponsorFail/);
+ await expect(confirmSponsorshipTx()).to.be.rejectedWith(/common\.ConfirmSponsorshipFail/);
});
itSub('(!negative test!) Confirm sponsorship in a collection that was destroyed', async ({helper}) => {
tests/src/eth/collectionSponsoring.test.tsdiffbeforeafterboth--- a/tests/src/eth/collectionSponsoring.test.ts
+++ b/tests/src/eth/collectionSponsoring.test.ts
@@ -128,7 +128,7 @@
let sponsorship = (await collectionSub.getData())!.raw.sponsorship;
expect(sponsorship.Unconfirmed).to.be.eq(helper.address.ethToSubstrate(sponsorEth, true));
// Account cannot confirm sponsorship if it is not set as a sponsor
- await expect(collectionEvm.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmUnsetSponsorFail');
+ await expect(collectionEvm.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmSponsorshipFail');
// Sponsor can confirm sponsorship:
await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsorEth});
@@ -257,7 +257,7 @@
await collectionEvm.methods[testCase](testCase === 'setCollectionSponsor' ? sponsor : sponsorCross).send();
let collectionData = (await collectionSub.getData())!;
expect(collectionData.raw.sponsorship.Unconfirmed).to.be.eq(helper.address.ethToSubstrate(sponsor, true));
- await expect(collectionEvm.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmUnsetSponsorFail');
+ await expect(collectionEvm.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmSponsorshipFail');
await collectionEvm.methods.confirmCollectionSponsorship().send({from: sponsor});
collectionData = (await collectionSub.getData())!;
tests/src/eth/createFTCollection.test.tsdiffbeforeafterboth--- a/tests/src/eth/createFTCollection.test.ts
+++ b/tests/src/eth/createFTCollection.test.ts
@@ -46,7 +46,7 @@
let data = (await helper.rft.getData(collectionId))!;
expect(data.raw.sponsorship.Unconfirmed).to.be.equal(evmToAddress(sponsor, Number(ss58Format)));
- await expect(collection.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmUnsetSponsorFail');
+ await expect(collection.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmSponsorshipFail');
const sponsorCollection = helper.ethNativeContract.collection(collectionAddress, 'rft', sponsor, true);
await sponsorCollection.methods.confirmCollectionSponsorship().send();
@@ -69,7 +69,7 @@
let data = (await helper.rft.getData(collectionId))!;
expect(data.raw.sponsorship.Unconfirmed).to.be.equal(evmToAddress(sponsor, Number(ss58Format)));
- await expect(collection.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmUnsetSponsorFail');
+ await expect(collection.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmSponsorshipFail');
const sponsorCollection = helper.ethNativeContract.collection(collectionAddress, 'rft', sponsor);
await sponsorCollection.methods.confirmCollectionSponsorship().send();
@@ -192,7 +192,7 @@
const sponsorCollection = helper.ethNativeContract.collection(collectionAddress, 'ft', sponsor, true);
await expect(sponsorCollection.methods
.confirmCollectionSponsorship()
- .call()).to.be.rejectedWith('ConfirmUnsetSponsorFail');
+ .call()).to.be.rejectedWith('ConfirmSponsorshipFail');
}
{
await expect(peasantCollection.methods
@@ -217,7 +217,7 @@
const sponsorCollection = helper.ethNativeContract.collection(collectionAddress, 'ft', sponsor);
await expect(sponsorCollection.methods
.confirmCollectionSponsorship()
- .call()).to.be.rejectedWith('ConfirmUnsetSponsorFail');
+ .call()).to.be.rejectedWith('ConfirmSponsorshipFail');
}
{
await expect(peasantCollection.methods
tests/src/eth/createNFTCollection.test.tsdiffbeforeafterboth--- a/tests/src/eth/createNFTCollection.test.ts
+++ b/tests/src/eth/createNFTCollection.test.ts
@@ -86,7 +86,7 @@
let data = (await helper.nft.getData(collectionId))!;
expect(data.raw.sponsorship.Unconfirmed).to.be.equal(evmToAddress(sponsor, Number(ss58Format)));
- await expect(collection.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmUnsetSponsorFail');
+ await expect(collection.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmSponsorshipFail');
const sponsorCollection = helper.ethNativeContract.collection(collectionAddress, 'nft', sponsor, true);
await sponsorCollection.methods.confirmCollectionSponsorship().send();
@@ -109,7 +109,7 @@
let data = (await helper.nft.getData(collectionId))!;
expect(data.raw.sponsorship.Unconfirmed).to.be.equal(evmToAddress(sponsor, Number(ss58Format)));
- await expect(collection.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmUnsetSponsorFail');
+ await expect(collection.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmSponsorshipFail');
const sponsorCollection = helper.ethNativeContract.collection(collectionAddress, 'nft', sponsor);
await sponsorCollection.methods.confirmCollectionSponsorship().send();
@@ -203,7 +203,7 @@
const sponsorCollection = helper.ethNativeContract.collection(collectionAddress, 'nft', sponsor, true);
await expect(sponsorCollection.methods
.confirmCollectionSponsorship()
- .call()).to.be.rejectedWith('ConfirmUnsetSponsorFail');
+ .call()).to.be.rejectedWith('ConfirmSponsorshipFail');
}
{
await expect(malfeasantCollection.methods
@@ -228,7 +228,7 @@
const sponsorCollection = helper.ethNativeContract.collection(collectionAddress, 'nft', sponsor);
await expect(sponsorCollection.methods
.confirmCollectionSponsorship()
- .call()).to.be.rejectedWith('ConfirmUnsetSponsorFail');
+ .call()).to.be.rejectedWith('ConfirmSponsorshipFail');
}
{
await expect(malfeasantCollection.methods
tests/src/eth/createRFTCollection.test.tsdiffbeforeafterboth--- a/tests/src/eth/createRFTCollection.test.ts
+++ b/tests/src/eth/createRFTCollection.test.ts
@@ -121,7 +121,7 @@
let data = (await helper.rft.getData(collectionId))!;
expect(data.raw.sponsorship.Unconfirmed).to.be.equal(evmToAddress(sponsor, Number(ss58Format)));
- await expect(collection.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmUnsetSponsorFail');
+ await expect(collection.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmSponsorshipFail');
const sponsorCollection = helper.ethNativeContract.collection(collectionAddress, 'rft', sponsor, true);
await sponsorCollection.methods.confirmCollectionSponsorship().send();
@@ -143,7 +143,7 @@
let data = (await helper.rft.getData(collectionId))!;
expect(data.raw.sponsorship.Unconfirmed).to.be.equal(evmToAddress(sponsor, Number(ss58Format)));
- await expect(collection.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmUnsetSponsorFail');
+ await expect(collection.methods.confirmCollectionSponsorship().call()).to.be.rejectedWith('ConfirmSponsorshipFail');
const sponsorCollection = helper.ethNativeContract.collection(collectionAddress, 'rft', sponsor);
await sponsorCollection.methods.confirmCollectionSponsorship().send();
@@ -235,7 +235,7 @@
const sponsorCollection = helper.ethNativeContract.collection(collectionAddress, 'rft', sponsor, true);
await expect(sponsorCollection.methods
.confirmCollectionSponsorship()
- .call()).to.be.rejectedWith('ConfirmUnsetSponsorFail');
+ .call()).to.be.rejectedWith('ConfirmSponsorshipFail');
}
{
await expect(peasantCollection.methods
@@ -260,7 +260,7 @@
const sponsorCollection = helper.ethNativeContract.collection(collectionAddress, 'rft', sponsor);
await expect(sponsorCollection.methods
.confirmCollectionSponsorship()
- .call()).to.be.rejectedWith('ConfirmUnsetSponsorFail');
+ .call()).to.be.rejectedWith('ConfirmSponsorshipFail');
}
{
await expect(peasantCollection.methods
tests/src/eth/events.test.tsdiffbeforeafterboth--- a/tests/src/eth/events.test.ts
+++ b/tests/src/eth/events.test.ts
@@ -18,6 +18,7 @@
import {IKeyringPair} from '@polkadot/types/types';
import {EthUniqueHelper, itEth, usingEthPlaygrounds} from './util';
import {TCollectionMode} from '../util/playgrounds/types';
+import {Pallets, requirePalletsOrSkip} from '../util';
let donor: IKeyringPair;
@@ -253,7 +254,7 @@
collectionHelper.events.allEvents((_: any, event: any) => {
ethEvents.push(event);
});
- const {unsubscribe, collectedEvents: subEvents} = await helper.subscribeEvents([{section: 'common', names: ['CollectionOwnedChanged']}]);
+ const {unsubscribe, collectedEvents: subEvents} = await helper.subscribeEvents([{section: 'common', names: ['CollectionOwnerChanged']}]);
{
await collection.methods.changeCollectionOwnerCross(new_owner).send({from: owner});
await helper.wait.newBlocks(1);
@@ -265,7 +266,7 @@
},
},
]);
- expect(subEvents).to.be.like([{method: 'CollectionOwnedChanged'}]);
+ expect(subEvents).to.be.like([{method: 'CollectionOwnerChanged'}]);
}
unsubscribe();
}
@@ -401,6 +402,7 @@
}
{
await collection.methods.deleteProperties(tokenId, ['A']).send({from: owner});
+ await helper.wait.newBlocks(1);
expect(ethEvents).to.be.like([
{
event: 'TokenChanged',
@@ -437,7 +439,7 @@
await testCollectionLimitSet(helper, mode);
});
- itEth('CollectionChanged event for CollectionOwnedChanged', async ({helper}) => {
+ itEth('CollectionChanged event for CollectionOwnerChanged', async ({helper}) => {
await testCollectionOwnedChanged(helper, mode);
});
@@ -477,7 +479,7 @@
await testCollectionLimitSet(helper, mode);
});
- itEth('CollectionChanged event for CollectionOwnedChanged', async ({helper}) => {
+ itEth('CollectionChanged event for CollectionOwnerChanged', async ({helper}) => {
await testCollectionOwnedChanged(helper, mode);
});
@@ -497,6 +499,13 @@
describe('[RFT] Sync sub & eth events', () => {
const mode: TCollectionMode = 'rft';
+ before(async function() {
+ await usingEthPlaygrounds(async (helper, privateKey) => {
+ requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
+ const _donor = await privateKey({filename: __filename});
+ });
+ });
+
itEth('CollectionCreated and CollectionDestroyed events', async ({helper}) => {
await testCollectionCreatedAndDestroy(helper, mode);
});
@@ -521,7 +530,7 @@
await testCollectionLimitSet(helper, mode);
});
- itEth('CollectionChanged event for CollectionOwnedChanged', async ({helper}) => {
+ itEth('CollectionChanged event for CollectionOwnerChanged', async ({helper}) => {
await testCollectionOwnedChanged(helper, mode);
});
tests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -145,6 +145,10 @@
**/
CollectionTokenPrefixLimitExceeded: AugmentedError<ApiType>;
/**
+ * This address is not set as sponsor, use setCollectionSponsor first.
+ **/
+ ConfirmSponsorshipFail: AugmentedError<ApiType>;
+ /**
* Empty property keys are forbidden
**/
EmptyPropertyKey: AugmentedError<ApiType>;
@@ -217,6 +221,10 @@
**/
UserIsNotAllowedToNest: AugmentedError<ApiType>;
/**
+ * The user is not an administrator.
+ **/
+ UserIsNotCollectionAdmin: AugmentedError<ApiType>;
+ /**
* Generic error
**/
[key: string]: AugmentedError<ApiType>;
@@ -845,10 +853,6 @@
* Decimal_points parameter must be lower than [`up_data_structs::MAX_DECIMAL_POINTS`].
**/
CollectionDecimalPointLimitExceeded: AugmentedError<ApiType>;
- /**
- * This address is not set as sponsor, use setCollectionSponsor first.
- **/
- ConfirmUnsetSponsorFail: AugmentedError<ApiType>;
/**
* Length of items properties must be greater than 0.
**/
tests/src/interfaces/augment-api-events.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -103,6 +103,14 @@
};
common: {
/**
+ * Address was added to the allow list.
+ **/
+ AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;
+ /**
+ * Address was removed from the allow list.
+ **/
+ AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;
+ /**
* Amount pieces of token owned by `sender` was approved for `spender`.
**/
Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;
@@ -111,6 +119,14 @@
**/
ApprovedForAll: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;
/**
+ * Collection admin was added.
+ **/
+ CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;
+ /**
+ * Collection admin was removed.
+ **/
+ CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;
+ /**
* New collection was created
**/
CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;
@@ -119,6 +135,18 @@
**/
CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;
/**
+ * Collection limits were set.
+ **/
+ CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;
+ /**
+ * Collection owned was changed.
+ **/
+ CollectionOwnerChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;
+ /**
+ * Collection permissions were set.
+ **/
+ CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;
+ /**
* The property has been deleted.
**/
CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;
@@ -127,6 +155,14 @@
**/
CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;
/**
+ * Collection sponsor was removed.
+ **/
+ CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;
+ /**
+ * Collection sponsor was set.
+ **/
+ CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;
+ /**
* New item was created.
**/
ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;
@@ -139,6 +175,10 @@
**/
PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;
/**
+ * New sponsor was confirm.
+ **/
+ SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;
+ /**
* The token property has been deleted.
**/
TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;
@@ -688,89 +728,6 @@
* We have ended a spend period and will now allocate funds.
**/
Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;
- /**
- * Generic event
- **/
- [key: string]: AugmentedEvent<ApiType>;
- };
- unique: {
- /**
- * Address was added to the allow list
- *
- * # Arguments
- * * collection_id: ID of the affected collection.
- * * user: Address of the added account.
- **/
- AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;
- /**
- * Address was removed from the allow list
- *
- * # Arguments
- * * collection_id: ID of the affected collection.
- * * user: Address of the removed account.
- **/
- AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;
- /**
- * Collection admin was added
- *
- * # Arguments
- * * collection_id: ID of the affected collection.
- * * admin: Admin address.
- **/
- CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;
- /**
- * Collection admin was removed
- *
- * # Arguments
- * * collection_id: ID of the affected collection.
- * * admin: Removed admin address.
- **/
- CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;
- /**
- * Collection limits were set
- *
- * # Arguments
- * * collection_id: ID of the affected collection.
- **/
- CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;
- /**
- * Collection owned was changed
- *
- * # Arguments
- * * collection_id: ID of the affected collection.
- * * owner: New owner address.
- **/
- CollectionOwnedChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;
- /**
- * Collection permissions were set
- *
- * # Arguments
- * * collection_id: ID of the affected collection.
- **/
- CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;
- /**
- * Collection sponsor was removed
- *
- * # Arguments
- * * collection_id: ID of the affected collection.
- **/
- CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;
- /**
- * Collection sponsor was set
- *
- * # Arguments
- * * collection_id: ID of the affected collection.
- * * owner: New sponsor address.
- **/
- CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;
- /**
- * New sponsor was confirm
- *
- * # Arguments
- * * collection_id: ID of the affected collection.
- * * sponsor: New sponsor address.
- **/
- SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;
/**
* Generic event
**/
tests/src/interfaces/augment-types.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, 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, 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';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, 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, 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';
import type { Data, StorageKey } from '@polkadot/types';
import 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';
import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
@@ -902,7 +902,6 @@
PalletTreasuryProposal: PalletTreasuryProposal;
PalletUniqueCall: PalletUniqueCall;
PalletUniqueError: PalletUniqueError;
- PalletUniqueRawEvent: PalletUniqueRawEvent;
PalletUniqueSchedulerV2BlockAgenda: PalletUniqueSchedulerV2BlockAgenda;
PalletUniqueSchedulerV2Call: PalletUniqueSchedulerV2Call;
PalletUniqueSchedulerV2Error: PalletUniqueSchedulerV2Error;
tests/src/interfaces/default/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -1269,7 +1269,9 @@
readonly isEmptyPropertyKey: boolean;
readonly isCollectionIsExternal: boolean;
readonly isCollectionIsInternal: boolean;
- readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';
+ readonly isConfirmSponsorshipFail: boolean;
+ readonly isUserIsNotCollectionAdmin: boolean;
+ readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';
}
/** @name PalletCommonEvent */
@@ -1298,7 +1300,27 @@
readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;
readonly isPropertyPermissionSet: boolean;
readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;
- readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';
+ readonly isAllowListAddressAdded: boolean;
+ readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;
+ readonly isAllowListAddressRemoved: boolean;
+ readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;
+ readonly isCollectionAdminAdded: boolean;
+ readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;
+ readonly isCollectionAdminRemoved: boolean;
+ readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;
+ readonly isCollectionLimitSet: boolean;
+ readonly asCollectionLimitSet: u32;
+ readonly isCollectionOwnerChanged: boolean;
+ readonly asCollectionOwnerChanged: ITuple<[u32, AccountId32]>;
+ readonly isCollectionPermissionSet: boolean;
+ readonly asCollectionPermissionSet: u32;
+ readonly isCollectionSponsorSet: boolean;
+ readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;
+ readonly isSponsorshipConfirmed: boolean;
+ readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;
+ readonly isCollectionSponsorRemoved: boolean;
+ readonly asCollectionSponsorRemoved: u32;
+ readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';
}
/** @name PalletConfigurationCall */
@@ -2324,35 +2346,9 @@
/** @name PalletUniqueError */
export interface PalletUniqueError extends Enum {
readonly isCollectionDecimalPointLimitExceeded: boolean;
- readonly isConfirmUnsetSponsorFail: boolean;
readonly isEmptyArgument: boolean;
readonly isRepartitionCalledOnNonRefungibleCollection: boolean;
- readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
-}
-
-/** @name PalletUniqueRawEvent */
-export interface PalletUniqueRawEvent extends Enum {
- readonly isCollectionSponsorRemoved: boolean;
- readonly asCollectionSponsorRemoved: u32;
- readonly isCollectionAdminAdded: boolean;
- readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;
- readonly isCollectionOwnedChanged: boolean;
- readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;
- readonly isCollectionSponsorSet: boolean;
- readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;
- readonly isSponsorshipConfirmed: boolean;
- readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;
- readonly isCollectionAdminRemoved: boolean;
- readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;
- readonly isAllowListAddressRemoved: boolean;
- readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;
- readonly isAllowListAddressAdded: boolean;
- readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;
- readonly isCollectionLimitSet: boolean;
- readonly asCollectionLimitSet: u32;
- readonly isCollectionPermissionSet: boolean;
- readonly asCollectionPermissionSet: u32;
- readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';
+ readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
}
/** @name PalletUniqueSchedulerV2BlockAgenda */
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -989,34 +989,8 @@
}
},
/**
- * Lookup89: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
- **/
- PalletUniqueRawEvent: {
- _enum: {
- CollectionSponsorRemoved: 'u32',
- CollectionAdminAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',
- CollectionOwnedChanged: '(u32,AccountId32)',
- CollectionSponsorSet: '(u32,AccountId32)',
- SponsorshipConfirmed: '(u32,AccountId32)',
- CollectionAdminRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',
- AllowListAddressRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',
- AllowListAddressAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',
- CollectionLimitSet: 'u32',
- CollectionPermissionSet: 'u32'
- }
- },
- /**
- * Lookup90: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
+ * Lookup89: pallet_unique_scheduler_v2::pallet::Event<T>
**/
- PalletEvmAccountBasicCrossAccountIdRepr: {
- _enum: {
- Substrate: 'AccountId32',
- Ethereum: 'H160'
- }
- },
- /**
- * Lookup93: pallet_unique_scheduler_v2::pallet::Event<T>
- **/
PalletUniqueSchedulerV2Event: {
_enum: {
Scheduled: {
@@ -1047,7 +1021,7 @@
}
},
/**
- * Lookup96: pallet_common::pallet::Event<T>
+ * Lookup92: pallet_common::pallet::Event<T>
**/
PalletCommonEvent: {
_enum: {
@@ -1062,11 +1036,30 @@
CollectionPropertyDeleted: '(u32,Bytes)',
TokenPropertySet: '(u32,u32,Bytes)',
TokenPropertyDeleted: '(u32,u32,Bytes)',
- PropertyPermissionSet: '(u32,Bytes)'
+ PropertyPermissionSet: '(u32,Bytes)',
+ AllowListAddressAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',
+ AllowListAddressRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',
+ CollectionAdminAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',
+ CollectionAdminRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',
+ CollectionLimitSet: 'u32',
+ CollectionOwnerChanged: '(u32,AccountId32)',
+ CollectionPermissionSet: 'u32',
+ CollectionSponsorSet: '(u32,AccountId32)',
+ SponsorshipConfirmed: '(u32,AccountId32)',
+ CollectionSponsorRemoved: 'u32'
+ }
+ },
+ /**
+ * Lookup95: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
+ **/
+ PalletEvmAccountBasicCrossAccountIdRepr: {
+ _enum: {
+ Substrate: 'AccountId32',
+ Ethereum: 'H160'
}
},
/**
- * Lookup100: pallet_structure::pallet::Event<T>
+ * Lookup99: pallet_structure::pallet::Event<T>
**/
PalletStructureEvent: {
_enum: {
@@ -1074,7 +1067,7 @@
}
},
/**
- * Lookup101: pallet_rmrk_core::pallet::Event<T>
+ * Lookup100: pallet_rmrk_core::pallet::Event<T>
**/
PalletRmrkCoreEvent: {
_enum: {
@@ -1151,7 +1144,7 @@
}
},
/**
- * Lookup102: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
+ * Lookup101: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
**/
RmrkTraitsNftAccountIdOrCollectionNftTuple: {
_enum: {
@@ -1160,7 +1153,7 @@
}
},
/**
- * Lookup106: pallet_rmrk_equip::pallet::Event<T>
+ * Lookup105: pallet_rmrk_equip::pallet::Event<T>
**/
PalletRmrkEquipEvent: {
_enum: {
@@ -1175,7 +1168,7 @@
}
},
/**
- * Lookup107: pallet_app_promotion::pallet::Event<T>
+ * Lookup106: pallet_app_promotion::pallet::Event<T>
**/
PalletAppPromotionEvent: {
_enum: {
@@ -1186,7 +1179,7 @@
}
},
/**
- * Lookup108: pallet_foreign_assets::module::Event<T>
+ * Lookup107: pallet_foreign_assets::module::Event<T>
**/
PalletForeignAssetsModuleEvent: {
_enum: {
@@ -1211,7 +1204,7 @@
}
},
/**
- * Lookup109: pallet_foreign_assets::module::AssetMetadata<Balance>
+ * Lookup108: pallet_foreign_assets::module::AssetMetadata<Balance>
**/
PalletForeignAssetsModuleAssetMetadata: {
name: 'Bytes',
@@ -1220,7 +1213,7 @@
minimalBalance: 'u128'
},
/**
- * Lookup110: pallet_evm::pallet::Event<T>
+ * Lookup109: pallet_evm::pallet::Event<T>
**/
PalletEvmEvent: {
_enum: {
@@ -1242,7 +1235,7 @@
}
},
/**
- * Lookup111: ethereum::log::Log
+ * Lookup110: ethereum::log::Log
**/
EthereumLog: {
address: 'H160',
@@ -1250,7 +1243,7 @@
data: 'Bytes'
},
/**
- * Lookup113: pallet_ethereum::pallet::Event
+ * Lookup112: pallet_ethereum::pallet::Event
**/
PalletEthereumEvent: {
_enum: {
@@ -1263,7 +1256,7 @@
}
},
/**
- * Lookup114: evm_core::error::ExitReason
+ * Lookup113: evm_core::error::ExitReason
**/
EvmCoreErrorExitReason: {
_enum: {
@@ -1274,13 +1267,13 @@
}
},
/**
- * Lookup115: evm_core::error::ExitSucceed
+ * Lookup114: evm_core::error::ExitSucceed
**/
EvmCoreErrorExitSucceed: {
_enum: ['Stopped', 'Returned', 'Suicided']
},
/**
- * Lookup116: evm_core::error::ExitError
+ * Lookup115: evm_core::error::ExitError
**/
EvmCoreErrorExitError: {
_enum: {
@@ -1302,13 +1295,13 @@
}
},
/**
- * Lookup119: evm_core::error::ExitRevert
+ * Lookup118: evm_core::error::ExitRevert
**/
EvmCoreErrorExitRevert: {
_enum: ['Reverted']
},
/**
- * Lookup120: evm_core::error::ExitFatal
+ * Lookup119: evm_core::error::ExitFatal
**/
EvmCoreErrorExitFatal: {
_enum: {
@@ -1319,7 +1312,7 @@
}
},
/**
- * Lookup121: pallet_evm_contract_helpers::pallet::Event<T>
+ * Lookup120: pallet_evm_contract_helpers::pallet::Event<T>
**/
PalletEvmContractHelpersEvent: {
_enum: {
@@ -1329,25 +1322,25 @@
}
},
/**
- * Lookup122: pallet_evm_migration::pallet::Event<T>
+ * Lookup121: pallet_evm_migration::pallet::Event<T>
**/
PalletEvmMigrationEvent: {
_enum: ['TestEvent']
},
/**
- * Lookup123: pallet_maintenance::pallet::Event<T>
+ * Lookup122: pallet_maintenance::pallet::Event<T>
**/
PalletMaintenanceEvent: {
_enum: ['MaintenanceEnabled', 'MaintenanceDisabled']
},
/**
- * Lookup124: pallet_test_utils::pallet::Event<T>
+ * Lookup123: pallet_test_utils::pallet::Event<T>
**/
PalletTestUtilsEvent: {
_enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']
},
/**
- * Lookup125: frame_system::Phase
+ * Lookup124: frame_system::Phase
**/
FrameSystemPhase: {
_enum: {
@@ -1357,14 +1350,14 @@
}
},
/**
- * Lookup127: frame_system::LastRuntimeUpgradeInfo
+ * Lookup126: frame_system::LastRuntimeUpgradeInfo
**/
FrameSystemLastRuntimeUpgradeInfo: {
specVersion: 'Compact<u32>',
specName: 'Text'
},
/**
- * Lookup128: frame_system::pallet::Call<T>
+ * Lookup127: frame_system::pallet::Call<T>
**/
FrameSystemCall: {
_enum: {
@@ -1402,7 +1395,7 @@
}
},
/**
- * Lookup133: frame_system::limits::BlockWeights
+ * Lookup132: frame_system::limits::BlockWeights
**/
FrameSystemLimitsBlockWeights: {
baseBlock: 'SpWeightsWeightV2Weight',
@@ -1410,7 +1403,7 @@
perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
},
/**
- * Lookup134: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
+ * Lookup133: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
**/
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
normal: 'FrameSystemLimitsWeightsPerClass',
@@ -1418,7 +1411,7 @@
mandatory: 'FrameSystemLimitsWeightsPerClass'
},
/**
- * Lookup135: frame_system::limits::WeightsPerClass
+ * Lookup134: frame_system::limits::WeightsPerClass
**/
FrameSystemLimitsWeightsPerClass: {
baseExtrinsic: 'SpWeightsWeightV2Weight',
@@ -1427,13 +1420,13 @@
reserved: 'Option<SpWeightsWeightV2Weight>'
},
/**
- * Lookup137: frame_system::limits::BlockLength
+ * Lookup136: frame_system::limits::BlockLength
**/
FrameSystemLimitsBlockLength: {
max: 'FrameSupportDispatchPerDispatchClassU32'
},
/**
- * Lookup138: frame_support::dispatch::PerDispatchClass<T>
+ * Lookup137: frame_support::dispatch::PerDispatchClass<T>
**/
FrameSupportDispatchPerDispatchClassU32: {
normal: 'u32',
@@ -1441,14 +1434,14 @@
mandatory: 'u32'
},
/**
- * Lookup139: sp_weights::RuntimeDbWeight
+ * Lookup138: sp_weights::RuntimeDbWeight
**/
SpWeightsRuntimeDbWeight: {
read: 'u64',
write: 'u64'
},
/**
- * Lookup140: sp_version::RuntimeVersion
+ * Lookup139: sp_version::RuntimeVersion
**/
SpVersionRuntimeVersion: {
specName: 'Text',
@@ -1461,13 +1454,13 @@
stateVersion: 'u8'
},
/**
- * Lookup145: frame_system::pallet::Error<T>
+ * Lookup144: frame_system::pallet::Error<T>
**/
FrameSystemError: {
_enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
},
/**
- * Lookup146: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
+ * Lookup145: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
**/
PolkadotPrimitivesV2PersistedValidationData: {
parentHead: 'Bytes',
@@ -1476,19 +1469,19 @@
maxPovSize: 'u32'
},
/**
- * Lookup149: polkadot_primitives::v2::UpgradeRestriction
+ * Lookup148: polkadot_primitives::v2::UpgradeRestriction
**/
PolkadotPrimitivesV2UpgradeRestriction: {
_enum: ['Present']
},
/**
- * Lookup150: sp_trie::storage_proof::StorageProof
+ * Lookup149: sp_trie::storage_proof::StorageProof
**/
SpTrieStorageProof: {
trieNodes: 'BTreeSet<Bytes>'
},
/**
- * Lookup152: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
+ * Lookup151: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
**/
CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
dmqMqcHead: 'H256',
@@ -1497,7 +1490,7 @@
egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'
},
/**
- * Lookup155: polkadot_primitives::v2::AbridgedHrmpChannel
+ * Lookup154: polkadot_primitives::v2::AbridgedHrmpChannel
**/
PolkadotPrimitivesV2AbridgedHrmpChannel: {
maxCapacity: 'u32',
@@ -1508,7 +1501,7 @@
mqcHead: 'Option<H256>'
},
/**
- * Lookup156: polkadot_primitives::v2::AbridgedHostConfiguration
+ * Lookup155: polkadot_primitives::v2::AbridgedHostConfiguration
**/
PolkadotPrimitivesV2AbridgedHostConfiguration: {
maxCodeSize: 'u32',
@@ -1522,14 +1515,14 @@
validationUpgradeDelay: 'u32'
},
/**
- * Lookup162: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
+ * Lookup161: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
**/
PolkadotCorePrimitivesOutboundHrmpMessage: {
recipient: 'u32',
data: 'Bytes'
},
/**
- * Lookup163: cumulus_pallet_parachain_system::pallet::Call<T>
+ * Lookup162: cumulus_pallet_parachain_system::pallet::Call<T>
**/
CumulusPalletParachainSystemCall: {
_enum: {
@@ -1548,7 +1541,7 @@
}
},
/**
- * Lookup164: cumulus_primitives_parachain_inherent::ParachainInherentData
+ * Lookup163: cumulus_primitives_parachain_inherent::ParachainInherentData
**/
CumulusPrimitivesParachainInherentParachainInherentData: {
validationData: 'PolkadotPrimitivesV2PersistedValidationData',
@@ -1557,27 +1550,27 @@
horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'
},
/**
- * Lookup166: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
+ * Lookup165: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
**/
PolkadotCorePrimitivesInboundDownwardMessage: {
sentAt: 'u32',
msg: 'Bytes'
},
/**
- * Lookup169: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
+ * Lookup168: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
**/
PolkadotCorePrimitivesInboundHrmpMessage: {
sentAt: 'u32',
data: 'Bytes'
},
/**
- * Lookup172: cumulus_pallet_parachain_system::pallet::Error<T>
+ * Lookup171: cumulus_pallet_parachain_system::pallet::Error<T>
**/
CumulusPalletParachainSystemError: {
_enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']
},
/**
- * Lookup174: pallet_balances::BalanceLock<Balance>
+ * Lookup173: pallet_balances::BalanceLock<Balance>
**/
PalletBalancesBalanceLock: {
id: '[u8;8]',
@@ -1585,26 +1578,26 @@
reasons: 'PalletBalancesReasons'
},
/**
- * Lookup175: pallet_balances::Reasons
+ * Lookup174: pallet_balances::Reasons
**/
PalletBalancesReasons: {
_enum: ['Fee', 'Misc', 'All']
},
/**
- * Lookup178: pallet_balances::ReserveData<ReserveIdentifier, Balance>
+ * Lookup177: pallet_balances::ReserveData<ReserveIdentifier, Balance>
**/
PalletBalancesReserveData: {
id: '[u8;16]',
amount: 'u128'
},
/**
- * Lookup180: pallet_balances::Releases
+ * Lookup179: pallet_balances::Releases
**/
PalletBalancesReleases: {
_enum: ['V1_0_0', 'V2_0_0']
},
/**
- * Lookup181: pallet_balances::pallet::Call<T, I>
+ * Lookup180: pallet_balances::pallet::Call<T, I>
**/
PalletBalancesCall: {
_enum: {
@@ -1637,13 +1630,13 @@
}
},
/**
- * Lookup184: pallet_balances::pallet::Error<T, I>
+ * Lookup183: pallet_balances::pallet::Error<T, I>
**/
PalletBalancesError: {
_enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup186: pallet_timestamp::pallet::Call<T>
+ * Lookup185: pallet_timestamp::pallet::Call<T>
**/
PalletTimestampCall: {
_enum: {
@@ -1653,13 +1646,13 @@
}
},
/**
- * Lookup188: pallet_transaction_payment::Releases
+ * Lookup187: pallet_transaction_payment::Releases
**/
PalletTransactionPaymentReleases: {
_enum: ['V1Ancient', 'V2']
},
/**
- * Lookup189: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
+ * Lookup188: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
**/
PalletTreasuryProposal: {
proposer: 'AccountId32',
@@ -1668,7 +1661,7 @@
bond: 'u128'
},
/**
- * Lookup192: pallet_treasury::pallet::Call<T, I>
+ * Lookup191: pallet_treasury::pallet::Call<T, I>
**/
PalletTreasuryCall: {
_enum: {
@@ -1692,17 +1685,17 @@
}
},
/**
- * Lookup195: frame_support::PalletId
+ * Lookup194: frame_support::PalletId
**/
FrameSupportPalletId: '[u8;8]',
/**
- * Lookup196: pallet_treasury::pallet::Error<T, I>
+ * Lookup195: pallet_treasury::pallet::Error<T, I>
**/
PalletTreasuryError: {
_enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']
},
/**
- * Lookup197: pallet_sudo::pallet::Call<T>
+ * Lookup196: pallet_sudo::pallet::Call<T>
**/
PalletSudoCall: {
_enum: {
@@ -1726,7 +1719,7 @@
}
},
/**
- * Lookup199: orml_vesting::module::Call<T>
+ * Lookup198: orml_vesting::module::Call<T>
**/
OrmlVestingModuleCall: {
_enum: {
@@ -1745,7 +1738,7 @@
}
},
/**
- * Lookup201: orml_xtokens::module::Call<T>
+ * Lookup200: orml_xtokens::module::Call<T>
**/
OrmlXtokensModuleCall: {
_enum: {
@@ -1788,7 +1781,7 @@
}
},
/**
- * Lookup202: xcm::VersionedMultiAsset
+ * Lookup201: xcm::VersionedMultiAsset
**/
XcmVersionedMultiAsset: {
_enum: {
@@ -1797,7 +1790,7 @@
}
},
/**
- * Lookup205: orml_tokens::module::Call<T>
+ * Lookup204: orml_tokens::module::Call<T>
**/
OrmlTokensModuleCall: {
_enum: {
@@ -1831,7 +1824,7 @@
}
},
/**
- * Lookup206: cumulus_pallet_xcmp_queue::pallet::Call<T>
+ * Lookup205: cumulus_pallet_xcmp_queue::pallet::Call<T>
**/
CumulusPalletXcmpQueueCall: {
_enum: {
@@ -1880,7 +1873,7 @@
}
},
/**
- * Lookup207: pallet_xcm::pallet::Call<T>
+ * Lookup206: pallet_xcm::pallet::Call<T>
**/
PalletXcmCall: {
_enum: {
@@ -1934,7 +1927,7 @@
}
},
/**
- * Lookup208: xcm::VersionedXcm<RuntimeCall>
+ * Lookup207: xcm::VersionedXcm<RuntimeCall>
**/
XcmVersionedXcm: {
_enum: {
@@ -1944,7 +1937,7 @@
}
},
/**
- * Lookup209: xcm::v0::Xcm<RuntimeCall>
+ * Lookup208: xcm::v0::Xcm<RuntimeCall>
**/
XcmV0Xcm: {
_enum: {
@@ -1998,7 +1991,7 @@
}
},
/**
- * Lookup211: xcm::v0::order::Order<RuntimeCall>
+ * Lookup210: xcm::v0::order::Order<RuntimeCall>
**/
XcmV0Order: {
_enum: {
@@ -2041,7 +2034,7 @@
}
},
/**
- * Lookup213: xcm::v0::Response
+ * Lookup212: xcm::v0::Response
**/
XcmV0Response: {
_enum: {
@@ -2049,7 +2042,7 @@
}
},
/**
- * Lookup214: xcm::v1::Xcm<RuntimeCall>
+ * Lookup213: xcm::v1::Xcm<RuntimeCall>
**/
XcmV1Xcm: {
_enum: {
@@ -2108,7 +2101,7 @@
}
},
/**
- * Lookup216: xcm::v1::order::Order<RuntimeCall>
+ * Lookup215: xcm::v1::order::Order<RuntimeCall>
**/
XcmV1Order: {
_enum: {
@@ -2153,7 +2146,7 @@
}
},
/**
- * Lookup218: xcm::v1::Response
+ * Lookup217: xcm::v1::Response
**/
XcmV1Response: {
_enum: {
@@ -2162,11 +2155,11 @@
}
},
/**
- * Lookup232: cumulus_pallet_xcm::pallet::Call<T>
+ * Lookup231: cumulus_pallet_xcm::pallet::Call<T>
**/
CumulusPalletXcmCall: 'Null',
/**
- * Lookup233: cumulus_pallet_dmp_queue::pallet::Call<T>
+ * Lookup232: cumulus_pallet_dmp_queue::pallet::Call<T>
**/
CumulusPalletDmpQueueCall: {
_enum: {
@@ -2177,7 +2170,7 @@
}
},
/**
- * Lookup234: pallet_inflation::pallet::Call<T>
+ * Lookup233: pallet_inflation::pallet::Call<T>
**/
PalletInflationCall: {
_enum: {
@@ -2187,7 +2180,7 @@
}
},
/**
- * Lookup235: pallet_unique::Call<T>
+ * Lookup234: pallet_unique::Call<T>
**/
PalletUniqueCall: {
_enum: {
@@ -2324,7 +2317,7 @@
}
},
/**
- * Lookup240: up_data_structs::CollectionMode
+ * Lookup239: up_data_structs::CollectionMode
**/
UpDataStructsCollectionMode: {
_enum: {
@@ -2334,7 +2327,7 @@
}
},
/**
- * Lookup241: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
+ * Lookup240: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
**/
UpDataStructsCreateCollectionData: {
mode: 'UpDataStructsCollectionMode',
@@ -2349,13 +2342,13 @@
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup243: up_data_structs::AccessMode
+ * Lookup242: up_data_structs::AccessMode
**/
UpDataStructsAccessMode: {
_enum: ['Normal', 'AllowList']
},
/**
- * Lookup245: up_data_structs::CollectionLimits
+ * Lookup244: up_data_structs::CollectionLimits
**/
UpDataStructsCollectionLimits: {
accountTokenOwnershipLimit: 'Option<u32>',
@@ -2369,7 +2362,7 @@
transfersEnabled: 'Option<bool>'
},
/**
- * Lookup247: up_data_structs::SponsoringRateLimit
+ * Lookup246: up_data_structs::SponsoringRateLimit
**/
UpDataStructsSponsoringRateLimit: {
_enum: {
@@ -2378,7 +2371,7 @@
}
},
/**
- * Lookup250: up_data_structs::CollectionPermissions
+ * Lookup249: up_data_structs::CollectionPermissions
**/
UpDataStructsCollectionPermissions: {
access: 'Option<UpDataStructsAccessMode>',
@@ -2386,7 +2379,7 @@
nesting: 'Option<UpDataStructsNestingPermissions>'
},
/**
- * Lookup252: up_data_structs::NestingPermissions
+ * Lookup251: up_data_structs::NestingPermissions
**/
UpDataStructsNestingPermissions: {
tokenOwner: 'bool',
@@ -2394,18 +2387,18 @@
restricted: 'Option<UpDataStructsOwnerRestrictedSet>'
},
/**
- * Lookup254: up_data_structs::OwnerRestrictedSet
+ * Lookup253: up_data_structs::OwnerRestrictedSet
**/
UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',
/**
- * Lookup259: up_data_structs::PropertyKeyPermission
+ * Lookup258: up_data_structs::PropertyKeyPermission
**/
UpDataStructsPropertyKeyPermission: {
key: 'Bytes',
permission: 'UpDataStructsPropertyPermission'
},
/**
- * Lookup260: up_data_structs::PropertyPermission
+ * Lookup259: up_data_structs::PropertyPermission
**/
UpDataStructsPropertyPermission: {
mutable: 'bool',
@@ -2413,14 +2406,14 @@
tokenOwner: 'bool'
},
/**
- * Lookup263: up_data_structs::Property
+ * Lookup262: up_data_structs::Property
**/
UpDataStructsProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup266: up_data_structs::CreateItemData
+ * Lookup265: up_data_structs::CreateItemData
**/
UpDataStructsCreateItemData: {
_enum: {
@@ -2430,26 +2423,26 @@
}
},
/**
- * Lookup267: up_data_structs::CreateNftData
+ * Lookup266: up_data_structs::CreateNftData
**/
UpDataStructsCreateNftData: {
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup268: up_data_structs::CreateFungibleData
+ * Lookup267: up_data_structs::CreateFungibleData
**/
UpDataStructsCreateFungibleData: {
value: 'u128'
},
/**
- * Lookup269: up_data_structs::CreateReFungibleData
+ * Lookup268: up_data_structs::CreateReFungibleData
**/
UpDataStructsCreateReFungibleData: {
pieces: 'u128',
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup272: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup271: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateItemExData: {
_enum: {
@@ -2460,14 +2453,14 @@
}
},
/**
- * Lookup274: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup273: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateNftExData: {
properties: 'Vec<UpDataStructsProperty>',
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup281: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup280: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateRefungibleExSingleOwner: {
user: 'PalletEvmAccountBasicCrossAccountIdRepr',
@@ -2475,14 +2468,14 @@
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup283: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup282: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateRefungibleExMultipleOwners: {
users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup284: pallet_unique_scheduler_v2::pallet::Call<T>
+ * Lookup283: pallet_unique_scheduler_v2::pallet::Call<T>
**/
PalletUniqueSchedulerV2Call: {
_enum: {
@@ -2526,7 +2519,7 @@
}
},
/**
- * Lookup287: pallet_configuration::pallet::Call<T>
+ * Lookup286: pallet_configuration::pallet::Call<T>
**/
PalletConfigurationCall: {
_enum: {
@@ -2539,15 +2532,15 @@
}
},
/**
- * Lookup289: pallet_template_transaction_payment::Call<T>
+ * Lookup288: pallet_template_transaction_payment::Call<T>
**/
PalletTemplateTransactionPaymentCall: 'Null',
/**
- * Lookup290: pallet_structure::pallet::Call<T>
+ * Lookup289: pallet_structure::pallet::Call<T>
**/
PalletStructureCall: 'Null',
/**
- * Lookup291: pallet_rmrk_core::pallet::Call<T>
+ * Lookup290: pallet_rmrk_core::pallet::Call<T>
**/
PalletRmrkCoreCall: {
_enum: {
@@ -2638,7 +2631,7 @@
}
},
/**
- * Lookup297: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup296: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceTypes: {
_enum: {
@@ -2648,7 +2641,7 @@
}
},
/**
- * Lookup299: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup298: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceBasicResource: {
src: 'Option<Bytes>',
@@ -2657,7 +2650,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup301: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup300: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceComposableResource: {
parts: 'Vec<u32>',
@@ -2668,7 +2661,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup302: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup301: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceSlotResource: {
base: 'u32',
@@ -2679,7 +2672,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup305: pallet_rmrk_equip::pallet::Call<T>
+ * Lookup304: pallet_rmrk_equip::pallet::Call<T>
**/
PalletRmrkEquipCall: {
_enum: {
@@ -2700,7 +2693,7 @@
}
},
/**
- * Lookup308: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup307: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartPartType: {
_enum: {
@@ -2709,7 +2702,7 @@
}
},
/**
- * Lookup310: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup309: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartFixedPart: {
id: 'u32',
@@ -2717,7 +2710,7 @@
src: 'Bytes'
},
/**
- * Lookup311: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup310: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartSlotPart: {
id: 'u32',
@@ -2726,7 +2719,7 @@
z: 'u32'
},
/**
- * Lookup312: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup311: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartEquippableList: {
_enum: {
@@ -2736,7 +2729,7 @@
}
},
/**
- * Lookup314: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>
+ * Lookup313: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>
**/
RmrkTraitsTheme: {
name: 'Bytes',
@@ -2744,14 +2737,14 @@
inherit: 'bool'
},
/**
- * Lookup316: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup315: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsThemeThemeProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup318: pallet_app_promotion::pallet::Call<T>
+ * Lookup317: pallet_app_promotion::pallet::Call<T>
**/
PalletAppPromotionCall: {
_enum: {
@@ -2780,7 +2773,7 @@
}
},
/**
- * Lookup319: pallet_foreign_assets::module::Call<T>
+ * Lookup318: pallet_foreign_assets::module::Call<T>
**/
PalletForeignAssetsModuleCall: {
_enum: {
@@ -2797,7 +2790,7 @@
}
},
/**
- * Lookup320: pallet_evm::pallet::Call<T>
+ * Lookup319: pallet_evm::pallet::Call<T>
**/
PalletEvmCall: {
_enum: {
@@ -2840,7 +2833,7 @@
}
},
/**
- * Lookup326: pallet_ethereum::pallet::Call<T>
+ * Lookup325: pallet_ethereum::pallet::Call<T>
**/
PalletEthereumCall: {
_enum: {
@@ -2850,7 +2843,7 @@
}
},
/**
- * Lookup327: ethereum::transaction::TransactionV2
+ * Lookup326: ethereum::transaction::TransactionV2
**/
EthereumTransactionTransactionV2: {
_enum: {
@@ -2860,7 +2853,7 @@
}
},
/**
- * Lookup328: ethereum::transaction::LegacyTransaction
+ * Lookup327: ethereum::transaction::LegacyTransaction
**/
EthereumTransactionLegacyTransaction: {
nonce: 'U256',
@@ -2872,7 +2865,7 @@
signature: 'EthereumTransactionTransactionSignature'
},
/**
- * Lookup329: ethereum::transaction::TransactionAction
+ * Lookup328: ethereum::transaction::TransactionAction
**/
EthereumTransactionTransactionAction: {
_enum: {
@@ -2881,7 +2874,7 @@
}
},
/**
- * Lookup330: ethereum::transaction::TransactionSignature
+ * Lookup329: ethereum::transaction::TransactionSignature
**/
EthereumTransactionTransactionSignature: {
v: 'u64',
@@ -2889,7 +2882,7 @@
s: 'H256'
},
/**
- * Lookup332: ethereum::transaction::EIP2930Transaction
+ * Lookup331: ethereum::transaction::EIP2930Transaction
**/
EthereumTransactionEip2930Transaction: {
chainId: 'u64',
@@ -2905,14 +2898,14 @@
s: 'H256'
},
/**
- * Lookup334: ethereum::transaction::AccessListItem
+ * Lookup333: ethereum::transaction::AccessListItem
**/
EthereumTransactionAccessListItem: {
address: 'H160',
storageKeys: 'Vec<H256>'
},
/**
- * Lookup335: ethereum::transaction::EIP1559Transaction
+ * Lookup334: ethereum::transaction::EIP1559Transaction
**/
EthereumTransactionEip1559Transaction: {
chainId: 'u64',
@@ -2929,7 +2922,7 @@
s: 'H256'
},
/**
- * Lookup336: pallet_evm_migration::pallet::Call<T>
+ * Lookup335: pallet_evm_migration::pallet::Call<T>
**/
PalletEvmMigrationCall: {
_enum: {
@@ -2953,13 +2946,13 @@
}
},
/**
- * Lookup340: pallet_maintenance::pallet::Call<T>
+ * Lookup339: pallet_maintenance::pallet::Call<T>
**/
PalletMaintenanceCall: {
_enum: ['enable', 'disable']
},
/**
- * Lookup341: pallet_test_utils::pallet::Call<T>
+ * Lookup340: pallet_test_utils::pallet::Call<T>
**/
PalletTestUtilsCall: {
_enum: {
@@ -2982,32 +2975,32 @@
}
},
/**
- * Lookup343: pallet_sudo::pallet::Error<T>
+ * Lookup342: pallet_sudo::pallet::Error<T>
**/
PalletSudoError: {
_enum: ['RequireSudo']
},
/**
- * Lookup345: orml_vesting::module::Error<T>
+ * Lookup344: orml_vesting::module::Error<T>
**/
OrmlVestingModuleError: {
_enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
},
/**
- * Lookup346: orml_xtokens::module::Error<T>
+ * Lookup345: orml_xtokens::module::Error<T>
**/
OrmlXtokensModuleError: {
_enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
},
/**
- * Lookup349: orml_tokens::BalanceLock<Balance>
+ * Lookup348: orml_tokens::BalanceLock<Balance>
**/
OrmlTokensBalanceLock: {
id: '[u8;8]',
amount: 'u128'
},
/**
- * Lookup351: orml_tokens::AccountData<Balance>
+ * Lookup350: orml_tokens::AccountData<Balance>
**/
OrmlTokensAccountData: {
free: 'u128',
@@ -3015,20 +3008,20 @@
frozen: 'u128'
},
/**
- * Lookup353: orml_tokens::ReserveData<ReserveIdentifier, Balance>
+ * Lookup352: orml_tokens::ReserveData<ReserveIdentifier, Balance>
**/
OrmlTokensReserveData: {
id: 'Null',
amount: 'u128'
},
/**
- * Lookup355: orml_tokens::module::Error<T>
+ * Lookup354: orml_tokens::module::Error<T>
**/
OrmlTokensModuleError: {
_enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup357: cumulus_pallet_xcmp_queue::InboundChannelDetails
+ * Lookup356: cumulus_pallet_xcmp_queue::InboundChannelDetails
**/
CumulusPalletXcmpQueueInboundChannelDetails: {
sender: 'u32',
@@ -3036,19 +3029,19 @@
messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
},
/**
- * Lookup358: cumulus_pallet_xcmp_queue::InboundState
+ * Lookup357: cumulus_pallet_xcmp_queue::InboundState
**/
CumulusPalletXcmpQueueInboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup361: polkadot_parachain::primitives::XcmpMessageFormat
+ * Lookup360: polkadot_parachain::primitives::XcmpMessageFormat
**/
PolkadotParachainPrimitivesXcmpMessageFormat: {
_enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
},
/**
- * Lookup364: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+ * Lookup363: cumulus_pallet_xcmp_queue::OutboundChannelDetails
**/
CumulusPalletXcmpQueueOutboundChannelDetails: {
recipient: 'u32',
@@ -3058,13 +3051,13 @@
lastIndex: 'u16'
},
/**
- * Lookup365: cumulus_pallet_xcmp_queue::OutboundState
+ * Lookup364: cumulus_pallet_xcmp_queue::OutboundState
**/
CumulusPalletXcmpQueueOutboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup367: cumulus_pallet_xcmp_queue::QueueConfigData
+ * Lookup366: cumulus_pallet_xcmp_queue::QueueConfigData
**/
CumulusPalletXcmpQueueQueueConfigData: {
suspendThreshold: 'u32',
@@ -3075,29 +3068,29 @@
xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'
},
/**
- * Lookup369: cumulus_pallet_xcmp_queue::pallet::Error<T>
+ * Lookup368: cumulus_pallet_xcmp_queue::pallet::Error<T>
**/
CumulusPalletXcmpQueueError: {
_enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
},
/**
- * Lookup370: pallet_xcm::pallet::Error<T>
+ * Lookup369: pallet_xcm::pallet::Error<T>
**/
PalletXcmError: {
_enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
},
/**
- * Lookup371: cumulus_pallet_xcm::pallet::Error<T>
+ * Lookup370: cumulus_pallet_xcm::pallet::Error<T>
**/
CumulusPalletXcmError: 'Null',
/**
- * Lookup372: cumulus_pallet_dmp_queue::ConfigData
+ * Lookup371: cumulus_pallet_dmp_queue::ConfigData
**/
CumulusPalletDmpQueueConfigData: {
maxIndividual: 'SpWeightsWeightV2Weight'
},
/**
- * Lookup373: cumulus_pallet_dmp_queue::PageIndexData
+ * Lookup372: cumulus_pallet_dmp_queue::PageIndexData
**/
CumulusPalletDmpQueuePageIndexData: {
beginUsed: 'u32',
@@ -3105,26 +3098,26 @@
overweightCount: 'u64'
},
/**
- * Lookup376: cumulus_pallet_dmp_queue::pallet::Error<T>
+ * Lookup375: cumulus_pallet_dmp_queue::pallet::Error<T>
**/
CumulusPalletDmpQueueError: {
_enum: ['Unknown', 'OverLimit']
},
/**
- * Lookup380: pallet_unique::Error<T>
+ * Lookup379: pallet_unique::Error<T>
**/
PalletUniqueError: {
- _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
+ _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
},
/**
- * Lookup381: pallet_unique_scheduler_v2::BlockAgenda<T>
+ * Lookup380: pallet_unique_scheduler_v2::BlockAgenda<T>
**/
PalletUniqueSchedulerV2BlockAgenda: {
agenda: 'Vec<Option<PalletUniqueSchedulerV2Scheduled>>',
freePlaces: 'u32'
},
/**
- * Lookup384: pallet_unique_scheduler_v2::Scheduled<Name, pallet_unique_scheduler_v2::ScheduledCall<T>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
+ * Lookup383: pallet_unique_scheduler_v2::Scheduled<Name, pallet_unique_scheduler_v2::ScheduledCall<T>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
**/
PalletUniqueSchedulerV2Scheduled: {
maybeId: 'Option<[u8;32]>',
@@ -3134,7 +3127,7 @@
origin: 'OpalRuntimeOriginCaller'
},
/**
- * Lookup385: pallet_unique_scheduler_v2::ScheduledCall<T>
+ * Lookup384: pallet_unique_scheduler_v2::ScheduledCall<T>
**/
PalletUniqueSchedulerV2ScheduledCall: {
_enum: {
@@ -3149,7 +3142,7 @@
}
},
/**
- * Lookup387: opal_runtime::OriginCaller
+ * Lookup386: opal_runtime::OriginCaller
**/
OpalRuntimeOriginCaller: {
_enum: {
@@ -3258,7 +3251,7 @@
}
},
/**
- * Lookup388: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
+ * Lookup387: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
**/
FrameSupportDispatchRawOrigin: {
_enum: {
@@ -3268,7 +3261,7 @@
}
},
/**
- * Lookup389: pallet_xcm::pallet::Origin
+ * Lookup388: pallet_xcm::pallet::Origin
**/
PalletXcmOrigin: {
_enum: {
@@ -3277,7 +3270,7 @@
}
},
/**
- * Lookup390: cumulus_pallet_xcm::pallet::Origin
+ * Lookup389: cumulus_pallet_xcm::pallet::Origin
**/
CumulusPalletXcmOrigin: {
_enum: {
@@ -3286,7 +3279,7 @@
}
},
/**
- * Lookup391: pallet_ethereum::RawOrigin
+ * Lookup390: pallet_ethereum::RawOrigin
**/
PalletEthereumRawOrigin: {
_enum: {
@@ -3294,17 +3287,17 @@
}
},
/**
- * Lookup392: sp_core::Void
+ * Lookup391: sp_core::Void
**/
SpCoreVoid: 'Null',
/**
- * Lookup394: pallet_unique_scheduler_v2::pallet::Error<T>
+ * Lookup393: pallet_unique_scheduler_v2::pallet::Error<T>
**/
PalletUniqueSchedulerV2Error: {
_enum: ['FailedToSchedule', 'AgendaIsExhausted', 'ScheduledCallCorrupted', 'PreimageNotFound', 'TooBigScheduledCall', 'NotFound', 'TargetBlockNumberInPast', 'Named']
},
/**
- * Lookup395: up_data_structs::Collection<sp_core::crypto::AccountId32>
+ * Lookup394: up_data_structs::Collection<sp_core::crypto::AccountId32>
**/
UpDataStructsCollection: {
owner: 'AccountId32',
@@ -3318,7 +3311,7 @@
flags: '[u8;1]'
},
/**
- * Lookup396: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+ * Lookup395: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
**/
UpDataStructsSponsorshipStateAccountId32: {
_enum: {
@@ -3328,7 +3321,7 @@
}
},
/**
- * Lookup398: up_data_structs::Properties
+ * Lookup397: up_data_structs::Properties
**/
UpDataStructsProperties: {
map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -3336,15 +3329,15 @@
spaceLimit: 'u32'
},
/**
- * Lookup399: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup398: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
/**
- * Lookup404: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+ * Lookup403: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
**/
UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
/**
- * Lookup411: up_data_structs::CollectionStats
+ * Lookup410: up_data_structs::CollectionStats
**/
UpDataStructsCollectionStats: {
created: 'u32',
@@ -3352,18 +3345,18 @@
alive: 'u32'
},
/**
- * Lookup412: up_data_structs::TokenChild
+ * Lookup411: up_data_structs::TokenChild
**/
UpDataStructsTokenChild: {
token: 'u32',
collection: 'u32'
},
/**
- * Lookup413: PhantomType::up_data_structs<T>
+ * Lookup412: PhantomType::up_data_structs<T>
**/
PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
/**
- * Lookup415: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup414: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsTokenData: {
properties: 'Vec<UpDataStructsProperty>',
@@ -3371,7 +3364,7 @@
pieces: 'u128'
},
/**
- * Lookup417: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+ * Lookup416: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
**/
UpDataStructsRpcCollection: {
owner: 'AccountId32',
@@ -3388,14 +3381,14 @@
flags: 'UpDataStructsRpcCollectionFlags'
},
/**
- * Lookup418: up_data_structs::RpcCollectionFlags
+ * Lookup417: up_data_structs::RpcCollectionFlags
**/
UpDataStructsRpcCollectionFlags: {
foreign: 'bool',
erc721metadata: 'bool'
},
/**
- * Lookup419: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
+ * Lookup418: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
**/
RmrkTraitsCollectionCollectionInfo: {
issuer: 'AccountId32',
@@ -3405,7 +3398,7 @@
nftsCount: 'u32'
},
/**
- * Lookup420: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup419: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsNftNftInfo: {
owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
@@ -3415,14 +3408,14 @@
pending: 'bool'
},
/**
- * Lookup422: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+ * Lookup421: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
**/
RmrkTraitsNftRoyaltyInfo: {
recipient: 'AccountId32',
amount: 'Permill'
},
/**
- * Lookup423: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup422: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceInfo: {
id: 'u32',
@@ -3431,14 +3424,14 @@
pendingRemoval: 'bool'
},
/**
- * Lookup424: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup423: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPropertyPropertyInfo: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup425: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup424: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsBaseBaseInfo: {
issuer: 'AccountId32',
@@ -3446,92 +3439,92 @@
symbol: 'Bytes'
},
/**
- * Lookup426: rmrk_traits::nft::NftChild
+ * Lookup425: rmrk_traits::nft::NftChild
**/
RmrkTraitsNftNftChild: {
collectionId: 'u32',
nftId: 'u32'
},
/**
- * Lookup428: pallet_common::pallet::Error<T>
+ * Lookup427: pallet_common::pallet::Error<T>
**/
PalletCommonError: {
- _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal']
+ _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']
},
/**
- * Lookup430: pallet_fungible::pallet::Error<T>
+ * Lookup429: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed']
},
/**
- * Lookup431: pallet_refungible::ItemData
+ * Lookup430: pallet_refungible::ItemData
**/
PalletRefungibleItemData: {
constData: 'Bytes'
},
/**
- * Lookup436: pallet_refungible::pallet::Error<T>
+ * Lookup435: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup437: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup436: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup439: up_data_structs::PropertyScope
+ * Lookup438: up_data_structs::PropertyScope
**/
UpDataStructsPropertyScope: {
_enum: ['None', 'Rmrk']
},
/**
- * Lookup441: pallet_nonfungible::pallet::Error<T>
+ * Lookup440: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
},
/**
- * Lookup442: pallet_structure::pallet::Error<T>
+ * Lookup441: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
},
/**
- * Lookup443: pallet_rmrk_core::pallet::Error<T>
+ * Lookup442: pallet_rmrk_core::pallet::Error<T>
**/
PalletRmrkCoreError: {
_enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
},
/**
- * Lookup445: pallet_rmrk_equip::pallet::Error<T>
+ * Lookup444: pallet_rmrk_equip::pallet::Error<T>
**/
PalletRmrkEquipError: {
_enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
},
/**
- * Lookup451: pallet_app_promotion::pallet::Error<T>
+ * Lookup450: pallet_app_promotion::pallet::Error<T>
**/
PalletAppPromotionError: {
_enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
},
/**
- * Lookup452: pallet_foreign_assets::module::Error<T>
+ * Lookup451: pallet_foreign_assets::module::Error<T>
**/
PalletForeignAssetsModuleError: {
_enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
},
/**
- * Lookup454: pallet_evm::pallet::Error<T>
+ * Lookup453: pallet_evm::pallet::Error<T>
**/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']
},
/**
- * Lookup457: fp_rpc::TransactionStatus
+ * Lookup456: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -3543,11 +3536,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup459: ethbloom::Bloom
+ * Lookup458: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup461: ethereum::receipt::ReceiptV3
+ * Lookup460: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -3557,7 +3550,7 @@
}
},
/**
- * Lookup462: ethereum::receipt::EIP658ReceiptData
+ * Lookup461: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -3566,7 +3559,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup463: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup462: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -3574,7 +3567,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup464: ethereum::header::Header
+ * Lookup463: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -3594,23 +3587,23 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup465: ethereum_types::hash::H64
+ * Lookup464: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup470: pallet_ethereum::pallet::Error<T>
+ * Lookup469: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup471: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup470: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup472: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup471: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
_enum: {
@@ -3620,35 +3613,35 @@
}
},
/**
- * Lookup473: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup472: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup479: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup478: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
},
/**
- * Lookup480: pallet_evm_migration::pallet::Error<T>
+ * Lookup479: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
},
/**
- * Lookup481: pallet_maintenance::pallet::Error<T>
+ * Lookup480: pallet_maintenance::pallet::Error<T>
**/
PalletMaintenanceError: 'Null',
/**
- * Lookup482: pallet_test_utils::pallet::Error<T>
+ * Lookup481: pallet_test_utils::pallet::Error<T>
**/
PalletTestUtilsError: {
_enum: ['TestPalletDisabled', 'TriggerRollback']
},
/**
- * Lookup484: sp_runtime::MultiSignature
+ * Lookup483: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -3658,51 +3651,51 @@
}
},
/**
- * Lookup485: sp_core::ed25519::Signature
+ * Lookup484: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup487: sp_core::sr25519::Signature
+ * Lookup486: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup488: sp_core::ecdsa::Signature
+ * Lookup487: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup491: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup490: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup492: frame_system::extensions::check_tx_version::CheckTxVersion<T>
+ * Lookup491: frame_system::extensions::check_tx_version::CheckTxVersion<T>
**/
FrameSystemExtensionsCheckTxVersion: 'Null',
/**
- * Lookup493: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup492: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup496: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup495: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup497: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup496: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup498: opal_runtime::runtime_common::maintenance::CheckMaintenance
+ * Lookup497: opal_runtime::runtime_common::maintenance::CheckMaintenance
**/
OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
/**
- * Lookup499: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup498: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup500: opal_runtime::Runtime
+ * Lookup499: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null',
/**
- * Lookup501: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+ * Lookup500: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
**/
PalletEthereumFakeTransactionFinalizer: 'Null'
};
tests/src/interfaces/registry.tsdiffbeforeafterboth--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, 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, 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';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, 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, 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';
declare module '@polkadot/types/types/registry' {
interface InterfaceTypes {
@@ -162,7 +162,6 @@
PalletTreasuryProposal: PalletTreasuryProposal;
PalletUniqueCall: PalletUniqueCall;
PalletUniqueError: PalletUniqueError;
- PalletUniqueRawEvent: PalletUniqueRawEvent;
PalletUniqueSchedulerV2BlockAgenda: PalletUniqueSchedulerV2BlockAgenda;
PalletUniqueSchedulerV2Call: PalletUniqueSchedulerV2Call;
PalletUniqueSchedulerV2Error: PalletUniqueSchedulerV2Error;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/lookup';78import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { ITuple } from '@polkadot/types-codec/types';10import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';11import type { Event } from '@polkadot/types/interfaces/system';1213declare module '@polkadot/types/lookup' {14 /** @name FrameSystemAccountInfo (3) */15 interface FrameSystemAccountInfo extends Struct {16 readonly nonce: u32;17 readonly consumers: u32;18 readonly providers: u32;19 readonly sufficients: u32;20 readonly data: PalletBalancesAccountData;21 }2223 /** @name PalletBalancesAccountData (5) */24 interface PalletBalancesAccountData extends Struct {25 readonly free: u128;26 readonly reserved: u128;27 readonly miscFrozen: u128;28 readonly feeFrozen: u128;29 }3031 /** @name FrameSupportDispatchPerDispatchClassWeight (7) */32 interface FrameSupportDispatchPerDispatchClassWeight extends Struct {33 readonly normal: SpWeightsWeightV2Weight;34 readonly operational: SpWeightsWeightV2Weight;35 readonly mandatory: SpWeightsWeightV2Weight;36 }3738 /** @name SpWeightsWeightV2Weight (8) */39 interface SpWeightsWeightV2Weight extends Struct {40 readonly refTime: Compact<u64>;41 readonly proofSize: Compact<u64>;42 }4344 /** @name SpRuntimeDigest (13) */45 interface SpRuntimeDigest extends Struct {46 readonly logs: Vec<SpRuntimeDigestDigestItem>;47 }4849 /** @name SpRuntimeDigestDigestItem (15) */50 interface SpRuntimeDigestDigestItem extends Enum {51 readonly isOther: boolean;52 readonly asOther: Bytes;53 readonly isConsensus: boolean;54 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;55 readonly isSeal: boolean;56 readonly asSeal: ITuple<[U8aFixed, Bytes]>;57 readonly isPreRuntime: boolean;58 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;59 readonly isRuntimeEnvironmentUpdated: boolean;60 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';61 }6263 /** @name FrameSystemEventRecord (18) */64 interface FrameSystemEventRecord extends Struct {65 readonly phase: FrameSystemPhase;66 readonly event: Event;67 readonly topics: Vec<H256>;68 }6970 /** @name FrameSystemEvent (20) */71 interface FrameSystemEvent extends Enum {72 readonly isExtrinsicSuccess: boolean;73 readonly asExtrinsicSuccess: {74 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;75 } & Struct;76 readonly isExtrinsicFailed: boolean;77 readonly asExtrinsicFailed: {78 readonly dispatchError: SpRuntimeDispatchError;79 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;80 } & Struct;81 readonly isCodeUpdated: boolean;82 readonly isNewAccount: boolean;83 readonly asNewAccount: {84 readonly account: AccountId32;85 } & Struct;86 readonly isKilledAccount: boolean;87 readonly asKilledAccount: {88 readonly account: AccountId32;89 } & Struct;90 readonly isRemarked: boolean;91 readonly asRemarked: {92 readonly sender: AccountId32;93 readonly hash_: H256;94 } & Struct;95 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';96 }9798 /** @name FrameSupportDispatchDispatchInfo (21) */99 interface FrameSupportDispatchDispatchInfo extends Struct {100 readonly weight: SpWeightsWeightV2Weight;101 readonly class: FrameSupportDispatchDispatchClass;102 readonly paysFee: FrameSupportDispatchPays;103 }104105 /** @name FrameSupportDispatchDispatchClass (22) */106 interface FrameSupportDispatchDispatchClass extends Enum {107 readonly isNormal: boolean;108 readonly isOperational: boolean;109 readonly isMandatory: boolean;110 readonly type: 'Normal' | 'Operational' | 'Mandatory';111 }112113 /** @name FrameSupportDispatchPays (23) */114 interface FrameSupportDispatchPays extends Enum {115 readonly isYes: boolean;116 readonly isNo: boolean;117 readonly type: 'Yes' | 'No';118 }119120 /** @name SpRuntimeDispatchError (24) */121 interface SpRuntimeDispatchError extends Enum {122 readonly isOther: boolean;123 readonly isCannotLookup: boolean;124 readonly isBadOrigin: boolean;125 readonly isModule: boolean;126 readonly asModule: SpRuntimeModuleError;127 readonly isConsumerRemaining: boolean;128 readonly isNoProviders: boolean;129 readonly isTooManyConsumers: boolean;130 readonly isToken: boolean;131 readonly asToken: SpRuntimeTokenError;132 readonly isArithmetic: boolean;133 readonly asArithmetic: SpRuntimeArithmeticError;134 readonly isTransactional: boolean;135 readonly asTransactional: SpRuntimeTransactionalError;136 readonly isExhausted: boolean;137 readonly isCorruption: boolean;138 readonly isUnavailable: boolean;139 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';140 }141142 /** @name SpRuntimeModuleError (25) */143 interface SpRuntimeModuleError extends Struct {144 readonly index: u8;145 readonly error: U8aFixed;146 }147148 /** @name SpRuntimeTokenError (26) */149 interface SpRuntimeTokenError extends Enum {150 readonly isNoFunds: boolean;151 readonly isWouldDie: boolean;152 readonly isBelowMinimum: boolean;153 readonly isCannotCreate: boolean;154 readonly isUnknownAsset: boolean;155 readonly isFrozen: boolean;156 readonly isUnsupported: boolean;157 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';158 }159160 /** @name SpRuntimeArithmeticError (27) */161 interface SpRuntimeArithmeticError extends Enum {162 readonly isUnderflow: boolean;163 readonly isOverflow: boolean;164 readonly isDivisionByZero: boolean;165 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';166 }167168 /** @name SpRuntimeTransactionalError (28) */169 interface SpRuntimeTransactionalError extends Enum {170 readonly isLimitReached: boolean;171 readonly isNoLayer: boolean;172 readonly type: 'LimitReached' | 'NoLayer';173 }174175 /** @name CumulusPalletParachainSystemEvent (29) */176 interface CumulusPalletParachainSystemEvent extends Enum {177 readonly isValidationFunctionStored: boolean;178 readonly isValidationFunctionApplied: boolean;179 readonly asValidationFunctionApplied: {180 readonly relayChainBlockNum: u32;181 } & Struct;182 readonly isValidationFunctionDiscarded: boolean;183 readonly isUpgradeAuthorized: boolean;184 readonly asUpgradeAuthorized: {185 readonly codeHash: H256;186 } & Struct;187 readonly isDownwardMessagesReceived: boolean;188 readonly asDownwardMessagesReceived: {189 readonly count: u32;190 } & Struct;191 readonly isDownwardMessagesProcessed: boolean;192 readonly asDownwardMessagesProcessed: {193 readonly weightUsed: SpWeightsWeightV2Weight;194 readonly dmqHead: H256;195 } & Struct;196 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';197 }198199 /** @name PalletBalancesEvent (30) */200 interface PalletBalancesEvent extends Enum {201 readonly isEndowed: boolean;202 readonly asEndowed: {203 readonly account: AccountId32;204 readonly freeBalance: u128;205 } & Struct;206 readonly isDustLost: boolean;207 readonly asDustLost: {208 readonly account: AccountId32;209 readonly amount: u128;210 } & Struct;211 readonly isTransfer: boolean;212 readonly asTransfer: {213 readonly from: AccountId32;214 readonly to: AccountId32;215 readonly amount: u128;216 } & Struct;217 readonly isBalanceSet: boolean;218 readonly asBalanceSet: {219 readonly who: AccountId32;220 readonly free: u128;221 readonly reserved: u128;222 } & Struct;223 readonly isReserved: boolean;224 readonly asReserved: {225 readonly who: AccountId32;226 readonly amount: u128;227 } & Struct;228 readonly isUnreserved: boolean;229 readonly asUnreserved: {230 readonly who: AccountId32;231 readonly amount: u128;232 } & Struct;233 readonly isReserveRepatriated: boolean;234 readonly asReserveRepatriated: {235 readonly from: AccountId32;236 readonly to: AccountId32;237 readonly amount: u128;238 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;239 } & Struct;240 readonly isDeposit: boolean;241 readonly asDeposit: {242 readonly who: AccountId32;243 readonly amount: u128;244 } & Struct;245 readonly isWithdraw: boolean;246 readonly asWithdraw: {247 readonly who: AccountId32;248 readonly amount: u128;249 } & Struct;250 readonly isSlashed: boolean;251 readonly asSlashed: {252 readonly who: AccountId32;253 readonly amount: u128;254 } & Struct;255 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';256 }257258 /** @name FrameSupportTokensMiscBalanceStatus (31) */259 interface FrameSupportTokensMiscBalanceStatus extends Enum {260 readonly isFree: boolean;261 readonly isReserved: boolean;262 readonly type: 'Free' | 'Reserved';263 }264265 /** @name PalletTransactionPaymentEvent (32) */266 interface PalletTransactionPaymentEvent extends Enum {267 readonly isTransactionFeePaid: boolean;268 readonly asTransactionFeePaid: {269 readonly who: AccountId32;270 readonly actualFee: u128;271 readonly tip: u128;272 } & Struct;273 readonly type: 'TransactionFeePaid';274 }275276 /** @name PalletTreasuryEvent (33) */277 interface PalletTreasuryEvent extends Enum {278 readonly isProposed: boolean;279 readonly asProposed: {280 readonly proposalIndex: u32;281 } & Struct;282 readonly isSpending: boolean;283 readonly asSpending: {284 readonly budgetRemaining: u128;285 } & Struct;286 readonly isAwarded: boolean;287 readonly asAwarded: {288 readonly proposalIndex: u32;289 readonly award: u128;290 readonly account: AccountId32;291 } & Struct;292 readonly isRejected: boolean;293 readonly asRejected: {294 readonly proposalIndex: u32;295 readonly slashed: u128;296 } & Struct;297 readonly isBurnt: boolean;298 readonly asBurnt: {299 readonly burntFunds: u128;300 } & Struct;301 readonly isRollover: boolean;302 readonly asRollover: {303 readonly rolloverBalance: u128;304 } & Struct;305 readonly isDeposit: boolean;306 readonly asDeposit: {307 readonly value: u128;308 } & Struct;309 readonly isSpendApproved: boolean;310 readonly asSpendApproved: {311 readonly proposalIndex: u32;312 readonly amount: u128;313 readonly beneficiary: AccountId32;314 } & Struct;315 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';316 }317318 /** @name PalletSudoEvent (34) */319 interface PalletSudoEvent extends Enum {320 readonly isSudid: boolean;321 readonly asSudid: {322 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;323 } & Struct;324 readonly isKeyChanged: boolean;325 readonly asKeyChanged: {326 readonly oldSudoer: Option<AccountId32>;327 } & Struct;328 readonly isSudoAsDone: boolean;329 readonly asSudoAsDone: {330 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;331 } & Struct;332 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';333 }334335 /** @name OrmlVestingModuleEvent (38) */336 interface OrmlVestingModuleEvent extends Enum {337 readonly isVestingScheduleAdded: boolean;338 readonly asVestingScheduleAdded: {339 readonly from: AccountId32;340 readonly to: AccountId32;341 readonly vestingSchedule: OrmlVestingVestingSchedule;342 } & Struct;343 readonly isClaimed: boolean;344 readonly asClaimed: {345 readonly who: AccountId32;346 readonly amount: u128;347 } & Struct;348 readonly isVestingSchedulesUpdated: boolean;349 readonly asVestingSchedulesUpdated: {350 readonly who: AccountId32;351 } & Struct;352 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';353 }354355 /** @name OrmlVestingVestingSchedule (39) */356 interface OrmlVestingVestingSchedule extends Struct {357 readonly start: u32;358 readonly period: u32;359 readonly periodCount: u32;360 readonly perPeriod: Compact<u128>;361 }362363 /** @name OrmlXtokensModuleEvent (41) */364 interface OrmlXtokensModuleEvent extends Enum {365 readonly isTransferredMultiAssets: boolean;366 readonly asTransferredMultiAssets: {367 readonly sender: AccountId32;368 readonly assets: XcmV1MultiassetMultiAssets;369 readonly fee: XcmV1MultiAsset;370 readonly dest: XcmV1MultiLocation;371 } & Struct;372 readonly type: 'TransferredMultiAssets';373 }374375 /** @name XcmV1MultiassetMultiAssets (42) */376 interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}377378 /** @name XcmV1MultiAsset (44) */379 interface XcmV1MultiAsset extends Struct {380 readonly id: XcmV1MultiassetAssetId;381 readonly fun: XcmV1MultiassetFungibility;382 }383384 /** @name XcmV1MultiassetAssetId (45) */385 interface XcmV1MultiassetAssetId extends Enum {386 readonly isConcrete: boolean;387 readonly asConcrete: XcmV1MultiLocation;388 readonly isAbstract: boolean;389 readonly asAbstract: Bytes;390 readonly type: 'Concrete' | 'Abstract';391 }392393 /** @name XcmV1MultiLocation (46) */394 interface XcmV1MultiLocation extends Struct {395 readonly parents: u8;396 readonly interior: XcmV1MultilocationJunctions;397 }398399 /** @name XcmV1MultilocationJunctions (47) */400 interface XcmV1MultilocationJunctions extends Enum {401 readonly isHere: boolean;402 readonly isX1: boolean;403 readonly asX1: XcmV1Junction;404 readonly isX2: boolean;405 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;406 readonly isX3: boolean;407 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;408 readonly isX4: boolean;409 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;410 readonly isX5: boolean;411 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;412 readonly isX6: boolean;413 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;414 readonly isX7: boolean;415 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;416 readonly isX8: boolean;417 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;418 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';419 }420421 /** @name XcmV1Junction (48) */422 interface XcmV1Junction extends Enum {423 readonly isParachain: boolean;424 readonly asParachain: Compact<u32>;425 readonly isAccountId32: boolean;426 readonly asAccountId32: {427 readonly network: XcmV0JunctionNetworkId;428 readonly id: U8aFixed;429 } & Struct;430 readonly isAccountIndex64: boolean;431 readonly asAccountIndex64: {432 readonly network: XcmV0JunctionNetworkId;433 readonly index: Compact<u64>;434 } & Struct;435 readonly isAccountKey20: boolean;436 readonly asAccountKey20: {437 readonly network: XcmV0JunctionNetworkId;438 readonly key: U8aFixed;439 } & Struct;440 readonly isPalletInstance: boolean;441 readonly asPalletInstance: u8;442 readonly isGeneralIndex: boolean;443 readonly asGeneralIndex: Compact<u128>;444 readonly isGeneralKey: boolean;445 readonly asGeneralKey: Bytes;446 readonly isOnlyChild: boolean;447 readonly isPlurality: boolean;448 readonly asPlurality: {449 readonly id: XcmV0JunctionBodyId;450 readonly part: XcmV0JunctionBodyPart;451 } & Struct;452 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';453 }454455 /** @name XcmV0JunctionNetworkId (50) */456 interface XcmV0JunctionNetworkId extends Enum {457 readonly isAny: boolean;458 readonly isNamed: boolean;459 readonly asNamed: Bytes;460 readonly isPolkadot: boolean;461 readonly isKusama: boolean;462 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';463 }464465 /** @name XcmV0JunctionBodyId (53) */466 interface XcmV0JunctionBodyId extends Enum {467 readonly isUnit: boolean;468 readonly isNamed: boolean;469 readonly asNamed: Bytes;470 readonly isIndex: boolean;471 readonly asIndex: Compact<u32>;472 readonly isExecutive: boolean;473 readonly isTechnical: boolean;474 readonly isLegislative: boolean;475 readonly isJudicial: boolean;476 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';477 }478479 /** @name XcmV0JunctionBodyPart (54) */480 interface XcmV0JunctionBodyPart extends Enum {481 readonly isVoice: boolean;482 readonly isMembers: boolean;483 readonly asMembers: {484 readonly count: Compact<u32>;485 } & Struct;486 readonly isFraction: boolean;487 readonly asFraction: {488 readonly nom: Compact<u32>;489 readonly denom: Compact<u32>;490 } & Struct;491 readonly isAtLeastProportion: boolean;492 readonly asAtLeastProportion: {493 readonly nom: Compact<u32>;494 readonly denom: Compact<u32>;495 } & Struct;496 readonly isMoreThanProportion: boolean;497 readonly asMoreThanProportion: {498 readonly nom: Compact<u32>;499 readonly denom: Compact<u32>;500 } & Struct;501 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';502 }503504 /** @name XcmV1MultiassetFungibility (55) */505 interface XcmV1MultiassetFungibility extends Enum {506 readonly isFungible: boolean;507 readonly asFungible: Compact<u128>;508 readonly isNonFungible: boolean;509 readonly asNonFungible: XcmV1MultiassetAssetInstance;510 readonly type: 'Fungible' | 'NonFungible';511 }512513 /** @name XcmV1MultiassetAssetInstance (56) */514 interface XcmV1MultiassetAssetInstance extends Enum {515 readonly isUndefined: boolean;516 readonly isIndex: boolean;517 readonly asIndex: Compact<u128>;518 readonly isArray4: boolean;519 readonly asArray4: U8aFixed;520 readonly isArray8: boolean;521 readonly asArray8: U8aFixed;522 readonly isArray16: boolean;523 readonly asArray16: U8aFixed;524 readonly isArray32: boolean;525 readonly asArray32: U8aFixed;526 readonly isBlob: boolean;527 readonly asBlob: Bytes;528 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';529 }530531 /** @name OrmlTokensModuleEvent (59) */532 interface OrmlTokensModuleEvent extends Enum {533 readonly isEndowed: boolean;534 readonly asEndowed: {535 readonly currencyId: PalletForeignAssetsAssetIds;536 readonly who: AccountId32;537 readonly amount: u128;538 } & Struct;539 readonly isDustLost: boolean;540 readonly asDustLost: {541 readonly currencyId: PalletForeignAssetsAssetIds;542 readonly who: AccountId32;543 readonly amount: u128;544 } & Struct;545 readonly isTransfer: boolean;546 readonly asTransfer: {547 readonly currencyId: PalletForeignAssetsAssetIds;548 readonly from: AccountId32;549 readonly to: AccountId32;550 readonly amount: u128;551 } & Struct;552 readonly isReserved: boolean;553 readonly asReserved: {554 readonly currencyId: PalletForeignAssetsAssetIds;555 readonly who: AccountId32;556 readonly amount: u128;557 } & Struct;558 readonly isUnreserved: boolean;559 readonly asUnreserved: {560 readonly currencyId: PalletForeignAssetsAssetIds;561 readonly who: AccountId32;562 readonly amount: u128;563 } & Struct;564 readonly isReserveRepatriated: boolean;565 readonly asReserveRepatriated: {566 readonly currencyId: PalletForeignAssetsAssetIds;567 readonly from: AccountId32;568 readonly to: AccountId32;569 readonly amount: u128;570 readonly status: FrameSupportTokensMiscBalanceStatus;571 } & Struct;572 readonly isBalanceSet: boolean;573 readonly asBalanceSet: {574 readonly currencyId: PalletForeignAssetsAssetIds;575 readonly who: AccountId32;576 readonly free: u128;577 readonly reserved: u128;578 } & Struct;579 readonly isTotalIssuanceSet: boolean;580 readonly asTotalIssuanceSet: {581 readonly currencyId: PalletForeignAssetsAssetIds;582 readonly amount: u128;583 } & Struct;584 readonly isWithdrawn: boolean;585 readonly asWithdrawn: {586 readonly currencyId: PalletForeignAssetsAssetIds;587 readonly who: AccountId32;588 readonly amount: u128;589 } & Struct;590 readonly isSlashed: boolean;591 readonly asSlashed: {592 readonly currencyId: PalletForeignAssetsAssetIds;593 readonly who: AccountId32;594 readonly freeAmount: u128;595 readonly reservedAmount: u128;596 } & Struct;597 readonly isDeposited: boolean;598 readonly asDeposited: {599 readonly currencyId: PalletForeignAssetsAssetIds;600 readonly who: AccountId32;601 readonly amount: u128;602 } & Struct;603 readonly isLockSet: boolean;604 readonly asLockSet: {605 readonly lockId: U8aFixed;606 readonly currencyId: PalletForeignAssetsAssetIds;607 readonly who: AccountId32;608 readonly amount: u128;609 } & Struct;610 readonly isLockRemoved: boolean;611 readonly asLockRemoved: {612 readonly lockId: U8aFixed;613 readonly currencyId: PalletForeignAssetsAssetIds;614 readonly who: AccountId32;615 } & Struct;616 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';617 }618619 /** @name PalletForeignAssetsAssetIds (60) */620 interface PalletForeignAssetsAssetIds extends Enum {621 readonly isForeignAssetId: boolean;622 readonly asForeignAssetId: u32;623 readonly isNativeAssetId: boolean;624 readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;625 readonly type: 'ForeignAssetId' | 'NativeAssetId';626 }627628 /** @name PalletForeignAssetsNativeCurrency (61) */629 interface PalletForeignAssetsNativeCurrency extends Enum {630 readonly isHere: boolean;631 readonly isParent: boolean;632 readonly type: 'Here' | 'Parent';633 }634635 /** @name CumulusPalletXcmpQueueEvent (62) */636 interface CumulusPalletXcmpQueueEvent extends Enum {637 readonly isSuccess: boolean;638 readonly asSuccess: {639 readonly messageHash: Option<H256>;640 readonly weight: SpWeightsWeightV2Weight;641 } & Struct;642 readonly isFail: boolean;643 readonly asFail: {644 readonly messageHash: Option<H256>;645 readonly error: XcmV2TraitsError;646 readonly weight: SpWeightsWeightV2Weight;647 } & Struct;648 readonly isBadVersion: boolean;649 readonly asBadVersion: {650 readonly messageHash: Option<H256>;651 } & Struct;652 readonly isBadFormat: boolean;653 readonly asBadFormat: {654 readonly messageHash: Option<H256>;655 } & Struct;656 readonly isUpwardMessageSent: boolean;657 readonly asUpwardMessageSent: {658 readonly messageHash: Option<H256>;659 } & Struct;660 readonly isXcmpMessageSent: boolean;661 readonly asXcmpMessageSent: {662 readonly messageHash: Option<H256>;663 } & Struct;664 readonly isOverweightEnqueued: boolean;665 readonly asOverweightEnqueued: {666 readonly sender: u32;667 readonly sentAt: u32;668 readonly index: u64;669 readonly required: SpWeightsWeightV2Weight;670 } & Struct;671 readonly isOverweightServiced: boolean;672 readonly asOverweightServiced: {673 readonly index: u64;674 readonly used: SpWeightsWeightV2Weight;675 } & Struct;676 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';677 }678679 /** @name XcmV2TraitsError (64) */680 interface XcmV2TraitsError extends Enum {681 readonly isOverflow: boolean;682 readonly isUnimplemented: boolean;683 readonly isUntrustedReserveLocation: boolean;684 readonly isUntrustedTeleportLocation: boolean;685 readonly isMultiLocationFull: boolean;686 readonly isMultiLocationNotInvertible: boolean;687 readonly isBadOrigin: boolean;688 readonly isInvalidLocation: boolean;689 readonly isAssetNotFound: boolean;690 readonly isFailedToTransactAsset: boolean;691 readonly isNotWithdrawable: boolean;692 readonly isLocationCannotHold: boolean;693 readonly isExceedsMaxMessageSize: boolean;694 readonly isDestinationUnsupported: boolean;695 readonly isTransport: boolean;696 readonly isUnroutable: boolean;697 readonly isUnknownClaim: boolean;698 readonly isFailedToDecode: boolean;699 readonly isMaxWeightInvalid: boolean;700 readonly isNotHoldingFees: boolean;701 readonly isTooExpensive: boolean;702 readonly isTrap: boolean;703 readonly asTrap: u64;704 readonly isUnhandledXcmVersion: boolean;705 readonly isWeightLimitReached: boolean;706 readonly asWeightLimitReached: u64;707 readonly isBarrier: boolean;708 readonly isWeightNotComputable: boolean;709 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';710 }711712 /** @name PalletXcmEvent (66) */713 interface PalletXcmEvent extends Enum {714 readonly isAttempted: boolean;715 readonly asAttempted: XcmV2TraitsOutcome;716 readonly isSent: boolean;717 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;718 readonly isUnexpectedResponse: boolean;719 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;720 readonly isResponseReady: boolean;721 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;722 readonly isNotified: boolean;723 readonly asNotified: ITuple<[u64, u8, u8]>;724 readonly isNotifyOverweight: boolean;725 readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;726 readonly isNotifyDispatchError: boolean;727 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;728 readonly isNotifyDecodeFailed: boolean;729 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;730 readonly isInvalidResponder: boolean;731 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;732 readonly isInvalidResponderVersion: boolean;733 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;734 readonly isResponseTaken: boolean;735 readonly asResponseTaken: u64;736 readonly isAssetsTrapped: boolean;737 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;738 readonly isVersionChangeNotified: boolean;739 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;740 readonly isSupportedVersionChanged: boolean;741 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;742 readonly isNotifyTargetSendFail: boolean;743 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;744 readonly isNotifyTargetMigrationFail: boolean;745 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;746 readonly isAssetsClaimed: boolean;747 readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;748 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';749 }750751 /** @name XcmV2TraitsOutcome (67) */752 interface XcmV2TraitsOutcome extends Enum {753 readonly isComplete: boolean;754 readonly asComplete: u64;755 readonly isIncomplete: boolean;756 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;757 readonly isError: boolean;758 readonly asError: XcmV2TraitsError;759 readonly type: 'Complete' | 'Incomplete' | 'Error';760 }761762 /** @name XcmV2Xcm (68) */763 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}764765 /** @name XcmV2Instruction (70) */766 interface XcmV2Instruction extends Enum {767 readonly isWithdrawAsset: boolean;768 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;769 readonly isReserveAssetDeposited: boolean;770 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;771 readonly isReceiveTeleportedAsset: boolean;772 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;773 readonly isQueryResponse: boolean;774 readonly asQueryResponse: {775 readonly queryId: Compact<u64>;776 readonly response: XcmV2Response;777 readonly maxWeight: Compact<u64>;778 } & Struct;779 readonly isTransferAsset: boolean;780 readonly asTransferAsset: {781 readonly assets: XcmV1MultiassetMultiAssets;782 readonly beneficiary: XcmV1MultiLocation;783 } & Struct;784 readonly isTransferReserveAsset: boolean;785 readonly asTransferReserveAsset: {786 readonly assets: XcmV1MultiassetMultiAssets;787 readonly dest: XcmV1MultiLocation;788 readonly xcm: XcmV2Xcm;789 } & Struct;790 readonly isTransact: boolean;791 readonly asTransact: {792 readonly originType: XcmV0OriginKind;793 readonly requireWeightAtMost: Compact<u64>;794 readonly call: XcmDoubleEncoded;795 } & Struct;796 readonly isHrmpNewChannelOpenRequest: boolean;797 readonly asHrmpNewChannelOpenRequest: {798 readonly sender: Compact<u32>;799 readonly maxMessageSize: Compact<u32>;800 readonly maxCapacity: Compact<u32>;801 } & Struct;802 readonly isHrmpChannelAccepted: boolean;803 readonly asHrmpChannelAccepted: {804 readonly recipient: Compact<u32>;805 } & Struct;806 readonly isHrmpChannelClosing: boolean;807 readonly asHrmpChannelClosing: {808 readonly initiator: Compact<u32>;809 readonly sender: Compact<u32>;810 readonly recipient: Compact<u32>;811 } & Struct;812 readonly isClearOrigin: boolean;813 readonly isDescendOrigin: boolean;814 readonly asDescendOrigin: XcmV1MultilocationJunctions;815 readonly isReportError: boolean;816 readonly asReportError: {817 readonly queryId: Compact<u64>;818 readonly dest: XcmV1MultiLocation;819 readonly maxResponseWeight: Compact<u64>;820 } & Struct;821 readonly isDepositAsset: boolean;822 readonly asDepositAsset: {823 readonly assets: XcmV1MultiassetMultiAssetFilter;824 readonly maxAssets: Compact<u32>;825 readonly beneficiary: XcmV1MultiLocation;826 } & Struct;827 readonly isDepositReserveAsset: boolean;828 readonly asDepositReserveAsset: {829 readonly assets: XcmV1MultiassetMultiAssetFilter;830 readonly maxAssets: Compact<u32>;831 readonly dest: XcmV1MultiLocation;832 readonly xcm: XcmV2Xcm;833 } & Struct;834 readonly isExchangeAsset: boolean;835 readonly asExchangeAsset: {836 readonly give: XcmV1MultiassetMultiAssetFilter;837 readonly receive: XcmV1MultiassetMultiAssets;838 } & Struct;839 readonly isInitiateReserveWithdraw: boolean;840 readonly asInitiateReserveWithdraw: {841 readonly assets: XcmV1MultiassetMultiAssetFilter;842 readonly reserve: XcmV1MultiLocation;843 readonly xcm: XcmV2Xcm;844 } & Struct;845 readonly isInitiateTeleport: boolean;846 readonly asInitiateTeleport: {847 readonly assets: XcmV1MultiassetMultiAssetFilter;848 readonly dest: XcmV1MultiLocation;849 readonly xcm: XcmV2Xcm;850 } & Struct;851 readonly isQueryHolding: boolean;852 readonly asQueryHolding: {853 readonly queryId: Compact<u64>;854 readonly dest: XcmV1MultiLocation;855 readonly assets: XcmV1MultiassetMultiAssetFilter;856 readonly maxResponseWeight: Compact<u64>;857 } & Struct;858 readonly isBuyExecution: boolean;859 readonly asBuyExecution: {860 readonly fees: XcmV1MultiAsset;861 readonly weightLimit: XcmV2WeightLimit;862 } & Struct;863 readonly isRefundSurplus: boolean;864 readonly isSetErrorHandler: boolean;865 readonly asSetErrorHandler: XcmV2Xcm;866 readonly isSetAppendix: boolean;867 readonly asSetAppendix: XcmV2Xcm;868 readonly isClearError: boolean;869 readonly isClaimAsset: boolean;870 readonly asClaimAsset: {871 readonly assets: XcmV1MultiassetMultiAssets;872 readonly ticket: XcmV1MultiLocation;873 } & Struct;874 readonly isTrap: boolean;875 readonly asTrap: Compact<u64>;876 readonly isSubscribeVersion: boolean;877 readonly asSubscribeVersion: {878 readonly queryId: Compact<u64>;879 readonly maxResponseWeight: Compact<u64>;880 } & Struct;881 readonly isUnsubscribeVersion: boolean;882 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';883 }884885 /** @name XcmV2Response (71) */886 interface XcmV2Response extends Enum {887 readonly isNull: boolean;888 readonly isAssets: boolean;889 readonly asAssets: XcmV1MultiassetMultiAssets;890 readonly isExecutionResult: boolean;891 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;892 readonly isVersion: boolean;893 readonly asVersion: u32;894 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';895 }896897 /** @name XcmV0OriginKind (74) */898 interface XcmV0OriginKind extends Enum {899 readonly isNative: boolean;900 readonly isSovereignAccount: boolean;901 readonly isSuperuser: boolean;902 readonly isXcm: boolean;903 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';904 }905906 /** @name XcmDoubleEncoded (75) */907 interface XcmDoubleEncoded extends Struct {908 readonly encoded: Bytes;909 }910911 /** @name XcmV1MultiassetMultiAssetFilter (76) */912 interface XcmV1MultiassetMultiAssetFilter extends Enum {913 readonly isDefinite: boolean;914 readonly asDefinite: XcmV1MultiassetMultiAssets;915 readonly isWild: boolean;916 readonly asWild: XcmV1MultiassetWildMultiAsset;917 readonly type: 'Definite' | 'Wild';918 }919920 /** @name XcmV1MultiassetWildMultiAsset (77) */921 interface XcmV1MultiassetWildMultiAsset extends Enum {922 readonly isAll: boolean;923 readonly isAllOf: boolean;924 readonly asAllOf: {925 readonly id: XcmV1MultiassetAssetId;926 readonly fun: XcmV1MultiassetWildFungibility;927 } & Struct;928 readonly type: 'All' | 'AllOf';929 }930931 /** @name XcmV1MultiassetWildFungibility (78) */932 interface XcmV1MultiassetWildFungibility extends Enum {933 readonly isFungible: boolean;934 readonly isNonFungible: boolean;935 readonly type: 'Fungible' | 'NonFungible';936 }937938 /** @name XcmV2WeightLimit (79) */939 interface XcmV2WeightLimit extends Enum {940 readonly isUnlimited: boolean;941 readonly isLimited: boolean;942 readonly asLimited: Compact<u64>;943 readonly type: 'Unlimited' | 'Limited';944 }945946 /** @name XcmVersionedMultiAssets (81) */947 interface XcmVersionedMultiAssets extends Enum {948 readonly isV0: boolean;949 readonly asV0: Vec<XcmV0MultiAsset>;950 readonly isV1: boolean;951 readonly asV1: XcmV1MultiassetMultiAssets;952 readonly type: 'V0' | 'V1';953 }954955 /** @name XcmV0MultiAsset (83) */956 interface XcmV0MultiAsset extends Enum {957 readonly isNone: boolean;958 readonly isAll: boolean;959 readonly isAllFungible: boolean;960 readonly isAllNonFungible: boolean;961 readonly isAllAbstractFungible: boolean;962 readonly asAllAbstractFungible: {963 readonly id: Bytes;964 } & Struct;965 readonly isAllAbstractNonFungible: boolean;966 readonly asAllAbstractNonFungible: {967 readonly class: Bytes;968 } & Struct;969 readonly isAllConcreteFungible: boolean;970 readonly asAllConcreteFungible: {971 readonly id: XcmV0MultiLocation;972 } & Struct;973 readonly isAllConcreteNonFungible: boolean;974 readonly asAllConcreteNonFungible: {975 readonly class: XcmV0MultiLocation;976 } & Struct;977 readonly isAbstractFungible: boolean;978 readonly asAbstractFungible: {979 readonly id: Bytes;980 readonly amount: Compact<u128>;981 } & Struct;982 readonly isAbstractNonFungible: boolean;983 readonly asAbstractNonFungible: {984 readonly class: Bytes;985 readonly instance: XcmV1MultiassetAssetInstance;986 } & Struct;987 readonly isConcreteFungible: boolean;988 readonly asConcreteFungible: {989 readonly id: XcmV0MultiLocation;990 readonly amount: Compact<u128>;991 } & Struct;992 readonly isConcreteNonFungible: boolean;993 readonly asConcreteNonFungible: {994 readonly class: XcmV0MultiLocation;995 readonly instance: XcmV1MultiassetAssetInstance;996 } & Struct;997 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';998 }9991000 /** @name XcmV0MultiLocation (84) */1001 interface XcmV0MultiLocation extends Enum {1002 readonly isNull: boolean;1003 readonly isX1: boolean;1004 readonly asX1: XcmV0Junction;1005 readonly isX2: boolean;1006 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;1007 readonly isX3: boolean;1008 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1009 readonly isX4: boolean;1010 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1011 readonly isX5: boolean;1012 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1013 readonly isX6: boolean;1014 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1015 readonly isX7: boolean;1016 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1017 readonly isX8: boolean;1018 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1019 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1020 }10211022 /** @name XcmV0Junction (85) */1023 interface XcmV0Junction extends Enum {1024 readonly isParent: boolean;1025 readonly isParachain: boolean;1026 readonly asParachain: Compact<u32>;1027 readonly isAccountId32: boolean;1028 readonly asAccountId32: {1029 readonly network: XcmV0JunctionNetworkId;1030 readonly id: U8aFixed;1031 } & Struct;1032 readonly isAccountIndex64: boolean;1033 readonly asAccountIndex64: {1034 readonly network: XcmV0JunctionNetworkId;1035 readonly index: Compact<u64>;1036 } & Struct;1037 readonly isAccountKey20: boolean;1038 readonly asAccountKey20: {1039 readonly network: XcmV0JunctionNetworkId;1040 readonly key: U8aFixed;1041 } & Struct;1042 readonly isPalletInstance: boolean;1043 readonly asPalletInstance: u8;1044 readonly isGeneralIndex: boolean;1045 readonly asGeneralIndex: Compact<u128>;1046 readonly isGeneralKey: boolean;1047 readonly asGeneralKey: Bytes;1048 readonly isOnlyChild: boolean;1049 readonly isPlurality: boolean;1050 readonly asPlurality: {1051 readonly id: XcmV0JunctionBodyId;1052 readonly part: XcmV0JunctionBodyPart;1053 } & Struct;1054 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1055 }10561057 /** @name XcmVersionedMultiLocation (86) */1058 interface XcmVersionedMultiLocation extends Enum {1059 readonly isV0: boolean;1060 readonly asV0: XcmV0MultiLocation;1061 readonly isV1: boolean;1062 readonly asV1: XcmV1MultiLocation;1063 readonly type: 'V0' | 'V1';1064 }10651066 /** @name CumulusPalletXcmEvent (87) */1067 interface CumulusPalletXcmEvent extends Enum {1068 readonly isInvalidFormat: boolean;1069 readonly asInvalidFormat: U8aFixed;1070 readonly isUnsupportedVersion: boolean;1071 readonly asUnsupportedVersion: U8aFixed;1072 readonly isExecutedDownward: boolean;1073 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;1074 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1075 }10761077 /** @name CumulusPalletDmpQueueEvent (88) */1078 interface CumulusPalletDmpQueueEvent extends Enum {1079 readonly isInvalidFormat: boolean;1080 readonly asInvalidFormat: {1081 readonly messageId: U8aFixed;1082 } & Struct;1083 readonly isUnsupportedVersion: boolean;1084 readonly asUnsupportedVersion: {1085 readonly messageId: U8aFixed;1086 } & Struct;1087 readonly isExecutedDownward: boolean;1088 readonly asExecutedDownward: {1089 readonly messageId: U8aFixed;1090 readonly outcome: XcmV2TraitsOutcome;1091 } & Struct;1092 readonly isWeightExhausted: boolean;1093 readonly asWeightExhausted: {1094 readonly messageId: U8aFixed;1095 readonly remainingWeight: SpWeightsWeightV2Weight;1096 readonly requiredWeight: SpWeightsWeightV2Weight;1097 } & Struct;1098 readonly isOverweightEnqueued: boolean;1099 readonly asOverweightEnqueued: {1100 readonly messageId: U8aFixed;1101 readonly overweightIndex: u64;1102 readonly requiredWeight: SpWeightsWeightV2Weight;1103 } & Struct;1104 readonly isOverweightServiced: boolean;1105 readonly asOverweightServiced: {1106 readonly overweightIndex: u64;1107 readonly weightUsed: SpWeightsWeightV2Weight;1108 } & Struct;1109 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1110 }11111112 /** @name PalletUniqueRawEvent (89) */1113 interface PalletUniqueRawEvent extends Enum {1114 readonly isCollectionSponsorRemoved: boolean;1115 readonly asCollectionSponsorRemoved: u32;1116 readonly isCollectionAdminAdded: boolean;1117 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1118 readonly isCollectionOwnedChanged: boolean;1119 readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;1120 readonly isCollectionSponsorSet: boolean;1121 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1122 readonly isSponsorshipConfirmed: boolean;1123 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1124 readonly isCollectionAdminRemoved: boolean;1125 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1126 readonly isAllowListAddressRemoved: boolean;1127 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1128 readonly isAllowListAddressAdded: boolean;1129 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1130 readonly isCollectionLimitSet: boolean;1131 readonly asCollectionLimitSet: u32;1132 readonly isCollectionPermissionSet: boolean;1133 readonly asCollectionPermissionSet: u32;1134 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';1135 }11361137 /** @name PalletEvmAccountBasicCrossAccountIdRepr (90) */1138 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1139 readonly isSubstrate: boolean;1140 readonly asSubstrate: AccountId32;1141 readonly isEthereum: boolean;1142 readonly asEthereum: H160;1143 readonly type: 'Substrate' | 'Ethereum';1144 }11451146 /** @name PalletUniqueSchedulerV2Event (93) */1147 interface PalletUniqueSchedulerV2Event extends Enum {1148 readonly isScheduled: boolean;1149 readonly asScheduled: {1150 readonly when: u32;1151 readonly index: u32;1152 } & Struct;1153 readonly isCanceled: boolean;1154 readonly asCanceled: {1155 readonly when: u32;1156 readonly index: u32;1157 } & Struct;1158 readonly isDispatched: boolean;1159 readonly asDispatched: {1160 readonly task: ITuple<[u32, u32]>;1161 readonly id: Option<U8aFixed>;1162 readonly result: Result<Null, SpRuntimeDispatchError>;1163 } & Struct;1164 readonly isPriorityChanged: boolean;1165 readonly asPriorityChanged: {1166 readonly task: ITuple<[u32, u32]>;1167 readonly priority: u8;1168 } & Struct;1169 readonly isCallUnavailable: boolean;1170 readonly asCallUnavailable: {1171 readonly task: ITuple<[u32, u32]>;1172 readonly id: Option<U8aFixed>;1173 } & Struct;1174 readonly isPermanentlyOverweight: boolean;1175 readonly asPermanentlyOverweight: {1176 readonly task: ITuple<[u32, u32]>;1177 readonly id: Option<U8aFixed>;1178 } & Struct;1179 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';1180 }11811182 /** @name PalletCommonEvent (96) */1183 interface PalletCommonEvent extends Enum {1184 readonly isCollectionCreated: boolean;1185 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1186 readonly isCollectionDestroyed: boolean;1187 readonly asCollectionDestroyed: u32;1188 readonly isItemCreated: boolean;1189 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1190 readonly isItemDestroyed: boolean;1191 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1192 readonly isTransfer: boolean;1193 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1194 readonly isApproved: boolean;1195 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1196 readonly isApprovedForAll: boolean;1197 readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1198 readonly isCollectionPropertySet: boolean;1199 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1200 readonly isCollectionPropertyDeleted: boolean;1201 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1202 readonly isTokenPropertySet: boolean;1203 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1204 readonly isTokenPropertyDeleted: boolean;1205 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1206 readonly isPropertyPermissionSet: boolean;1207 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1208 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';1209 }12101211 /** @name PalletStructureEvent (100) */1212 interface PalletStructureEvent extends Enum {1213 readonly isExecuted: boolean;1214 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1215 readonly type: 'Executed';1216 }12171218 /** @name PalletRmrkCoreEvent (101) */1219 interface PalletRmrkCoreEvent extends Enum {1220 readonly isCollectionCreated: boolean;1221 readonly asCollectionCreated: {1222 readonly issuer: AccountId32;1223 readonly collectionId: u32;1224 } & Struct;1225 readonly isCollectionDestroyed: boolean;1226 readonly asCollectionDestroyed: {1227 readonly issuer: AccountId32;1228 readonly collectionId: u32;1229 } & Struct;1230 readonly isIssuerChanged: boolean;1231 readonly asIssuerChanged: {1232 readonly oldIssuer: AccountId32;1233 readonly newIssuer: AccountId32;1234 readonly collectionId: u32;1235 } & Struct;1236 readonly isCollectionLocked: boolean;1237 readonly asCollectionLocked: {1238 readonly issuer: AccountId32;1239 readonly collectionId: u32;1240 } & Struct;1241 readonly isNftMinted: boolean;1242 readonly asNftMinted: {1243 readonly owner: AccountId32;1244 readonly collectionId: u32;1245 readonly nftId: u32;1246 } & Struct;1247 readonly isNftBurned: boolean;1248 readonly asNftBurned: {1249 readonly owner: AccountId32;1250 readonly nftId: u32;1251 } & Struct;1252 readonly isNftSent: boolean;1253 readonly asNftSent: {1254 readonly sender: AccountId32;1255 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1256 readonly collectionId: u32;1257 readonly nftId: u32;1258 readonly approvalRequired: bool;1259 } & Struct;1260 readonly isNftAccepted: boolean;1261 readonly asNftAccepted: {1262 readonly sender: AccountId32;1263 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1264 readonly collectionId: u32;1265 readonly nftId: u32;1266 } & Struct;1267 readonly isNftRejected: boolean;1268 readonly asNftRejected: {1269 readonly sender: AccountId32;1270 readonly collectionId: u32;1271 readonly nftId: u32;1272 } & Struct;1273 readonly isPropertySet: boolean;1274 readonly asPropertySet: {1275 readonly collectionId: u32;1276 readonly maybeNftId: Option<u32>;1277 readonly key: Bytes;1278 readonly value: Bytes;1279 } & Struct;1280 readonly isResourceAdded: boolean;1281 readonly asResourceAdded: {1282 readonly nftId: u32;1283 readonly resourceId: u32;1284 } & Struct;1285 readonly isResourceRemoval: boolean;1286 readonly asResourceRemoval: {1287 readonly nftId: u32;1288 readonly resourceId: u32;1289 } & Struct;1290 readonly isResourceAccepted: boolean;1291 readonly asResourceAccepted: {1292 readonly nftId: u32;1293 readonly resourceId: u32;1294 } & Struct;1295 readonly isResourceRemovalAccepted: boolean;1296 readonly asResourceRemovalAccepted: {1297 readonly nftId: u32;1298 readonly resourceId: u32;1299 } & Struct;1300 readonly isPrioritySet: boolean;1301 readonly asPrioritySet: {1302 readonly collectionId: u32;1303 readonly nftId: u32;1304 } & Struct;1305 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1306 }13071308 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (102) */1309 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1310 readonly isAccountId: boolean;1311 readonly asAccountId: AccountId32;1312 readonly isCollectionAndNftTuple: boolean;1313 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;1314 readonly type: 'AccountId' | 'CollectionAndNftTuple';1315 }13161317 /** @name PalletRmrkEquipEvent (106) */1318 interface PalletRmrkEquipEvent extends Enum {1319 readonly isBaseCreated: boolean;1320 readonly asBaseCreated: {1321 readonly issuer: AccountId32;1322 readonly baseId: u32;1323 } & Struct;1324 readonly isEquippablesUpdated: boolean;1325 readonly asEquippablesUpdated: {1326 readonly baseId: u32;1327 readonly slotId: u32;1328 } & Struct;1329 readonly type: 'BaseCreated' | 'EquippablesUpdated';1330 }13311332 /** @name PalletAppPromotionEvent (107) */1333 interface PalletAppPromotionEvent extends Enum {1334 readonly isStakingRecalculation: boolean;1335 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1336 readonly isStake: boolean;1337 readonly asStake: ITuple<[AccountId32, u128]>;1338 readonly isUnstake: boolean;1339 readonly asUnstake: ITuple<[AccountId32, u128]>;1340 readonly isSetAdmin: boolean;1341 readonly asSetAdmin: AccountId32;1342 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1343 }13441345 /** @name PalletForeignAssetsModuleEvent (108) */1346 interface PalletForeignAssetsModuleEvent extends Enum {1347 readonly isForeignAssetRegistered: boolean;1348 readonly asForeignAssetRegistered: {1349 readonly assetId: u32;1350 readonly assetAddress: XcmV1MultiLocation;1351 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1352 } & Struct;1353 readonly isForeignAssetUpdated: boolean;1354 readonly asForeignAssetUpdated: {1355 readonly assetId: u32;1356 readonly assetAddress: XcmV1MultiLocation;1357 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1358 } & Struct;1359 readonly isAssetRegistered: boolean;1360 readonly asAssetRegistered: {1361 readonly assetId: PalletForeignAssetsAssetIds;1362 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1363 } & Struct;1364 readonly isAssetUpdated: boolean;1365 readonly asAssetUpdated: {1366 readonly assetId: PalletForeignAssetsAssetIds;1367 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1368 } & Struct;1369 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1370 }13711372 /** @name PalletForeignAssetsModuleAssetMetadata (109) */1373 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1374 readonly name: Bytes;1375 readonly symbol: Bytes;1376 readonly decimals: u8;1377 readonly minimalBalance: u128;1378 }13791380 /** @name PalletEvmEvent (110) */1381 interface PalletEvmEvent extends Enum {1382 readonly isLog: boolean;1383 readonly asLog: {1384 readonly log: EthereumLog;1385 } & Struct;1386 readonly isCreated: boolean;1387 readonly asCreated: {1388 readonly address: H160;1389 } & Struct;1390 readonly isCreatedFailed: boolean;1391 readonly asCreatedFailed: {1392 readonly address: H160;1393 } & Struct;1394 readonly isExecuted: boolean;1395 readonly asExecuted: {1396 readonly address: H160;1397 } & Struct;1398 readonly isExecutedFailed: boolean;1399 readonly asExecutedFailed: {1400 readonly address: H160;1401 } & Struct;1402 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1403 }14041405 /** @name EthereumLog (111) */1406 interface EthereumLog extends Struct {1407 readonly address: H160;1408 readonly topics: Vec<H256>;1409 readonly data: Bytes;1410 }14111412 /** @name PalletEthereumEvent (113) */1413 interface PalletEthereumEvent extends Enum {1414 readonly isExecuted: boolean;1415 readonly asExecuted: {1416 readonly from: H160;1417 readonly to: H160;1418 readonly transactionHash: H256;1419 readonly exitReason: EvmCoreErrorExitReason;1420 } & Struct;1421 readonly type: 'Executed';1422 }14231424 /** @name EvmCoreErrorExitReason (114) */1425 interface EvmCoreErrorExitReason extends Enum {1426 readonly isSucceed: boolean;1427 readonly asSucceed: EvmCoreErrorExitSucceed;1428 readonly isError: boolean;1429 readonly asError: EvmCoreErrorExitError;1430 readonly isRevert: boolean;1431 readonly asRevert: EvmCoreErrorExitRevert;1432 readonly isFatal: boolean;1433 readonly asFatal: EvmCoreErrorExitFatal;1434 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1435 }14361437 /** @name EvmCoreErrorExitSucceed (115) */1438 interface EvmCoreErrorExitSucceed extends Enum {1439 readonly isStopped: boolean;1440 readonly isReturned: boolean;1441 readonly isSuicided: boolean;1442 readonly type: 'Stopped' | 'Returned' | 'Suicided';1443 }14441445 /** @name EvmCoreErrorExitError (116) */1446 interface EvmCoreErrorExitError extends Enum {1447 readonly isStackUnderflow: boolean;1448 readonly isStackOverflow: boolean;1449 readonly isInvalidJump: boolean;1450 readonly isInvalidRange: boolean;1451 readonly isDesignatedInvalid: boolean;1452 readonly isCallTooDeep: boolean;1453 readonly isCreateCollision: boolean;1454 readonly isCreateContractLimit: boolean;1455 readonly isOutOfOffset: boolean;1456 readonly isOutOfGas: boolean;1457 readonly isOutOfFund: boolean;1458 readonly isPcUnderflow: boolean;1459 readonly isCreateEmpty: boolean;1460 readonly isOther: boolean;1461 readonly asOther: Text;1462 readonly isInvalidCode: boolean;1463 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1464 }14651466 /** @name EvmCoreErrorExitRevert (119) */1467 interface EvmCoreErrorExitRevert extends Enum {1468 readonly isReverted: boolean;1469 readonly type: 'Reverted';1470 }14711472 /** @name EvmCoreErrorExitFatal (120) */1473 interface EvmCoreErrorExitFatal extends Enum {1474 readonly isNotSupported: boolean;1475 readonly isUnhandledInterrupt: boolean;1476 readonly isCallErrorAsFatal: boolean;1477 readonly asCallErrorAsFatal: EvmCoreErrorExitError;1478 readonly isOther: boolean;1479 readonly asOther: Text;1480 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1481 }14821483 /** @name PalletEvmContractHelpersEvent (121) */1484 interface PalletEvmContractHelpersEvent extends Enum {1485 readonly isContractSponsorSet: boolean;1486 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1487 readonly isContractSponsorshipConfirmed: boolean;1488 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1489 readonly isContractSponsorRemoved: boolean;1490 readonly asContractSponsorRemoved: H160;1491 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1492 }14931494 /** @name PalletEvmMigrationEvent (122) */1495 interface PalletEvmMigrationEvent extends Enum {1496 readonly isTestEvent: boolean;1497 readonly type: 'TestEvent';1498 }14991500 /** @name PalletMaintenanceEvent (123) */1501 interface PalletMaintenanceEvent extends Enum {1502 readonly isMaintenanceEnabled: boolean;1503 readonly isMaintenanceDisabled: boolean;1504 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1505 }15061507 /** @name PalletTestUtilsEvent (124) */1508 interface PalletTestUtilsEvent extends Enum {1509 readonly isValueIsSet: boolean;1510 readonly isShouldRollback: boolean;1511 readonly isBatchCompleted: boolean;1512 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1513 }15141515 /** @name FrameSystemPhase (125) */1516 interface FrameSystemPhase extends Enum {1517 readonly isApplyExtrinsic: boolean;1518 readonly asApplyExtrinsic: u32;1519 readonly isFinalization: boolean;1520 readonly isInitialization: boolean;1521 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1522 }15231524 /** @name FrameSystemLastRuntimeUpgradeInfo (127) */1525 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1526 readonly specVersion: Compact<u32>;1527 readonly specName: Text;1528 }15291530 /** @name FrameSystemCall (128) */1531 interface FrameSystemCall extends Enum {1532 readonly isFillBlock: boolean;1533 readonly asFillBlock: {1534 readonly ratio: Perbill;1535 } & Struct;1536 readonly isRemark: boolean;1537 readonly asRemark: {1538 readonly remark: Bytes;1539 } & Struct;1540 readonly isSetHeapPages: boolean;1541 readonly asSetHeapPages: {1542 readonly pages: u64;1543 } & Struct;1544 readonly isSetCode: boolean;1545 readonly asSetCode: {1546 readonly code: Bytes;1547 } & Struct;1548 readonly isSetCodeWithoutChecks: boolean;1549 readonly asSetCodeWithoutChecks: {1550 readonly code: Bytes;1551 } & Struct;1552 readonly isSetStorage: boolean;1553 readonly asSetStorage: {1554 readonly items: Vec<ITuple<[Bytes, Bytes]>>;1555 } & Struct;1556 readonly isKillStorage: boolean;1557 readonly asKillStorage: {1558 readonly keys_: Vec<Bytes>;1559 } & Struct;1560 readonly isKillPrefix: boolean;1561 readonly asKillPrefix: {1562 readonly prefix: Bytes;1563 readonly subkeys: u32;1564 } & Struct;1565 readonly isRemarkWithEvent: boolean;1566 readonly asRemarkWithEvent: {1567 readonly remark: Bytes;1568 } & Struct;1569 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1570 }15711572 /** @name FrameSystemLimitsBlockWeights (133) */1573 interface FrameSystemLimitsBlockWeights extends Struct {1574 readonly baseBlock: SpWeightsWeightV2Weight;1575 readonly maxBlock: SpWeightsWeightV2Weight;1576 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1577 }15781579 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (134) */1580 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1581 readonly normal: FrameSystemLimitsWeightsPerClass;1582 readonly operational: FrameSystemLimitsWeightsPerClass;1583 readonly mandatory: FrameSystemLimitsWeightsPerClass;1584 }15851586 /** @name FrameSystemLimitsWeightsPerClass (135) */1587 interface FrameSystemLimitsWeightsPerClass extends Struct {1588 readonly baseExtrinsic: SpWeightsWeightV2Weight;1589 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1590 readonly maxTotal: Option<SpWeightsWeightV2Weight>;1591 readonly reserved: Option<SpWeightsWeightV2Weight>;1592 }15931594 /** @name FrameSystemLimitsBlockLength (137) */1595 interface FrameSystemLimitsBlockLength extends Struct {1596 readonly max: FrameSupportDispatchPerDispatchClassU32;1597 }15981599 /** @name FrameSupportDispatchPerDispatchClassU32 (138) */1600 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1601 readonly normal: u32;1602 readonly operational: u32;1603 readonly mandatory: u32;1604 }16051606 /** @name SpWeightsRuntimeDbWeight (139) */1607 interface SpWeightsRuntimeDbWeight extends Struct {1608 readonly read: u64;1609 readonly write: u64;1610 }16111612 /** @name SpVersionRuntimeVersion (140) */1613 interface SpVersionRuntimeVersion extends Struct {1614 readonly specName: Text;1615 readonly implName: Text;1616 readonly authoringVersion: u32;1617 readonly specVersion: u32;1618 readonly implVersion: u32;1619 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;1620 readonly transactionVersion: u32;1621 readonly stateVersion: u8;1622 }16231624 /** @name FrameSystemError (145) */1625 interface FrameSystemError extends Enum {1626 readonly isInvalidSpecName: boolean;1627 readonly isSpecVersionNeedsToIncrease: boolean;1628 readonly isFailedToExtractRuntimeVersion: boolean;1629 readonly isNonDefaultComposite: boolean;1630 readonly isNonZeroRefCount: boolean;1631 readonly isCallFiltered: boolean;1632 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1633 }16341635 /** @name PolkadotPrimitivesV2PersistedValidationData (146) */1636 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1637 readonly parentHead: Bytes;1638 readonly relayParentNumber: u32;1639 readonly relayParentStorageRoot: H256;1640 readonly maxPovSize: u32;1641 }16421643 /** @name PolkadotPrimitivesV2UpgradeRestriction (149) */1644 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1645 readonly isPresent: boolean;1646 readonly type: 'Present';1647 }16481649 /** @name SpTrieStorageProof (150) */1650 interface SpTrieStorageProof extends Struct {1651 readonly trieNodes: BTreeSet<Bytes>;1652 }16531654 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (152) */1655 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1656 readonly dmqMqcHead: H256;1657 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1658 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1659 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1660 }16611662 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (155) */1663 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1664 readonly maxCapacity: u32;1665 readonly maxTotalSize: u32;1666 readonly maxMessageSize: u32;1667 readonly msgCount: u32;1668 readonly totalSize: u32;1669 readonly mqcHead: Option<H256>;1670 }16711672 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (156) */1673 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1674 readonly maxCodeSize: u32;1675 readonly maxHeadDataSize: u32;1676 readonly maxUpwardQueueCount: u32;1677 readonly maxUpwardQueueSize: u32;1678 readonly maxUpwardMessageSize: u32;1679 readonly maxUpwardMessageNumPerCandidate: u32;1680 readonly hrmpMaxMessageNumPerCandidate: u32;1681 readonly validationUpgradeCooldown: u32;1682 readonly validationUpgradeDelay: u32;1683 }16841685 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (162) */1686 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1687 readonly recipient: u32;1688 readonly data: Bytes;1689 }16901691 /** @name CumulusPalletParachainSystemCall (163) */1692 interface CumulusPalletParachainSystemCall extends Enum {1693 readonly isSetValidationData: boolean;1694 readonly asSetValidationData: {1695 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;1696 } & Struct;1697 readonly isSudoSendUpwardMessage: boolean;1698 readonly asSudoSendUpwardMessage: {1699 readonly message: Bytes;1700 } & Struct;1701 readonly isAuthorizeUpgrade: boolean;1702 readonly asAuthorizeUpgrade: {1703 readonly codeHash: H256;1704 } & Struct;1705 readonly isEnactAuthorizedUpgrade: boolean;1706 readonly asEnactAuthorizedUpgrade: {1707 readonly code: Bytes;1708 } & Struct;1709 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1710 }17111712 /** @name CumulusPrimitivesParachainInherentParachainInherentData (164) */1713 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1714 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1715 readonly relayChainState: SpTrieStorageProof;1716 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1717 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1718 }17191720 /** @name PolkadotCorePrimitivesInboundDownwardMessage (166) */1721 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1722 readonly sentAt: u32;1723 readonly msg: Bytes;1724 }17251726 /** @name PolkadotCorePrimitivesInboundHrmpMessage (169) */1727 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1728 readonly sentAt: u32;1729 readonly data: Bytes;1730 }17311732 /** @name CumulusPalletParachainSystemError (172) */1733 interface CumulusPalletParachainSystemError extends Enum {1734 readonly isOverlappingUpgrades: boolean;1735 readonly isProhibitedByPolkadot: boolean;1736 readonly isTooBig: boolean;1737 readonly isValidationDataNotAvailable: boolean;1738 readonly isHostConfigurationNotAvailable: boolean;1739 readonly isNotScheduled: boolean;1740 readonly isNothingAuthorized: boolean;1741 readonly isUnauthorized: boolean;1742 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1743 }17441745 /** @name PalletBalancesBalanceLock (174) */1746 interface PalletBalancesBalanceLock extends Struct {1747 readonly id: U8aFixed;1748 readonly amount: u128;1749 readonly reasons: PalletBalancesReasons;1750 }17511752 /** @name PalletBalancesReasons (175) */1753 interface PalletBalancesReasons extends Enum {1754 readonly isFee: boolean;1755 readonly isMisc: boolean;1756 readonly isAll: boolean;1757 readonly type: 'Fee' | 'Misc' | 'All';1758 }17591760 /** @name PalletBalancesReserveData (178) */1761 interface PalletBalancesReserveData extends Struct {1762 readonly id: U8aFixed;1763 readonly amount: u128;1764 }17651766 /** @name PalletBalancesReleases (180) */1767 interface PalletBalancesReleases extends Enum {1768 readonly isV100: boolean;1769 readonly isV200: boolean;1770 readonly type: 'V100' | 'V200';1771 }17721773 /** @name PalletBalancesCall (181) */1774 interface PalletBalancesCall extends Enum {1775 readonly isTransfer: boolean;1776 readonly asTransfer: {1777 readonly dest: MultiAddress;1778 readonly value: Compact<u128>;1779 } & Struct;1780 readonly isSetBalance: boolean;1781 readonly asSetBalance: {1782 readonly who: MultiAddress;1783 readonly newFree: Compact<u128>;1784 readonly newReserved: Compact<u128>;1785 } & Struct;1786 readonly isForceTransfer: boolean;1787 readonly asForceTransfer: {1788 readonly source: MultiAddress;1789 readonly dest: MultiAddress;1790 readonly value: Compact<u128>;1791 } & Struct;1792 readonly isTransferKeepAlive: boolean;1793 readonly asTransferKeepAlive: {1794 readonly dest: MultiAddress;1795 readonly value: Compact<u128>;1796 } & Struct;1797 readonly isTransferAll: boolean;1798 readonly asTransferAll: {1799 readonly dest: MultiAddress;1800 readonly keepAlive: bool;1801 } & Struct;1802 readonly isForceUnreserve: boolean;1803 readonly asForceUnreserve: {1804 readonly who: MultiAddress;1805 readonly amount: u128;1806 } & Struct;1807 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1808 }18091810 /** @name PalletBalancesError (184) */1811 interface PalletBalancesError extends Enum {1812 readonly isVestingBalance: boolean;1813 readonly isLiquidityRestrictions: boolean;1814 readonly isInsufficientBalance: boolean;1815 readonly isExistentialDeposit: boolean;1816 readonly isKeepAlive: boolean;1817 readonly isExistingVestingSchedule: boolean;1818 readonly isDeadAccount: boolean;1819 readonly isTooManyReserves: boolean;1820 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1821 }18221823 /** @name PalletTimestampCall (186) */1824 interface PalletTimestampCall extends Enum {1825 readonly isSet: boolean;1826 readonly asSet: {1827 readonly now: Compact<u64>;1828 } & Struct;1829 readonly type: 'Set';1830 }18311832 /** @name PalletTransactionPaymentReleases (188) */1833 interface PalletTransactionPaymentReleases extends Enum {1834 readonly isV1Ancient: boolean;1835 readonly isV2: boolean;1836 readonly type: 'V1Ancient' | 'V2';1837 }18381839 /** @name PalletTreasuryProposal (189) */1840 interface PalletTreasuryProposal extends Struct {1841 readonly proposer: AccountId32;1842 readonly value: u128;1843 readonly beneficiary: AccountId32;1844 readonly bond: u128;1845 }18461847 /** @name PalletTreasuryCall (192) */1848 interface PalletTreasuryCall extends Enum {1849 readonly isProposeSpend: boolean;1850 readonly asProposeSpend: {1851 readonly value: Compact<u128>;1852 readonly beneficiary: MultiAddress;1853 } & Struct;1854 readonly isRejectProposal: boolean;1855 readonly asRejectProposal: {1856 readonly proposalId: Compact<u32>;1857 } & Struct;1858 readonly isApproveProposal: boolean;1859 readonly asApproveProposal: {1860 readonly proposalId: Compact<u32>;1861 } & Struct;1862 readonly isSpend: boolean;1863 readonly asSpend: {1864 readonly amount: Compact<u128>;1865 readonly beneficiary: MultiAddress;1866 } & Struct;1867 readonly isRemoveApproval: boolean;1868 readonly asRemoveApproval: {1869 readonly proposalId: Compact<u32>;1870 } & Struct;1871 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1872 }18731874 /** @name FrameSupportPalletId (195) */1875 interface FrameSupportPalletId extends U8aFixed {}18761877 /** @name PalletTreasuryError (196) */1878 interface PalletTreasuryError extends Enum {1879 readonly isInsufficientProposersBalance: boolean;1880 readonly isInvalidIndex: boolean;1881 readonly isTooManyApprovals: boolean;1882 readonly isInsufficientPermission: boolean;1883 readonly isProposalNotApproved: boolean;1884 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1885 }18861887 /** @name PalletSudoCall (197) */1888 interface PalletSudoCall extends Enum {1889 readonly isSudo: boolean;1890 readonly asSudo: {1891 readonly call: Call;1892 } & Struct;1893 readonly isSudoUncheckedWeight: boolean;1894 readonly asSudoUncheckedWeight: {1895 readonly call: Call;1896 readonly weight: SpWeightsWeightV2Weight;1897 } & Struct;1898 readonly isSetKey: boolean;1899 readonly asSetKey: {1900 readonly new_: MultiAddress;1901 } & Struct;1902 readonly isSudoAs: boolean;1903 readonly asSudoAs: {1904 readonly who: MultiAddress;1905 readonly call: Call;1906 } & Struct;1907 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1908 }19091910 /** @name OrmlVestingModuleCall (199) */1911 interface OrmlVestingModuleCall extends Enum {1912 readonly isClaim: boolean;1913 readonly isVestedTransfer: boolean;1914 readonly asVestedTransfer: {1915 readonly dest: MultiAddress;1916 readonly schedule: OrmlVestingVestingSchedule;1917 } & Struct;1918 readonly isUpdateVestingSchedules: boolean;1919 readonly asUpdateVestingSchedules: {1920 readonly who: MultiAddress;1921 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;1922 } & Struct;1923 readonly isClaimFor: boolean;1924 readonly asClaimFor: {1925 readonly dest: MultiAddress;1926 } & Struct;1927 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1928 }19291930 /** @name OrmlXtokensModuleCall (201) */1931 interface OrmlXtokensModuleCall extends Enum {1932 readonly isTransfer: boolean;1933 readonly asTransfer: {1934 readonly currencyId: PalletForeignAssetsAssetIds;1935 readonly amount: u128;1936 readonly dest: XcmVersionedMultiLocation;1937 readonly destWeightLimit: XcmV2WeightLimit;1938 } & Struct;1939 readonly isTransferMultiasset: boolean;1940 readonly asTransferMultiasset: {1941 readonly asset: XcmVersionedMultiAsset;1942 readonly dest: XcmVersionedMultiLocation;1943 readonly destWeightLimit: XcmV2WeightLimit;1944 } & Struct;1945 readonly isTransferWithFee: boolean;1946 readonly asTransferWithFee: {1947 readonly currencyId: PalletForeignAssetsAssetIds;1948 readonly amount: u128;1949 readonly fee: u128;1950 readonly dest: XcmVersionedMultiLocation;1951 readonly destWeightLimit: XcmV2WeightLimit;1952 } & Struct;1953 readonly isTransferMultiassetWithFee: boolean;1954 readonly asTransferMultiassetWithFee: {1955 readonly asset: XcmVersionedMultiAsset;1956 readonly fee: XcmVersionedMultiAsset;1957 readonly dest: XcmVersionedMultiLocation;1958 readonly destWeightLimit: XcmV2WeightLimit;1959 } & Struct;1960 readonly isTransferMulticurrencies: boolean;1961 readonly asTransferMulticurrencies: {1962 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;1963 readonly feeItem: u32;1964 readonly dest: XcmVersionedMultiLocation;1965 readonly destWeightLimit: XcmV2WeightLimit;1966 } & Struct;1967 readonly isTransferMultiassets: boolean;1968 readonly asTransferMultiassets: {1969 readonly assets: XcmVersionedMultiAssets;1970 readonly feeItem: u32;1971 readonly dest: XcmVersionedMultiLocation;1972 readonly destWeightLimit: XcmV2WeightLimit;1973 } & Struct;1974 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1975 }19761977 /** @name XcmVersionedMultiAsset (202) */1978 interface XcmVersionedMultiAsset extends Enum {1979 readonly isV0: boolean;1980 readonly asV0: XcmV0MultiAsset;1981 readonly isV1: boolean;1982 readonly asV1: XcmV1MultiAsset;1983 readonly type: 'V0' | 'V1';1984 }19851986 /** @name OrmlTokensModuleCall (205) */1987 interface OrmlTokensModuleCall extends Enum {1988 readonly isTransfer: boolean;1989 readonly asTransfer: {1990 readonly dest: MultiAddress;1991 readonly currencyId: PalletForeignAssetsAssetIds;1992 readonly amount: Compact<u128>;1993 } & Struct;1994 readonly isTransferAll: boolean;1995 readonly asTransferAll: {1996 readonly dest: MultiAddress;1997 readonly currencyId: PalletForeignAssetsAssetIds;1998 readonly keepAlive: bool;1999 } & Struct;2000 readonly isTransferKeepAlive: boolean;2001 readonly asTransferKeepAlive: {2002 readonly dest: MultiAddress;2003 readonly currencyId: PalletForeignAssetsAssetIds;2004 readonly amount: Compact<u128>;2005 } & Struct;2006 readonly isForceTransfer: boolean;2007 readonly asForceTransfer: {2008 readonly source: MultiAddress;2009 readonly dest: MultiAddress;2010 readonly currencyId: PalletForeignAssetsAssetIds;2011 readonly amount: Compact<u128>;2012 } & Struct;2013 readonly isSetBalance: boolean;2014 readonly asSetBalance: {2015 readonly who: MultiAddress;2016 readonly currencyId: PalletForeignAssetsAssetIds;2017 readonly newFree: Compact<u128>;2018 readonly newReserved: Compact<u128>;2019 } & Struct;2020 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';2021 }20222023 /** @name CumulusPalletXcmpQueueCall (206) */2024 interface CumulusPalletXcmpQueueCall extends Enum {2025 readonly isServiceOverweight: boolean;2026 readonly asServiceOverweight: {2027 readonly index: u64;2028 readonly weightLimit: u64;2029 } & Struct;2030 readonly isSuspendXcmExecution: boolean;2031 readonly isResumeXcmExecution: boolean;2032 readonly isUpdateSuspendThreshold: boolean;2033 readonly asUpdateSuspendThreshold: {2034 readonly new_: u32;2035 } & Struct;2036 readonly isUpdateDropThreshold: boolean;2037 readonly asUpdateDropThreshold: {2038 readonly new_: u32;2039 } & Struct;2040 readonly isUpdateResumeThreshold: boolean;2041 readonly asUpdateResumeThreshold: {2042 readonly new_: u32;2043 } & Struct;2044 readonly isUpdateThresholdWeight: boolean;2045 readonly asUpdateThresholdWeight: {2046 readonly new_: u64;2047 } & Struct;2048 readonly isUpdateWeightRestrictDecay: boolean;2049 readonly asUpdateWeightRestrictDecay: {2050 readonly new_: u64;2051 } & Struct;2052 readonly isUpdateXcmpMaxIndividualWeight: boolean;2053 readonly asUpdateXcmpMaxIndividualWeight: {2054 readonly new_: u64;2055 } & Struct;2056 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2057 }20582059 /** @name PalletXcmCall (207) */2060 interface PalletXcmCall extends Enum {2061 readonly isSend: boolean;2062 readonly asSend: {2063 readonly dest: XcmVersionedMultiLocation;2064 readonly message: XcmVersionedXcm;2065 } & Struct;2066 readonly isTeleportAssets: boolean;2067 readonly asTeleportAssets: {2068 readonly dest: XcmVersionedMultiLocation;2069 readonly beneficiary: XcmVersionedMultiLocation;2070 readonly assets: XcmVersionedMultiAssets;2071 readonly feeAssetItem: u32;2072 } & Struct;2073 readonly isReserveTransferAssets: boolean;2074 readonly asReserveTransferAssets: {2075 readonly dest: XcmVersionedMultiLocation;2076 readonly beneficiary: XcmVersionedMultiLocation;2077 readonly assets: XcmVersionedMultiAssets;2078 readonly feeAssetItem: u32;2079 } & Struct;2080 readonly isExecute: boolean;2081 readonly asExecute: {2082 readonly message: XcmVersionedXcm;2083 readonly maxWeight: u64;2084 } & Struct;2085 readonly isForceXcmVersion: boolean;2086 readonly asForceXcmVersion: {2087 readonly location: XcmV1MultiLocation;2088 readonly xcmVersion: u32;2089 } & Struct;2090 readonly isForceDefaultXcmVersion: boolean;2091 readonly asForceDefaultXcmVersion: {2092 readonly maybeXcmVersion: Option<u32>;2093 } & Struct;2094 readonly isForceSubscribeVersionNotify: boolean;2095 readonly asForceSubscribeVersionNotify: {2096 readonly location: XcmVersionedMultiLocation;2097 } & Struct;2098 readonly isForceUnsubscribeVersionNotify: boolean;2099 readonly asForceUnsubscribeVersionNotify: {2100 readonly location: XcmVersionedMultiLocation;2101 } & Struct;2102 readonly isLimitedReserveTransferAssets: boolean;2103 readonly asLimitedReserveTransferAssets: {2104 readonly dest: XcmVersionedMultiLocation;2105 readonly beneficiary: XcmVersionedMultiLocation;2106 readonly assets: XcmVersionedMultiAssets;2107 readonly feeAssetItem: u32;2108 readonly weightLimit: XcmV2WeightLimit;2109 } & Struct;2110 readonly isLimitedTeleportAssets: boolean;2111 readonly asLimitedTeleportAssets: {2112 readonly dest: XcmVersionedMultiLocation;2113 readonly beneficiary: XcmVersionedMultiLocation;2114 readonly assets: XcmVersionedMultiAssets;2115 readonly feeAssetItem: u32;2116 readonly weightLimit: XcmV2WeightLimit;2117 } & Struct;2118 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2119 }21202121 /** @name XcmVersionedXcm (208) */2122 interface XcmVersionedXcm extends Enum {2123 readonly isV0: boolean;2124 readonly asV0: XcmV0Xcm;2125 readonly isV1: boolean;2126 readonly asV1: XcmV1Xcm;2127 readonly isV2: boolean;2128 readonly asV2: XcmV2Xcm;2129 readonly type: 'V0' | 'V1' | 'V2';2130 }21312132 /** @name XcmV0Xcm (209) */2133 interface XcmV0Xcm extends Enum {2134 readonly isWithdrawAsset: boolean;2135 readonly asWithdrawAsset: {2136 readonly assets: Vec<XcmV0MultiAsset>;2137 readonly effects: Vec<XcmV0Order>;2138 } & Struct;2139 readonly isReserveAssetDeposit: boolean;2140 readonly asReserveAssetDeposit: {2141 readonly assets: Vec<XcmV0MultiAsset>;2142 readonly effects: Vec<XcmV0Order>;2143 } & Struct;2144 readonly isTeleportAsset: boolean;2145 readonly asTeleportAsset: {2146 readonly assets: Vec<XcmV0MultiAsset>;2147 readonly effects: Vec<XcmV0Order>;2148 } & Struct;2149 readonly isQueryResponse: boolean;2150 readonly asQueryResponse: {2151 readonly queryId: Compact<u64>;2152 readonly response: XcmV0Response;2153 } & Struct;2154 readonly isTransferAsset: boolean;2155 readonly asTransferAsset: {2156 readonly assets: Vec<XcmV0MultiAsset>;2157 readonly dest: XcmV0MultiLocation;2158 } & Struct;2159 readonly isTransferReserveAsset: boolean;2160 readonly asTransferReserveAsset: {2161 readonly assets: Vec<XcmV0MultiAsset>;2162 readonly dest: XcmV0MultiLocation;2163 readonly effects: Vec<XcmV0Order>;2164 } & Struct;2165 readonly isTransact: boolean;2166 readonly asTransact: {2167 readonly originType: XcmV0OriginKind;2168 readonly requireWeightAtMost: u64;2169 readonly call: XcmDoubleEncoded;2170 } & Struct;2171 readonly isHrmpNewChannelOpenRequest: boolean;2172 readonly asHrmpNewChannelOpenRequest: {2173 readonly sender: Compact<u32>;2174 readonly maxMessageSize: Compact<u32>;2175 readonly maxCapacity: Compact<u32>;2176 } & Struct;2177 readonly isHrmpChannelAccepted: boolean;2178 readonly asHrmpChannelAccepted: {2179 readonly recipient: Compact<u32>;2180 } & Struct;2181 readonly isHrmpChannelClosing: boolean;2182 readonly asHrmpChannelClosing: {2183 readonly initiator: Compact<u32>;2184 readonly sender: Compact<u32>;2185 readonly recipient: Compact<u32>;2186 } & Struct;2187 readonly isRelayedFrom: boolean;2188 readonly asRelayedFrom: {2189 readonly who: XcmV0MultiLocation;2190 readonly message: XcmV0Xcm;2191 } & Struct;2192 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2193 }21942195 /** @name XcmV0Order (211) */2196 interface XcmV0Order extends Enum {2197 readonly isNull: boolean;2198 readonly isDepositAsset: boolean;2199 readonly asDepositAsset: {2200 readonly assets: Vec<XcmV0MultiAsset>;2201 readonly dest: XcmV0MultiLocation;2202 } & Struct;2203 readonly isDepositReserveAsset: boolean;2204 readonly asDepositReserveAsset: {2205 readonly assets: Vec<XcmV0MultiAsset>;2206 readonly dest: XcmV0MultiLocation;2207 readonly effects: Vec<XcmV0Order>;2208 } & Struct;2209 readonly isExchangeAsset: boolean;2210 readonly asExchangeAsset: {2211 readonly give: Vec<XcmV0MultiAsset>;2212 readonly receive: Vec<XcmV0MultiAsset>;2213 } & Struct;2214 readonly isInitiateReserveWithdraw: boolean;2215 readonly asInitiateReserveWithdraw: {2216 readonly assets: Vec<XcmV0MultiAsset>;2217 readonly reserve: XcmV0MultiLocation;2218 readonly effects: Vec<XcmV0Order>;2219 } & Struct;2220 readonly isInitiateTeleport: boolean;2221 readonly asInitiateTeleport: {2222 readonly assets: Vec<XcmV0MultiAsset>;2223 readonly dest: XcmV0MultiLocation;2224 readonly effects: Vec<XcmV0Order>;2225 } & Struct;2226 readonly isQueryHolding: boolean;2227 readonly asQueryHolding: {2228 readonly queryId: Compact<u64>;2229 readonly dest: XcmV0MultiLocation;2230 readonly assets: Vec<XcmV0MultiAsset>;2231 } & Struct;2232 readonly isBuyExecution: boolean;2233 readonly asBuyExecution: {2234 readonly fees: XcmV0MultiAsset;2235 readonly weight: u64;2236 readonly debt: u64;2237 readonly haltOnError: bool;2238 readonly xcm: Vec<XcmV0Xcm>;2239 } & Struct;2240 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2241 }22422243 /** @name XcmV0Response (213) */2244 interface XcmV0Response extends Enum {2245 readonly isAssets: boolean;2246 readonly asAssets: Vec<XcmV0MultiAsset>;2247 readonly type: 'Assets';2248 }22492250 /** @name XcmV1Xcm (214) */2251 interface XcmV1Xcm extends Enum {2252 readonly isWithdrawAsset: boolean;2253 readonly asWithdrawAsset: {2254 readonly assets: XcmV1MultiassetMultiAssets;2255 readonly effects: Vec<XcmV1Order>;2256 } & Struct;2257 readonly isReserveAssetDeposited: boolean;2258 readonly asReserveAssetDeposited: {2259 readonly assets: XcmV1MultiassetMultiAssets;2260 readonly effects: Vec<XcmV1Order>;2261 } & Struct;2262 readonly isReceiveTeleportedAsset: boolean;2263 readonly asReceiveTeleportedAsset: {2264 readonly assets: XcmV1MultiassetMultiAssets;2265 readonly effects: Vec<XcmV1Order>;2266 } & Struct;2267 readonly isQueryResponse: boolean;2268 readonly asQueryResponse: {2269 readonly queryId: Compact<u64>;2270 readonly response: XcmV1Response;2271 } & Struct;2272 readonly isTransferAsset: boolean;2273 readonly asTransferAsset: {2274 readonly assets: XcmV1MultiassetMultiAssets;2275 readonly beneficiary: XcmV1MultiLocation;2276 } & Struct;2277 readonly isTransferReserveAsset: boolean;2278 readonly asTransferReserveAsset: {2279 readonly assets: XcmV1MultiassetMultiAssets;2280 readonly dest: XcmV1MultiLocation;2281 readonly effects: Vec<XcmV1Order>;2282 } & Struct;2283 readonly isTransact: boolean;2284 readonly asTransact: {2285 readonly originType: XcmV0OriginKind;2286 readonly requireWeightAtMost: u64;2287 readonly call: XcmDoubleEncoded;2288 } & Struct;2289 readonly isHrmpNewChannelOpenRequest: boolean;2290 readonly asHrmpNewChannelOpenRequest: {2291 readonly sender: Compact<u32>;2292 readonly maxMessageSize: Compact<u32>;2293 readonly maxCapacity: Compact<u32>;2294 } & Struct;2295 readonly isHrmpChannelAccepted: boolean;2296 readonly asHrmpChannelAccepted: {2297 readonly recipient: Compact<u32>;2298 } & Struct;2299 readonly isHrmpChannelClosing: boolean;2300 readonly asHrmpChannelClosing: {2301 readonly initiator: Compact<u32>;2302 readonly sender: Compact<u32>;2303 readonly recipient: Compact<u32>;2304 } & Struct;2305 readonly isRelayedFrom: boolean;2306 readonly asRelayedFrom: {2307 readonly who: XcmV1MultilocationJunctions;2308 readonly message: XcmV1Xcm;2309 } & Struct;2310 readonly isSubscribeVersion: boolean;2311 readonly asSubscribeVersion: {2312 readonly queryId: Compact<u64>;2313 readonly maxResponseWeight: Compact<u64>;2314 } & Struct;2315 readonly isUnsubscribeVersion: boolean;2316 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2317 }23182319 /** @name XcmV1Order (216) */2320 interface XcmV1Order extends Enum {2321 readonly isNoop: boolean;2322 readonly isDepositAsset: boolean;2323 readonly asDepositAsset: {2324 readonly assets: XcmV1MultiassetMultiAssetFilter;2325 readonly maxAssets: u32;2326 readonly beneficiary: XcmV1MultiLocation;2327 } & Struct;2328 readonly isDepositReserveAsset: boolean;2329 readonly asDepositReserveAsset: {2330 readonly assets: XcmV1MultiassetMultiAssetFilter;2331 readonly maxAssets: u32;2332 readonly dest: XcmV1MultiLocation;2333 readonly effects: Vec<XcmV1Order>;2334 } & Struct;2335 readonly isExchangeAsset: boolean;2336 readonly asExchangeAsset: {2337 readonly give: XcmV1MultiassetMultiAssetFilter;2338 readonly receive: XcmV1MultiassetMultiAssets;2339 } & Struct;2340 readonly isInitiateReserveWithdraw: boolean;2341 readonly asInitiateReserveWithdraw: {2342 readonly assets: XcmV1MultiassetMultiAssetFilter;2343 readonly reserve: XcmV1MultiLocation;2344 readonly effects: Vec<XcmV1Order>;2345 } & Struct;2346 readonly isInitiateTeleport: boolean;2347 readonly asInitiateTeleport: {2348 readonly assets: XcmV1MultiassetMultiAssetFilter;2349 readonly dest: XcmV1MultiLocation;2350 readonly effects: Vec<XcmV1Order>;2351 } & Struct;2352 readonly isQueryHolding: boolean;2353 readonly asQueryHolding: {2354 readonly queryId: Compact<u64>;2355 readonly dest: XcmV1MultiLocation;2356 readonly assets: XcmV1MultiassetMultiAssetFilter;2357 } & Struct;2358 readonly isBuyExecution: boolean;2359 readonly asBuyExecution: {2360 readonly fees: XcmV1MultiAsset;2361 readonly weight: u64;2362 readonly debt: u64;2363 readonly haltOnError: bool;2364 readonly instructions: Vec<XcmV1Xcm>;2365 } & Struct;2366 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2367 }23682369 /** @name XcmV1Response (218) */2370 interface XcmV1Response extends Enum {2371 readonly isAssets: boolean;2372 readonly asAssets: XcmV1MultiassetMultiAssets;2373 readonly isVersion: boolean;2374 readonly asVersion: u32;2375 readonly type: 'Assets' | 'Version';2376 }23772378 /** @name CumulusPalletXcmCall (232) */2379 type CumulusPalletXcmCall = Null;23802381 /** @name CumulusPalletDmpQueueCall (233) */2382 interface CumulusPalletDmpQueueCall extends Enum {2383 readonly isServiceOverweight: boolean;2384 readonly asServiceOverweight: {2385 readonly index: u64;2386 readonly weightLimit: u64;2387 } & Struct;2388 readonly type: 'ServiceOverweight';2389 }23902391 /** @name PalletInflationCall (234) */2392 interface PalletInflationCall extends Enum {2393 readonly isStartInflation: boolean;2394 readonly asStartInflation: {2395 readonly inflationStartRelayBlock: u32;2396 } & Struct;2397 readonly type: 'StartInflation';2398 }23992400 /** @name PalletUniqueCall (235) */2401 interface PalletUniqueCall extends Enum {2402 readonly isCreateCollection: boolean;2403 readonly asCreateCollection: {2404 readonly collectionName: Vec<u16>;2405 readonly collectionDescription: Vec<u16>;2406 readonly tokenPrefix: Bytes;2407 readonly mode: UpDataStructsCollectionMode;2408 } & Struct;2409 readonly isCreateCollectionEx: boolean;2410 readonly asCreateCollectionEx: {2411 readonly data: UpDataStructsCreateCollectionData;2412 } & Struct;2413 readonly isDestroyCollection: boolean;2414 readonly asDestroyCollection: {2415 readonly collectionId: u32;2416 } & Struct;2417 readonly isAddToAllowList: boolean;2418 readonly asAddToAllowList: {2419 readonly collectionId: u32;2420 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2421 } & Struct;2422 readonly isRemoveFromAllowList: boolean;2423 readonly asRemoveFromAllowList: {2424 readonly collectionId: u32;2425 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2426 } & Struct;2427 readonly isChangeCollectionOwner: boolean;2428 readonly asChangeCollectionOwner: {2429 readonly collectionId: u32;2430 readonly newOwner: AccountId32;2431 } & Struct;2432 readonly isAddCollectionAdmin: boolean;2433 readonly asAddCollectionAdmin: {2434 readonly collectionId: u32;2435 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2436 } & Struct;2437 readonly isRemoveCollectionAdmin: boolean;2438 readonly asRemoveCollectionAdmin: {2439 readonly collectionId: u32;2440 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2441 } & Struct;2442 readonly isSetCollectionSponsor: boolean;2443 readonly asSetCollectionSponsor: {2444 readonly collectionId: u32;2445 readonly newSponsor: AccountId32;2446 } & Struct;2447 readonly isConfirmSponsorship: boolean;2448 readonly asConfirmSponsorship: {2449 readonly collectionId: u32;2450 } & Struct;2451 readonly isRemoveCollectionSponsor: boolean;2452 readonly asRemoveCollectionSponsor: {2453 readonly collectionId: u32;2454 } & Struct;2455 readonly isCreateItem: boolean;2456 readonly asCreateItem: {2457 readonly collectionId: u32;2458 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2459 readonly data: UpDataStructsCreateItemData;2460 } & Struct;2461 readonly isCreateMultipleItems: boolean;2462 readonly asCreateMultipleItems: {2463 readonly collectionId: u32;2464 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2465 readonly itemsData: Vec<UpDataStructsCreateItemData>;2466 } & Struct;2467 readonly isSetCollectionProperties: boolean;2468 readonly asSetCollectionProperties: {2469 readonly collectionId: u32;2470 readonly properties: Vec<UpDataStructsProperty>;2471 } & Struct;2472 readonly isDeleteCollectionProperties: boolean;2473 readonly asDeleteCollectionProperties: {2474 readonly collectionId: u32;2475 readonly propertyKeys: Vec<Bytes>;2476 } & Struct;2477 readonly isSetTokenProperties: boolean;2478 readonly asSetTokenProperties: {2479 readonly collectionId: u32;2480 readonly tokenId: u32;2481 readonly properties: Vec<UpDataStructsProperty>;2482 } & Struct;2483 readonly isDeleteTokenProperties: boolean;2484 readonly asDeleteTokenProperties: {2485 readonly collectionId: u32;2486 readonly tokenId: u32;2487 readonly propertyKeys: Vec<Bytes>;2488 } & Struct;2489 readonly isSetTokenPropertyPermissions: boolean;2490 readonly asSetTokenPropertyPermissions: {2491 readonly collectionId: u32;2492 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2493 } & Struct;2494 readonly isCreateMultipleItemsEx: boolean;2495 readonly asCreateMultipleItemsEx: {2496 readonly collectionId: u32;2497 readonly data: UpDataStructsCreateItemExData;2498 } & Struct;2499 readonly isSetTransfersEnabledFlag: boolean;2500 readonly asSetTransfersEnabledFlag: {2501 readonly collectionId: u32;2502 readonly value: bool;2503 } & Struct;2504 readonly isBurnItem: boolean;2505 readonly asBurnItem: {2506 readonly collectionId: u32;2507 readonly itemId: u32;2508 readonly value: u128;2509 } & Struct;2510 readonly isBurnFrom: boolean;2511 readonly asBurnFrom: {2512 readonly collectionId: u32;2513 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2514 readonly itemId: u32;2515 readonly value: u128;2516 } & Struct;2517 readonly isTransfer: boolean;2518 readonly asTransfer: {2519 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2520 readonly collectionId: u32;2521 readonly itemId: u32;2522 readonly value: u128;2523 } & Struct;2524 readonly isApprove: boolean;2525 readonly asApprove: {2526 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2527 readonly collectionId: u32;2528 readonly itemId: u32;2529 readonly amount: u128;2530 } & Struct;2531 readonly isTransferFrom: boolean;2532 readonly asTransferFrom: {2533 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2534 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2535 readonly collectionId: u32;2536 readonly itemId: u32;2537 readonly value: u128;2538 } & Struct;2539 readonly isSetCollectionLimits: boolean;2540 readonly asSetCollectionLimits: {2541 readonly collectionId: u32;2542 readonly newLimit: UpDataStructsCollectionLimits;2543 } & Struct;2544 readonly isSetCollectionPermissions: boolean;2545 readonly asSetCollectionPermissions: {2546 readonly collectionId: u32;2547 readonly newPermission: UpDataStructsCollectionPermissions;2548 } & Struct;2549 readonly isRepartition: boolean;2550 readonly asRepartition: {2551 readonly collectionId: u32;2552 readonly tokenId: u32;2553 readonly amount: u128;2554 } & Struct;2555 readonly isSetAllowanceForAll: boolean;2556 readonly asSetAllowanceForAll: {2557 readonly collectionId: u32;2558 readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2559 readonly approve: bool;2560 } & Struct;2561 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' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll';2562 }25632564 /** @name UpDataStructsCollectionMode (240) */2565 interface UpDataStructsCollectionMode extends Enum {2566 readonly isNft: boolean;2567 readonly isFungible: boolean;2568 readonly asFungible: u8;2569 readonly isReFungible: boolean;2570 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2571 }25722573 /** @name UpDataStructsCreateCollectionData (241) */2574 interface UpDataStructsCreateCollectionData extends Struct {2575 readonly mode: UpDataStructsCollectionMode;2576 readonly access: Option<UpDataStructsAccessMode>;2577 readonly name: Vec<u16>;2578 readonly description: Vec<u16>;2579 readonly tokenPrefix: Bytes;2580 readonly pendingSponsor: Option<AccountId32>;2581 readonly limits: Option<UpDataStructsCollectionLimits>;2582 readonly permissions: Option<UpDataStructsCollectionPermissions>;2583 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2584 readonly properties: Vec<UpDataStructsProperty>;2585 }25862587 /** @name UpDataStructsAccessMode (243) */2588 interface UpDataStructsAccessMode extends Enum {2589 readonly isNormal: boolean;2590 readonly isAllowList: boolean;2591 readonly type: 'Normal' | 'AllowList';2592 }25932594 /** @name UpDataStructsCollectionLimits (245) */2595 interface UpDataStructsCollectionLimits extends Struct {2596 readonly accountTokenOwnershipLimit: Option<u32>;2597 readonly sponsoredDataSize: Option<u32>;2598 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2599 readonly tokenLimit: Option<u32>;2600 readonly sponsorTransferTimeout: Option<u32>;2601 readonly sponsorApproveTimeout: Option<u32>;2602 readonly ownerCanTransfer: Option<bool>;2603 readonly ownerCanDestroy: Option<bool>;2604 readonly transfersEnabled: Option<bool>;2605 }26062607 /** @name UpDataStructsSponsoringRateLimit (247) */2608 interface UpDataStructsSponsoringRateLimit extends Enum {2609 readonly isSponsoringDisabled: boolean;2610 readonly isBlocks: boolean;2611 readonly asBlocks: u32;2612 readonly type: 'SponsoringDisabled' | 'Blocks';2613 }26142615 /** @name UpDataStructsCollectionPermissions (250) */2616 interface UpDataStructsCollectionPermissions extends Struct {2617 readonly access: Option<UpDataStructsAccessMode>;2618 readonly mintMode: Option<bool>;2619 readonly nesting: Option<UpDataStructsNestingPermissions>;2620 }26212622 /** @name UpDataStructsNestingPermissions (252) */2623 interface UpDataStructsNestingPermissions extends Struct {2624 readonly tokenOwner: bool;2625 readonly collectionAdmin: bool;2626 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2627 }26282629 /** @name UpDataStructsOwnerRestrictedSet (254) */2630 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}26312632 /** @name UpDataStructsPropertyKeyPermission (259) */2633 interface UpDataStructsPropertyKeyPermission extends Struct {2634 readonly key: Bytes;2635 readonly permission: UpDataStructsPropertyPermission;2636 }26372638 /** @name UpDataStructsPropertyPermission (260) */2639 interface UpDataStructsPropertyPermission extends Struct {2640 readonly mutable: bool;2641 readonly collectionAdmin: bool;2642 readonly tokenOwner: bool;2643 }26442645 /** @name UpDataStructsProperty (263) */2646 interface UpDataStructsProperty extends Struct {2647 readonly key: Bytes;2648 readonly value: Bytes;2649 }26502651 /** @name UpDataStructsCreateItemData (266) */2652 interface UpDataStructsCreateItemData extends Enum {2653 readonly isNft: boolean;2654 readonly asNft: UpDataStructsCreateNftData;2655 readonly isFungible: boolean;2656 readonly asFungible: UpDataStructsCreateFungibleData;2657 readonly isReFungible: boolean;2658 readonly asReFungible: UpDataStructsCreateReFungibleData;2659 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2660 }26612662 /** @name UpDataStructsCreateNftData (267) */2663 interface UpDataStructsCreateNftData extends Struct {2664 readonly properties: Vec<UpDataStructsProperty>;2665 }26662667 /** @name UpDataStructsCreateFungibleData (268) */2668 interface UpDataStructsCreateFungibleData extends Struct {2669 readonly value: u128;2670 }26712672 /** @name UpDataStructsCreateReFungibleData (269) */2673 interface UpDataStructsCreateReFungibleData extends Struct {2674 readonly pieces: u128;2675 readonly properties: Vec<UpDataStructsProperty>;2676 }26772678 /** @name UpDataStructsCreateItemExData (272) */2679 interface UpDataStructsCreateItemExData extends Enum {2680 readonly isNft: boolean;2681 readonly asNft: Vec<UpDataStructsCreateNftExData>;2682 readonly isFungible: boolean;2683 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2684 readonly isRefungibleMultipleItems: boolean;2685 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;2686 readonly isRefungibleMultipleOwners: boolean;2687 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;2688 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2689 }26902691 /** @name UpDataStructsCreateNftExData (274) */2692 interface UpDataStructsCreateNftExData extends Struct {2693 readonly properties: Vec<UpDataStructsProperty>;2694 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2695 }26962697 /** @name UpDataStructsCreateRefungibleExSingleOwner (281) */2698 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2699 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2700 readonly pieces: u128;2701 readonly properties: Vec<UpDataStructsProperty>;2702 }27032704 /** @name UpDataStructsCreateRefungibleExMultipleOwners (283) */2705 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2706 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2707 readonly properties: Vec<UpDataStructsProperty>;2708 }27092710 /** @name PalletUniqueSchedulerV2Call (284) */2711 interface PalletUniqueSchedulerV2Call extends Enum {2712 readonly isSchedule: boolean;2713 readonly asSchedule: {2714 readonly when: u32;2715 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2716 readonly priority: Option<u8>;2717 readonly call: Call;2718 } & Struct;2719 readonly isCancel: boolean;2720 readonly asCancel: {2721 readonly when: u32;2722 readonly index: u32;2723 } & Struct;2724 readonly isScheduleNamed: boolean;2725 readonly asScheduleNamed: {2726 readonly id: U8aFixed;2727 readonly when: u32;2728 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2729 readonly priority: Option<u8>;2730 readonly call: Call;2731 } & Struct;2732 readonly isCancelNamed: boolean;2733 readonly asCancelNamed: {2734 readonly id: U8aFixed;2735 } & Struct;2736 readonly isScheduleAfter: boolean;2737 readonly asScheduleAfter: {2738 readonly after: u32;2739 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2740 readonly priority: Option<u8>;2741 readonly call: Call;2742 } & Struct;2743 readonly isScheduleNamedAfter: boolean;2744 readonly asScheduleNamedAfter: {2745 readonly id: U8aFixed;2746 readonly after: u32;2747 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2748 readonly priority: Option<u8>;2749 readonly call: Call;2750 } & Struct;2751 readonly isChangeNamedPriority: boolean;2752 readonly asChangeNamedPriority: {2753 readonly id: U8aFixed;2754 readonly priority: u8;2755 } & Struct;2756 readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';2757 }27582759 /** @name PalletConfigurationCall (287) */2760 interface PalletConfigurationCall extends Enum {2761 readonly isSetWeightToFeeCoefficientOverride: boolean;2762 readonly asSetWeightToFeeCoefficientOverride: {2763 readonly coeff: Option<u32>;2764 } & Struct;2765 readonly isSetMinGasPriceOverride: boolean;2766 readonly asSetMinGasPriceOverride: {2767 readonly coeff: Option<u64>;2768 } & Struct;2769 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2770 }27712772 /** @name PalletTemplateTransactionPaymentCall (289) */2773 type PalletTemplateTransactionPaymentCall = Null;27742775 /** @name PalletStructureCall (290) */2776 type PalletStructureCall = Null;27772778 /** @name PalletRmrkCoreCall (291) */2779 interface PalletRmrkCoreCall extends Enum {2780 readonly isCreateCollection: boolean;2781 readonly asCreateCollection: {2782 readonly metadata: Bytes;2783 readonly max: Option<u32>;2784 readonly symbol: Bytes;2785 } & Struct;2786 readonly isDestroyCollection: boolean;2787 readonly asDestroyCollection: {2788 readonly collectionId: u32;2789 } & Struct;2790 readonly isChangeCollectionIssuer: boolean;2791 readonly asChangeCollectionIssuer: {2792 readonly collectionId: u32;2793 readonly newIssuer: MultiAddress;2794 } & Struct;2795 readonly isLockCollection: boolean;2796 readonly asLockCollection: {2797 readonly collectionId: u32;2798 } & Struct;2799 readonly isMintNft: boolean;2800 readonly asMintNft: {2801 readonly owner: Option<AccountId32>;2802 readonly collectionId: u32;2803 readonly recipient: Option<AccountId32>;2804 readonly royaltyAmount: Option<Permill>;2805 readonly metadata: Bytes;2806 readonly transferable: bool;2807 readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;2808 } & Struct;2809 readonly isBurnNft: boolean;2810 readonly asBurnNft: {2811 readonly collectionId: u32;2812 readonly nftId: u32;2813 readonly maxBurns: u32;2814 } & Struct;2815 readonly isSend: boolean;2816 readonly asSend: {2817 readonly rmrkCollectionId: u32;2818 readonly rmrkNftId: u32;2819 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2820 } & Struct;2821 readonly isAcceptNft: boolean;2822 readonly asAcceptNft: {2823 readonly rmrkCollectionId: u32;2824 readonly rmrkNftId: u32;2825 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2826 } & Struct;2827 readonly isRejectNft: boolean;2828 readonly asRejectNft: {2829 readonly rmrkCollectionId: u32;2830 readonly rmrkNftId: u32;2831 } & Struct;2832 readonly isAcceptResource: boolean;2833 readonly asAcceptResource: {2834 readonly rmrkCollectionId: u32;2835 readonly rmrkNftId: u32;2836 readonly resourceId: u32;2837 } & Struct;2838 readonly isAcceptResourceRemoval: boolean;2839 readonly asAcceptResourceRemoval: {2840 readonly rmrkCollectionId: u32;2841 readonly rmrkNftId: u32;2842 readonly resourceId: u32;2843 } & Struct;2844 readonly isSetProperty: boolean;2845 readonly asSetProperty: {2846 readonly rmrkCollectionId: Compact<u32>;2847 readonly maybeNftId: Option<u32>;2848 readonly key: Bytes;2849 readonly value: Bytes;2850 } & Struct;2851 readonly isSetPriority: boolean;2852 readonly asSetPriority: {2853 readonly rmrkCollectionId: u32;2854 readonly rmrkNftId: u32;2855 readonly priorities: Vec<u32>;2856 } & Struct;2857 readonly isAddBasicResource: boolean;2858 readonly asAddBasicResource: {2859 readonly rmrkCollectionId: u32;2860 readonly nftId: u32;2861 readonly resource: RmrkTraitsResourceBasicResource;2862 } & Struct;2863 readonly isAddComposableResource: boolean;2864 readonly asAddComposableResource: {2865 readonly rmrkCollectionId: u32;2866 readonly nftId: u32;2867 readonly resource: RmrkTraitsResourceComposableResource;2868 } & Struct;2869 readonly isAddSlotResource: boolean;2870 readonly asAddSlotResource: {2871 readonly rmrkCollectionId: u32;2872 readonly nftId: u32;2873 readonly resource: RmrkTraitsResourceSlotResource;2874 } & Struct;2875 readonly isRemoveResource: boolean;2876 readonly asRemoveResource: {2877 readonly rmrkCollectionId: u32;2878 readonly nftId: u32;2879 readonly resourceId: u32;2880 } & Struct;2881 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2882 }28832884 /** @name RmrkTraitsResourceResourceTypes (297) */2885 interface RmrkTraitsResourceResourceTypes extends Enum {2886 readonly isBasic: boolean;2887 readonly asBasic: RmrkTraitsResourceBasicResource;2888 readonly isComposable: boolean;2889 readonly asComposable: RmrkTraitsResourceComposableResource;2890 readonly isSlot: boolean;2891 readonly asSlot: RmrkTraitsResourceSlotResource;2892 readonly type: 'Basic' | 'Composable' | 'Slot';2893 }28942895 /** @name RmrkTraitsResourceBasicResource (299) */2896 interface RmrkTraitsResourceBasicResource extends Struct {2897 readonly src: Option<Bytes>;2898 readonly metadata: Option<Bytes>;2899 readonly license: Option<Bytes>;2900 readonly thumb: Option<Bytes>;2901 }29022903 /** @name RmrkTraitsResourceComposableResource (301) */2904 interface RmrkTraitsResourceComposableResource extends Struct {2905 readonly parts: Vec<u32>;2906 readonly base: u32;2907 readonly src: Option<Bytes>;2908 readonly metadata: Option<Bytes>;2909 readonly license: Option<Bytes>;2910 readonly thumb: Option<Bytes>;2911 }29122913 /** @name RmrkTraitsResourceSlotResource (302) */2914 interface RmrkTraitsResourceSlotResource extends Struct {2915 readonly base: u32;2916 readonly src: Option<Bytes>;2917 readonly metadata: Option<Bytes>;2918 readonly slot: u32;2919 readonly license: Option<Bytes>;2920 readonly thumb: Option<Bytes>;2921 }29222923 /** @name PalletRmrkEquipCall (305) */2924 interface PalletRmrkEquipCall extends Enum {2925 readonly isCreateBase: boolean;2926 readonly asCreateBase: {2927 readonly baseType: Bytes;2928 readonly symbol: Bytes;2929 readonly parts: Vec<RmrkTraitsPartPartType>;2930 } & Struct;2931 readonly isThemeAdd: boolean;2932 readonly asThemeAdd: {2933 readonly baseId: u32;2934 readonly theme: RmrkTraitsTheme;2935 } & Struct;2936 readonly isEquippable: boolean;2937 readonly asEquippable: {2938 readonly baseId: u32;2939 readonly slotId: u32;2940 readonly equippables: RmrkTraitsPartEquippableList;2941 } & Struct;2942 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2943 }29442945 /** @name RmrkTraitsPartPartType (308) */2946 interface RmrkTraitsPartPartType extends Enum {2947 readonly isFixedPart: boolean;2948 readonly asFixedPart: RmrkTraitsPartFixedPart;2949 readonly isSlotPart: boolean;2950 readonly asSlotPart: RmrkTraitsPartSlotPart;2951 readonly type: 'FixedPart' | 'SlotPart';2952 }29532954 /** @name RmrkTraitsPartFixedPart (310) */2955 interface RmrkTraitsPartFixedPart extends Struct {2956 readonly id: u32;2957 readonly z: u32;2958 readonly src: Bytes;2959 }29602961 /** @name RmrkTraitsPartSlotPart (311) */2962 interface RmrkTraitsPartSlotPart extends Struct {2963 readonly id: u32;2964 readonly equippable: RmrkTraitsPartEquippableList;2965 readonly src: Bytes;2966 readonly z: u32;2967 }29682969 /** @name RmrkTraitsPartEquippableList (312) */2970 interface RmrkTraitsPartEquippableList extends Enum {2971 readonly isAll: boolean;2972 readonly isEmpty: boolean;2973 readonly isCustom: boolean;2974 readonly asCustom: Vec<u32>;2975 readonly type: 'All' | 'Empty' | 'Custom';2976 }29772978 /** @name RmrkTraitsTheme (314) */2979 interface RmrkTraitsTheme extends Struct {2980 readonly name: Bytes;2981 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2982 readonly inherit: bool;2983 }29842985 /** @name RmrkTraitsThemeThemeProperty (316) */2986 interface RmrkTraitsThemeThemeProperty extends Struct {2987 readonly key: Bytes;2988 readonly value: Bytes;2989 }29902991 /** @name PalletAppPromotionCall (318) */2992 interface PalletAppPromotionCall extends Enum {2993 readonly isSetAdminAddress: boolean;2994 readonly asSetAdminAddress: {2995 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;2996 } & Struct;2997 readonly isStake: boolean;2998 readonly asStake: {2999 readonly amount: u128;3000 } & Struct;3001 readonly isUnstake: boolean;3002 readonly isSponsorCollection: boolean;3003 readonly asSponsorCollection: {3004 readonly collectionId: u32;3005 } & Struct;3006 readonly isStopSponsoringCollection: boolean;3007 readonly asStopSponsoringCollection: {3008 readonly collectionId: u32;3009 } & Struct;3010 readonly isSponsorContract: boolean;3011 readonly asSponsorContract: {3012 readonly contractId: H160;3013 } & Struct;3014 readonly isStopSponsoringContract: boolean;3015 readonly asStopSponsoringContract: {3016 readonly contractId: H160;3017 } & Struct;3018 readonly isPayoutStakers: boolean;3019 readonly asPayoutStakers: {3020 readonly stakersNumber: Option<u8>;3021 } & Struct;3022 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';3023 }30243025 /** @name PalletForeignAssetsModuleCall (319) */3026 interface PalletForeignAssetsModuleCall extends Enum {3027 readonly isRegisterForeignAsset: boolean;3028 readonly asRegisterForeignAsset: {3029 readonly owner: AccountId32;3030 readonly location: XcmVersionedMultiLocation;3031 readonly metadata: PalletForeignAssetsModuleAssetMetadata;3032 } & Struct;3033 readonly isUpdateForeignAsset: boolean;3034 readonly asUpdateForeignAsset: {3035 readonly foreignAssetId: u32;3036 readonly location: XcmVersionedMultiLocation;3037 readonly metadata: PalletForeignAssetsModuleAssetMetadata;3038 } & Struct;3039 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3040 }30413042 /** @name PalletEvmCall (320) */3043 interface PalletEvmCall extends Enum {3044 readonly isWithdraw: boolean;3045 readonly asWithdraw: {3046 readonly address: H160;3047 readonly value: u128;3048 } & Struct;3049 readonly isCall: boolean;3050 readonly asCall: {3051 readonly source: H160;3052 readonly target: H160;3053 readonly input: Bytes;3054 readonly value: U256;3055 readonly gasLimit: u64;3056 readonly maxFeePerGas: U256;3057 readonly maxPriorityFeePerGas: Option<U256>;3058 readonly nonce: Option<U256>;3059 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3060 } & Struct;3061 readonly isCreate: boolean;3062 readonly asCreate: {3063 readonly source: H160;3064 readonly init: Bytes;3065 readonly value: U256;3066 readonly gasLimit: u64;3067 readonly maxFeePerGas: U256;3068 readonly maxPriorityFeePerGas: Option<U256>;3069 readonly nonce: Option<U256>;3070 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3071 } & Struct;3072 readonly isCreate2: boolean;3073 readonly asCreate2: {3074 readonly source: H160;3075 readonly init: Bytes;3076 readonly salt: H256;3077 readonly value: U256;3078 readonly gasLimit: u64;3079 readonly maxFeePerGas: U256;3080 readonly maxPriorityFeePerGas: Option<U256>;3081 readonly nonce: Option<U256>;3082 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3083 } & Struct;3084 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3085 }30863087 /** @name PalletEthereumCall (326) */3088 interface PalletEthereumCall extends Enum {3089 readonly isTransact: boolean;3090 readonly asTransact: {3091 readonly transaction: EthereumTransactionTransactionV2;3092 } & Struct;3093 readonly type: 'Transact';3094 }30953096 /** @name EthereumTransactionTransactionV2 (327) */3097 interface EthereumTransactionTransactionV2 extends Enum {3098 readonly isLegacy: boolean;3099 readonly asLegacy: EthereumTransactionLegacyTransaction;3100 readonly isEip2930: boolean;3101 readonly asEip2930: EthereumTransactionEip2930Transaction;3102 readonly isEip1559: boolean;3103 readonly asEip1559: EthereumTransactionEip1559Transaction;3104 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3105 }31063107 /** @name EthereumTransactionLegacyTransaction (328) */3108 interface EthereumTransactionLegacyTransaction extends Struct {3109 readonly nonce: U256;3110 readonly gasPrice: U256;3111 readonly gasLimit: U256;3112 readonly action: EthereumTransactionTransactionAction;3113 readonly value: U256;3114 readonly input: Bytes;3115 readonly signature: EthereumTransactionTransactionSignature;3116 }31173118 /** @name EthereumTransactionTransactionAction (329) */3119 interface EthereumTransactionTransactionAction extends Enum {3120 readonly isCall: boolean;3121 readonly asCall: H160;3122 readonly isCreate: boolean;3123 readonly type: 'Call' | 'Create';3124 }31253126 /** @name EthereumTransactionTransactionSignature (330) */3127 interface EthereumTransactionTransactionSignature extends Struct {3128 readonly v: u64;3129 readonly r: H256;3130 readonly s: H256;3131 }31323133 /** @name EthereumTransactionEip2930Transaction (332) */3134 interface EthereumTransactionEip2930Transaction extends Struct {3135 readonly chainId: u64;3136 readonly nonce: U256;3137 readonly gasPrice: U256;3138 readonly gasLimit: U256;3139 readonly action: EthereumTransactionTransactionAction;3140 readonly value: U256;3141 readonly input: Bytes;3142 readonly accessList: Vec<EthereumTransactionAccessListItem>;3143 readonly oddYParity: bool;3144 readonly r: H256;3145 readonly s: H256;3146 }31473148 /** @name EthereumTransactionAccessListItem (334) */3149 interface EthereumTransactionAccessListItem extends Struct {3150 readonly address: H160;3151 readonly storageKeys: Vec<H256>;3152 }31533154 /** @name EthereumTransactionEip1559Transaction (335) */3155 interface EthereumTransactionEip1559Transaction extends Struct {3156 readonly chainId: u64;3157 readonly nonce: U256;3158 readonly maxPriorityFeePerGas: U256;3159 readonly maxFeePerGas: U256;3160 readonly gasLimit: U256;3161 readonly action: EthereumTransactionTransactionAction;3162 readonly value: U256;3163 readonly input: Bytes;3164 readonly accessList: Vec<EthereumTransactionAccessListItem>;3165 readonly oddYParity: bool;3166 readonly r: H256;3167 readonly s: H256;3168 }31693170 /** @name PalletEvmMigrationCall (336) */3171 interface PalletEvmMigrationCall extends Enum {3172 readonly isBegin: boolean;3173 readonly asBegin: {3174 readonly address: H160;3175 } & Struct;3176 readonly isSetData: boolean;3177 readonly asSetData: {3178 readonly address: H160;3179 readonly data: Vec<ITuple<[H256, H256]>>;3180 } & Struct;3181 readonly isFinish: boolean;3182 readonly asFinish: {3183 readonly address: H160;3184 readonly code: Bytes;3185 } & Struct;3186 readonly isInsertEthLogs: boolean;3187 readonly asInsertEthLogs: {3188 readonly logs: Vec<EthereumLog>;3189 } & Struct;3190 readonly isInsertEvents: boolean;3191 readonly asInsertEvents: {3192 readonly events: Vec<Bytes>;3193 } & Struct;3194 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3195 }31963197 /** @name PalletMaintenanceCall (340) */3198 interface PalletMaintenanceCall extends Enum {3199 readonly isEnable: boolean;3200 readonly isDisable: boolean;3201 readonly type: 'Enable' | 'Disable';3202 }32033204 /** @name PalletTestUtilsCall (341) */3205 interface PalletTestUtilsCall extends Enum {3206 readonly isEnable: boolean;3207 readonly isSetTestValue: boolean;3208 readonly asSetTestValue: {3209 readonly value: u32;3210 } & Struct;3211 readonly isSetTestValueAndRollback: boolean;3212 readonly asSetTestValueAndRollback: {3213 readonly value: u32;3214 } & Struct;3215 readonly isIncTestValue: boolean;3216 readonly isSelfCancelingInc: boolean;3217 readonly asSelfCancelingInc: {3218 readonly id: U8aFixed;3219 readonly maxTestValue: u32;3220 } & Struct;3221 readonly isJustTakeFee: boolean;3222 readonly isBatchAll: boolean;3223 readonly asBatchAll: {3224 readonly calls: Vec<Call>;3225 } & Struct;3226 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';3227 }32283229 /** @name PalletSudoError (343) */3230 interface PalletSudoError extends Enum {3231 readonly isRequireSudo: boolean;3232 readonly type: 'RequireSudo';3233 }32343235 /** @name OrmlVestingModuleError (345) */3236 interface OrmlVestingModuleError extends Enum {3237 readonly isZeroVestingPeriod: boolean;3238 readonly isZeroVestingPeriodCount: boolean;3239 readonly isInsufficientBalanceToLock: boolean;3240 readonly isTooManyVestingSchedules: boolean;3241 readonly isAmountLow: boolean;3242 readonly isMaxVestingSchedulesExceeded: boolean;3243 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3244 }32453246 /** @name OrmlXtokensModuleError (346) */3247 interface OrmlXtokensModuleError extends Enum {3248 readonly isAssetHasNoReserve: boolean;3249 readonly isNotCrossChainTransfer: boolean;3250 readonly isInvalidDest: boolean;3251 readonly isNotCrossChainTransferableCurrency: boolean;3252 readonly isUnweighableMessage: boolean;3253 readonly isXcmExecutionFailed: boolean;3254 readonly isCannotReanchor: boolean;3255 readonly isInvalidAncestry: boolean;3256 readonly isInvalidAsset: boolean;3257 readonly isDestinationNotInvertible: boolean;3258 readonly isBadVersion: boolean;3259 readonly isDistinctReserveForAssetAndFee: boolean;3260 readonly isZeroFee: boolean;3261 readonly isZeroAmount: boolean;3262 readonly isTooManyAssetsBeingSent: boolean;3263 readonly isAssetIndexNonExistent: boolean;3264 readonly isFeeNotEnough: boolean;3265 readonly isNotSupportedMultiLocation: boolean;3266 readonly isMinXcmFeeNotDefined: boolean;3267 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3268 }32693270 /** @name OrmlTokensBalanceLock (349) */3271 interface OrmlTokensBalanceLock extends Struct {3272 readonly id: U8aFixed;3273 readonly amount: u128;3274 }32753276 /** @name OrmlTokensAccountData (351) */3277 interface OrmlTokensAccountData extends Struct {3278 readonly free: u128;3279 readonly reserved: u128;3280 readonly frozen: u128;3281 }32823283 /** @name OrmlTokensReserveData (353) */3284 interface OrmlTokensReserveData extends Struct {3285 readonly id: Null;3286 readonly amount: u128;3287 }32883289 /** @name OrmlTokensModuleError (355) */3290 interface OrmlTokensModuleError extends Enum {3291 readonly isBalanceTooLow: boolean;3292 readonly isAmountIntoBalanceFailed: boolean;3293 readonly isLiquidityRestrictions: boolean;3294 readonly isMaxLocksExceeded: boolean;3295 readonly isKeepAlive: boolean;3296 readonly isExistentialDeposit: boolean;3297 readonly isDeadAccount: boolean;3298 readonly isTooManyReserves: boolean;3299 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3300 }33013302 /** @name CumulusPalletXcmpQueueInboundChannelDetails (357) */3303 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3304 readonly sender: u32;3305 readonly state: CumulusPalletXcmpQueueInboundState;3306 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3307 }33083309 /** @name CumulusPalletXcmpQueueInboundState (358) */3310 interface CumulusPalletXcmpQueueInboundState extends Enum {3311 readonly isOk: boolean;3312 readonly isSuspended: boolean;3313 readonly type: 'Ok' | 'Suspended';3314 }33153316 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (361) */3317 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3318 readonly isConcatenatedVersionedXcm: boolean;3319 readonly isConcatenatedEncodedBlob: boolean;3320 readonly isSignals: boolean;3321 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3322 }33233324 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (364) */3325 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3326 readonly recipient: u32;3327 readonly state: CumulusPalletXcmpQueueOutboundState;3328 readonly signalsExist: bool;3329 readonly firstIndex: u16;3330 readonly lastIndex: u16;3331 }33323333 /** @name CumulusPalletXcmpQueueOutboundState (365) */3334 interface CumulusPalletXcmpQueueOutboundState extends Enum {3335 readonly isOk: boolean;3336 readonly isSuspended: boolean;3337 readonly type: 'Ok' | 'Suspended';3338 }33393340 /** @name CumulusPalletXcmpQueueQueueConfigData (367) */3341 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3342 readonly suspendThreshold: u32;3343 readonly dropThreshold: u32;3344 readonly resumeThreshold: u32;3345 readonly thresholdWeight: SpWeightsWeightV2Weight;3346 readonly weightRestrictDecay: SpWeightsWeightV2Weight;3347 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3348 }33493350 /** @name CumulusPalletXcmpQueueError (369) */3351 interface CumulusPalletXcmpQueueError extends Enum {3352 readonly isFailedToSend: boolean;3353 readonly isBadXcmOrigin: boolean;3354 readonly isBadXcm: boolean;3355 readonly isBadOverweightIndex: boolean;3356 readonly isWeightOverLimit: boolean;3357 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3358 }33593360 /** @name PalletXcmError (370) */3361 interface PalletXcmError extends Enum {3362 readonly isUnreachable: boolean;3363 readonly isSendFailure: boolean;3364 readonly isFiltered: boolean;3365 readonly isUnweighableMessage: boolean;3366 readonly isDestinationNotInvertible: boolean;3367 readonly isEmpty: boolean;3368 readonly isCannotReanchor: boolean;3369 readonly isTooManyAssets: boolean;3370 readonly isInvalidOrigin: boolean;3371 readonly isBadVersion: boolean;3372 readonly isBadLocation: boolean;3373 readonly isNoSubscription: boolean;3374 readonly isAlreadySubscribed: boolean;3375 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3376 }33773378 /** @name CumulusPalletXcmError (371) */3379 type CumulusPalletXcmError = Null;33803381 /** @name CumulusPalletDmpQueueConfigData (372) */3382 interface CumulusPalletDmpQueueConfigData extends Struct {3383 readonly maxIndividual: SpWeightsWeightV2Weight;3384 }33853386 /** @name CumulusPalletDmpQueuePageIndexData (373) */3387 interface CumulusPalletDmpQueuePageIndexData extends Struct {3388 readonly beginUsed: u32;3389 readonly endUsed: u32;3390 readonly overweightCount: u64;3391 }33923393 /** @name CumulusPalletDmpQueueError (376) */3394 interface CumulusPalletDmpQueueError extends Enum {3395 readonly isUnknown: boolean;3396 readonly isOverLimit: boolean;3397 readonly type: 'Unknown' | 'OverLimit';3398 }33993400 /** @name PalletUniqueError (380) */3401 interface PalletUniqueError extends Enum {3402 readonly isCollectionDecimalPointLimitExceeded: boolean;3403 readonly isConfirmUnsetSponsorFail: boolean;3404 readonly isEmptyArgument: boolean;3405 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3406 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3407 }34083409 /** @name PalletUniqueSchedulerV2BlockAgenda (381) */3410 interface PalletUniqueSchedulerV2BlockAgenda extends Struct {3411 readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;3412 readonly freePlaces: u32;3413 }34143415 /** @name PalletUniqueSchedulerV2Scheduled (384) */3416 interface PalletUniqueSchedulerV2Scheduled extends Struct {3417 readonly maybeId: Option<U8aFixed>;3418 readonly priority: u8;3419 readonly call: PalletUniqueSchedulerV2ScheduledCall;3420 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3421 readonly origin: OpalRuntimeOriginCaller;3422 }34233424 /** @name PalletUniqueSchedulerV2ScheduledCall (385) */3425 interface PalletUniqueSchedulerV2ScheduledCall extends Enum {3426 readonly isInline: boolean;3427 readonly asInline: Bytes;3428 readonly isPreimageLookup: boolean;3429 readonly asPreimageLookup: {3430 readonly hash_: H256;3431 readonly unboundedLen: u32;3432 } & Struct;3433 readonly type: 'Inline' | 'PreimageLookup';3434 }34353436 /** @name OpalRuntimeOriginCaller (387) */3437 interface OpalRuntimeOriginCaller extends Enum {3438 readonly isSystem: boolean;3439 readonly asSystem: FrameSupportDispatchRawOrigin;3440 readonly isVoid: boolean;3441 readonly isPolkadotXcm: boolean;3442 readonly asPolkadotXcm: PalletXcmOrigin;3443 readonly isCumulusXcm: boolean;3444 readonly asCumulusXcm: CumulusPalletXcmOrigin;3445 readonly isEthereum: boolean;3446 readonly asEthereum: PalletEthereumRawOrigin;3447 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3448 }34493450 /** @name FrameSupportDispatchRawOrigin (388) */3451 interface FrameSupportDispatchRawOrigin extends Enum {3452 readonly isRoot: boolean;3453 readonly isSigned: boolean;3454 readonly asSigned: AccountId32;3455 readonly isNone: boolean;3456 readonly type: 'Root' | 'Signed' | 'None';3457 }34583459 /** @name PalletXcmOrigin (389) */3460 interface PalletXcmOrigin extends Enum {3461 readonly isXcm: boolean;3462 readonly asXcm: XcmV1MultiLocation;3463 readonly isResponse: boolean;3464 readonly asResponse: XcmV1MultiLocation;3465 readonly type: 'Xcm' | 'Response';3466 }34673468 /** @name CumulusPalletXcmOrigin (390) */3469 interface CumulusPalletXcmOrigin extends Enum {3470 readonly isRelay: boolean;3471 readonly isSiblingParachain: boolean;3472 readonly asSiblingParachain: u32;3473 readonly type: 'Relay' | 'SiblingParachain';3474 }34753476 /** @name PalletEthereumRawOrigin (391) */3477 interface PalletEthereumRawOrigin extends Enum {3478 readonly isEthereumTransaction: boolean;3479 readonly asEthereumTransaction: H160;3480 readonly type: 'EthereumTransaction';3481 }34823483 /** @name SpCoreVoid (392) */3484 type SpCoreVoid = Null;34853486 /** @name PalletUniqueSchedulerV2Error (394) */3487 interface PalletUniqueSchedulerV2Error extends Enum {3488 readonly isFailedToSchedule: boolean;3489 readonly isAgendaIsExhausted: boolean;3490 readonly isScheduledCallCorrupted: boolean;3491 readonly isPreimageNotFound: boolean;3492 readonly isTooBigScheduledCall: boolean;3493 readonly isNotFound: boolean;3494 readonly isTargetBlockNumberInPast: boolean;3495 readonly isNamed: boolean;3496 readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';3497 }34983499 /** @name UpDataStructsCollection (395) */3500 interface UpDataStructsCollection extends Struct {3501 readonly owner: AccountId32;3502 readonly mode: UpDataStructsCollectionMode;3503 readonly name: Vec<u16>;3504 readonly description: Vec<u16>;3505 readonly tokenPrefix: Bytes;3506 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3507 readonly limits: UpDataStructsCollectionLimits;3508 readonly permissions: UpDataStructsCollectionPermissions;3509 readonly flags: U8aFixed;3510 }35113512 /** @name UpDataStructsSponsorshipStateAccountId32 (396) */3513 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3514 readonly isDisabled: boolean;3515 readonly isUnconfirmed: boolean;3516 readonly asUnconfirmed: AccountId32;3517 readonly isConfirmed: boolean;3518 readonly asConfirmed: AccountId32;3519 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3520 }35213522 /** @name UpDataStructsProperties (398) */3523 interface UpDataStructsProperties extends Struct {3524 readonly map: UpDataStructsPropertiesMapBoundedVec;3525 readonly consumedSpace: u32;3526 readonly spaceLimit: u32;3527 }35283529 /** @name UpDataStructsPropertiesMapBoundedVec (399) */3530 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}35313532 /** @name UpDataStructsPropertiesMapPropertyPermission (404) */3533 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}35343535 /** @name UpDataStructsCollectionStats (411) */3536 interface UpDataStructsCollectionStats extends Struct {3537 readonly created: u32;3538 readonly destroyed: u32;3539 readonly alive: u32;3540 }35413542 /** @name UpDataStructsTokenChild (412) */3543 interface UpDataStructsTokenChild extends Struct {3544 readonly token: u32;3545 readonly collection: u32;3546 }35473548 /** @name PhantomTypeUpDataStructs (413) */3549 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}35503551 /** @name UpDataStructsTokenData (415) */3552 interface UpDataStructsTokenData extends Struct {3553 readonly properties: Vec<UpDataStructsProperty>;3554 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3555 readonly pieces: u128;3556 }35573558 /** @name UpDataStructsRpcCollection (417) */3559 interface UpDataStructsRpcCollection extends Struct {3560 readonly owner: AccountId32;3561 readonly mode: UpDataStructsCollectionMode;3562 readonly name: Vec<u16>;3563 readonly description: Vec<u16>;3564 readonly tokenPrefix: Bytes;3565 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3566 readonly limits: UpDataStructsCollectionLimits;3567 readonly permissions: UpDataStructsCollectionPermissions;3568 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3569 readonly properties: Vec<UpDataStructsProperty>;3570 readonly readOnly: bool;3571 readonly flags: UpDataStructsRpcCollectionFlags;3572 }35733574 /** @name UpDataStructsRpcCollectionFlags (418) */3575 interface UpDataStructsRpcCollectionFlags extends Struct {3576 readonly foreign: bool;3577 readonly erc721metadata: bool;3578 }35793580 /** @name RmrkTraitsCollectionCollectionInfo (419) */3581 interface RmrkTraitsCollectionCollectionInfo extends Struct {3582 readonly issuer: AccountId32;3583 readonly metadata: Bytes;3584 readonly max: Option<u32>;3585 readonly symbol: Bytes;3586 readonly nftsCount: u32;3587 }35883589 /** @name RmrkTraitsNftNftInfo (420) */3590 interface RmrkTraitsNftNftInfo extends Struct {3591 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3592 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3593 readonly metadata: Bytes;3594 readonly equipped: bool;3595 readonly pending: bool;3596 }35973598 /** @name RmrkTraitsNftRoyaltyInfo (422) */3599 interface RmrkTraitsNftRoyaltyInfo extends Struct {3600 readonly recipient: AccountId32;3601 readonly amount: Permill;3602 }36033604 /** @name RmrkTraitsResourceResourceInfo (423) */3605 interface RmrkTraitsResourceResourceInfo extends Struct {3606 readonly id: u32;3607 readonly resource: RmrkTraitsResourceResourceTypes;3608 readonly pending: bool;3609 readonly pendingRemoval: bool;3610 }36113612 /** @name RmrkTraitsPropertyPropertyInfo (424) */3613 interface RmrkTraitsPropertyPropertyInfo extends Struct {3614 readonly key: Bytes;3615 readonly value: Bytes;3616 }36173618 /** @name RmrkTraitsBaseBaseInfo (425) */3619 interface RmrkTraitsBaseBaseInfo extends Struct {3620 readonly issuer: AccountId32;3621 readonly baseType: Bytes;3622 readonly symbol: Bytes;3623 }36243625 /** @name RmrkTraitsNftNftChild (426) */3626 interface RmrkTraitsNftNftChild extends Struct {3627 readonly collectionId: u32;3628 readonly nftId: u32;3629 }36303631 /** @name PalletCommonError (428) */3632 interface PalletCommonError extends Enum {3633 readonly isCollectionNotFound: boolean;3634 readonly isMustBeTokenOwner: boolean;3635 readonly isNoPermission: boolean;3636 readonly isCantDestroyNotEmptyCollection: boolean;3637 readonly isPublicMintingNotAllowed: boolean;3638 readonly isAddressNotInAllowlist: boolean;3639 readonly isCollectionNameLimitExceeded: boolean;3640 readonly isCollectionDescriptionLimitExceeded: boolean;3641 readonly isCollectionTokenPrefixLimitExceeded: boolean;3642 readonly isTotalCollectionsLimitExceeded: boolean;3643 readonly isCollectionAdminCountExceeded: boolean;3644 readonly isCollectionLimitBoundsExceeded: boolean;3645 readonly isOwnerPermissionsCantBeReverted: boolean;3646 readonly isTransferNotAllowed: boolean;3647 readonly isAccountTokenLimitExceeded: boolean;3648 readonly isCollectionTokenLimitExceeded: boolean;3649 readonly isMetadataFlagFrozen: boolean;3650 readonly isTokenNotFound: boolean;3651 readonly isTokenValueTooLow: boolean;3652 readonly isApprovedValueTooLow: boolean;3653 readonly isCantApproveMoreThanOwned: boolean;3654 readonly isAddressIsZero: boolean;3655 readonly isUnsupportedOperation: boolean;3656 readonly isNotSufficientFounds: boolean;3657 readonly isUserIsNotAllowedToNest: boolean;3658 readonly isSourceCollectionIsNotAllowedToNest: boolean;3659 readonly isCollectionFieldSizeExceeded: boolean;3660 readonly isNoSpaceForProperty: boolean;3661 readonly isPropertyLimitReached: boolean;3662 readonly isPropertyKeyIsTooLong: boolean;3663 readonly isInvalidCharacterInPropertyKey: boolean;3664 readonly isEmptyPropertyKey: boolean;3665 readonly isCollectionIsExternal: boolean;3666 readonly isCollectionIsInternal: boolean;3667 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';3668 }36693670 /** @name PalletFungibleError (430) */3671 interface PalletFungibleError extends Enum {3672 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3673 readonly isFungibleItemsHaveNoId: boolean;3674 readonly isFungibleItemsDontHaveData: boolean;3675 readonly isFungibleDisallowsNesting: boolean;3676 readonly isSettingPropertiesNotAllowed: boolean;3677 readonly isSettingAllowanceForAllNotAllowed: boolean;3678 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';3679 }36803681 /** @name PalletRefungibleItemData (431) */3682 interface PalletRefungibleItemData extends Struct {3683 readonly constData: Bytes;3684 }36853686 /** @name PalletRefungibleError (436) */3687 interface PalletRefungibleError extends Enum {3688 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3689 readonly isWrongRefungiblePieces: boolean;3690 readonly isRepartitionWhileNotOwningAllPieces: boolean;3691 readonly isRefungibleDisallowsNesting: boolean;3692 readonly isSettingPropertiesNotAllowed: boolean;3693 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3694 }36953696 /** @name PalletNonfungibleItemData (437) */3697 interface PalletNonfungibleItemData extends Struct {3698 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3699 }37003701 /** @name UpDataStructsPropertyScope (439) */3702 interface UpDataStructsPropertyScope extends Enum {3703 readonly isNone: boolean;3704 readonly isRmrk: boolean;3705 readonly type: 'None' | 'Rmrk';3706 }37073708 /** @name PalletNonfungibleError (441) */3709 interface PalletNonfungibleError extends Enum {3710 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3711 readonly isNonfungibleItemsHaveNoAmount: boolean;3712 readonly isCantBurnNftWithChildren: boolean;3713 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3714 }37153716 /** @name PalletStructureError (442) */3717 interface PalletStructureError extends Enum {3718 readonly isOuroborosDetected: boolean;3719 readonly isDepthLimit: boolean;3720 readonly isBreadthLimit: boolean;3721 readonly isTokenNotFound: boolean;3722 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3723 }37243725 /** @name PalletRmrkCoreError (443) */3726 interface PalletRmrkCoreError extends Enum {3727 readonly isCorruptedCollectionType: boolean;3728 readonly isRmrkPropertyKeyIsTooLong: boolean;3729 readonly isRmrkPropertyValueIsTooLong: boolean;3730 readonly isRmrkPropertyIsNotFound: boolean;3731 readonly isUnableToDecodeRmrkData: boolean;3732 readonly isCollectionNotEmpty: boolean;3733 readonly isNoAvailableCollectionId: boolean;3734 readonly isNoAvailableNftId: boolean;3735 readonly isCollectionUnknown: boolean;3736 readonly isNoPermission: boolean;3737 readonly isNonTransferable: boolean;3738 readonly isCollectionFullOrLocked: boolean;3739 readonly isResourceDoesntExist: boolean;3740 readonly isCannotSendToDescendentOrSelf: boolean;3741 readonly isCannotAcceptNonOwnedNft: boolean;3742 readonly isCannotRejectNonOwnedNft: boolean;3743 readonly isCannotRejectNonPendingNft: boolean;3744 readonly isResourceNotPending: boolean;3745 readonly isNoAvailableResourceId: boolean;3746 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3747 }37483749 /** @name PalletRmrkEquipError (445) */3750 interface PalletRmrkEquipError extends Enum {3751 readonly isPermissionError: boolean;3752 readonly isNoAvailableBaseId: boolean;3753 readonly isNoAvailablePartId: boolean;3754 readonly isBaseDoesntExist: boolean;3755 readonly isNeedsDefaultThemeFirst: boolean;3756 readonly isPartDoesntExist: boolean;3757 readonly isNoEquippableOnFixedPart: boolean;3758 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3759 }37603761 /** @name PalletAppPromotionError (451) */3762 interface PalletAppPromotionError extends Enum {3763 readonly isAdminNotSet: boolean;3764 readonly isNoPermission: boolean;3765 readonly isNotSufficientFunds: boolean;3766 readonly isPendingForBlockOverflow: boolean;3767 readonly isSponsorNotSet: boolean;3768 readonly isIncorrectLockedBalanceOperation: boolean;3769 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3770 }37713772 /** @name PalletForeignAssetsModuleError (452) */3773 interface PalletForeignAssetsModuleError extends Enum {3774 readonly isBadLocation: boolean;3775 readonly isMultiLocationExisted: boolean;3776 readonly isAssetIdNotExists: boolean;3777 readonly isAssetIdExisted: boolean;3778 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3779 }37803781 /** @name PalletEvmError (454) */3782 interface PalletEvmError extends Enum {3783 readonly isBalanceLow: boolean;3784 readonly isFeeOverflow: boolean;3785 readonly isPaymentOverflow: boolean;3786 readonly isWithdrawFailed: boolean;3787 readonly isGasPriceTooLow: boolean;3788 readonly isInvalidNonce: boolean;3789 readonly isGasLimitTooLow: boolean;3790 readonly isGasLimitTooHigh: boolean;3791 readonly isUndefined: boolean;3792 readonly isReentrancy: boolean;3793 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';3794 }37953796 /** @name FpRpcTransactionStatus (457) */3797 interface FpRpcTransactionStatus extends Struct {3798 readonly transactionHash: H256;3799 readonly transactionIndex: u32;3800 readonly from: H160;3801 readonly to: Option<H160>;3802 readonly contractAddress: Option<H160>;3803 readonly logs: Vec<EthereumLog>;3804 readonly logsBloom: EthbloomBloom;3805 }38063807 /** @name EthbloomBloom (459) */3808 interface EthbloomBloom extends U8aFixed {}38093810 /** @name EthereumReceiptReceiptV3 (461) */3811 interface EthereumReceiptReceiptV3 extends Enum {3812 readonly isLegacy: boolean;3813 readonly asLegacy: EthereumReceiptEip658ReceiptData;3814 readonly isEip2930: boolean;3815 readonly asEip2930: EthereumReceiptEip658ReceiptData;3816 readonly isEip1559: boolean;3817 readonly asEip1559: EthereumReceiptEip658ReceiptData;3818 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3819 }38203821 /** @name EthereumReceiptEip658ReceiptData (462) */3822 interface EthereumReceiptEip658ReceiptData extends Struct {3823 readonly statusCode: u8;3824 readonly usedGas: U256;3825 readonly logsBloom: EthbloomBloom;3826 readonly logs: Vec<EthereumLog>;3827 }38283829 /** @name EthereumBlock (463) */3830 interface EthereumBlock extends Struct {3831 readonly header: EthereumHeader;3832 readonly transactions: Vec<EthereumTransactionTransactionV2>;3833 readonly ommers: Vec<EthereumHeader>;3834 }38353836 /** @name EthereumHeader (464) */3837 interface EthereumHeader extends Struct {3838 readonly parentHash: H256;3839 readonly ommersHash: H256;3840 readonly beneficiary: H160;3841 readonly stateRoot: H256;3842 readonly transactionsRoot: H256;3843 readonly receiptsRoot: H256;3844 readonly logsBloom: EthbloomBloom;3845 readonly difficulty: U256;3846 readonly number: U256;3847 readonly gasLimit: U256;3848 readonly gasUsed: U256;3849 readonly timestamp: u64;3850 readonly extraData: Bytes;3851 readonly mixHash: H256;3852 readonly nonce: EthereumTypesHashH64;3853 }38543855 /** @name EthereumTypesHashH64 (465) */3856 interface EthereumTypesHashH64 extends U8aFixed {}38573858 /** @name PalletEthereumError (470) */3859 interface PalletEthereumError extends Enum {3860 readonly isInvalidSignature: boolean;3861 readonly isPreLogExists: boolean;3862 readonly type: 'InvalidSignature' | 'PreLogExists';3863 }38643865 /** @name PalletEvmCoderSubstrateError (471) */3866 interface PalletEvmCoderSubstrateError extends Enum {3867 readonly isOutOfGas: boolean;3868 readonly isOutOfFund: boolean;3869 readonly type: 'OutOfGas' | 'OutOfFund';3870 }38713872 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (472) */3873 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3874 readonly isDisabled: boolean;3875 readonly isUnconfirmed: boolean;3876 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3877 readonly isConfirmed: boolean;3878 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3879 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3880 }38813882 /** @name PalletEvmContractHelpersSponsoringModeT (473) */3883 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3884 readonly isDisabled: boolean;3885 readonly isAllowlisted: boolean;3886 readonly isGenerous: boolean;3887 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3888 }38893890 /** @name PalletEvmContractHelpersError (479) */3891 interface PalletEvmContractHelpersError extends Enum {3892 readonly isNoPermission: boolean;3893 readonly isNoPendingSponsor: boolean;3894 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3895 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3896 }38973898 /** @name PalletEvmMigrationError (480) */3899 interface PalletEvmMigrationError extends Enum {3900 readonly isAccountNotEmpty: boolean;3901 readonly isAccountIsNotMigrating: boolean;3902 readonly isBadEvent: boolean;3903 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3904 }39053906 /** @name PalletMaintenanceError (481) */3907 type PalletMaintenanceError = Null;39083909 /** @name PalletTestUtilsError (482) */3910 interface PalletTestUtilsError extends Enum {3911 readonly isTestPalletDisabled: boolean;3912 readonly isTriggerRollback: boolean;3913 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3914 }39153916 /** @name SpRuntimeMultiSignature (484) */3917 interface SpRuntimeMultiSignature extends Enum {3918 readonly isEd25519: boolean;3919 readonly asEd25519: SpCoreEd25519Signature;3920 readonly isSr25519: boolean;3921 readonly asSr25519: SpCoreSr25519Signature;3922 readonly isEcdsa: boolean;3923 readonly asEcdsa: SpCoreEcdsaSignature;3924 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3925 }39263927 /** @name SpCoreEd25519Signature (485) */3928 interface SpCoreEd25519Signature extends U8aFixed {}39293930 /** @name SpCoreSr25519Signature (487) */3931 interface SpCoreSr25519Signature extends U8aFixed {}39323933 /** @name SpCoreEcdsaSignature (488) */3934 interface SpCoreEcdsaSignature extends U8aFixed {}39353936 /** @name FrameSystemExtensionsCheckSpecVersion (491) */3937 type FrameSystemExtensionsCheckSpecVersion = Null;39383939 /** @name FrameSystemExtensionsCheckTxVersion (492) */3940 type FrameSystemExtensionsCheckTxVersion = Null;39413942 /** @name FrameSystemExtensionsCheckGenesis (493) */3943 type FrameSystemExtensionsCheckGenesis = Null;39443945 /** @name FrameSystemExtensionsCheckNonce (496) */3946 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}39473948 /** @name FrameSystemExtensionsCheckWeight (497) */3949 type FrameSystemExtensionsCheckWeight = Null;39503951 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (498) */3952 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;39533954 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (499) */3955 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}39563957 /** @name OpalRuntimeRuntime (500) */3958 type OpalRuntimeRuntime = Null;39593960 /** @name PalletEthereumFakeTransactionFinalizer (501) */3961 type PalletEthereumFakeTransactionFinalizer = Null;39623963} // declare module1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/lookup';78import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { ITuple } from '@polkadot/types-codec/types';10import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';11import type { Event } from '@polkadot/types/interfaces/system';1213declare module '@polkadot/types/lookup' {14 /** @name FrameSystemAccountInfo (3) */15 interface FrameSystemAccountInfo extends Struct {16 readonly nonce: u32;17 readonly consumers: u32;18 readonly providers: u32;19 readonly sufficients: u32;20 readonly data: PalletBalancesAccountData;21 }2223 /** @name PalletBalancesAccountData (5) */24 interface PalletBalancesAccountData extends Struct {25 readonly free: u128;26 readonly reserved: u128;27 readonly miscFrozen: u128;28 readonly feeFrozen: u128;29 }3031 /** @name FrameSupportDispatchPerDispatchClassWeight (7) */32 interface FrameSupportDispatchPerDispatchClassWeight extends Struct {33 readonly normal: SpWeightsWeightV2Weight;34 readonly operational: SpWeightsWeightV2Weight;35 readonly mandatory: SpWeightsWeightV2Weight;36 }3738 /** @name SpWeightsWeightV2Weight (8) */39 interface SpWeightsWeightV2Weight extends Struct {40 readonly refTime: Compact<u64>;41 readonly proofSize: Compact<u64>;42 }4344 /** @name SpRuntimeDigest (13) */45 interface SpRuntimeDigest extends Struct {46 readonly logs: Vec<SpRuntimeDigestDigestItem>;47 }4849 /** @name SpRuntimeDigestDigestItem (15) */50 interface SpRuntimeDigestDigestItem extends Enum {51 readonly isOther: boolean;52 readonly asOther: Bytes;53 readonly isConsensus: boolean;54 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;55 readonly isSeal: boolean;56 readonly asSeal: ITuple<[U8aFixed, Bytes]>;57 readonly isPreRuntime: boolean;58 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;59 readonly isRuntimeEnvironmentUpdated: boolean;60 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';61 }6263 /** @name FrameSystemEventRecord (18) */64 interface FrameSystemEventRecord extends Struct {65 readonly phase: FrameSystemPhase;66 readonly event: Event;67 readonly topics: Vec<H256>;68 }6970 /** @name FrameSystemEvent (20) */71 interface FrameSystemEvent extends Enum {72 readonly isExtrinsicSuccess: boolean;73 readonly asExtrinsicSuccess: {74 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;75 } & Struct;76 readonly isExtrinsicFailed: boolean;77 readonly asExtrinsicFailed: {78 readonly dispatchError: SpRuntimeDispatchError;79 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;80 } & Struct;81 readonly isCodeUpdated: boolean;82 readonly isNewAccount: boolean;83 readonly asNewAccount: {84 readonly account: AccountId32;85 } & Struct;86 readonly isKilledAccount: boolean;87 readonly asKilledAccount: {88 readonly account: AccountId32;89 } & Struct;90 readonly isRemarked: boolean;91 readonly asRemarked: {92 readonly sender: AccountId32;93 readonly hash_: H256;94 } & Struct;95 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';96 }9798 /** @name FrameSupportDispatchDispatchInfo (21) */99 interface FrameSupportDispatchDispatchInfo extends Struct {100 readonly weight: SpWeightsWeightV2Weight;101 readonly class: FrameSupportDispatchDispatchClass;102 readonly paysFee: FrameSupportDispatchPays;103 }104105 /** @name FrameSupportDispatchDispatchClass (22) */106 interface FrameSupportDispatchDispatchClass extends Enum {107 readonly isNormal: boolean;108 readonly isOperational: boolean;109 readonly isMandatory: boolean;110 readonly type: 'Normal' | 'Operational' | 'Mandatory';111 }112113 /** @name FrameSupportDispatchPays (23) */114 interface FrameSupportDispatchPays extends Enum {115 readonly isYes: boolean;116 readonly isNo: boolean;117 readonly type: 'Yes' | 'No';118 }119120 /** @name SpRuntimeDispatchError (24) */121 interface SpRuntimeDispatchError extends Enum {122 readonly isOther: boolean;123 readonly isCannotLookup: boolean;124 readonly isBadOrigin: boolean;125 readonly isModule: boolean;126 readonly asModule: SpRuntimeModuleError;127 readonly isConsumerRemaining: boolean;128 readonly isNoProviders: boolean;129 readonly isTooManyConsumers: boolean;130 readonly isToken: boolean;131 readonly asToken: SpRuntimeTokenError;132 readonly isArithmetic: boolean;133 readonly asArithmetic: SpRuntimeArithmeticError;134 readonly isTransactional: boolean;135 readonly asTransactional: SpRuntimeTransactionalError;136 readonly isExhausted: boolean;137 readonly isCorruption: boolean;138 readonly isUnavailable: boolean;139 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';140 }141142 /** @name SpRuntimeModuleError (25) */143 interface SpRuntimeModuleError extends Struct {144 readonly index: u8;145 readonly error: U8aFixed;146 }147148 /** @name SpRuntimeTokenError (26) */149 interface SpRuntimeTokenError extends Enum {150 readonly isNoFunds: boolean;151 readonly isWouldDie: boolean;152 readonly isBelowMinimum: boolean;153 readonly isCannotCreate: boolean;154 readonly isUnknownAsset: boolean;155 readonly isFrozen: boolean;156 readonly isUnsupported: boolean;157 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';158 }159160 /** @name SpRuntimeArithmeticError (27) */161 interface SpRuntimeArithmeticError extends Enum {162 readonly isUnderflow: boolean;163 readonly isOverflow: boolean;164 readonly isDivisionByZero: boolean;165 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';166 }167168 /** @name SpRuntimeTransactionalError (28) */169 interface SpRuntimeTransactionalError extends Enum {170 readonly isLimitReached: boolean;171 readonly isNoLayer: boolean;172 readonly type: 'LimitReached' | 'NoLayer';173 }174175 /** @name CumulusPalletParachainSystemEvent (29) */176 interface CumulusPalletParachainSystemEvent extends Enum {177 readonly isValidationFunctionStored: boolean;178 readonly isValidationFunctionApplied: boolean;179 readonly asValidationFunctionApplied: {180 readonly relayChainBlockNum: u32;181 } & Struct;182 readonly isValidationFunctionDiscarded: boolean;183 readonly isUpgradeAuthorized: boolean;184 readonly asUpgradeAuthorized: {185 readonly codeHash: H256;186 } & Struct;187 readonly isDownwardMessagesReceived: boolean;188 readonly asDownwardMessagesReceived: {189 readonly count: u32;190 } & Struct;191 readonly isDownwardMessagesProcessed: boolean;192 readonly asDownwardMessagesProcessed: {193 readonly weightUsed: SpWeightsWeightV2Weight;194 readonly dmqHead: H256;195 } & Struct;196 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';197 }198199 /** @name PalletBalancesEvent (30) */200 interface PalletBalancesEvent extends Enum {201 readonly isEndowed: boolean;202 readonly asEndowed: {203 readonly account: AccountId32;204 readonly freeBalance: u128;205 } & Struct;206 readonly isDustLost: boolean;207 readonly asDustLost: {208 readonly account: AccountId32;209 readonly amount: u128;210 } & Struct;211 readonly isTransfer: boolean;212 readonly asTransfer: {213 readonly from: AccountId32;214 readonly to: AccountId32;215 readonly amount: u128;216 } & Struct;217 readonly isBalanceSet: boolean;218 readonly asBalanceSet: {219 readonly who: AccountId32;220 readonly free: u128;221 readonly reserved: u128;222 } & Struct;223 readonly isReserved: boolean;224 readonly asReserved: {225 readonly who: AccountId32;226 readonly amount: u128;227 } & Struct;228 readonly isUnreserved: boolean;229 readonly asUnreserved: {230 readonly who: AccountId32;231 readonly amount: u128;232 } & Struct;233 readonly isReserveRepatriated: boolean;234 readonly asReserveRepatriated: {235 readonly from: AccountId32;236 readonly to: AccountId32;237 readonly amount: u128;238 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;239 } & Struct;240 readonly isDeposit: boolean;241 readonly asDeposit: {242 readonly who: AccountId32;243 readonly amount: u128;244 } & Struct;245 readonly isWithdraw: boolean;246 readonly asWithdraw: {247 readonly who: AccountId32;248 readonly amount: u128;249 } & Struct;250 readonly isSlashed: boolean;251 readonly asSlashed: {252 readonly who: AccountId32;253 readonly amount: u128;254 } & Struct;255 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';256 }257258 /** @name FrameSupportTokensMiscBalanceStatus (31) */259 interface FrameSupportTokensMiscBalanceStatus extends Enum {260 readonly isFree: boolean;261 readonly isReserved: boolean;262 readonly type: 'Free' | 'Reserved';263 }264265 /** @name PalletTransactionPaymentEvent (32) */266 interface PalletTransactionPaymentEvent extends Enum {267 readonly isTransactionFeePaid: boolean;268 readonly asTransactionFeePaid: {269 readonly who: AccountId32;270 readonly actualFee: u128;271 readonly tip: u128;272 } & Struct;273 readonly type: 'TransactionFeePaid';274 }275276 /** @name PalletTreasuryEvent (33) */277 interface PalletTreasuryEvent extends Enum {278 readonly isProposed: boolean;279 readonly asProposed: {280 readonly proposalIndex: u32;281 } & Struct;282 readonly isSpending: boolean;283 readonly asSpending: {284 readonly budgetRemaining: u128;285 } & Struct;286 readonly isAwarded: boolean;287 readonly asAwarded: {288 readonly proposalIndex: u32;289 readonly award: u128;290 readonly account: AccountId32;291 } & Struct;292 readonly isRejected: boolean;293 readonly asRejected: {294 readonly proposalIndex: u32;295 readonly slashed: u128;296 } & Struct;297 readonly isBurnt: boolean;298 readonly asBurnt: {299 readonly burntFunds: u128;300 } & Struct;301 readonly isRollover: boolean;302 readonly asRollover: {303 readonly rolloverBalance: u128;304 } & Struct;305 readonly isDeposit: boolean;306 readonly asDeposit: {307 readonly value: u128;308 } & Struct;309 readonly isSpendApproved: boolean;310 readonly asSpendApproved: {311 readonly proposalIndex: u32;312 readonly amount: u128;313 readonly beneficiary: AccountId32;314 } & Struct;315 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';316 }317318 /** @name PalletSudoEvent (34) */319 interface PalletSudoEvent extends Enum {320 readonly isSudid: boolean;321 readonly asSudid: {322 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;323 } & Struct;324 readonly isKeyChanged: boolean;325 readonly asKeyChanged: {326 readonly oldSudoer: Option<AccountId32>;327 } & Struct;328 readonly isSudoAsDone: boolean;329 readonly asSudoAsDone: {330 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;331 } & Struct;332 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';333 }334335 /** @name OrmlVestingModuleEvent (38) */336 interface OrmlVestingModuleEvent extends Enum {337 readonly isVestingScheduleAdded: boolean;338 readonly asVestingScheduleAdded: {339 readonly from: AccountId32;340 readonly to: AccountId32;341 readonly vestingSchedule: OrmlVestingVestingSchedule;342 } & Struct;343 readonly isClaimed: boolean;344 readonly asClaimed: {345 readonly who: AccountId32;346 readonly amount: u128;347 } & Struct;348 readonly isVestingSchedulesUpdated: boolean;349 readonly asVestingSchedulesUpdated: {350 readonly who: AccountId32;351 } & Struct;352 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';353 }354355 /** @name OrmlVestingVestingSchedule (39) */356 interface OrmlVestingVestingSchedule extends Struct {357 readonly start: u32;358 readonly period: u32;359 readonly periodCount: u32;360 readonly perPeriod: Compact<u128>;361 }362363 /** @name OrmlXtokensModuleEvent (41) */364 interface OrmlXtokensModuleEvent extends Enum {365 readonly isTransferredMultiAssets: boolean;366 readonly asTransferredMultiAssets: {367 readonly sender: AccountId32;368 readonly assets: XcmV1MultiassetMultiAssets;369 readonly fee: XcmV1MultiAsset;370 readonly dest: XcmV1MultiLocation;371 } & Struct;372 readonly type: 'TransferredMultiAssets';373 }374375 /** @name XcmV1MultiassetMultiAssets (42) */376 interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}377378 /** @name XcmV1MultiAsset (44) */379 interface XcmV1MultiAsset extends Struct {380 readonly id: XcmV1MultiassetAssetId;381 readonly fun: XcmV1MultiassetFungibility;382 }383384 /** @name XcmV1MultiassetAssetId (45) */385 interface XcmV1MultiassetAssetId extends Enum {386 readonly isConcrete: boolean;387 readonly asConcrete: XcmV1MultiLocation;388 readonly isAbstract: boolean;389 readonly asAbstract: Bytes;390 readonly type: 'Concrete' | 'Abstract';391 }392393 /** @name XcmV1MultiLocation (46) */394 interface XcmV1MultiLocation extends Struct {395 readonly parents: u8;396 readonly interior: XcmV1MultilocationJunctions;397 }398399 /** @name XcmV1MultilocationJunctions (47) */400 interface XcmV1MultilocationJunctions extends Enum {401 readonly isHere: boolean;402 readonly isX1: boolean;403 readonly asX1: XcmV1Junction;404 readonly isX2: boolean;405 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;406 readonly isX3: boolean;407 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;408 readonly isX4: boolean;409 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;410 readonly isX5: boolean;411 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;412 readonly isX6: boolean;413 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;414 readonly isX7: boolean;415 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;416 readonly isX8: boolean;417 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;418 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';419 }420421 /** @name XcmV1Junction (48) */422 interface XcmV1Junction extends Enum {423 readonly isParachain: boolean;424 readonly asParachain: Compact<u32>;425 readonly isAccountId32: boolean;426 readonly asAccountId32: {427 readonly network: XcmV0JunctionNetworkId;428 readonly id: U8aFixed;429 } & Struct;430 readonly isAccountIndex64: boolean;431 readonly asAccountIndex64: {432 readonly network: XcmV0JunctionNetworkId;433 readonly index: Compact<u64>;434 } & Struct;435 readonly isAccountKey20: boolean;436 readonly asAccountKey20: {437 readonly network: XcmV0JunctionNetworkId;438 readonly key: U8aFixed;439 } & Struct;440 readonly isPalletInstance: boolean;441 readonly asPalletInstance: u8;442 readonly isGeneralIndex: boolean;443 readonly asGeneralIndex: Compact<u128>;444 readonly isGeneralKey: boolean;445 readonly asGeneralKey: Bytes;446 readonly isOnlyChild: boolean;447 readonly isPlurality: boolean;448 readonly asPlurality: {449 readonly id: XcmV0JunctionBodyId;450 readonly part: XcmV0JunctionBodyPart;451 } & Struct;452 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';453 }454455 /** @name XcmV0JunctionNetworkId (50) */456 interface XcmV0JunctionNetworkId extends Enum {457 readonly isAny: boolean;458 readonly isNamed: boolean;459 readonly asNamed: Bytes;460 readonly isPolkadot: boolean;461 readonly isKusama: boolean;462 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';463 }464465 /** @name XcmV0JunctionBodyId (53) */466 interface XcmV0JunctionBodyId extends Enum {467 readonly isUnit: boolean;468 readonly isNamed: boolean;469 readonly asNamed: Bytes;470 readonly isIndex: boolean;471 readonly asIndex: Compact<u32>;472 readonly isExecutive: boolean;473 readonly isTechnical: boolean;474 readonly isLegislative: boolean;475 readonly isJudicial: boolean;476 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';477 }478479 /** @name XcmV0JunctionBodyPart (54) */480 interface XcmV0JunctionBodyPart extends Enum {481 readonly isVoice: boolean;482 readonly isMembers: boolean;483 readonly asMembers: {484 readonly count: Compact<u32>;485 } & Struct;486 readonly isFraction: boolean;487 readonly asFraction: {488 readonly nom: Compact<u32>;489 readonly denom: Compact<u32>;490 } & Struct;491 readonly isAtLeastProportion: boolean;492 readonly asAtLeastProportion: {493 readonly nom: Compact<u32>;494 readonly denom: Compact<u32>;495 } & Struct;496 readonly isMoreThanProportion: boolean;497 readonly asMoreThanProportion: {498 readonly nom: Compact<u32>;499 readonly denom: Compact<u32>;500 } & Struct;501 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';502 }503504 /** @name XcmV1MultiassetFungibility (55) */505 interface XcmV1MultiassetFungibility extends Enum {506 readonly isFungible: boolean;507 readonly asFungible: Compact<u128>;508 readonly isNonFungible: boolean;509 readonly asNonFungible: XcmV1MultiassetAssetInstance;510 readonly type: 'Fungible' | 'NonFungible';511 }512513 /** @name XcmV1MultiassetAssetInstance (56) */514 interface XcmV1MultiassetAssetInstance extends Enum {515 readonly isUndefined: boolean;516 readonly isIndex: boolean;517 readonly asIndex: Compact<u128>;518 readonly isArray4: boolean;519 readonly asArray4: U8aFixed;520 readonly isArray8: boolean;521 readonly asArray8: U8aFixed;522 readonly isArray16: boolean;523 readonly asArray16: U8aFixed;524 readonly isArray32: boolean;525 readonly asArray32: U8aFixed;526 readonly isBlob: boolean;527 readonly asBlob: Bytes;528 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';529 }530531 /** @name OrmlTokensModuleEvent (59) */532 interface OrmlTokensModuleEvent extends Enum {533 readonly isEndowed: boolean;534 readonly asEndowed: {535 readonly currencyId: PalletForeignAssetsAssetIds;536 readonly who: AccountId32;537 readonly amount: u128;538 } & Struct;539 readonly isDustLost: boolean;540 readonly asDustLost: {541 readonly currencyId: PalletForeignAssetsAssetIds;542 readonly who: AccountId32;543 readonly amount: u128;544 } & Struct;545 readonly isTransfer: boolean;546 readonly asTransfer: {547 readonly currencyId: PalletForeignAssetsAssetIds;548 readonly from: AccountId32;549 readonly to: AccountId32;550 readonly amount: u128;551 } & Struct;552 readonly isReserved: boolean;553 readonly asReserved: {554 readonly currencyId: PalletForeignAssetsAssetIds;555 readonly who: AccountId32;556 readonly amount: u128;557 } & Struct;558 readonly isUnreserved: boolean;559 readonly asUnreserved: {560 readonly currencyId: PalletForeignAssetsAssetIds;561 readonly who: AccountId32;562 readonly amount: u128;563 } & Struct;564 readonly isReserveRepatriated: boolean;565 readonly asReserveRepatriated: {566 readonly currencyId: PalletForeignAssetsAssetIds;567 readonly from: AccountId32;568 readonly to: AccountId32;569 readonly amount: u128;570 readonly status: FrameSupportTokensMiscBalanceStatus;571 } & Struct;572 readonly isBalanceSet: boolean;573 readonly asBalanceSet: {574 readonly currencyId: PalletForeignAssetsAssetIds;575 readonly who: AccountId32;576 readonly free: u128;577 readonly reserved: u128;578 } & Struct;579 readonly isTotalIssuanceSet: boolean;580 readonly asTotalIssuanceSet: {581 readonly currencyId: PalletForeignAssetsAssetIds;582 readonly amount: u128;583 } & Struct;584 readonly isWithdrawn: boolean;585 readonly asWithdrawn: {586 readonly currencyId: PalletForeignAssetsAssetIds;587 readonly who: AccountId32;588 readonly amount: u128;589 } & Struct;590 readonly isSlashed: boolean;591 readonly asSlashed: {592 readonly currencyId: PalletForeignAssetsAssetIds;593 readonly who: AccountId32;594 readonly freeAmount: u128;595 readonly reservedAmount: u128;596 } & Struct;597 readonly isDeposited: boolean;598 readonly asDeposited: {599 readonly currencyId: PalletForeignAssetsAssetIds;600 readonly who: AccountId32;601 readonly amount: u128;602 } & Struct;603 readonly isLockSet: boolean;604 readonly asLockSet: {605 readonly lockId: U8aFixed;606 readonly currencyId: PalletForeignAssetsAssetIds;607 readonly who: AccountId32;608 readonly amount: u128;609 } & Struct;610 readonly isLockRemoved: boolean;611 readonly asLockRemoved: {612 readonly lockId: U8aFixed;613 readonly currencyId: PalletForeignAssetsAssetIds;614 readonly who: AccountId32;615 } & Struct;616 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';617 }618619 /** @name PalletForeignAssetsAssetIds (60) */620 interface PalletForeignAssetsAssetIds extends Enum {621 readonly isForeignAssetId: boolean;622 readonly asForeignAssetId: u32;623 readonly isNativeAssetId: boolean;624 readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;625 readonly type: 'ForeignAssetId' | 'NativeAssetId';626 }627628 /** @name PalletForeignAssetsNativeCurrency (61) */629 interface PalletForeignAssetsNativeCurrency extends Enum {630 readonly isHere: boolean;631 readonly isParent: boolean;632 readonly type: 'Here' | 'Parent';633 }634635 /** @name CumulusPalletXcmpQueueEvent (62) */636 interface CumulusPalletXcmpQueueEvent extends Enum {637 readonly isSuccess: boolean;638 readonly asSuccess: {639 readonly messageHash: Option<H256>;640 readonly weight: SpWeightsWeightV2Weight;641 } & Struct;642 readonly isFail: boolean;643 readonly asFail: {644 readonly messageHash: Option<H256>;645 readonly error: XcmV2TraitsError;646 readonly weight: SpWeightsWeightV2Weight;647 } & Struct;648 readonly isBadVersion: boolean;649 readonly asBadVersion: {650 readonly messageHash: Option<H256>;651 } & Struct;652 readonly isBadFormat: boolean;653 readonly asBadFormat: {654 readonly messageHash: Option<H256>;655 } & Struct;656 readonly isUpwardMessageSent: boolean;657 readonly asUpwardMessageSent: {658 readonly messageHash: Option<H256>;659 } & Struct;660 readonly isXcmpMessageSent: boolean;661 readonly asXcmpMessageSent: {662 readonly messageHash: Option<H256>;663 } & Struct;664 readonly isOverweightEnqueued: boolean;665 readonly asOverweightEnqueued: {666 readonly sender: u32;667 readonly sentAt: u32;668 readonly index: u64;669 readonly required: SpWeightsWeightV2Weight;670 } & Struct;671 readonly isOverweightServiced: boolean;672 readonly asOverweightServiced: {673 readonly index: u64;674 readonly used: SpWeightsWeightV2Weight;675 } & Struct;676 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';677 }678679 /** @name XcmV2TraitsError (64) */680 interface XcmV2TraitsError extends Enum {681 readonly isOverflow: boolean;682 readonly isUnimplemented: boolean;683 readonly isUntrustedReserveLocation: boolean;684 readonly isUntrustedTeleportLocation: boolean;685 readonly isMultiLocationFull: boolean;686 readonly isMultiLocationNotInvertible: boolean;687 readonly isBadOrigin: boolean;688 readonly isInvalidLocation: boolean;689 readonly isAssetNotFound: boolean;690 readonly isFailedToTransactAsset: boolean;691 readonly isNotWithdrawable: boolean;692 readonly isLocationCannotHold: boolean;693 readonly isExceedsMaxMessageSize: boolean;694 readonly isDestinationUnsupported: boolean;695 readonly isTransport: boolean;696 readonly isUnroutable: boolean;697 readonly isUnknownClaim: boolean;698 readonly isFailedToDecode: boolean;699 readonly isMaxWeightInvalid: boolean;700 readonly isNotHoldingFees: boolean;701 readonly isTooExpensive: boolean;702 readonly isTrap: boolean;703 readonly asTrap: u64;704 readonly isUnhandledXcmVersion: boolean;705 readonly isWeightLimitReached: boolean;706 readonly asWeightLimitReached: u64;707 readonly isBarrier: boolean;708 readonly isWeightNotComputable: boolean;709 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';710 }711712 /** @name PalletXcmEvent (66) */713 interface PalletXcmEvent extends Enum {714 readonly isAttempted: boolean;715 readonly asAttempted: XcmV2TraitsOutcome;716 readonly isSent: boolean;717 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;718 readonly isUnexpectedResponse: boolean;719 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;720 readonly isResponseReady: boolean;721 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;722 readonly isNotified: boolean;723 readonly asNotified: ITuple<[u64, u8, u8]>;724 readonly isNotifyOverweight: boolean;725 readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;726 readonly isNotifyDispatchError: boolean;727 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;728 readonly isNotifyDecodeFailed: boolean;729 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;730 readonly isInvalidResponder: boolean;731 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;732 readonly isInvalidResponderVersion: boolean;733 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;734 readonly isResponseTaken: boolean;735 readonly asResponseTaken: u64;736 readonly isAssetsTrapped: boolean;737 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;738 readonly isVersionChangeNotified: boolean;739 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;740 readonly isSupportedVersionChanged: boolean;741 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;742 readonly isNotifyTargetSendFail: boolean;743 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;744 readonly isNotifyTargetMigrationFail: boolean;745 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;746 readonly isAssetsClaimed: boolean;747 readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;748 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';749 }750751 /** @name XcmV2TraitsOutcome (67) */752 interface XcmV2TraitsOutcome extends Enum {753 readonly isComplete: boolean;754 readonly asComplete: u64;755 readonly isIncomplete: boolean;756 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;757 readonly isError: boolean;758 readonly asError: XcmV2TraitsError;759 readonly type: 'Complete' | 'Incomplete' | 'Error';760 }761762 /** @name XcmV2Xcm (68) */763 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}764765 /** @name XcmV2Instruction (70) */766 interface XcmV2Instruction extends Enum {767 readonly isWithdrawAsset: boolean;768 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;769 readonly isReserveAssetDeposited: boolean;770 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;771 readonly isReceiveTeleportedAsset: boolean;772 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;773 readonly isQueryResponse: boolean;774 readonly asQueryResponse: {775 readonly queryId: Compact<u64>;776 readonly response: XcmV2Response;777 readonly maxWeight: Compact<u64>;778 } & Struct;779 readonly isTransferAsset: boolean;780 readonly asTransferAsset: {781 readonly assets: XcmV1MultiassetMultiAssets;782 readonly beneficiary: XcmV1MultiLocation;783 } & Struct;784 readonly isTransferReserveAsset: boolean;785 readonly asTransferReserveAsset: {786 readonly assets: XcmV1MultiassetMultiAssets;787 readonly dest: XcmV1MultiLocation;788 readonly xcm: XcmV2Xcm;789 } & Struct;790 readonly isTransact: boolean;791 readonly asTransact: {792 readonly originType: XcmV0OriginKind;793 readonly requireWeightAtMost: Compact<u64>;794 readonly call: XcmDoubleEncoded;795 } & Struct;796 readonly isHrmpNewChannelOpenRequest: boolean;797 readonly asHrmpNewChannelOpenRequest: {798 readonly sender: Compact<u32>;799 readonly maxMessageSize: Compact<u32>;800 readonly maxCapacity: Compact<u32>;801 } & Struct;802 readonly isHrmpChannelAccepted: boolean;803 readonly asHrmpChannelAccepted: {804 readonly recipient: Compact<u32>;805 } & Struct;806 readonly isHrmpChannelClosing: boolean;807 readonly asHrmpChannelClosing: {808 readonly initiator: Compact<u32>;809 readonly sender: Compact<u32>;810 readonly recipient: Compact<u32>;811 } & Struct;812 readonly isClearOrigin: boolean;813 readonly isDescendOrigin: boolean;814 readonly asDescendOrigin: XcmV1MultilocationJunctions;815 readonly isReportError: boolean;816 readonly asReportError: {817 readonly queryId: Compact<u64>;818 readonly dest: XcmV1MultiLocation;819 readonly maxResponseWeight: Compact<u64>;820 } & Struct;821 readonly isDepositAsset: boolean;822 readonly asDepositAsset: {823 readonly assets: XcmV1MultiassetMultiAssetFilter;824 readonly maxAssets: Compact<u32>;825 readonly beneficiary: XcmV1MultiLocation;826 } & Struct;827 readonly isDepositReserveAsset: boolean;828 readonly asDepositReserveAsset: {829 readonly assets: XcmV1MultiassetMultiAssetFilter;830 readonly maxAssets: Compact<u32>;831 readonly dest: XcmV1MultiLocation;832 readonly xcm: XcmV2Xcm;833 } & Struct;834 readonly isExchangeAsset: boolean;835 readonly asExchangeAsset: {836 readonly give: XcmV1MultiassetMultiAssetFilter;837 readonly receive: XcmV1MultiassetMultiAssets;838 } & Struct;839 readonly isInitiateReserveWithdraw: boolean;840 readonly asInitiateReserveWithdraw: {841 readonly assets: XcmV1MultiassetMultiAssetFilter;842 readonly reserve: XcmV1MultiLocation;843 readonly xcm: XcmV2Xcm;844 } & Struct;845 readonly isInitiateTeleport: boolean;846 readonly asInitiateTeleport: {847 readonly assets: XcmV1MultiassetMultiAssetFilter;848 readonly dest: XcmV1MultiLocation;849 readonly xcm: XcmV2Xcm;850 } & Struct;851 readonly isQueryHolding: boolean;852 readonly asQueryHolding: {853 readonly queryId: Compact<u64>;854 readonly dest: XcmV1MultiLocation;855 readonly assets: XcmV1MultiassetMultiAssetFilter;856 readonly maxResponseWeight: Compact<u64>;857 } & Struct;858 readonly isBuyExecution: boolean;859 readonly asBuyExecution: {860 readonly fees: XcmV1MultiAsset;861 readonly weightLimit: XcmV2WeightLimit;862 } & Struct;863 readonly isRefundSurplus: boolean;864 readonly isSetErrorHandler: boolean;865 readonly asSetErrorHandler: XcmV2Xcm;866 readonly isSetAppendix: boolean;867 readonly asSetAppendix: XcmV2Xcm;868 readonly isClearError: boolean;869 readonly isClaimAsset: boolean;870 readonly asClaimAsset: {871 readonly assets: XcmV1MultiassetMultiAssets;872 readonly ticket: XcmV1MultiLocation;873 } & Struct;874 readonly isTrap: boolean;875 readonly asTrap: Compact<u64>;876 readonly isSubscribeVersion: boolean;877 readonly asSubscribeVersion: {878 readonly queryId: Compact<u64>;879 readonly maxResponseWeight: Compact<u64>;880 } & Struct;881 readonly isUnsubscribeVersion: boolean;882 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';883 }884885 /** @name XcmV2Response (71) */886 interface XcmV2Response extends Enum {887 readonly isNull: boolean;888 readonly isAssets: boolean;889 readonly asAssets: XcmV1MultiassetMultiAssets;890 readonly isExecutionResult: boolean;891 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;892 readonly isVersion: boolean;893 readonly asVersion: u32;894 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';895 }896897 /** @name XcmV0OriginKind (74) */898 interface XcmV0OriginKind extends Enum {899 readonly isNative: boolean;900 readonly isSovereignAccount: boolean;901 readonly isSuperuser: boolean;902 readonly isXcm: boolean;903 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';904 }905906 /** @name XcmDoubleEncoded (75) */907 interface XcmDoubleEncoded extends Struct {908 readonly encoded: Bytes;909 }910911 /** @name XcmV1MultiassetMultiAssetFilter (76) */912 interface XcmV1MultiassetMultiAssetFilter extends Enum {913 readonly isDefinite: boolean;914 readonly asDefinite: XcmV1MultiassetMultiAssets;915 readonly isWild: boolean;916 readonly asWild: XcmV1MultiassetWildMultiAsset;917 readonly type: 'Definite' | 'Wild';918 }919920 /** @name XcmV1MultiassetWildMultiAsset (77) */921 interface XcmV1MultiassetWildMultiAsset extends Enum {922 readonly isAll: boolean;923 readonly isAllOf: boolean;924 readonly asAllOf: {925 readonly id: XcmV1MultiassetAssetId;926 readonly fun: XcmV1MultiassetWildFungibility;927 } & Struct;928 readonly type: 'All' | 'AllOf';929 }930931 /** @name XcmV1MultiassetWildFungibility (78) */932 interface XcmV1MultiassetWildFungibility extends Enum {933 readonly isFungible: boolean;934 readonly isNonFungible: boolean;935 readonly type: 'Fungible' | 'NonFungible';936 }937938 /** @name XcmV2WeightLimit (79) */939 interface XcmV2WeightLimit extends Enum {940 readonly isUnlimited: boolean;941 readonly isLimited: boolean;942 readonly asLimited: Compact<u64>;943 readonly type: 'Unlimited' | 'Limited';944 }945946 /** @name XcmVersionedMultiAssets (81) */947 interface XcmVersionedMultiAssets extends Enum {948 readonly isV0: boolean;949 readonly asV0: Vec<XcmV0MultiAsset>;950 readonly isV1: boolean;951 readonly asV1: XcmV1MultiassetMultiAssets;952 readonly type: 'V0' | 'V1';953 }954955 /** @name XcmV0MultiAsset (83) */956 interface XcmV0MultiAsset extends Enum {957 readonly isNone: boolean;958 readonly isAll: boolean;959 readonly isAllFungible: boolean;960 readonly isAllNonFungible: boolean;961 readonly isAllAbstractFungible: boolean;962 readonly asAllAbstractFungible: {963 readonly id: Bytes;964 } & Struct;965 readonly isAllAbstractNonFungible: boolean;966 readonly asAllAbstractNonFungible: {967 readonly class: Bytes;968 } & Struct;969 readonly isAllConcreteFungible: boolean;970 readonly asAllConcreteFungible: {971 readonly id: XcmV0MultiLocation;972 } & Struct;973 readonly isAllConcreteNonFungible: boolean;974 readonly asAllConcreteNonFungible: {975 readonly class: XcmV0MultiLocation;976 } & Struct;977 readonly isAbstractFungible: boolean;978 readonly asAbstractFungible: {979 readonly id: Bytes;980 readonly amount: Compact<u128>;981 } & Struct;982 readonly isAbstractNonFungible: boolean;983 readonly asAbstractNonFungible: {984 readonly class: Bytes;985 readonly instance: XcmV1MultiassetAssetInstance;986 } & Struct;987 readonly isConcreteFungible: boolean;988 readonly asConcreteFungible: {989 readonly id: XcmV0MultiLocation;990 readonly amount: Compact<u128>;991 } & Struct;992 readonly isConcreteNonFungible: boolean;993 readonly asConcreteNonFungible: {994 readonly class: XcmV0MultiLocation;995 readonly instance: XcmV1MultiassetAssetInstance;996 } & Struct;997 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';998 }9991000 /** @name XcmV0MultiLocation (84) */1001 interface XcmV0MultiLocation extends Enum {1002 readonly isNull: boolean;1003 readonly isX1: boolean;1004 readonly asX1: XcmV0Junction;1005 readonly isX2: boolean;1006 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;1007 readonly isX3: boolean;1008 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1009 readonly isX4: boolean;1010 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1011 readonly isX5: boolean;1012 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1013 readonly isX6: boolean;1014 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1015 readonly isX7: boolean;1016 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1017 readonly isX8: boolean;1018 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1019 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1020 }10211022 /** @name XcmV0Junction (85) */1023 interface XcmV0Junction extends Enum {1024 readonly isParent: boolean;1025 readonly isParachain: boolean;1026 readonly asParachain: Compact<u32>;1027 readonly isAccountId32: boolean;1028 readonly asAccountId32: {1029 readonly network: XcmV0JunctionNetworkId;1030 readonly id: U8aFixed;1031 } & Struct;1032 readonly isAccountIndex64: boolean;1033 readonly asAccountIndex64: {1034 readonly network: XcmV0JunctionNetworkId;1035 readonly index: Compact<u64>;1036 } & Struct;1037 readonly isAccountKey20: boolean;1038 readonly asAccountKey20: {1039 readonly network: XcmV0JunctionNetworkId;1040 readonly key: U8aFixed;1041 } & Struct;1042 readonly isPalletInstance: boolean;1043 readonly asPalletInstance: u8;1044 readonly isGeneralIndex: boolean;1045 readonly asGeneralIndex: Compact<u128>;1046 readonly isGeneralKey: boolean;1047 readonly asGeneralKey: Bytes;1048 readonly isOnlyChild: boolean;1049 readonly isPlurality: boolean;1050 readonly asPlurality: {1051 readonly id: XcmV0JunctionBodyId;1052 readonly part: XcmV0JunctionBodyPart;1053 } & Struct;1054 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1055 }10561057 /** @name XcmVersionedMultiLocation (86) */1058 interface XcmVersionedMultiLocation extends Enum {1059 readonly isV0: boolean;1060 readonly asV0: XcmV0MultiLocation;1061 readonly isV1: boolean;1062 readonly asV1: XcmV1MultiLocation;1063 readonly type: 'V0' | 'V1';1064 }10651066 /** @name CumulusPalletXcmEvent (87) */1067 interface CumulusPalletXcmEvent extends Enum {1068 readonly isInvalidFormat: boolean;1069 readonly asInvalidFormat: U8aFixed;1070 readonly isUnsupportedVersion: boolean;1071 readonly asUnsupportedVersion: U8aFixed;1072 readonly isExecutedDownward: boolean;1073 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;1074 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1075 }10761077 /** @name CumulusPalletDmpQueueEvent (88) */1078 interface CumulusPalletDmpQueueEvent extends Enum {1079 readonly isInvalidFormat: boolean;1080 readonly asInvalidFormat: {1081 readonly messageId: U8aFixed;1082 } & Struct;1083 readonly isUnsupportedVersion: boolean;1084 readonly asUnsupportedVersion: {1085 readonly messageId: U8aFixed;1086 } & Struct;1087 readonly isExecutedDownward: boolean;1088 readonly asExecutedDownward: {1089 readonly messageId: U8aFixed;1090 readonly outcome: XcmV2TraitsOutcome;1091 } & Struct;1092 readonly isWeightExhausted: boolean;1093 readonly asWeightExhausted: {1094 readonly messageId: U8aFixed;1095 readonly remainingWeight: SpWeightsWeightV2Weight;1096 readonly requiredWeight: SpWeightsWeightV2Weight;1097 } & Struct;1098 readonly isOverweightEnqueued: boolean;1099 readonly asOverweightEnqueued: {1100 readonly messageId: U8aFixed;1101 readonly overweightIndex: u64;1102 readonly requiredWeight: SpWeightsWeightV2Weight;1103 } & Struct;1104 readonly isOverweightServiced: boolean;1105 readonly asOverweightServiced: {1106 readonly overweightIndex: u64;1107 readonly weightUsed: SpWeightsWeightV2Weight;1108 } & Struct;1109 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1110 }11111112 /** @name PalletUniqueSchedulerV2Event (89) */1113 interface PalletUniqueSchedulerV2Event extends Enum {1114 readonly isScheduled: boolean;1115 readonly asScheduled: {1116 readonly when: u32;1117 readonly index: u32;1118 } & Struct;1119 readonly isCanceled: boolean;1120 readonly asCanceled: {1121 readonly when: u32;1122 readonly index: u32;1123 } & Struct;1124 readonly isDispatched: boolean;1125 readonly asDispatched: {1126 readonly task: ITuple<[u32, u32]>;1127 readonly id: Option<U8aFixed>;1128 readonly result: Result<Null, SpRuntimeDispatchError>;1129 } & Struct;1130 readonly isPriorityChanged: boolean;1131 readonly asPriorityChanged: {1132 readonly task: ITuple<[u32, u32]>;1133 readonly priority: u8;1134 } & Struct;1135 readonly isCallUnavailable: boolean;1136 readonly asCallUnavailable: {1137 readonly task: ITuple<[u32, u32]>;1138 readonly id: Option<U8aFixed>;1139 } & Struct;1140 readonly isPermanentlyOverweight: boolean;1141 readonly asPermanentlyOverweight: {1142 readonly task: ITuple<[u32, u32]>;1143 readonly id: Option<U8aFixed>;1144 } & Struct;1145 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';1146 }11471148 /** @name PalletCommonEvent (92) */1149 interface PalletCommonEvent extends Enum {1150 readonly isCollectionCreated: boolean;1151 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1152 readonly isCollectionDestroyed: boolean;1153 readonly asCollectionDestroyed: u32;1154 readonly isItemCreated: boolean;1155 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1156 readonly isItemDestroyed: boolean;1157 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1158 readonly isTransfer: boolean;1159 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1160 readonly isApproved: boolean;1161 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1162 readonly isApprovedForAll: boolean;1163 readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1164 readonly isCollectionPropertySet: boolean;1165 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1166 readonly isCollectionPropertyDeleted: boolean;1167 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1168 readonly isTokenPropertySet: boolean;1169 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1170 readonly isTokenPropertyDeleted: boolean;1171 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1172 readonly isPropertyPermissionSet: boolean;1173 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1174 readonly isAllowListAddressAdded: boolean;1175 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1176 readonly isAllowListAddressRemoved: boolean;1177 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1178 readonly isCollectionAdminAdded: boolean;1179 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1180 readonly isCollectionAdminRemoved: boolean;1181 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1182 readonly isCollectionLimitSet: boolean;1183 readonly asCollectionLimitSet: u32;1184 readonly isCollectionOwnerChanged: boolean;1185 readonly asCollectionOwnerChanged: ITuple<[u32, AccountId32]>;1186 readonly isCollectionPermissionSet: boolean;1187 readonly asCollectionPermissionSet: u32;1188 readonly isCollectionSponsorSet: boolean;1189 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1190 readonly isSponsorshipConfirmed: boolean;1191 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1192 readonly isCollectionSponsorRemoved: boolean;1193 readonly asCollectionSponsorRemoved: u32;1194 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1195 }11961197 /** @name PalletEvmAccountBasicCrossAccountIdRepr (95) */1198 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1199 readonly isSubstrate: boolean;1200 readonly asSubstrate: AccountId32;1201 readonly isEthereum: boolean;1202 readonly asEthereum: H160;1203 readonly type: 'Substrate' | 'Ethereum';1204 }12051206 /** @name PalletStructureEvent (99) */1207 interface PalletStructureEvent extends Enum {1208 readonly isExecuted: boolean;1209 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1210 readonly type: 'Executed';1211 }12121213 /** @name PalletRmrkCoreEvent (100) */1214 interface PalletRmrkCoreEvent extends Enum {1215 readonly isCollectionCreated: boolean;1216 readonly asCollectionCreated: {1217 readonly issuer: AccountId32;1218 readonly collectionId: u32;1219 } & Struct;1220 readonly isCollectionDestroyed: boolean;1221 readonly asCollectionDestroyed: {1222 readonly issuer: AccountId32;1223 readonly collectionId: u32;1224 } & Struct;1225 readonly isIssuerChanged: boolean;1226 readonly asIssuerChanged: {1227 readonly oldIssuer: AccountId32;1228 readonly newIssuer: AccountId32;1229 readonly collectionId: u32;1230 } & Struct;1231 readonly isCollectionLocked: boolean;1232 readonly asCollectionLocked: {1233 readonly issuer: AccountId32;1234 readonly collectionId: u32;1235 } & Struct;1236 readonly isNftMinted: boolean;1237 readonly asNftMinted: {1238 readonly owner: AccountId32;1239 readonly collectionId: u32;1240 readonly nftId: u32;1241 } & Struct;1242 readonly isNftBurned: boolean;1243 readonly asNftBurned: {1244 readonly owner: AccountId32;1245 readonly nftId: u32;1246 } & Struct;1247 readonly isNftSent: boolean;1248 readonly asNftSent: {1249 readonly sender: AccountId32;1250 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1251 readonly collectionId: u32;1252 readonly nftId: u32;1253 readonly approvalRequired: bool;1254 } & Struct;1255 readonly isNftAccepted: boolean;1256 readonly asNftAccepted: {1257 readonly sender: AccountId32;1258 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1259 readonly collectionId: u32;1260 readonly nftId: u32;1261 } & Struct;1262 readonly isNftRejected: boolean;1263 readonly asNftRejected: {1264 readonly sender: AccountId32;1265 readonly collectionId: u32;1266 readonly nftId: u32;1267 } & Struct;1268 readonly isPropertySet: boolean;1269 readonly asPropertySet: {1270 readonly collectionId: u32;1271 readonly maybeNftId: Option<u32>;1272 readonly key: Bytes;1273 readonly value: Bytes;1274 } & Struct;1275 readonly isResourceAdded: boolean;1276 readonly asResourceAdded: {1277 readonly nftId: u32;1278 readonly resourceId: u32;1279 } & Struct;1280 readonly isResourceRemoval: boolean;1281 readonly asResourceRemoval: {1282 readonly nftId: u32;1283 readonly resourceId: u32;1284 } & Struct;1285 readonly isResourceAccepted: boolean;1286 readonly asResourceAccepted: {1287 readonly nftId: u32;1288 readonly resourceId: u32;1289 } & Struct;1290 readonly isResourceRemovalAccepted: boolean;1291 readonly asResourceRemovalAccepted: {1292 readonly nftId: u32;1293 readonly resourceId: u32;1294 } & Struct;1295 readonly isPrioritySet: boolean;1296 readonly asPrioritySet: {1297 readonly collectionId: u32;1298 readonly nftId: u32;1299 } & Struct;1300 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1301 }13021303 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (101) */1304 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1305 readonly isAccountId: boolean;1306 readonly asAccountId: AccountId32;1307 readonly isCollectionAndNftTuple: boolean;1308 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;1309 readonly type: 'AccountId' | 'CollectionAndNftTuple';1310 }13111312 /** @name PalletRmrkEquipEvent (105) */1313 interface PalletRmrkEquipEvent extends Enum {1314 readonly isBaseCreated: boolean;1315 readonly asBaseCreated: {1316 readonly issuer: AccountId32;1317 readonly baseId: u32;1318 } & Struct;1319 readonly isEquippablesUpdated: boolean;1320 readonly asEquippablesUpdated: {1321 readonly baseId: u32;1322 readonly slotId: u32;1323 } & Struct;1324 readonly type: 'BaseCreated' | 'EquippablesUpdated';1325 }13261327 /** @name PalletAppPromotionEvent (106) */1328 interface PalletAppPromotionEvent extends Enum {1329 readonly isStakingRecalculation: boolean;1330 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1331 readonly isStake: boolean;1332 readonly asStake: ITuple<[AccountId32, u128]>;1333 readonly isUnstake: boolean;1334 readonly asUnstake: ITuple<[AccountId32, u128]>;1335 readonly isSetAdmin: boolean;1336 readonly asSetAdmin: AccountId32;1337 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1338 }13391340 /** @name PalletForeignAssetsModuleEvent (107) */1341 interface PalletForeignAssetsModuleEvent extends Enum {1342 readonly isForeignAssetRegistered: boolean;1343 readonly asForeignAssetRegistered: {1344 readonly assetId: u32;1345 readonly assetAddress: XcmV1MultiLocation;1346 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1347 } & Struct;1348 readonly isForeignAssetUpdated: boolean;1349 readonly asForeignAssetUpdated: {1350 readonly assetId: u32;1351 readonly assetAddress: XcmV1MultiLocation;1352 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1353 } & Struct;1354 readonly isAssetRegistered: boolean;1355 readonly asAssetRegistered: {1356 readonly assetId: PalletForeignAssetsAssetIds;1357 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1358 } & Struct;1359 readonly isAssetUpdated: boolean;1360 readonly asAssetUpdated: {1361 readonly assetId: PalletForeignAssetsAssetIds;1362 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1363 } & Struct;1364 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1365 }13661367 /** @name PalletForeignAssetsModuleAssetMetadata (108) */1368 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1369 readonly name: Bytes;1370 readonly symbol: Bytes;1371 readonly decimals: u8;1372 readonly minimalBalance: u128;1373 }13741375 /** @name PalletEvmEvent (109) */1376 interface PalletEvmEvent extends Enum {1377 readonly isLog: boolean;1378 readonly asLog: {1379 readonly log: EthereumLog;1380 } & Struct;1381 readonly isCreated: boolean;1382 readonly asCreated: {1383 readonly address: H160;1384 } & Struct;1385 readonly isCreatedFailed: boolean;1386 readonly asCreatedFailed: {1387 readonly address: H160;1388 } & Struct;1389 readonly isExecuted: boolean;1390 readonly asExecuted: {1391 readonly address: H160;1392 } & Struct;1393 readonly isExecutedFailed: boolean;1394 readonly asExecutedFailed: {1395 readonly address: H160;1396 } & Struct;1397 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1398 }13991400 /** @name EthereumLog (110) */1401 interface EthereumLog extends Struct {1402 readonly address: H160;1403 readonly topics: Vec<H256>;1404 readonly data: Bytes;1405 }14061407 /** @name PalletEthereumEvent (112) */1408 interface PalletEthereumEvent extends Enum {1409 readonly isExecuted: boolean;1410 readonly asExecuted: {1411 readonly from: H160;1412 readonly to: H160;1413 readonly transactionHash: H256;1414 readonly exitReason: EvmCoreErrorExitReason;1415 } & Struct;1416 readonly type: 'Executed';1417 }14181419 /** @name EvmCoreErrorExitReason (113) */1420 interface EvmCoreErrorExitReason extends Enum {1421 readonly isSucceed: boolean;1422 readonly asSucceed: EvmCoreErrorExitSucceed;1423 readonly isError: boolean;1424 readonly asError: EvmCoreErrorExitError;1425 readonly isRevert: boolean;1426 readonly asRevert: EvmCoreErrorExitRevert;1427 readonly isFatal: boolean;1428 readonly asFatal: EvmCoreErrorExitFatal;1429 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1430 }14311432 /** @name EvmCoreErrorExitSucceed (114) */1433 interface EvmCoreErrorExitSucceed extends Enum {1434 readonly isStopped: boolean;1435 readonly isReturned: boolean;1436 readonly isSuicided: boolean;1437 readonly type: 'Stopped' | 'Returned' | 'Suicided';1438 }14391440 /** @name EvmCoreErrorExitError (115) */1441 interface EvmCoreErrorExitError extends Enum {1442 readonly isStackUnderflow: boolean;1443 readonly isStackOverflow: boolean;1444 readonly isInvalidJump: boolean;1445 readonly isInvalidRange: boolean;1446 readonly isDesignatedInvalid: boolean;1447 readonly isCallTooDeep: boolean;1448 readonly isCreateCollision: boolean;1449 readonly isCreateContractLimit: boolean;1450 readonly isOutOfOffset: boolean;1451 readonly isOutOfGas: boolean;1452 readonly isOutOfFund: boolean;1453 readonly isPcUnderflow: boolean;1454 readonly isCreateEmpty: boolean;1455 readonly isOther: boolean;1456 readonly asOther: Text;1457 readonly isInvalidCode: boolean;1458 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1459 }14601461 /** @name EvmCoreErrorExitRevert (118) */1462 interface EvmCoreErrorExitRevert extends Enum {1463 readonly isReverted: boolean;1464 readonly type: 'Reverted';1465 }14661467 /** @name EvmCoreErrorExitFatal (119) */1468 interface EvmCoreErrorExitFatal extends Enum {1469 readonly isNotSupported: boolean;1470 readonly isUnhandledInterrupt: boolean;1471 readonly isCallErrorAsFatal: boolean;1472 readonly asCallErrorAsFatal: EvmCoreErrorExitError;1473 readonly isOther: boolean;1474 readonly asOther: Text;1475 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1476 }14771478 /** @name PalletEvmContractHelpersEvent (120) */1479 interface PalletEvmContractHelpersEvent extends Enum {1480 readonly isContractSponsorSet: boolean;1481 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1482 readonly isContractSponsorshipConfirmed: boolean;1483 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1484 readonly isContractSponsorRemoved: boolean;1485 readonly asContractSponsorRemoved: H160;1486 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1487 }14881489 /** @name PalletEvmMigrationEvent (121) */1490 interface PalletEvmMigrationEvent extends Enum {1491 readonly isTestEvent: boolean;1492 readonly type: 'TestEvent';1493 }14941495 /** @name PalletMaintenanceEvent (122) */1496 interface PalletMaintenanceEvent extends Enum {1497 readonly isMaintenanceEnabled: boolean;1498 readonly isMaintenanceDisabled: boolean;1499 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1500 }15011502 /** @name PalletTestUtilsEvent (123) */1503 interface PalletTestUtilsEvent extends Enum {1504 readonly isValueIsSet: boolean;1505 readonly isShouldRollback: boolean;1506 readonly isBatchCompleted: boolean;1507 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1508 }15091510 /** @name FrameSystemPhase (124) */1511 interface FrameSystemPhase extends Enum {1512 readonly isApplyExtrinsic: boolean;1513 readonly asApplyExtrinsic: u32;1514 readonly isFinalization: boolean;1515 readonly isInitialization: boolean;1516 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1517 }15181519 /** @name FrameSystemLastRuntimeUpgradeInfo (126) */1520 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1521 readonly specVersion: Compact<u32>;1522 readonly specName: Text;1523 }15241525 /** @name FrameSystemCall (127) */1526 interface FrameSystemCall extends Enum {1527 readonly isFillBlock: boolean;1528 readonly asFillBlock: {1529 readonly ratio: Perbill;1530 } & Struct;1531 readonly isRemark: boolean;1532 readonly asRemark: {1533 readonly remark: Bytes;1534 } & Struct;1535 readonly isSetHeapPages: boolean;1536 readonly asSetHeapPages: {1537 readonly pages: u64;1538 } & Struct;1539 readonly isSetCode: boolean;1540 readonly asSetCode: {1541 readonly code: Bytes;1542 } & Struct;1543 readonly isSetCodeWithoutChecks: boolean;1544 readonly asSetCodeWithoutChecks: {1545 readonly code: Bytes;1546 } & Struct;1547 readonly isSetStorage: boolean;1548 readonly asSetStorage: {1549 readonly items: Vec<ITuple<[Bytes, Bytes]>>;1550 } & Struct;1551 readonly isKillStorage: boolean;1552 readonly asKillStorage: {1553 readonly keys_: Vec<Bytes>;1554 } & Struct;1555 readonly isKillPrefix: boolean;1556 readonly asKillPrefix: {1557 readonly prefix: Bytes;1558 readonly subkeys: u32;1559 } & Struct;1560 readonly isRemarkWithEvent: boolean;1561 readonly asRemarkWithEvent: {1562 readonly remark: Bytes;1563 } & Struct;1564 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1565 }15661567 /** @name FrameSystemLimitsBlockWeights (132) */1568 interface FrameSystemLimitsBlockWeights extends Struct {1569 readonly baseBlock: SpWeightsWeightV2Weight;1570 readonly maxBlock: SpWeightsWeightV2Weight;1571 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1572 }15731574 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (133) */1575 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1576 readonly normal: FrameSystemLimitsWeightsPerClass;1577 readonly operational: FrameSystemLimitsWeightsPerClass;1578 readonly mandatory: FrameSystemLimitsWeightsPerClass;1579 }15801581 /** @name FrameSystemLimitsWeightsPerClass (134) */1582 interface FrameSystemLimitsWeightsPerClass extends Struct {1583 readonly baseExtrinsic: SpWeightsWeightV2Weight;1584 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1585 readonly maxTotal: Option<SpWeightsWeightV2Weight>;1586 readonly reserved: Option<SpWeightsWeightV2Weight>;1587 }15881589 /** @name FrameSystemLimitsBlockLength (136) */1590 interface FrameSystemLimitsBlockLength extends Struct {1591 readonly max: FrameSupportDispatchPerDispatchClassU32;1592 }15931594 /** @name FrameSupportDispatchPerDispatchClassU32 (137) */1595 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1596 readonly normal: u32;1597 readonly operational: u32;1598 readonly mandatory: u32;1599 }16001601 /** @name SpWeightsRuntimeDbWeight (138) */1602 interface SpWeightsRuntimeDbWeight extends Struct {1603 readonly read: u64;1604 readonly write: u64;1605 }16061607 /** @name SpVersionRuntimeVersion (139) */1608 interface SpVersionRuntimeVersion extends Struct {1609 readonly specName: Text;1610 readonly implName: Text;1611 readonly authoringVersion: u32;1612 readonly specVersion: u32;1613 readonly implVersion: u32;1614 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;1615 readonly transactionVersion: u32;1616 readonly stateVersion: u8;1617 }16181619 /** @name FrameSystemError (144) */1620 interface FrameSystemError extends Enum {1621 readonly isInvalidSpecName: boolean;1622 readonly isSpecVersionNeedsToIncrease: boolean;1623 readonly isFailedToExtractRuntimeVersion: boolean;1624 readonly isNonDefaultComposite: boolean;1625 readonly isNonZeroRefCount: boolean;1626 readonly isCallFiltered: boolean;1627 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1628 }16291630 /** @name PolkadotPrimitivesV2PersistedValidationData (145) */1631 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1632 readonly parentHead: Bytes;1633 readonly relayParentNumber: u32;1634 readonly relayParentStorageRoot: H256;1635 readonly maxPovSize: u32;1636 }16371638 /** @name PolkadotPrimitivesV2UpgradeRestriction (148) */1639 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1640 readonly isPresent: boolean;1641 readonly type: 'Present';1642 }16431644 /** @name SpTrieStorageProof (149) */1645 interface SpTrieStorageProof extends Struct {1646 readonly trieNodes: BTreeSet<Bytes>;1647 }16481649 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (151) */1650 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1651 readonly dmqMqcHead: H256;1652 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1653 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1654 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1655 }16561657 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (154) */1658 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1659 readonly maxCapacity: u32;1660 readonly maxTotalSize: u32;1661 readonly maxMessageSize: u32;1662 readonly msgCount: u32;1663 readonly totalSize: u32;1664 readonly mqcHead: Option<H256>;1665 }16661667 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (155) */1668 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1669 readonly maxCodeSize: u32;1670 readonly maxHeadDataSize: u32;1671 readonly maxUpwardQueueCount: u32;1672 readonly maxUpwardQueueSize: u32;1673 readonly maxUpwardMessageSize: u32;1674 readonly maxUpwardMessageNumPerCandidate: u32;1675 readonly hrmpMaxMessageNumPerCandidate: u32;1676 readonly validationUpgradeCooldown: u32;1677 readonly validationUpgradeDelay: u32;1678 }16791680 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (161) */1681 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1682 readonly recipient: u32;1683 readonly data: Bytes;1684 }16851686 /** @name CumulusPalletParachainSystemCall (162) */1687 interface CumulusPalletParachainSystemCall extends Enum {1688 readonly isSetValidationData: boolean;1689 readonly asSetValidationData: {1690 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;1691 } & Struct;1692 readonly isSudoSendUpwardMessage: boolean;1693 readonly asSudoSendUpwardMessage: {1694 readonly message: Bytes;1695 } & Struct;1696 readonly isAuthorizeUpgrade: boolean;1697 readonly asAuthorizeUpgrade: {1698 readonly codeHash: H256;1699 } & Struct;1700 readonly isEnactAuthorizedUpgrade: boolean;1701 readonly asEnactAuthorizedUpgrade: {1702 readonly code: Bytes;1703 } & Struct;1704 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1705 }17061707 /** @name CumulusPrimitivesParachainInherentParachainInherentData (163) */1708 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1709 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1710 readonly relayChainState: SpTrieStorageProof;1711 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1712 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1713 }17141715 /** @name PolkadotCorePrimitivesInboundDownwardMessage (165) */1716 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1717 readonly sentAt: u32;1718 readonly msg: Bytes;1719 }17201721 /** @name PolkadotCorePrimitivesInboundHrmpMessage (168) */1722 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1723 readonly sentAt: u32;1724 readonly data: Bytes;1725 }17261727 /** @name CumulusPalletParachainSystemError (171) */1728 interface CumulusPalletParachainSystemError extends Enum {1729 readonly isOverlappingUpgrades: boolean;1730 readonly isProhibitedByPolkadot: boolean;1731 readonly isTooBig: boolean;1732 readonly isValidationDataNotAvailable: boolean;1733 readonly isHostConfigurationNotAvailable: boolean;1734 readonly isNotScheduled: boolean;1735 readonly isNothingAuthorized: boolean;1736 readonly isUnauthorized: boolean;1737 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1738 }17391740 /** @name PalletBalancesBalanceLock (173) */1741 interface PalletBalancesBalanceLock extends Struct {1742 readonly id: U8aFixed;1743 readonly amount: u128;1744 readonly reasons: PalletBalancesReasons;1745 }17461747 /** @name PalletBalancesReasons (174) */1748 interface PalletBalancesReasons extends Enum {1749 readonly isFee: boolean;1750 readonly isMisc: boolean;1751 readonly isAll: boolean;1752 readonly type: 'Fee' | 'Misc' | 'All';1753 }17541755 /** @name PalletBalancesReserveData (177) */1756 interface PalletBalancesReserveData extends Struct {1757 readonly id: U8aFixed;1758 readonly amount: u128;1759 }17601761 /** @name PalletBalancesReleases (179) */1762 interface PalletBalancesReleases extends Enum {1763 readonly isV100: boolean;1764 readonly isV200: boolean;1765 readonly type: 'V100' | 'V200';1766 }17671768 /** @name PalletBalancesCall (180) */1769 interface PalletBalancesCall extends Enum {1770 readonly isTransfer: boolean;1771 readonly asTransfer: {1772 readonly dest: MultiAddress;1773 readonly value: Compact<u128>;1774 } & Struct;1775 readonly isSetBalance: boolean;1776 readonly asSetBalance: {1777 readonly who: MultiAddress;1778 readonly newFree: Compact<u128>;1779 readonly newReserved: Compact<u128>;1780 } & Struct;1781 readonly isForceTransfer: boolean;1782 readonly asForceTransfer: {1783 readonly source: MultiAddress;1784 readonly dest: MultiAddress;1785 readonly value: Compact<u128>;1786 } & Struct;1787 readonly isTransferKeepAlive: boolean;1788 readonly asTransferKeepAlive: {1789 readonly dest: MultiAddress;1790 readonly value: Compact<u128>;1791 } & Struct;1792 readonly isTransferAll: boolean;1793 readonly asTransferAll: {1794 readonly dest: MultiAddress;1795 readonly keepAlive: bool;1796 } & Struct;1797 readonly isForceUnreserve: boolean;1798 readonly asForceUnreserve: {1799 readonly who: MultiAddress;1800 readonly amount: u128;1801 } & Struct;1802 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1803 }18041805 /** @name PalletBalancesError (183) */1806 interface PalletBalancesError extends Enum {1807 readonly isVestingBalance: boolean;1808 readonly isLiquidityRestrictions: boolean;1809 readonly isInsufficientBalance: boolean;1810 readonly isExistentialDeposit: boolean;1811 readonly isKeepAlive: boolean;1812 readonly isExistingVestingSchedule: boolean;1813 readonly isDeadAccount: boolean;1814 readonly isTooManyReserves: boolean;1815 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1816 }18171818 /** @name PalletTimestampCall (185) */1819 interface PalletTimestampCall extends Enum {1820 readonly isSet: boolean;1821 readonly asSet: {1822 readonly now: Compact<u64>;1823 } & Struct;1824 readonly type: 'Set';1825 }18261827 /** @name PalletTransactionPaymentReleases (187) */1828 interface PalletTransactionPaymentReleases extends Enum {1829 readonly isV1Ancient: boolean;1830 readonly isV2: boolean;1831 readonly type: 'V1Ancient' | 'V2';1832 }18331834 /** @name PalletTreasuryProposal (188) */1835 interface PalletTreasuryProposal extends Struct {1836 readonly proposer: AccountId32;1837 readonly value: u128;1838 readonly beneficiary: AccountId32;1839 readonly bond: u128;1840 }18411842 /** @name PalletTreasuryCall (191) */1843 interface PalletTreasuryCall extends Enum {1844 readonly isProposeSpend: boolean;1845 readonly asProposeSpend: {1846 readonly value: Compact<u128>;1847 readonly beneficiary: MultiAddress;1848 } & Struct;1849 readonly isRejectProposal: boolean;1850 readonly asRejectProposal: {1851 readonly proposalId: Compact<u32>;1852 } & Struct;1853 readonly isApproveProposal: boolean;1854 readonly asApproveProposal: {1855 readonly proposalId: Compact<u32>;1856 } & Struct;1857 readonly isSpend: boolean;1858 readonly asSpend: {1859 readonly amount: Compact<u128>;1860 readonly beneficiary: MultiAddress;1861 } & Struct;1862 readonly isRemoveApproval: boolean;1863 readonly asRemoveApproval: {1864 readonly proposalId: Compact<u32>;1865 } & Struct;1866 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1867 }18681869 /** @name FrameSupportPalletId (194) */1870 interface FrameSupportPalletId extends U8aFixed {}18711872 /** @name PalletTreasuryError (195) */1873 interface PalletTreasuryError extends Enum {1874 readonly isInsufficientProposersBalance: boolean;1875 readonly isInvalidIndex: boolean;1876 readonly isTooManyApprovals: boolean;1877 readonly isInsufficientPermission: boolean;1878 readonly isProposalNotApproved: boolean;1879 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1880 }18811882 /** @name PalletSudoCall (196) */1883 interface PalletSudoCall extends Enum {1884 readonly isSudo: boolean;1885 readonly asSudo: {1886 readonly call: Call;1887 } & Struct;1888 readonly isSudoUncheckedWeight: boolean;1889 readonly asSudoUncheckedWeight: {1890 readonly call: Call;1891 readonly weight: SpWeightsWeightV2Weight;1892 } & Struct;1893 readonly isSetKey: boolean;1894 readonly asSetKey: {1895 readonly new_: MultiAddress;1896 } & Struct;1897 readonly isSudoAs: boolean;1898 readonly asSudoAs: {1899 readonly who: MultiAddress;1900 readonly call: Call;1901 } & Struct;1902 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1903 }19041905 /** @name OrmlVestingModuleCall (198) */1906 interface OrmlVestingModuleCall extends Enum {1907 readonly isClaim: boolean;1908 readonly isVestedTransfer: boolean;1909 readonly asVestedTransfer: {1910 readonly dest: MultiAddress;1911 readonly schedule: OrmlVestingVestingSchedule;1912 } & Struct;1913 readonly isUpdateVestingSchedules: boolean;1914 readonly asUpdateVestingSchedules: {1915 readonly who: MultiAddress;1916 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;1917 } & Struct;1918 readonly isClaimFor: boolean;1919 readonly asClaimFor: {1920 readonly dest: MultiAddress;1921 } & Struct;1922 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1923 }19241925 /** @name OrmlXtokensModuleCall (200) */1926 interface OrmlXtokensModuleCall extends Enum {1927 readonly isTransfer: boolean;1928 readonly asTransfer: {1929 readonly currencyId: PalletForeignAssetsAssetIds;1930 readonly amount: u128;1931 readonly dest: XcmVersionedMultiLocation;1932 readonly destWeightLimit: XcmV2WeightLimit;1933 } & Struct;1934 readonly isTransferMultiasset: boolean;1935 readonly asTransferMultiasset: {1936 readonly asset: XcmVersionedMultiAsset;1937 readonly dest: XcmVersionedMultiLocation;1938 readonly destWeightLimit: XcmV2WeightLimit;1939 } & Struct;1940 readonly isTransferWithFee: boolean;1941 readonly asTransferWithFee: {1942 readonly currencyId: PalletForeignAssetsAssetIds;1943 readonly amount: u128;1944 readonly fee: u128;1945 readonly dest: XcmVersionedMultiLocation;1946 readonly destWeightLimit: XcmV2WeightLimit;1947 } & Struct;1948 readonly isTransferMultiassetWithFee: boolean;1949 readonly asTransferMultiassetWithFee: {1950 readonly asset: XcmVersionedMultiAsset;1951 readonly fee: XcmVersionedMultiAsset;1952 readonly dest: XcmVersionedMultiLocation;1953 readonly destWeightLimit: XcmV2WeightLimit;1954 } & Struct;1955 readonly isTransferMulticurrencies: boolean;1956 readonly asTransferMulticurrencies: {1957 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;1958 readonly feeItem: u32;1959 readonly dest: XcmVersionedMultiLocation;1960 readonly destWeightLimit: XcmV2WeightLimit;1961 } & Struct;1962 readonly isTransferMultiassets: boolean;1963 readonly asTransferMultiassets: {1964 readonly assets: XcmVersionedMultiAssets;1965 readonly feeItem: u32;1966 readonly dest: XcmVersionedMultiLocation;1967 readonly destWeightLimit: XcmV2WeightLimit;1968 } & Struct;1969 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1970 }19711972 /** @name XcmVersionedMultiAsset (201) */1973 interface XcmVersionedMultiAsset extends Enum {1974 readonly isV0: boolean;1975 readonly asV0: XcmV0MultiAsset;1976 readonly isV1: boolean;1977 readonly asV1: XcmV1MultiAsset;1978 readonly type: 'V0' | 'V1';1979 }19801981 /** @name OrmlTokensModuleCall (204) */1982 interface OrmlTokensModuleCall extends Enum {1983 readonly isTransfer: boolean;1984 readonly asTransfer: {1985 readonly dest: MultiAddress;1986 readonly currencyId: PalletForeignAssetsAssetIds;1987 readonly amount: Compact<u128>;1988 } & Struct;1989 readonly isTransferAll: boolean;1990 readonly asTransferAll: {1991 readonly dest: MultiAddress;1992 readonly currencyId: PalletForeignAssetsAssetIds;1993 readonly keepAlive: bool;1994 } & Struct;1995 readonly isTransferKeepAlive: boolean;1996 readonly asTransferKeepAlive: {1997 readonly dest: MultiAddress;1998 readonly currencyId: PalletForeignAssetsAssetIds;1999 readonly amount: Compact<u128>;2000 } & Struct;2001 readonly isForceTransfer: boolean;2002 readonly asForceTransfer: {2003 readonly source: MultiAddress;2004 readonly dest: MultiAddress;2005 readonly currencyId: PalletForeignAssetsAssetIds;2006 readonly amount: Compact<u128>;2007 } & Struct;2008 readonly isSetBalance: boolean;2009 readonly asSetBalance: {2010 readonly who: MultiAddress;2011 readonly currencyId: PalletForeignAssetsAssetIds;2012 readonly newFree: Compact<u128>;2013 readonly newReserved: Compact<u128>;2014 } & Struct;2015 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';2016 }20172018 /** @name CumulusPalletXcmpQueueCall (205) */2019 interface CumulusPalletXcmpQueueCall extends Enum {2020 readonly isServiceOverweight: boolean;2021 readonly asServiceOverweight: {2022 readonly index: u64;2023 readonly weightLimit: u64;2024 } & Struct;2025 readonly isSuspendXcmExecution: boolean;2026 readonly isResumeXcmExecution: boolean;2027 readonly isUpdateSuspendThreshold: boolean;2028 readonly asUpdateSuspendThreshold: {2029 readonly new_: u32;2030 } & Struct;2031 readonly isUpdateDropThreshold: boolean;2032 readonly asUpdateDropThreshold: {2033 readonly new_: u32;2034 } & Struct;2035 readonly isUpdateResumeThreshold: boolean;2036 readonly asUpdateResumeThreshold: {2037 readonly new_: u32;2038 } & Struct;2039 readonly isUpdateThresholdWeight: boolean;2040 readonly asUpdateThresholdWeight: {2041 readonly new_: u64;2042 } & Struct;2043 readonly isUpdateWeightRestrictDecay: boolean;2044 readonly asUpdateWeightRestrictDecay: {2045 readonly new_: u64;2046 } & Struct;2047 readonly isUpdateXcmpMaxIndividualWeight: boolean;2048 readonly asUpdateXcmpMaxIndividualWeight: {2049 readonly new_: u64;2050 } & Struct;2051 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2052 }20532054 /** @name PalletXcmCall (206) */2055 interface PalletXcmCall extends Enum {2056 readonly isSend: boolean;2057 readonly asSend: {2058 readonly dest: XcmVersionedMultiLocation;2059 readonly message: XcmVersionedXcm;2060 } & Struct;2061 readonly isTeleportAssets: boolean;2062 readonly asTeleportAssets: {2063 readonly dest: XcmVersionedMultiLocation;2064 readonly beneficiary: XcmVersionedMultiLocation;2065 readonly assets: XcmVersionedMultiAssets;2066 readonly feeAssetItem: u32;2067 } & Struct;2068 readonly isReserveTransferAssets: boolean;2069 readonly asReserveTransferAssets: {2070 readonly dest: XcmVersionedMultiLocation;2071 readonly beneficiary: XcmVersionedMultiLocation;2072 readonly assets: XcmVersionedMultiAssets;2073 readonly feeAssetItem: u32;2074 } & Struct;2075 readonly isExecute: boolean;2076 readonly asExecute: {2077 readonly message: XcmVersionedXcm;2078 readonly maxWeight: u64;2079 } & Struct;2080 readonly isForceXcmVersion: boolean;2081 readonly asForceXcmVersion: {2082 readonly location: XcmV1MultiLocation;2083 readonly xcmVersion: u32;2084 } & Struct;2085 readonly isForceDefaultXcmVersion: boolean;2086 readonly asForceDefaultXcmVersion: {2087 readonly maybeXcmVersion: Option<u32>;2088 } & Struct;2089 readonly isForceSubscribeVersionNotify: boolean;2090 readonly asForceSubscribeVersionNotify: {2091 readonly location: XcmVersionedMultiLocation;2092 } & Struct;2093 readonly isForceUnsubscribeVersionNotify: boolean;2094 readonly asForceUnsubscribeVersionNotify: {2095 readonly location: XcmVersionedMultiLocation;2096 } & Struct;2097 readonly isLimitedReserveTransferAssets: boolean;2098 readonly asLimitedReserveTransferAssets: {2099 readonly dest: XcmVersionedMultiLocation;2100 readonly beneficiary: XcmVersionedMultiLocation;2101 readonly assets: XcmVersionedMultiAssets;2102 readonly feeAssetItem: u32;2103 readonly weightLimit: XcmV2WeightLimit;2104 } & Struct;2105 readonly isLimitedTeleportAssets: boolean;2106 readonly asLimitedTeleportAssets: {2107 readonly dest: XcmVersionedMultiLocation;2108 readonly beneficiary: XcmVersionedMultiLocation;2109 readonly assets: XcmVersionedMultiAssets;2110 readonly feeAssetItem: u32;2111 readonly weightLimit: XcmV2WeightLimit;2112 } & Struct;2113 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2114 }21152116 /** @name XcmVersionedXcm (207) */2117 interface XcmVersionedXcm extends Enum {2118 readonly isV0: boolean;2119 readonly asV0: XcmV0Xcm;2120 readonly isV1: boolean;2121 readonly asV1: XcmV1Xcm;2122 readonly isV2: boolean;2123 readonly asV2: XcmV2Xcm;2124 readonly type: 'V0' | 'V1' | 'V2';2125 }21262127 /** @name XcmV0Xcm (208) */2128 interface XcmV0Xcm extends Enum {2129 readonly isWithdrawAsset: boolean;2130 readonly asWithdrawAsset: {2131 readonly assets: Vec<XcmV0MultiAsset>;2132 readonly effects: Vec<XcmV0Order>;2133 } & Struct;2134 readonly isReserveAssetDeposit: boolean;2135 readonly asReserveAssetDeposit: {2136 readonly assets: Vec<XcmV0MultiAsset>;2137 readonly effects: Vec<XcmV0Order>;2138 } & Struct;2139 readonly isTeleportAsset: boolean;2140 readonly asTeleportAsset: {2141 readonly assets: Vec<XcmV0MultiAsset>;2142 readonly effects: Vec<XcmV0Order>;2143 } & Struct;2144 readonly isQueryResponse: boolean;2145 readonly asQueryResponse: {2146 readonly queryId: Compact<u64>;2147 readonly response: XcmV0Response;2148 } & Struct;2149 readonly isTransferAsset: boolean;2150 readonly asTransferAsset: {2151 readonly assets: Vec<XcmV0MultiAsset>;2152 readonly dest: XcmV0MultiLocation;2153 } & Struct;2154 readonly isTransferReserveAsset: boolean;2155 readonly asTransferReserveAsset: {2156 readonly assets: Vec<XcmV0MultiAsset>;2157 readonly dest: XcmV0MultiLocation;2158 readonly effects: Vec<XcmV0Order>;2159 } & Struct;2160 readonly isTransact: boolean;2161 readonly asTransact: {2162 readonly originType: XcmV0OriginKind;2163 readonly requireWeightAtMost: u64;2164 readonly call: XcmDoubleEncoded;2165 } & Struct;2166 readonly isHrmpNewChannelOpenRequest: boolean;2167 readonly asHrmpNewChannelOpenRequest: {2168 readonly sender: Compact<u32>;2169 readonly maxMessageSize: Compact<u32>;2170 readonly maxCapacity: Compact<u32>;2171 } & Struct;2172 readonly isHrmpChannelAccepted: boolean;2173 readonly asHrmpChannelAccepted: {2174 readonly recipient: Compact<u32>;2175 } & Struct;2176 readonly isHrmpChannelClosing: boolean;2177 readonly asHrmpChannelClosing: {2178 readonly initiator: Compact<u32>;2179 readonly sender: Compact<u32>;2180 readonly recipient: Compact<u32>;2181 } & Struct;2182 readonly isRelayedFrom: boolean;2183 readonly asRelayedFrom: {2184 readonly who: XcmV0MultiLocation;2185 readonly message: XcmV0Xcm;2186 } & Struct;2187 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2188 }21892190 /** @name XcmV0Order (210) */2191 interface XcmV0Order extends Enum {2192 readonly isNull: boolean;2193 readonly isDepositAsset: boolean;2194 readonly asDepositAsset: {2195 readonly assets: Vec<XcmV0MultiAsset>;2196 readonly dest: XcmV0MultiLocation;2197 } & Struct;2198 readonly isDepositReserveAsset: boolean;2199 readonly asDepositReserveAsset: {2200 readonly assets: Vec<XcmV0MultiAsset>;2201 readonly dest: XcmV0MultiLocation;2202 readonly effects: Vec<XcmV0Order>;2203 } & Struct;2204 readonly isExchangeAsset: boolean;2205 readonly asExchangeAsset: {2206 readonly give: Vec<XcmV0MultiAsset>;2207 readonly receive: Vec<XcmV0MultiAsset>;2208 } & Struct;2209 readonly isInitiateReserveWithdraw: boolean;2210 readonly asInitiateReserveWithdraw: {2211 readonly assets: Vec<XcmV0MultiAsset>;2212 readonly reserve: XcmV0MultiLocation;2213 readonly effects: Vec<XcmV0Order>;2214 } & Struct;2215 readonly isInitiateTeleport: boolean;2216 readonly asInitiateTeleport: {2217 readonly assets: Vec<XcmV0MultiAsset>;2218 readonly dest: XcmV0MultiLocation;2219 readonly effects: Vec<XcmV0Order>;2220 } & Struct;2221 readonly isQueryHolding: boolean;2222 readonly asQueryHolding: {2223 readonly queryId: Compact<u64>;2224 readonly dest: XcmV0MultiLocation;2225 readonly assets: Vec<XcmV0MultiAsset>;2226 } & Struct;2227 readonly isBuyExecution: boolean;2228 readonly asBuyExecution: {2229 readonly fees: XcmV0MultiAsset;2230 readonly weight: u64;2231 readonly debt: u64;2232 readonly haltOnError: bool;2233 readonly xcm: Vec<XcmV0Xcm>;2234 } & Struct;2235 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2236 }22372238 /** @name XcmV0Response (212) */2239 interface XcmV0Response extends Enum {2240 readonly isAssets: boolean;2241 readonly asAssets: Vec<XcmV0MultiAsset>;2242 readonly type: 'Assets';2243 }22442245 /** @name XcmV1Xcm (213) */2246 interface XcmV1Xcm extends Enum {2247 readonly isWithdrawAsset: boolean;2248 readonly asWithdrawAsset: {2249 readonly assets: XcmV1MultiassetMultiAssets;2250 readonly effects: Vec<XcmV1Order>;2251 } & Struct;2252 readonly isReserveAssetDeposited: boolean;2253 readonly asReserveAssetDeposited: {2254 readonly assets: XcmV1MultiassetMultiAssets;2255 readonly effects: Vec<XcmV1Order>;2256 } & Struct;2257 readonly isReceiveTeleportedAsset: boolean;2258 readonly asReceiveTeleportedAsset: {2259 readonly assets: XcmV1MultiassetMultiAssets;2260 readonly effects: Vec<XcmV1Order>;2261 } & Struct;2262 readonly isQueryResponse: boolean;2263 readonly asQueryResponse: {2264 readonly queryId: Compact<u64>;2265 readonly response: XcmV1Response;2266 } & Struct;2267 readonly isTransferAsset: boolean;2268 readonly asTransferAsset: {2269 readonly assets: XcmV1MultiassetMultiAssets;2270 readonly beneficiary: XcmV1MultiLocation;2271 } & Struct;2272 readonly isTransferReserveAsset: boolean;2273 readonly asTransferReserveAsset: {2274 readonly assets: XcmV1MultiassetMultiAssets;2275 readonly dest: XcmV1MultiLocation;2276 readonly effects: Vec<XcmV1Order>;2277 } & Struct;2278 readonly isTransact: boolean;2279 readonly asTransact: {2280 readonly originType: XcmV0OriginKind;2281 readonly requireWeightAtMost: u64;2282 readonly call: XcmDoubleEncoded;2283 } & Struct;2284 readonly isHrmpNewChannelOpenRequest: boolean;2285 readonly asHrmpNewChannelOpenRequest: {2286 readonly sender: Compact<u32>;2287 readonly maxMessageSize: Compact<u32>;2288 readonly maxCapacity: Compact<u32>;2289 } & Struct;2290 readonly isHrmpChannelAccepted: boolean;2291 readonly asHrmpChannelAccepted: {2292 readonly recipient: Compact<u32>;2293 } & Struct;2294 readonly isHrmpChannelClosing: boolean;2295 readonly asHrmpChannelClosing: {2296 readonly initiator: Compact<u32>;2297 readonly sender: Compact<u32>;2298 readonly recipient: Compact<u32>;2299 } & Struct;2300 readonly isRelayedFrom: boolean;2301 readonly asRelayedFrom: {2302 readonly who: XcmV1MultilocationJunctions;2303 readonly message: XcmV1Xcm;2304 } & Struct;2305 readonly isSubscribeVersion: boolean;2306 readonly asSubscribeVersion: {2307 readonly queryId: Compact<u64>;2308 readonly maxResponseWeight: Compact<u64>;2309 } & Struct;2310 readonly isUnsubscribeVersion: boolean;2311 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2312 }23132314 /** @name XcmV1Order (215) */2315 interface XcmV1Order extends Enum {2316 readonly isNoop: boolean;2317 readonly isDepositAsset: boolean;2318 readonly asDepositAsset: {2319 readonly assets: XcmV1MultiassetMultiAssetFilter;2320 readonly maxAssets: u32;2321 readonly beneficiary: XcmV1MultiLocation;2322 } & Struct;2323 readonly isDepositReserveAsset: boolean;2324 readonly asDepositReserveAsset: {2325 readonly assets: XcmV1MultiassetMultiAssetFilter;2326 readonly maxAssets: u32;2327 readonly dest: XcmV1MultiLocation;2328 readonly effects: Vec<XcmV1Order>;2329 } & Struct;2330 readonly isExchangeAsset: boolean;2331 readonly asExchangeAsset: {2332 readonly give: XcmV1MultiassetMultiAssetFilter;2333 readonly receive: XcmV1MultiassetMultiAssets;2334 } & Struct;2335 readonly isInitiateReserveWithdraw: boolean;2336 readonly asInitiateReserveWithdraw: {2337 readonly assets: XcmV1MultiassetMultiAssetFilter;2338 readonly reserve: XcmV1MultiLocation;2339 readonly effects: Vec<XcmV1Order>;2340 } & Struct;2341 readonly isInitiateTeleport: boolean;2342 readonly asInitiateTeleport: {2343 readonly assets: XcmV1MultiassetMultiAssetFilter;2344 readonly dest: XcmV1MultiLocation;2345 readonly effects: Vec<XcmV1Order>;2346 } & Struct;2347 readonly isQueryHolding: boolean;2348 readonly asQueryHolding: {2349 readonly queryId: Compact<u64>;2350 readonly dest: XcmV1MultiLocation;2351 readonly assets: XcmV1MultiassetMultiAssetFilter;2352 } & Struct;2353 readonly isBuyExecution: boolean;2354 readonly asBuyExecution: {2355 readonly fees: XcmV1MultiAsset;2356 readonly weight: u64;2357 readonly debt: u64;2358 readonly haltOnError: bool;2359 readonly instructions: Vec<XcmV1Xcm>;2360 } & Struct;2361 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2362 }23632364 /** @name XcmV1Response (217) */2365 interface XcmV1Response extends Enum {2366 readonly isAssets: boolean;2367 readonly asAssets: XcmV1MultiassetMultiAssets;2368 readonly isVersion: boolean;2369 readonly asVersion: u32;2370 readonly type: 'Assets' | 'Version';2371 }23722373 /** @name CumulusPalletXcmCall (231) */2374 type CumulusPalletXcmCall = Null;23752376 /** @name CumulusPalletDmpQueueCall (232) */2377 interface CumulusPalletDmpQueueCall extends Enum {2378 readonly isServiceOverweight: boolean;2379 readonly asServiceOverweight: {2380 readonly index: u64;2381 readonly weightLimit: u64;2382 } & Struct;2383 readonly type: 'ServiceOverweight';2384 }23852386 /** @name PalletInflationCall (233) */2387 interface PalletInflationCall extends Enum {2388 readonly isStartInflation: boolean;2389 readonly asStartInflation: {2390 readonly inflationStartRelayBlock: u32;2391 } & Struct;2392 readonly type: 'StartInflation';2393 }23942395 /** @name PalletUniqueCall (234) */2396 interface PalletUniqueCall extends Enum {2397 readonly isCreateCollection: boolean;2398 readonly asCreateCollection: {2399 readonly collectionName: Vec<u16>;2400 readonly collectionDescription: Vec<u16>;2401 readonly tokenPrefix: Bytes;2402 readonly mode: UpDataStructsCollectionMode;2403 } & Struct;2404 readonly isCreateCollectionEx: boolean;2405 readonly asCreateCollectionEx: {2406 readonly data: UpDataStructsCreateCollectionData;2407 } & Struct;2408 readonly isDestroyCollection: boolean;2409 readonly asDestroyCollection: {2410 readonly collectionId: u32;2411 } & Struct;2412 readonly isAddToAllowList: boolean;2413 readonly asAddToAllowList: {2414 readonly collectionId: u32;2415 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2416 } & Struct;2417 readonly isRemoveFromAllowList: boolean;2418 readonly asRemoveFromAllowList: {2419 readonly collectionId: u32;2420 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2421 } & Struct;2422 readonly isChangeCollectionOwner: boolean;2423 readonly asChangeCollectionOwner: {2424 readonly collectionId: u32;2425 readonly newOwner: AccountId32;2426 } & Struct;2427 readonly isAddCollectionAdmin: boolean;2428 readonly asAddCollectionAdmin: {2429 readonly collectionId: u32;2430 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2431 } & Struct;2432 readonly isRemoveCollectionAdmin: boolean;2433 readonly asRemoveCollectionAdmin: {2434 readonly collectionId: u32;2435 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2436 } & Struct;2437 readonly isSetCollectionSponsor: boolean;2438 readonly asSetCollectionSponsor: {2439 readonly collectionId: u32;2440 readonly newSponsor: AccountId32;2441 } & Struct;2442 readonly isConfirmSponsorship: boolean;2443 readonly asConfirmSponsorship: {2444 readonly collectionId: u32;2445 } & Struct;2446 readonly isRemoveCollectionSponsor: boolean;2447 readonly asRemoveCollectionSponsor: {2448 readonly collectionId: u32;2449 } & Struct;2450 readonly isCreateItem: boolean;2451 readonly asCreateItem: {2452 readonly collectionId: u32;2453 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2454 readonly data: UpDataStructsCreateItemData;2455 } & Struct;2456 readonly isCreateMultipleItems: boolean;2457 readonly asCreateMultipleItems: {2458 readonly collectionId: u32;2459 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2460 readonly itemsData: Vec<UpDataStructsCreateItemData>;2461 } & Struct;2462 readonly isSetCollectionProperties: boolean;2463 readonly asSetCollectionProperties: {2464 readonly collectionId: u32;2465 readonly properties: Vec<UpDataStructsProperty>;2466 } & Struct;2467 readonly isDeleteCollectionProperties: boolean;2468 readonly asDeleteCollectionProperties: {2469 readonly collectionId: u32;2470 readonly propertyKeys: Vec<Bytes>;2471 } & Struct;2472 readonly isSetTokenProperties: boolean;2473 readonly asSetTokenProperties: {2474 readonly collectionId: u32;2475 readonly tokenId: u32;2476 readonly properties: Vec<UpDataStructsProperty>;2477 } & Struct;2478 readonly isDeleteTokenProperties: boolean;2479 readonly asDeleteTokenProperties: {2480 readonly collectionId: u32;2481 readonly tokenId: u32;2482 readonly propertyKeys: Vec<Bytes>;2483 } & Struct;2484 readonly isSetTokenPropertyPermissions: boolean;2485 readonly asSetTokenPropertyPermissions: {2486 readonly collectionId: u32;2487 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2488 } & Struct;2489 readonly isCreateMultipleItemsEx: boolean;2490 readonly asCreateMultipleItemsEx: {2491 readonly collectionId: u32;2492 readonly data: UpDataStructsCreateItemExData;2493 } & Struct;2494 readonly isSetTransfersEnabledFlag: boolean;2495 readonly asSetTransfersEnabledFlag: {2496 readonly collectionId: u32;2497 readonly value: bool;2498 } & Struct;2499 readonly isBurnItem: boolean;2500 readonly asBurnItem: {2501 readonly collectionId: u32;2502 readonly itemId: u32;2503 readonly value: u128;2504 } & Struct;2505 readonly isBurnFrom: boolean;2506 readonly asBurnFrom: {2507 readonly collectionId: u32;2508 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2509 readonly itemId: u32;2510 readonly value: u128;2511 } & Struct;2512 readonly isTransfer: boolean;2513 readonly asTransfer: {2514 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2515 readonly collectionId: u32;2516 readonly itemId: u32;2517 readonly value: u128;2518 } & Struct;2519 readonly isApprove: boolean;2520 readonly asApprove: {2521 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2522 readonly collectionId: u32;2523 readonly itemId: u32;2524 readonly amount: u128;2525 } & Struct;2526 readonly isTransferFrom: boolean;2527 readonly asTransferFrom: {2528 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2529 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2530 readonly collectionId: u32;2531 readonly itemId: u32;2532 readonly value: u128;2533 } & Struct;2534 readonly isSetCollectionLimits: boolean;2535 readonly asSetCollectionLimits: {2536 readonly collectionId: u32;2537 readonly newLimit: UpDataStructsCollectionLimits;2538 } & Struct;2539 readonly isSetCollectionPermissions: boolean;2540 readonly asSetCollectionPermissions: {2541 readonly collectionId: u32;2542 readonly newPermission: UpDataStructsCollectionPermissions;2543 } & Struct;2544 readonly isRepartition: boolean;2545 readonly asRepartition: {2546 readonly collectionId: u32;2547 readonly tokenId: u32;2548 readonly amount: u128;2549 } & Struct;2550 readonly isSetAllowanceForAll: boolean;2551 readonly asSetAllowanceForAll: {2552 readonly collectionId: u32;2553 readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2554 readonly approve: bool;2555 } & Struct;2556 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' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll';2557 }25582559 /** @name UpDataStructsCollectionMode (239) */2560 interface UpDataStructsCollectionMode extends Enum {2561 readonly isNft: boolean;2562 readonly isFungible: boolean;2563 readonly asFungible: u8;2564 readonly isReFungible: boolean;2565 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2566 }25672568 /** @name UpDataStructsCreateCollectionData (240) */2569 interface UpDataStructsCreateCollectionData extends Struct {2570 readonly mode: UpDataStructsCollectionMode;2571 readonly access: Option<UpDataStructsAccessMode>;2572 readonly name: Vec<u16>;2573 readonly description: Vec<u16>;2574 readonly tokenPrefix: Bytes;2575 readonly pendingSponsor: Option<AccountId32>;2576 readonly limits: Option<UpDataStructsCollectionLimits>;2577 readonly permissions: Option<UpDataStructsCollectionPermissions>;2578 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2579 readonly properties: Vec<UpDataStructsProperty>;2580 }25812582 /** @name UpDataStructsAccessMode (242) */2583 interface UpDataStructsAccessMode extends Enum {2584 readonly isNormal: boolean;2585 readonly isAllowList: boolean;2586 readonly type: 'Normal' | 'AllowList';2587 }25882589 /** @name UpDataStructsCollectionLimits (244) */2590 interface UpDataStructsCollectionLimits extends Struct {2591 readonly accountTokenOwnershipLimit: Option<u32>;2592 readonly sponsoredDataSize: Option<u32>;2593 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2594 readonly tokenLimit: Option<u32>;2595 readonly sponsorTransferTimeout: Option<u32>;2596 readonly sponsorApproveTimeout: Option<u32>;2597 readonly ownerCanTransfer: Option<bool>;2598 readonly ownerCanDestroy: Option<bool>;2599 readonly transfersEnabled: Option<bool>;2600 }26012602 /** @name UpDataStructsSponsoringRateLimit (246) */2603 interface UpDataStructsSponsoringRateLimit extends Enum {2604 readonly isSponsoringDisabled: boolean;2605 readonly isBlocks: boolean;2606 readonly asBlocks: u32;2607 readonly type: 'SponsoringDisabled' | 'Blocks';2608 }26092610 /** @name UpDataStructsCollectionPermissions (249) */2611 interface UpDataStructsCollectionPermissions extends Struct {2612 readonly access: Option<UpDataStructsAccessMode>;2613 readonly mintMode: Option<bool>;2614 readonly nesting: Option<UpDataStructsNestingPermissions>;2615 }26162617 /** @name UpDataStructsNestingPermissions (251) */2618 interface UpDataStructsNestingPermissions extends Struct {2619 readonly tokenOwner: bool;2620 readonly collectionAdmin: bool;2621 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2622 }26232624 /** @name UpDataStructsOwnerRestrictedSet (253) */2625 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}26262627 /** @name UpDataStructsPropertyKeyPermission (258) */2628 interface UpDataStructsPropertyKeyPermission extends Struct {2629 readonly key: Bytes;2630 readonly permission: UpDataStructsPropertyPermission;2631 }26322633 /** @name UpDataStructsPropertyPermission (259) */2634 interface UpDataStructsPropertyPermission extends Struct {2635 readonly mutable: bool;2636 readonly collectionAdmin: bool;2637 readonly tokenOwner: bool;2638 }26392640 /** @name UpDataStructsProperty (262) */2641 interface UpDataStructsProperty extends Struct {2642 readonly key: Bytes;2643 readonly value: Bytes;2644 }26452646 /** @name UpDataStructsCreateItemData (265) */2647 interface UpDataStructsCreateItemData extends Enum {2648 readonly isNft: boolean;2649 readonly asNft: UpDataStructsCreateNftData;2650 readonly isFungible: boolean;2651 readonly asFungible: UpDataStructsCreateFungibleData;2652 readonly isReFungible: boolean;2653 readonly asReFungible: UpDataStructsCreateReFungibleData;2654 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2655 }26562657 /** @name UpDataStructsCreateNftData (266) */2658 interface UpDataStructsCreateNftData extends Struct {2659 readonly properties: Vec<UpDataStructsProperty>;2660 }26612662 /** @name UpDataStructsCreateFungibleData (267) */2663 interface UpDataStructsCreateFungibleData extends Struct {2664 readonly value: u128;2665 }26662667 /** @name UpDataStructsCreateReFungibleData (268) */2668 interface UpDataStructsCreateReFungibleData extends Struct {2669 readonly pieces: u128;2670 readonly properties: Vec<UpDataStructsProperty>;2671 }26722673 /** @name UpDataStructsCreateItemExData (271) */2674 interface UpDataStructsCreateItemExData extends Enum {2675 readonly isNft: boolean;2676 readonly asNft: Vec<UpDataStructsCreateNftExData>;2677 readonly isFungible: boolean;2678 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2679 readonly isRefungibleMultipleItems: boolean;2680 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;2681 readonly isRefungibleMultipleOwners: boolean;2682 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;2683 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2684 }26852686 /** @name UpDataStructsCreateNftExData (273) */2687 interface UpDataStructsCreateNftExData extends Struct {2688 readonly properties: Vec<UpDataStructsProperty>;2689 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2690 }26912692 /** @name UpDataStructsCreateRefungibleExSingleOwner (280) */2693 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2694 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2695 readonly pieces: u128;2696 readonly properties: Vec<UpDataStructsProperty>;2697 }26982699 /** @name UpDataStructsCreateRefungibleExMultipleOwners (282) */2700 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2701 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2702 readonly properties: Vec<UpDataStructsProperty>;2703 }27042705 /** @name PalletUniqueSchedulerV2Call (283) */2706 interface PalletUniqueSchedulerV2Call extends Enum {2707 readonly isSchedule: boolean;2708 readonly asSchedule: {2709 readonly when: u32;2710 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2711 readonly priority: Option<u8>;2712 readonly call: Call;2713 } & Struct;2714 readonly isCancel: boolean;2715 readonly asCancel: {2716 readonly when: u32;2717 readonly index: u32;2718 } & Struct;2719 readonly isScheduleNamed: boolean;2720 readonly asScheduleNamed: {2721 readonly id: U8aFixed;2722 readonly when: u32;2723 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2724 readonly priority: Option<u8>;2725 readonly call: Call;2726 } & Struct;2727 readonly isCancelNamed: boolean;2728 readonly asCancelNamed: {2729 readonly id: U8aFixed;2730 } & Struct;2731 readonly isScheduleAfter: boolean;2732 readonly asScheduleAfter: {2733 readonly after: u32;2734 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2735 readonly priority: Option<u8>;2736 readonly call: Call;2737 } & Struct;2738 readonly isScheduleNamedAfter: boolean;2739 readonly asScheduleNamedAfter: {2740 readonly id: U8aFixed;2741 readonly after: u32;2742 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2743 readonly priority: Option<u8>;2744 readonly call: Call;2745 } & Struct;2746 readonly isChangeNamedPriority: boolean;2747 readonly asChangeNamedPriority: {2748 readonly id: U8aFixed;2749 readonly priority: u8;2750 } & Struct;2751 readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';2752 }27532754 /** @name PalletConfigurationCall (286) */2755 interface PalletConfigurationCall extends Enum {2756 readonly isSetWeightToFeeCoefficientOverride: boolean;2757 readonly asSetWeightToFeeCoefficientOverride: {2758 readonly coeff: Option<u32>;2759 } & Struct;2760 readonly isSetMinGasPriceOverride: boolean;2761 readonly asSetMinGasPriceOverride: {2762 readonly coeff: Option<u64>;2763 } & Struct;2764 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2765 }27662767 /** @name PalletTemplateTransactionPaymentCall (288) */2768 type PalletTemplateTransactionPaymentCall = Null;27692770 /** @name PalletStructureCall (289) */2771 type PalletStructureCall = Null;27722773 /** @name PalletRmrkCoreCall (290) */2774 interface PalletRmrkCoreCall extends Enum {2775 readonly isCreateCollection: boolean;2776 readonly asCreateCollection: {2777 readonly metadata: Bytes;2778 readonly max: Option<u32>;2779 readonly symbol: Bytes;2780 } & Struct;2781 readonly isDestroyCollection: boolean;2782 readonly asDestroyCollection: {2783 readonly collectionId: u32;2784 } & Struct;2785 readonly isChangeCollectionIssuer: boolean;2786 readonly asChangeCollectionIssuer: {2787 readonly collectionId: u32;2788 readonly newIssuer: MultiAddress;2789 } & Struct;2790 readonly isLockCollection: boolean;2791 readonly asLockCollection: {2792 readonly collectionId: u32;2793 } & Struct;2794 readonly isMintNft: boolean;2795 readonly asMintNft: {2796 readonly owner: Option<AccountId32>;2797 readonly collectionId: u32;2798 readonly recipient: Option<AccountId32>;2799 readonly royaltyAmount: Option<Permill>;2800 readonly metadata: Bytes;2801 readonly transferable: bool;2802 readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;2803 } & Struct;2804 readonly isBurnNft: boolean;2805 readonly asBurnNft: {2806 readonly collectionId: u32;2807 readonly nftId: u32;2808 readonly maxBurns: u32;2809 } & Struct;2810 readonly isSend: boolean;2811 readonly asSend: {2812 readonly rmrkCollectionId: u32;2813 readonly rmrkNftId: u32;2814 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2815 } & Struct;2816 readonly isAcceptNft: boolean;2817 readonly asAcceptNft: {2818 readonly rmrkCollectionId: u32;2819 readonly rmrkNftId: u32;2820 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2821 } & Struct;2822 readonly isRejectNft: boolean;2823 readonly asRejectNft: {2824 readonly rmrkCollectionId: u32;2825 readonly rmrkNftId: u32;2826 } & Struct;2827 readonly isAcceptResource: boolean;2828 readonly asAcceptResource: {2829 readonly rmrkCollectionId: u32;2830 readonly rmrkNftId: u32;2831 readonly resourceId: u32;2832 } & Struct;2833 readonly isAcceptResourceRemoval: boolean;2834 readonly asAcceptResourceRemoval: {2835 readonly rmrkCollectionId: u32;2836 readonly rmrkNftId: u32;2837 readonly resourceId: u32;2838 } & Struct;2839 readonly isSetProperty: boolean;2840 readonly asSetProperty: {2841 readonly rmrkCollectionId: Compact<u32>;2842 readonly maybeNftId: Option<u32>;2843 readonly key: Bytes;2844 readonly value: Bytes;2845 } & Struct;2846 readonly isSetPriority: boolean;2847 readonly asSetPriority: {2848 readonly rmrkCollectionId: u32;2849 readonly rmrkNftId: u32;2850 readonly priorities: Vec<u32>;2851 } & Struct;2852 readonly isAddBasicResource: boolean;2853 readonly asAddBasicResource: {2854 readonly rmrkCollectionId: u32;2855 readonly nftId: u32;2856 readonly resource: RmrkTraitsResourceBasicResource;2857 } & Struct;2858 readonly isAddComposableResource: boolean;2859 readonly asAddComposableResource: {2860 readonly rmrkCollectionId: u32;2861 readonly nftId: u32;2862 readonly resource: RmrkTraitsResourceComposableResource;2863 } & Struct;2864 readonly isAddSlotResource: boolean;2865 readonly asAddSlotResource: {2866 readonly rmrkCollectionId: u32;2867 readonly nftId: u32;2868 readonly resource: RmrkTraitsResourceSlotResource;2869 } & Struct;2870 readonly isRemoveResource: boolean;2871 readonly asRemoveResource: {2872 readonly rmrkCollectionId: u32;2873 readonly nftId: u32;2874 readonly resourceId: u32;2875 } & Struct;2876 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2877 }28782879 /** @name RmrkTraitsResourceResourceTypes (296) */2880 interface RmrkTraitsResourceResourceTypes extends Enum {2881 readonly isBasic: boolean;2882 readonly asBasic: RmrkTraitsResourceBasicResource;2883 readonly isComposable: boolean;2884 readonly asComposable: RmrkTraitsResourceComposableResource;2885 readonly isSlot: boolean;2886 readonly asSlot: RmrkTraitsResourceSlotResource;2887 readonly type: 'Basic' | 'Composable' | 'Slot';2888 }28892890 /** @name RmrkTraitsResourceBasicResource (298) */2891 interface RmrkTraitsResourceBasicResource extends Struct {2892 readonly src: Option<Bytes>;2893 readonly metadata: Option<Bytes>;2894 readonly license: Option<Bytes>;2895 readonly thumb: Option<Bytes>;2896 }28972898 /** @name RmrkTraitsResourceComposableResource (300) */2899 interface RmrkTraitsResourceComposableResource extends Struct {2900 readonly parts: Vec<u32>;2901 readonly base: u32;2902 readonly src: Option<Bytes>;2903 readonly metadata: Option<Bytes>;2904 readonly license: Option<Bytes>;2905 readonly thumb: Option<Bytes>;2906 }29072908 /** @name RmrkTraitsResourceSlotResource (301) */2909 interface RmrkTraitsResourceSlotResource extends Struct {2910 readonly base: u32;2911 readonly src: Option<Bytes>;2912 readonly metadata: Option<Bytes>;2913 readonly slot: u32;2914 readonly license: Option<Bytes>;2915 readonly thumb: Option<Bytes>;2916 }29172918 /** @name PalletRmrkEquipCall (304) */2919 interface PalletRmrkEquipCall extends Enum {2920 readonly isCreateBase: boolean;2921 readonly asCreateBase: {2922 readonly baseType: Bytes;2923 readonly symbol: Bytes;2924 readonly parts: Vec<RmrkTraitsPartPartType>;2925 } & Struct;2926 readonly isThemeAdd: boolean;2927 readonly asThemeAdd: {2928 readonly baseId: u32;2929 readonly theme: RmrkTraitsTheme;2930 } & Struct;2931 readonly isEquippable: boolean;2932 readonly asEquippable: {2933 readonly baseId: u32;2934 readonly slotId: u32;2935 readonly equippables: RmrkTraitsPartEquippableList;2936 } & Struct;2937 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2938 }29392940 /** @name RmrkTraitsPartPartType (307) */2941 interface RmrkTraitsPartPartType extends Enum {2942 readonly isFixedPart: boolean;2943 readonly asFixedPart: RmrkTraitsPartFixedPart;2944 readonly isSlotPart: boolean;2945 readonly asSlotPart: RmrkTraitsPartSlotPart;2946 readonly type: 'FixedPart' | 'SlotPart';2947 }29482949 /** @name RmrkTraitsPartFixedPart (309) */2950 interface RmrkTraitsPartFixedPart extends Struct {2951 readonly id: u32;2952 readonly z: u32;2953 readonly src: Bytes;2954 }29552956 /** @name RmrkTraitsPartSlotPart (310) */2957 interface RmrkTraitsPartSlotPart extends Struct {2958 readonly id: u32;2959 readonly equippable: RmrkTraitsPartEquippableList;2960 readonly src: Bytes;2961 readonly z: u32;2962 }29632964 /** @name RmrkTraitsPartEquippableList (311) */2965 interface RmrkTraitsPartEquippableList extends Enum {2966 readonly isAll: boolean;2967 readonly isEmpty: boolean;2968 readonly isCustom: boolean;2969 readonly asCustom: Vec<u32>;2970 readonly type: 'All' | 'Empty' | 'Custom';2971 }29722973 /** @name RmrkTraitsTheme (313) */2974 interface RmrkTraitsTheme extends Struct {2975 readonly name: Bytes;2976 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2977 readonly inherit: bool;2978 }29792980 /** @name RmrkTraitsThemeThemeProperty (315) */2981 interface RmrkTraitsThemeThemeProperty extends Struct {2982 readonly key: Bytes;2983 readonly value: Bytes;2984 }29852986 /** @name PalletAppPromotionCall (317) */2987 interface PalletAppPromotionCall extends Enum {2988 readonly isSetAdminAddress: boolean;2989 readonly asSetAdminAddress: {2990 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;2991 } & Struct;2992 readonly isStake: boolean;2993 readonly asStake: {2994 readonly amount: u128;2995 } & Struct;2996 readonly isUnstake: boolean;2997 readonly isSponsorCollection: boolean;2998 readonly asSponsorCollection: {2999 readonly collectionId: u32;3000 } & Struct;3001 readonly isStopSponsoringCollection: boolean;3002 readonly asStopSponsoringCollection: {3003 readonly collectionId: u32;3004 } & Struct;3005 readonly isSponsorContract: boolean;3006 readonly asSponsorContract: {3007 readonly contractId: H160;3008 } & Struct;3009 readonly isStopSponsoringContract: boolean;3010 readonly asStopSponsoringContract: {3011 readonly contractId: H160;3012 } & Struct;3013 readonly isPayoutStakers: boolean;3014 readonly asPayoutStakers: {3015 readonly stakersNumber: Option<u8>;3016 } & Struct;3017 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';3018 }30193020 /** @name PalletForeignAssetsModuleCall (318) */3021 interface PalletForeignAssetsModuleCall extends Enum {3022 readonly isRegisterForeignAsset: boolean;3023 readonly asRegisterForeignAsset: {3024 readonly owner: AccountId32;3025 readonly location: XcmVersionedMultiLocation;3026 readonly metadata: PalletForeignAssetsModuleAssetMetadata;3027 } & Struct;3028 readonly isUpdateForeignAsset: boolean;3029 readonly asUpdateForeignAsset: {3030 readonly foreignAssetId: u32;3031 readonly location: XcmVersionedMultiLocation;3032 readonly metadata: PalletForeignAssetsModuleAssetMetadata;3033 } & Struct;3034 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3035 }30363037 /** @name PalletEvmCall (319) */3038 interface PalletEvmCall extends Enum {3039 readonly isWithdraw: boolean;3040 readonly asWithdraw: {3041 readonly address: H160;3042 readonly value: u128;3043 } & Struct;3044 readonly isCall: boolean;3045 readonly asCall: {3046 readonly source: H160;3047 readonly target: H160;3048 readonly input: Bytes;3049 readonly value: U256;3050 readonly gasLimit: u64;3051 readonly maxFeePerGas: U256;3052 readonly maxPriorityFeePerGas: Option<U256>;3053 readonly nonce: Option<U256>;3054 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3055 } & Struct;3056 readonly isCreate: boolean;3057 readonly asCreate: {3058 readonly source: H160;3059 readonly init: Bytes;3060 readonly value: U256;3061 readonly gasLimit: u64;3062 readonly maxFeePerGas: U256;3063 readonly maxPriorityFeePerGas: Option<U256>;3064 readonly nonce: Option<U256>;3065 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3066 } & Struct;3067 readonly isCreate2: boolean;3068 readonly asCreate2: {3069 readonly source: H160;3070 readonly init: Bytes;3071 readonly salt: H256;3072 readonly value: U256;3073 readonly gasLimit: u64;3074 readonly maxFeePerGas: U256;3075 readonly maxPriorityFeePerGas: Option<U256>;3076 readonly nonce: Option<U256>;3077 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3078 } & Struct;3079 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3080 }30813082 /** @name PalletEthereumCall (325) */3083 interface PalletEthereumCall extends Enum {3084 readonly isTransact: boolean;3085 readonly asTransact: {3086 readonly transaction: EthereumTransactionTransactionV2;3087 } & Struct;3088 readonly type: 'Transact';3089 }30903091 /** @name EthereumTransactionTransactionV2 (326) */3092 interface EthereumTransactionTransactionV2 extends Enum {3093 readonly isLegacy: boolean;3094 readonly asLegacy: EthereumTransactionLegacyTransaction;3095 readonly isEip2930: boolean;3096 readonly asEip2930: EthereumTransactionEip2930Transaction;3097 readonly isEip1559: boolean;3098 readonly asEip1559: EthereumTransactionEip1559Transaction;3099 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3100 }31013102 /** @name EthereumTransactionLegacyTransaction (327) */3103 interface EthereumTransactionLegacyTransaction extends Struct {3104 readonly nonce: U256;3105 readonly gasPrice: U256;3106 readonly gasLimit: U256;3107 readonly action: EthereumTransactionTransactionAction;3108 readonly value: U256;3109 readonly input: Bytes;3110 readonly signature: EthereumTransactionTransactionSignature;3111 }31123113 /** @name EthereumTransactionTransactionAction (328) */3114 interface EthereumTransactionTransactionAction extends Enum {3115 readonly isCall: boolean;3116 readonly asCall: H160;3117 readonly isCreate: boolean;3118 readonly type: 'Call' | 'Create';3119 }31203121 /** @name EthereumTransactionTransactionSignature (329) */3122 interface EthereumTransactionTransactionSignature extends Struct {3123 readonly v: u64;3124 readonly r: H256;3125 readonly s: H256;3126 }31273128 /** @name EthereumTransactionEip2930Transaction (331) */3129 interface EthereumTransactionEip2930Transaction extends Struct {3130 readonly chainId: u64;3131 readonly nonce: U256;3132 readonly gasPrice: U256;3133 readonly gasLimit: U256;3134 readonly action: EthereumTransactionTransactionAction;3135 readonly value: U256;3136 readonly input: Bytes;3137 readonly accessList: Vec<EthereumTransactionAccessListItem>;3138 readonly oddYParity: bool;3139 readonly r: H256;3140 readonly s: H256;3141 }31423143 /** @name EthereumTransactionAccessListItem (333) */3144 interface EthereumTransactionAccessListItem extends Struct {3145 readonly address: H160;3146 readonly storageKeys: Vec<H256>;3147 }31483149 /** @name EthereumTransactionEip1559Transaction (334) */3150 interface EthereumTransactionEip1559Transaction extends Struct {3151 readonly chainId: u64;3152 readonly nonce: U256;3153 readonly maxPriorityFeePerGas: U256;3154 readonly maxFeePerGas: U256;3155 readonly gasLimit: U256;3156 readonly action: EthereumTransactionTransactionAction;3157 readonly value: U256;3158 readonly input: Bytes;3159 readonly accessList: Vec<EthereumTransactionAccessListItem>;3160 readonly oddYParity: bool;3161 readonly r: H256;3162 readonly s: H256;3163 }31643165 /** @name PalletEvmMigrationCall (335) */3166 interface PalletEvmMigrationCall extends Enum {3167 readonly isBegin: boolean;3168 readonly asBegin: {3169 readonly address: H160;3170 } & Struct;3171 readonly isSetData: boolean;3172 readonly asSetData: {3173 readonly address: H160;3174 readonly data: Vec<ITuple<[H256, H256]>>;3175 } & Struct;3176 readonly isFinish: boolean;3177 readonly asFinish: {3178 readonly address: H160;3179 readonly code: Bytes;3180 } & Struct;3181 readonly isInsertEthLogs: boolean;3182 readonly asInsertEthLogs: {3183 readonly logs: Vec<EthereumLog>;3184 } & Struct;3185 readonly isInsertEvents: boolean;3186 readonly asInsertEvents: {3187 readonly events: Vec<Bytes>;3188 } & Struct;3189 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3190 }31913192 /** @name PalletMaintenanceCall (339) */3193 interface PalletMaintenanceCall extends Enum {3194 readonly isEnable: boolean;3195 readonly isDisable: boolean;3196 readonly type: 'Enable' | 'Disable';3197 }31983199 /** @name PalletTestUtilsCall (340) */3200 interface PalletTestUtilsCall extends Enum {3201 readonly isEnable: boolean;3202 readonly isSetTestValue: boolean;3203 readonly asSetTestValue: {3204 readonly value: u32;3205 } & Struct;3206 readonly isSetTestValueAndRollback: boolean;3207 readonly asSetTestValueAndRollback: {3208 readonly value: u32;3209 } & Struct;3210 readonly isIncTestValue: boolean;3211 readonly isSelfCancelingInc: boolean;3212 readonly asSelfCancelingInc: {3213 readonly id: U8aFixed;3214 readonly maxTestValue: u32;3215 } & Struct;3216 readonly isJustTakeFee: boolean;3217 readonly isBatchAll: boolean;3218 readonly asBatchAll: {3219 readonly calls: Vec<Call>;3220 } & Struct;3221 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';3222 }32233224 /** @name PalletSudoError (342) */3225 interface PalletSudoError extends Enum {3226 readonly isRequireSudo: boolean;3227 readonly type: 'RequireSudo';3228 }32293230 /** @name OrmlVestingModuleError (344) */3231 interface OrmlVestingModuleError extends Enum {3232 readonly isZeroVestingPeriod: boolean;3233 readonly isZeroVestingPeriodCount: boolean;3234 readonly isInsufficientBalanceToLock: boolean;3235 readonly isTooManyVestingSchedules: boolean;3236 readonly isAmountLow: boolean;3237 readonly isMaxVestingSchedulesExceeded: boolean;3238 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3239 }32403241 /** @name OrmlXtokensModuleError (345) */3242 interface OrmlXtokensModuleError extends Enum {3243 readonly isAssetHasNoReserve: boolean;3244 readonly isNotCrossChainTransfer: boolean;3245 readonly isInvalidDest: boolean;3246 readonly isNotCrossChainTransferableCurrency: boolean;3247 readonly isUnweighableMessage: boolean;3248 readonly isXcmExecutionFailed: boolean;3249 readonly isCannotReanchor: boolean;3250 readonly isInvalidAncestry: boolean;3251 readonly isInvalidAsset: boolean;3252 readonly isDestinationNotInvertible: boolean;3253 readonly isBadVersion: boolean;3254 readonly isDistinctReserveForAssetAndFee: boolean;3255 readonly isZeroFee: boolean;3256 readonly isZeroAmount: boolean;3257 readonly isTooManyAssetsBeingSent: boolean;3258 readonly isAssetIndexNonExistent: boolean;3259 readonly isFeeNotEnough: boolean;3260 readonly isNotSupportedMultiLocation: boolean;3261 readonly isMinXcmFeeNotDefined: boolean;3262 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3263 }32643265 /** @name OrmlTokensBalanceLock (348) */3266 interface OrmlTokensBalanceLock extends Struct {3267 readonly id: U8aFixed;3268 readonly amount: u128;3269 }32703271 /** @name OrmlTokensAccountData (350) */3272 interface OrmlTokensAccountData extends Struct {3273 readonly free: u128;3274 readonly reserved: u128;3275 readonly frozen: u128;3276 }32773278 /** @name OrmlTokensReserveData (352) */3279 interface OrmlTokensReserveData extends Struct {3280 readonly id: Null;3281 readonly amount: u128;3282 }32833284 /** @name OrmlTokensModuleError (354) */3285 interface OrmlTokensModuleError extends Enum {3286 readonly isBalanceTooLow: boolean;3287 readonly isAmountIntoBalanceFailed: boolean;3288 readonly isLiquidityRestrictions: boolean;3289 readonly isMaxLocksExceeded: boolean;3290 readonly isKeepAlive: boolean;3291 readonly isExistentialDeposit: boolean;3292 readonly isDeadAccount: boolean;3293 readonly isTooManyReserves: boolean;3294 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3295 }32963297 /** @name CumulusPalletXcmpQueueInboundChannelDetails (356) */3298 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3299 readonly sender: u32;3300 readonly state: CumulusPalletXcmpQueueInboundState;3301 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3302 }33033304 /** @name CumulusPalletXcmpQueueInboundState (357) */3305 interface CumulusPalletXcmpQueueInboundState extends Enum {3306 readonly isOk: boolean;3307 readonly isSuspended: boolean;3308 readonly type: 'Ok' | 'Suspended';3309 }33103311 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (360) */3312 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3313 readonly isConcatenatedVersionedXcm: boolean;3314 readonly isConcatenatedEncodedBlob: boolean;3315 readonly isSignals: boolean;3316 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3317 }33183319 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (363) */3320 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3321 readonly recipient: u32;3322 readonly state: CumulusPalletXcmpQueueOutboundState;3323 readonly signalsExist: bool;3324 readonly firstIndex: u16;3325 readonly lastIndex: u16;3326 }33273328 /** @name CumulusPalletXcmpQueueOutboundState (364) */3329 interface CumulusPalletXcmpQueueOutboundState extends Enum {3330 readonly isOk: boolean;3331 readonly isSuspended: boolean;3332 readonly type: 'Ok' | 'Suspended';3333 }33343335 /** @name CumulusPalletXcmpQueueQueueConfigData (366) */3336 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3337 readonly suspendThreshold: u32;3338 readonly dropThreshold: u32;3339 readonly resumeThreshold: u32;3340 readonly thresholdWeight: SpWeightsWeightV2Weight;3341 readonly weightRestrictDecay: SpWeightsWeightV2Weight;3342 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3343 }33443345 /** @name CumulusPalletXcmpQueueError (368) */3346 interface CumulusPalletXcmpQueueError extends Enum {3347 readonly isFailedToSend: boolean;3348 readonly isBadXcmOrigin: boolean;3349 readonly isBadXcm: boolean;3350 readonly isBadOverweightIndex: boolean;3351 readonly isWeightOverLimit: boolean;3352 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3353 }33543355 /** @name PalletXcmError (369) */3356 interface PalletXcmError extends Enum {3357 readonly isUnreachable: boolean;3358 readonly isSendFailure: boolean;3359 readonly isFiltered: boolean;3360 readonly isUnweighableMessage: boolean;3361 readonly isDestinationNotInvertible: boolean;3362 readonly isEmpty: boolean;3363 readonly isCannotReanchor: boolean;3364 readonly isTooManyAssets: boolean;3365 readonly isInvalidOrigin: boolean;3366 readonly isBadVersion: boolean;3367 readonly isBadLocation: boolean;3368 readonly isNoSubscription: boolean;3369 readonly isAlreadySubscribed: boolean;3370 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3371 }33723373 /** @name CumulusPalletXcmError (370) */3374 type CumulusPalletXcmError = Null;33753376 /** @name CumulusPalletDmpQueueConfigData (371) */3377 interface CumulusPalletDmpQueueConfigData extends Struct {3378 readonly maxIndividual: SpWeightsWeightV2Weight;3379 }33803381 /** @name CumulusPalletDmpQueuePageIndexData (372) */3382 interface CumulusPalletDmpQueuePageIndexData extends Struct {3383 readonly beginUsed: u32;3384 readonly endUsed: u32;3385 readonly overweightCount: u64;3386 }33873388 /** @name CumulusPalletDmpQueueError (375) */3389 interface CumulusPalletDmpQueueError extends Enum {3390 readonly isUnknown: boolean;3391 readonly isOverLimit: boolean;3392 readonly type: 'Unknown' | 'OverLimit';3393 }33943395 /** @name PalletUniqueError (379) */3396 interface PalletUniqueError extends Enum {3397 readonly isCollectionDecimalPointLimitExceeded: boolean;3398 readonly isEmptyArgument: boolean;3399 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3400 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3401 }34023403 /** @name PalletUniqueSchedulerV2BlockAgenda (380) */3404 interface PalletUniqueSchedulerV2BlockAgenda extends Struct {3405 readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;3406 readonly freePlaces: u32;3407 }34083409 /** @name PalletUniqueSchedulerV2Scheduled (383) */3410 interface PalletUniqueSchedulerV2Scheduled extends Struct {3411 readonly maybeId: Option<U8aFixed>;3412 readonly priority: u8;3413 readonly call: PalletUniqueSchedulerV2ScheduledCall;3414 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3415 readonly origin: OpalRuntimeOriginCaller;3416 }34173418 /** @name PalletUniqueSchedulerV2ScheduledCall (384) */3419 interface PalletUniqueSchedulerV2ScheduledCall extends Enum {3420 readonly isInline: boolean;3421 readonly asInline: Bytes;3422 readonly isPreimageLookup: boolean;3423 readonly asPreimageLookup: {3424 readonly hash_: H256;3425 readonly unboundedLen: u32;3426 } & Struct;3427 readonly type: 'Inline' | 'PreimageLookup';3428 }34293430 /** @name OpalRuntimeOriginCaller (386) */3431 interface OpalRuntimeOriginCaller extends Enum {3432 readonly isSystem: boolean;3433 readonly asSystem: FrameSupportDispatchRawOrigin;3434 readonly isVoid: boolean;3435 readonly isPolkadotXcm: boolean;3436 readonly asPolkadotXcm: PalletXcmOrigin;3437 readonly isCumulusXcm: boolean;3438 readonly asCumulusXcm: CumulusPalletXcmOrigin;3439 readonly isEthereum: boolean;3440 readonly asEthereum: PalletEthereumRawOrigin;3441 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3442 }34433444 /** @name FrameSupportDispatchRawOrigin (387) */3445 interface FrameSupportDispatchRawOrigin extends Enum {3446 readonly isRoot: boolean;3447 readonly isSigned: boolean;3448 readonly asSigned: AccountId32;3449 readonly isNone: boolean;3450 readonly type: 'Root' | 'Signed' | 'None';3451 }34523453 /** @name PalletXcmOrigin (388) */3454 interface PalletXcmOrigin extends Enum {3455 readonly isXcm: boolean;3456 readonly asXcm: XcmV1MultiLocation;3457 readonly isResponse: boolean;3458 readonly asResponse: XcmV1MultiLocation;3459 readonly type: 'Xcm' | 'Response';3460 }34613462 /** @name CumulusPalletXcmOrigin (389) */3463 interface CumulusPalletXcmOrigin extends Enum {3464 readonly isRelay: boolean;3465 readonly isSiblingParachain: boolean;3466 readonly asSiblingParachain: u32;3467 readonly type: 'Relay' | 'SiblingParachain';3468 }34693470 /** @name PalletEthereumRawOrigin (390) */3471 interface PalletEthereumRawOrigin extends Enum {3472 readonly isEthereumTransaction: boolean;3473 readonly asEthereumTransaction: H160;3474 readonly type: 'EthereumTransaction';3475 }34763477 /** @name SpCoreVoid (391) */3478 type SpCoreVoid = Null;34793480 /** @name PalletUniqueSchedulerV2Error (393) */3481 interface PalletUniqueSchedulerV2Error extends Enum {3482 readonly isFailedToSchedule: boolean;3483 readonly isAgendaIsExhausted: boolean;3484 readonly isScheduledCallCorrupted: boolean;3485 readonly isPreimageNotFound: boolean;3486 readonly isTooBigScheduledCall: boolean;3487 readonly isNotFound: boolean;3488 readonly isTargetBlockNumberInPast: boolean;3489 readonly isNamed: boolean;3490 readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';3491 }34923493 /** @name UpDataStructsCollection (394) */3494 interface UpDataStructsCollection extends Struct {3495 readonly owner: AccountId32;3496 readonly mode: UpDataStructsCollectionMode;3497 readonly name: Vec<u16>;3498 readonly description: Vec<u16>;3499 readonly tokenPrefix: Bytes;3500 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3501 readonly limits: UpDataStructsCollectionLimits;3502 readonly permissions: UpDataStructsCollectionPermissions;3503 readonly flags: U8aFixed;3504 }35053506 /** @name UpDataStructsSponsorshipStateAccountId32 (395) */3507 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3508 readonly isDisabled: boolean;3509 readonly isUnconfirmed: boolean;3510 readonly asUnconfirmed: AccountId32;3511 readonly isConfirmed: boolean;3512 readonly asConfirmed: AccountId32;3513 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3514 }35153516 /** @name UpDataStructsProperties (397) */3517 interface UpDataStructsProperties extends Struct {3518 readonly map: UpDataStructsPropertiesMapBoundedVec;3519 readonly consumedSpace: u32;3520 readonly spaceLimit: u32;3521 }35223523 /** @name UpDataStructsPropertiesMapBoundedVec (398) */3524 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}35253526 /** @name UpDataStructsPropertiesMapPropertyPermission (403) */3527 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}35283529 /** @name UpDataStructsCollectionStats (410) */3530 interface UpDataStructsCollectionStats extends Struct {3531 readonly created: u32;3532 readonly destroyed: u32;3533 readonly alive: u32;3534 }35353536 /** @name UpDataStructsTokenChild (411) */3537 interface UpDataStructsTokenChild extends Struct {3538 readonly token: u32;3539 readonly collection: u32;3540 }35413542 /** @name PhantomTypeUpDataStructs (412) */3543 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}35443545 /** @name UpDataStructsTokenData (414) */3546 interface UpDataStructsTokenData extends Struct {3547 readonly properties: Vec<UpDataStructsProperty>;3548 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3549 readonly pieces: u128;3550 }35513552 /** @name UpDataStructsRpcCollection (416) */3553 interface UpDataStructsRpcCollection extends Struct {3554 readonly owner: AccountId32;3555 readonly mode: UpDataStructsCollectionMode;3556 readonly name: Vec<u16>;3557 readonly description: Vec<u16>;3558 readonly tokenPrefix: Bytes;3559 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3560 readonly limits: UpDataStructsCollectionLimits;3561 readonly permissions: UpDataStructsCollectionPermissions;3562 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3563 readonly properties: Vec<UpDataStructsProperty>;3564 readonly readOnly: bool;3565 readonly flags: UpDataStructsRpcCollectionFlags;3566 }35673568 /** @name UpDataStructsRpcCollectionFlags (417) */3569 interface UpDataStructsRpcCollectionFlags extends Struct {3570 readonly foreign: bool;3571 readonly erc721metadata: bool;3572 }35733574 /** @name RmrkTraitsCollectionCollectionInfo (418) */3575 interface RmrkTraitsCollectionCollectionInfo extends Struct {3576 readonly issuer: AccountId32;3577 readonly metadata: Bytes;3578 readonly max: Option<u32>;3579 readonly symbol: Bytes;3580 readonly nftsCount: u32;3581 }35823583 /** @name RmrkTraitsNftNftInfo (419) */3584 interface RmrkTraitsNftNftInfo extends Struct {3585 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3586 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3587 readonly metadata: Bytes;3588 readonly equipped: bool;3589 readonly pending: bool;3590 }35913592 /** @name RmrkTraitsNftRoyaltyInfo (421) */3593 interface RmrkTraitsNftRoyaltyInfo extends Struct {3594 readonly recipient: AccountId32;3595 readonly amount: Permill;3596 }35973598 /** @name RmrkTraitsResourceResourceInfo (422) */3599 interface RmrkTraitsResourceResourceInfo extends Struct {3600 readonly id: u32;3601 readonly resource: RmrkTraitsResourceResourceTypes;3602 readonly pending: bool;3603 readonly pendingRemoval: bool;3604 }36053606 /** @name RmrkTraitsPropertyPropertyInfo (423) */3607 interface RmrkTraitsPropertyPropertyInfo extends Struct {3608 readonly key: Bytes;3609 readonly value: Bytes;3610 }36113612 /** @name RmrkTraitsBaseBaseInfo (424) */3613 interface RmrkTraitsBaseBaseInfo extends Struct {3614 readonly issuer: AccountId32;3615 readonly baseType: Bytes;3616 readonly symbol: Bytes;3617 }36183619 /** @name RmrkTraitsNftNftChild (425) */3620 interface RmrkTraitsNftNftChild extends Struct {3621 readonly collectionId: u32;3622 readonly nftId: u32;3623 }36243625 /** @name PalletCommonError (427) */3626 interface PalletCommonError extends Enum {3627 readonly isCollectionNotFound: boolean;3628 readonly isMustBeTokenOwner: boolean;3629 readonly isNoPermission: boolean;3630 readonly isCantDestroyNotEmptyCollection: boolean;3631 readonly isPublicMintingNotAllowed: boolean;3632 readonly isAddressNotInAllowlist: boolean;3633 readonly isCollectionNameLimitExceeded: boolean;3634 readonly isCollectionDescriptionLimitExceeded: boolean;3635 readonly isCollectionTokenPrefixLimitExceeded: boolean;3636 readonly isTotalCollectionsLimitExceeded: boolean;3637 readonly isCollectionAdminCountExceeded: boolean;3638 readonly isCollectionLimitBoundsExceeded: boolean;3639 readonly isOwnerPermissionsCantBeReverted: boolean;3640 readonly isTransferNotAllowed: boolean;3641 readonly isAccountTokenLimitExceeded: boolean;3642 readonly isCollectionTokenLimitExceeded: boolean;3643 readonly isMetadataFlagFrozen: boolean;3644 readonly isTokenNotFound: boolean;3645 readonly isTokenValueTooLow: boolean;3646 readonly isApprovedValueTooLow: boolean;3647 readonly isCantApproveMoreThanOwned: boolean;3648 readonly isAddressIsZero: boolean;3649 readonly isUnsupportedOperation: boolean;3650 readonly isNotSufficientFounds: boolean;3651 readonly isUserIsNotAllowedToNest: boolean;3652 readonly isSourceCollectionIsNotAllowedToNest: boolean;3653 readonly isCollectionFieldSizeExceeded: boolean;3654 readonly isNoSpaceForProperty: boolean;3655 readonly isPropertyLimitReached: boolean;3656 readonly isPropertyKeyIsTooLong: boolean;3657 readonly isInvalidCharacterInPropertyKey: boolean;3658 readonly isEmptyPropertyKey: boolean;3659 readonly isCollectionIsExternal: boolean;3660 readonly isCollectionIsInternal: boolean;3661 readonly isConfirmSponsorshipFail: boolean;3662 readonly isUserIsNotCollectionAdmin: boolean;3663 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';3664 }36653666 /** @name PalletFungibleError (429) */3667 interface PalletFungibleError extends Enum {3668 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3669 readonly isFungibleItemsHaveNoId: boolean;3670 readonly isFungibleItemsDontHaveData: boolean;3671 readonly isFungibleDisallowsNesting: boolean;3672 readonly isSettingPropertiesNotAllowed: boolean;3673 readonly isSettingAllowanceForAllNotAllowed: boolean;3674 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';3675 }36763677 /** @name PalletRefungibleItemData (430) */3678 interface PalletRefungibleItemData extends Struct {3679 readonly constData: Bytes;3680 }36813682 /** @name PalletRefungibleError (435) */3683 interface PalletRefungibleError extends Enum {3684 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3685 readonly isWrongRefungiblePieces: boolean;3686 readonly isRepartitionWhileNotOwningAllPieces: boolean;3687 readonly isRefungibleDisallowsNesting: boolean;3688 readonly isSettingPropertiesNotAllowed: boolean;3689 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3690 }36913692 /** @name PalletNonfungibleItemData (436) */3693 interface PalletNonfungibleItemData extends Struct {3694 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3695 }36963697 /** @name UpDataStructsPropertyScope (438) */3698 interface UpDataStructsPropertyScope extends Enum {3699 readonly isNone: boolean;3700 readonly isRmrk: boolean;3701 readonly type: 'None' | 'Rmrk';3702 }37033704 /** @name PalletNonfungibleError (440) */3705 interface PalletNonfungibleError extends Enum {3706 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3707 readonly isNonfungibleItemsHaveNoAmount: boolean;3708 readonly isCantBurnNftWithChildren: boolean;3709 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3710 }37113712 /** @name PalletStructureError (441) */3713 interface PalletStructureError extends Enum {3714 readonly isOuroborosDetected: boolean;3715 readonly isDepthLimit: boolean;3716 readonly isBreadthLimit: boolean;3717 readonly isTokenNotFound: boolean;3718 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3719 }37203721 /** @name PalletRmrkCoreError (442) */3722 interface PalletRmrkCoreError extends Enum {3723 readonly isCorruptedCollectionType: boolean;3724 readonly isRmrkPropertyKeyIsTooLong: boolean;3725 readonly isRmrkPropertyValueIsTooLong: boolean;3726 readonly isRmrkPropertyIsNotFound: boolean;3727 readonly isUnableToDecodeRmrkData: boolean;3728 readonly isCollectionNotEmpty: boolean;3729 readonly isNoAvailableCollectionId: boolean;3730 readonly isNoAvailableNftId: boolean;3731 readonly isCollectionUnknown: boolean;3732 readonly isNoPermission: boolean;3733 readonly isNonTransferable: boolean;3734 readonly isCollectionFullOrLocked: boolean;3735 readonly isResourceDoesntExist: boolean;3736 readonly isCannotSendToDescendentOrSelf: boolean;3737 readonly isCannotAcceptNonOwnedNft: boolean;3738 readonly isCannotRejectNonOwnedNft: boolean;3739 readonly isCannotRejectNonPendingNft: boolean;3740 readonly isResourceNotPending: boolean;3741 readonly isNoAvailableResourceId: boolean;3742 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3743 }37443745 /** @name PalletRmrkEquipError (444) */3746 interface PalletRmrkEquipError extends Enum {3747 readonly isPermissionError: boolean;3748 readonly isNoAvailableBaseId: boolean;3749 readonly isNoAvailablePartId: boolean;3750 readonly isBaseDoesntExist: boolean;3751 readonly isNeedsDefaultThemeFirst: boolean;3752 readonly isPartDoesntExist: boolean;3753 readonly isNoEquippableOnFixedPart: boolean;3754 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3755 }37563757 /** @name PalletAppPromotionError (450) */3758 interface PalletAppPromotionError extends Enum {3759 readonly isAdminNotSet: boolean;3760 readonly isNoPermission: boolean;3761 readonly isNotSufficientFunds: boolean;3762 readonly isPendingForBlockOverflow: boolean;3763 readonly isSponsorNotSet: boolean;3764 readonly isIncorrectLockedBalanceOperation: boolean;3765 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3766 }37673768 /** @name PalletForeignAssetsModuleError (451) */3769 interface PalletForeignAssetsModuleError extends Enum {3770 readonly isBadLocation: boolean;3771 readonly isMultiLocationExisted: boolean;3772 readonly isAssetIdNotExists: boolean;3773 readonly isAssetIdExisted: boolean;3774 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3775 }37763777 /** @name PalletEvmError (453) */3778 interface PalletEvmError extends Enum {3779 readonly isBalanceLow: boolean;3780 readonly isFeeOverflow: boolean;3781 readonly isPaymentOverflow: boolean;3782 readonly isWithdrawFailed: boolean;3783 readonly isGasPriceTooLow: boolean;3784 readonly isInvalidNonce: boolean;3785 readonly isGasLimitTooLow: boolean;3786 readonly isGasLimitTooHigh: boolean;3787 readonly isUndefined: boolean;3788 readonly isReentrancy: boolean;3789 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';3790 }37913792 /** @name FpRpcTransactionStatus (456) */3793 interface FpRpcTransactionStatus extends Struct {3794 readonly transactionHash: H256;3795 readonly transactionIndex: u32;3796 readonly from: H160;3797 readonly to: Option<H160>;3798 readonly contractAddress: Option<H160>;3799 readonly logs: Vec<EthereumLog>;3800 readonly logsBloom: EthbloomBloom;3801 }38023803 /** @name EthbloomBloom (458) */3804 interface EthbloomBloom extends U8aFixed {}38053806 /** @name EthereumReceiptReceiptV3 (460) */3807 interface EthereumReceiptReceiptV3 extends Enum {3808 readonly isLegacy: boolean;3809 readonly asLegacy: EthereumReceiptEip658ReceiptData;3810 readonly isEip2930: boolean;3811 readonly asEip2930: EthereumReceiptEip658ReceiptData;3812 readonly isEip1559: boolean;3813 readonly asEip1559: EthereumReceiptEip658ReceiptData;3814 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3815 }38163817 /** @name EthereumReceiptEip658ReceiptData (461) */3818 interface EthereumReceiptEip658ReceiptData extends Struct {3819 readonly statusCode: u8;3820 readonly usedGas: U256;3821 readonly logsBloom: EthbloomBloom;3822 readonly logs: Vec<EthereumLog>;3823 }38243825 /** @name EthereumBlock (462) */3826 interface EthereumBlock extends Struct {3827 readonly header: EthereumHeader;3828 readonly transactions: Vec<EthereumTransactionTransactionV2>;3829 readonly ommers: Vec<EthereumHeader>;3830 }38313832 /** @name EthereumHeader (463) */3833 interface EthereumHeader extends Struct {3834 readonly parentHash: H256;3835 readonly ommersHash: H256;3836 readonly beneficiary: H160;3837 readonly stateRoot: H256;3838 readonly transactionsRoot: H256;3839 readonly receiptsRoot: H256;3840 readonly logsBloom: EthbloomBloom;3841 readonly difficulty: U256;3842 readonly number: U256;3843 readonly gasLimit: U256;3844 readonly gasUsed: U256;3845 readonly timestamp: u64;3846 readonly extraData: Bytes;3847 readonly mixHash: H256;3848 readonly nonce: EthereumTypesHashH64;3849 }38503851 /** @name EthereumTypesHashH64 (464) */3852 interface EthereumTypesHashH64 extends U8aFixed {}38533854 /** @name PalletEthereumError (469) */3855 interface PalletEthereumError extends Enum {3856 readonly isInvalidSignature: boolean;3857 readonly isPreLogExists: boolean;3858 readonly type: 'InvalidSignature' | 'PreLogExists';3859 }38603861 /** @name PalletEvmCoderSubstrateError (470) */3862 interface PalletEvmCoderSubstrateError extends Enum {3863 readonly isOutOfGas: boolean;3864 readonly isOutOfFund: boolean;3865 readonly type: 'OutOfGas' | 'OutOfFund';3866 }38673868 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (471) */3869 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3870 readonly isDisabled: boolean;3871 readonly isUnconfirmed: boolean;3872 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3873 readonly isConfirmed: boolean;3874 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3875 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3876 }38773878 /** @name PalletEvmContractHelpersSponsoringModeT (472) */3879 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3880 readonly isDisabled: boolean;3881 readonly isAllowlisted: boolean;3882 readonly isGenerous: boolean;3883 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3884 }38853886 /** @name PalletEvmContractHelpersError (478) */3887 interface PalletEvmContractHelpersError extends Enum {3888 readonly isNoPermission: boolean;3889 readonly isNoPendingSponsor: boolean;3890 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3891 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3892 }38933894 /** @name PalletEvmMigrationError (479) */3895 interface PalletEvmMigrationError extends Enum {3896 readonly isAccountNotEmpty: boolean;3897 readonly isAccountIsNotMigrating: boolean;3898 readonly isBadEvent: boolean;3899 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3900 }39013902 /** @name PalletMaintenanceError (480) */3903 type PalletMaintenanceError = Null;39043905 /** @name PalletTestUtilsError (481) */3906 interface PalletTestUtilsError extends Enum {3907 readonly isTestPalletDisabled: boolean;3908 readonly isTriggerRollback: boolean;3909 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3910 }39113912 /** @name SpRuntimeMultiSignature (483) */3913 interface SpRuntimeMultiSignature extends Enum {3914 readonly isEd25519: boolean;3915 readonly asEd25519: SpCoreEd25519Signature;3916 readonly isSr25519: boolean;3917 readonly asSr25519: SpCoreSr25519Signature;3918 readonly isEcdsa: boolean;3919 readonly asEcdsa: SpCoreEcdsaSignature;3920 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3921 }39223923 /** @name SpCoreEd25519Signature (484) */3924 interface SpCoreEd25519Signature extends U8aFixed {}39253926 /** @name SpCoreSr25519Signature (486) */3927 interface SpCoreSr25519Signature extends U8aFixed {}39283929 /** @name SpCoreEcdsaSignature (487) */3930 interface SpCoreEcdsaSignature extends U8aFixed {}39313932 /** @name FrameSystemExtensionsCheckSpecVersion (490) */3933 type FrameSystemExtensionsCheckSpecVersion = Null;39343935 /** @name FrameSystemExtensionsCheckTxVersion (491) */3936 type FrameSystemExtensionsCheckTxVersion = Null;39373938 /** @name FrameSystemExtensionsCheckGenesis (492) */3939 type FrameSystemExtensionsCheckGenesis = Null;39403941 /** @name FrameSystemExtensionsCheckNonce (495) */3942 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}39433944 /** @name FrameSystemExtensionsCheckWeight (496) */3945 type FrameSystemExtensionsCheckWeight = Null;39463947 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (497) */3948 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;39493950 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (498) */3951 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}39523953 /** @name OpalRuntimeRuntime (499) */3954 type OpalRuntimeRuntime = Null;39553956 /** @name PalletEthereumFakeTransactionFinalizer (500) */3957 type PalletEthereumFakeTransactionFinalizer = Null;39583959} // declare moduletests/src/removeCollectionAdmin.test.tsdiffbeforeafterboth--- a/tests/src/removeCollectionAdmin.test.ts
+++ b/tests/src/removeCollectionAdmin.test.ts
@@ -51,7 +51,7 @@
const adminListBeforeAddAdmin = await collection.getAdmins();
expect(adminListBeforeAddAdmin).to.have.lengthOf(0);
- await expect(collection.removeAdmin(alice, {Substrate: alice.address})).to.be.rejectedWith('common.UserIsNotAdmin');
+ await expect(collection.removeAdmin(alice, {Substrate: alice.address})).to.be.rejectedWith('common.UserIsNotCollectionAdmin');
});
});
tests/src/removeCollectionSponsor.test.tsdiffbeforeafterboth--- a/tests/src/removeCollectionSponsor.test.ts
+++ b/tests/src/removeCollectionSponsor.test.ts
@@ -21,11 +21,12 @@
let donor: IKeyringPair;
let alice: IKeyringPair;
let bob: IKeyringPair;
+ let charlie: IKeyringPair;
before(async () => {
await usingPlaygrounds(async (helper, privateKey) => {
donor = await privateKey({filename: __filename});
- [alice, bob] = await helper.arrange.createAccounts([10n, 10n], donor);
+ [alice, bob, charlie] = await helper.arrange.createAccounts([20n, 10n, 10n], donor);
});
});
@@ -69,6 +70,12 @@
await expect(collection.removeSponsor(alice)).to.not.be.rejected;
});
+ itSub('Remove sponsor for a collection with collection admin permissions', async ({helper}) => {
+ const collection = await helper.nft.mintCollection(alice, {name: 'RemoveCollectionSponsor-Neg-1', tokenPrefix: 'RCS'});
+ await collection.setSponsor(alice, bob.address);
+ await collection.addAdmin(alice, {Substrate: charlie.address});
+ await expect(collection.removeSponsor(charlie)).not.to.be.rejected;
+ });
});
describe('(!negative test!) integration test: ext. removeCollectionSponsor():', () => {
@@ -86,13 +93,6 @@
itSub('(!negative test!) Remove sponsor for a collection that never existed', async ({helper}) => {
const collectionId = (1 << 32) - 1;
await expect(helper.collection.removeSponsor(alice, collectionId)).to.be.rejectedWith(/common\.CollectionNotFound/);
- });
-
- itSub('(!negative test!) Remove sponsor for a collection with collection admin permissions', async ({helper}) => {
- const collection = await helper.nft.mintCollection(alice, {name: 'RemoveCollectionSponsor-Neg-1', tokenPrefix: 'RCS'});
- await collection.setSponsor(alice, bob.address);
- await collection.addAdmin(alice, {Substrate: charlie.address});
- await expect(collection.removeSponsor(charlie)).to.be.rejectedWith(/common\.NoPermission/);
});
itSub('(!negative test!) Remove sponsor for a collection by regular user', async ({helper}) => {
@@ -112,7 +112,7 @@
const collection = await helper.nft.mintCollection(alice, {name: 'RemoveCollectionSponsor-Neg-4', tokenPrefix: 'RCS'});
await collection.setSponsor(alice, bob.address);
await collection.removeSponsor(alice);
- await expect(collection.confirmSponsorship(bob)).to.be.rejectedWith(/common\.ConfirmUnsetSponsorFail/);
+ await expect(collection.confirmSponsorship(bob)).to.be.rejectedWith(/common\.ConfirmSponsorshipFail/);
});
itSub('Set - confirm - remove - confirm: Sponsor cannot come back', async ({helper}) => {
@@ -120,6 +120,6 @@
await collection.setSponsor(alice, bob.address);
await collection.confirmSponsorship(bob);
await collection.removeSponsor(alice);
- await expect(collection.confirmSponsorship(bob)).to.be.rejectedWith(/common\.ConfirmUnsetSponsorFail/);
+ await expect(collection.confirmSponsorship(bob)).to.be.rejectedWith(/common\.ConfirmSponsorshipFail/);
});
});
tests/src/util/playgrounds/unique.tsdiffbeforeafterboth--- a/tests/src/util/playgrounds/unique.ts
+++ b/tests/src/util/playgrounds/unique.ts
@@ -933,7 +933,7 @@
true,
);
- return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'common', 'CollectionOwnedChanged');
+ return this.helper.util.findCollectionInEvents(result.result.events, collectionId, 'common', 'CollectionOwnerChanged');
}
/**