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.tsdiffbeforeafterboth1109 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1109 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1110 }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 }114511111146 /** @name PalletUniqueSchedulerV2Event (93) */1112 /** @name PalletUniqueSchedulerV2Event (89) */1147 interface PalletUniqueSchedulerV2Event extends Enum {1113 interface PalletUniqueSchedulerV2Event extends Enum {1148 readonly isScheduled: boolean;1114 readonly isScheduled: boolean;1149 readonly asScheduled: {1115 readonly asScheduled: {1179 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';1145 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';1180 }1146 }118111471182 /** @name PalletCommonEvent (96) */1148 /** @name PalletCommonEvent (92) */1183 interface PalletCommonEvent extends Enum {1149 interface PalletCommonEvent extends Enum {1184 readonly isCollectionCreated: boolean;1150 readonly isCollectionCreated: boolean;1185 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1151 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1205 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1171 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1206 readonly isPropertyPermissionSet: boolean;1172 readonly isPropertyPermissionSet: boolean;1207 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;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;1208 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';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';1209 }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 }121012051211 /** @name PalletStructureEvent (100) */1206 /** @name PalletStructureEvent (99) */1212 interface PalletStructureEvent extends Enum {1207 interface PalletStructureEvent extends Enum {1213 readonly isExecuted: boolean;1208 readonly isExecuted: boolean;1214 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1209 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1215 readonly type: 'Executed';1210 readonly type: 'Executed';1216 }1211 }121712121218 /** @name PalletRmrkCoreEvent (101) */1213 /** @name PalletRmrkCoreEvent (100) */1219 interface PalletRmrkCoreEvent extends Enum {1214 interface PalletRmrkCoreEvent extends Enum {1220 readonly isCollectionCreated: boolean;1215 readonly isCollectionCreated: boolean;1221 readonly asCollectionCreated: {1216 readonly asCollectionCreated: {1305 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1300 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1306 }1301 }130713021308 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (102) */1303 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (101) */1309 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1304 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1310 readonly isAccountId: boolean;1305 readonly isAccountId: boolean;1311 readonly asAccountId: AccountId32;1306 readonly asAccountId: AccountId32;1314 readonly type: 'AccountId' | 'CollectionAndNftTuple';1309 readonly type: 'AccountId' | 'CollectionAndNftTuple';1315 }1310 }131613111317 /** @name PalletRmrkEquipEvent (106) */1312 /** @name PalletRmrkEquipEvent (105) */1318 interface PalletRmrkEquipEvent extends Enum {1313 interface PalletRmrkEquipEvent extends Enum {1319 readonly isBaseCreated: boolean;1314 readonly isBaseCreated: boolean;1320 readonly asBaseCreated: {1315 readonly asBaseCreated: {1329 readonly type: 'BaseCreated' | 'EquippablesUpdated';1324 readonly type: 'BaseCreated' | 'EquippablesUpdated';1330 }1325 }133113261332 /** @name PalletAppPromotionEvent (107) */1327 /** @name PalletAppPromotionEvent (106) */1333 interface PalletAppPromotionEvent extends Enum {1328 interface PalletAppPromotionEvent extends Enum {1334 readonly isStakingRecalculation: boolean;1329 readonly isStakingRecalculation: boolean;1335 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1330 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1342 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1337 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1343 }1338 }134413391345 /** @name PalletForeignAssetsModuleEvent (108) */1340 /** @name PalletForeignAssetsModuleEvent (107) */1346 interface PalletForeignAssetsModuleEvent extends Enum {1341 interface PalletForeignAssetsModuleEvent extends Enum {1347 readonly isForeignAssetRegistered: boolean;1342 readonly isForeignAssetRegistered: boolean;1348 readonly asForeignAssetRegistered: {1343 readonly asForeignAssetRegistered: {1369 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1364 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1370 }1365 }137113661372 /** @name PalletForeignAssetsModuleAssetMetadata (109) */1367 /** @name PalletForeignAssetsModuleAssetMetadata (108) */1373 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1368 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1374 readonly name: Bytes;1369 readonly name: Bytes;1375 readonly symbol: Bytes;1370 readonly symbol: Bytes;1376 readonly decimals: u8;1371 readonly decimals: u8;1377 readonly minimalBalance: u128;1372 readonly minimalBalance: u128;1378 }1373 }137913741380 /** @name PalletEvmEvent (110) */1375 /** @name PalletEvmEvent (109) */1381 interface PalletEvmEvent extends Enum {1376 interface PalletEvmEvent extends Enum {1382 readonly isLog: boolean;1377 readonly isLog: boolean;1383 readonly asLog: {1378 readonly asLog: {1402 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1397 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1403 }1398 }140413991405 /** @name EthereumLog (111) */1400 /** @name EthereumLog (110) */1406 interface EthereumLog extends Struct {1401 interface EthereumLog extends Struct {1407 readonly address: H160;1402 readonly address: H160;1408 readonly topics: Vec<H256>;1403 readonly topics: Vec<H256>;1409 readonly data: Bytes;1404 readonly data: Bytes;1410 }1405 }141114061412 /** @name PalletEthereumEvent (113) */1407 /** @name PalletEthereumEvent (112) */1413 interface PalletEthereumEvent extends Enum {1408 interface PalletEthereumEvent extends Enum {1414 readonly isExecuted: boolean;1409 readonly isExecuted: boolean;1415 readonly asExecuted: {1410 readonly asExecuted: {1421 readonly type: 'Executed';1416 readonly type: 'Executed';1422 }1417 }142314181424 /** @name EvmCoreErrorExitReason (114) */1419 /** @name EvmCoreErrorExitReason (113) */1425 interface EvmCoreErrorExitReason extends Enum {1420 interface EvmCoreErrorExitReason extends Enum {1426 readonly isSucceed: boolean;1421 readonly isSucceed: boolean;1427 readonly asSucceed: EvmCoreErrorExitSucceed;1422 readonly asSucceed: EvmCoreErrorExitSucceed;1434 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1429 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1435 }1430 }143614311437 /** @name EvmCoreErrorExitSucceed (115) */1432 /** @name EvmCoreErrorExitSucceed (114) */1438 interface EvmCoreErrorExitSucceed extends Enum {1433 interface EvmCoreErrorExitSucceed extends Enum {1439 readonly isStopped: boolean;1434 readonly isStopped: boolean;1440 readonly isReturned: boolean;1435 readonly isReturned: boolean;1441 readonly isSuicided: boolean;1436 readonly isSuicided: boolean;1442 readonly type: 'Stopped' | 'Returned' | 'Suicided';1437 readonly type: 'Stopped' | 'Returned' | 'Suicided';1443 }1438 }144414391445 /** @name EvmCoreErrorExitError (116) */1440 /** @name EvmCoreErrorExitError (115) */1446 interface EvmCoreErrorExitError extends Enum {1441 interface EvmCoreErrorExitError extends Enum {1447 readonly isStackUnderflow: boolean;1442 readonly isStackUnderflow: boolean;1448 readonly isStackOverflow: boolean;1443 readonly isStackOverflow: boolean;1463 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1458 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1464 }1459 }146514601466 /** @name EvmCoreErrorExitRevert (119) */1461 /** @name EvmCoreErrorExitRevert (118) */1467 interface EvmCoreErrorExitRevert extends Enum {1462 interface EvmCoreErrorExitRevert extends Enum {1468 readonly isReverted: boolean;1463 readonly isReverted: boolean;1469 readonly type: 'Reverted';1464 readonly type: 'Reverted';1470 }1465 }147114661472 /** @name EvmCoreErrorExitFatal (120) */1467 /** @name EvmCoreErrorExitFatal (119) */1473 interface EvmCoreErrorExitFatal extends Enum {1468 interface EvmCoreErrorExitFatal extends Enum {1474 readonly isNotSupported: boolean;1469 readonly isNotSupported: boolean;1475 readonly isUnhandledInterrupt: boolean;1470 readonly isUnhandledInterrupt: boolean;1480 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1475 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1481 }1476 }148214771483 /** @name PalletEvmContractHelpersEvent (121) */1478 /** @name PalletEvmContractHelpersEvent (120) */1484 interface PalletEvmContractHelpersEvent extends Enum {1479 interface PalletEvmContractHelpersEvent extends Enum {1485 readonly isContractSponsorSet: boolean;1480 readonly isContractSponsorSet: boolean;1486 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1481 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1491 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1486 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1492 }1487 }149314881494 /** @name PalletEvmMigrationEvent (122) */1489 /** @name PalletEvmMigrationEvent (121) */1495 interface PalletEvmMigrationEvent extends Enum {1490 interface PalletEvmMigrationEvent extends Enum {1496 readonly isTestEvent: boolean;1491 readonly isTestEvent: boolean;1497 readonly type: 'TestEvent';1492 readonly type: 'TestEvent';1498 }1493 }149914941500 /** @name PalletMaintenanceEvent (123) */1495 /** @name PalletMaintenanceEvent (122) */1501 interface PalletMaintenanceEvent extends Enum {1496 interface PalletMaintenanceEvent extends Enum {1502 readonly isMaintenanceEnabled: boolean;1497 readonly isMaintenanceEnabled: boolean;1503 readonly isMaintenanceDisabled: boolean;1498 readonly isMaintenanceDisabled: boolean;1504 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1499 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1505 }1500 }150615011507 /** @name PalletTestUtilsEvent (124) */1502 /** @name PalletTestUtilsEvent (123) */1508 interface PalletTestUtilsEvent extends Enum {1503 interface PalletTestUtilsEvent extends Enum {1509 readonly isValueIsSet: boolean;1504 readonly isValueIsSet: boolean;1510 readonly isShouldRollback: boolean;1505 readonly isShouldRollback: boolean;1511 readonly isBatchCompleted: boolean;1506 readonly isBatchCompleted: boolean;1512 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1507 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1513 }1508 }151415091515 /** @name FrameSystemPhase (125) */1510 /** @name FrameSystemPhase (124) */1516 interface FrameSystemPhase extends Enum {1511 interface FrameSystemPhase extends Enum {1517 readonly isApplyExtrinsic: boolean;1512 readonly isApplyExtrinsic: boolean;1518 readonly asApplyExtrinsic: u32;1513 readonly asApplyExtrinsic: u32;1521 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1516 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1522 }1517 }152315181524 /** @name FrameSystemLastRuntimeUpgradeInfo (127) */1519 /** @name FrameSystemLastRuntimeUpgradeInfo (126) */1525 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1520 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1526 readonly specVersion: Compact<u32>;1521 readonly specVersion: Compact<u32>;1527 readonly specName: Text;1522 readonly specName: Text;1528 }1523 }152915241530 /** @name FrameSystemCall (128) */1525 /** @name FrameSystemCall (127) */1531 interface FrameSystemCall extends Enum {1526 interface FrameSystemCall extends Enum {1532 readonly isFillBlock: boolean;1527 readonly isFillBlock: boolean;1533 readonly asFillBlock: {1528 readonly asFillBlock: {1569 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1564 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1570 }1565 }157115661572 /** @name FrameSystemLimitsBlockWeights (133) */1567 /** @name FrameSystemLimitsBlockWeights (132) */1573 interface FrameSystemLimitsBlockWeights extends Struct {1568 interface FrameSystemLimitsBlockWeights extends Struct {1574 readonly baseBlock: SpWeightsWeightV2Weight;1569 readonly baseBlock: SpWeightsWeightV2Weight;1575 readonly maxBlock: SpWeightsWeightV2Weight;1570 readonly maxBlock: SpWeightsWeightV2Weight;1576 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1571 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1577 }1572 }157815731579 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (134) */1574 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (133) */1580 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1575 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1581 readonly normal: FrameSystemLimitsWeightsPerClass;1576 readonly normal: FrameSystemLimitsWeightsPerClass;1582 readonly operational: FrameSystemLimitsWeightsPerClass;1577 readonly operational: FrameSystemLimitsWeightsPerClass;1583 readonly mandatory: FrameSystemLimitsWeightsPerClass;1578 readonly mandatory: FrameSystemLimitsWeightsPerClass;1584 }1579 }158515801586 /** @name FrameSystemLimitsWeightsPerClass (135) */1581 /** @name FrameSystemLimitsWeightsPerClass (134) */1587 interface FrameSystemLimitsWeightsPerClass extends Struct {1582 interface FrameSystemLimitsWeightsPerClass extends Struct {1588 readonly baseExtrinsic: SpWeightsWeightV2Weight;1583 readonly baseExtrinsic: SpWeightsWeightV2Weight;1589 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1584 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1590 readonly maxTotal: Option<SpWeightsWeightV2Weight>;1585 readonly maxTotal: Option<SpWeightsWeightV2Weight>;1591 readonly reserved: Option<SpWeightsWeightV2Weight>;1586 readonly reserved: Option<SpWeightsWeightV2Weight>;1592 }1587 }159315881594 /** @name FrameSystemLimitsBlockLength (137) */1589 /** @name FrameSystemLimitsBlockLength (136) */1595 interface FrameSystemLimitsBlockLength extends Struct {1590 interface FrameSystemLimitsBlockLength extends Struct {1596 readonly max: FrameSupportDispatchPerDispatchClassU32;1591 readonly max: FrameSupportDispatchPerDispatchClassU32;1597 }1592 }159815931599 /** @name FrameSupportDispatchPerDispatchClassU32 (138) */1594 /** @name FrameSupportDispatchPerDispatchClassU32 (137) */1600 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1595 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1601 readonly normal: u32;1596 readonly normal: u32;1602 readonly operational: u32;1597 readonly operational: u32;1603 readonly mandatory: u32;1598 readonly mandatory: u32;1604 }1599 }160516001606 /** @name SpWeightsRuntimeDbWeight (139) */1601 /** @name SpWeightsRuntimeDbWeight (138) */1607 interface SpWeightsRuntimeDbWeight extends Struct {1602 interface SpWeightsRuntimeDbWeight extends Struct {1608 readonly read: u64;1603 readonly read: u64;1609 readonly write: u64;1604 readonly write: u64;1610 }1605 }161116061612 /** @name SpVersionRuntimeVersion (140) */1607 /** @name SpVersionRuntimeVersion (139) */1613 interface SpVersionRuntimeVersion extends Struct {1608 interface SpVersionRuntimeVersion extends Struct {1614 readonly specName: Text;1609 readonly specName: Text;1615 readonly implName: Text;1610 readonly implName: Text;1621 readonly stateVersion: u8;1616 readonly stateVersion: u8;1622 }1617 }162316181624 /** @name FrameSystemError (145) */1619 /** @name FrameSystemError (144) */1625 interface FrameSystemError extends Enum {1620 interface FrameSystemError extends Enum {1626 readonly isInvalidSpecName: boolean;1621 readonly isInvalidSpecName: boolean;1627 readonly isSpecVersionNeedsToIncrease: boolean;1622 readonly isSpecVersionNeedsToIncrease: boolean;1632 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1627 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1633 }1628 }163416291635 /** @name PolkadotPrimitivesV2PersistedValidationData (146) */1630 /** @name PolkadotPrimitivesV2PersistedValidationData (145) */1636 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1631 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1637 readonly parentHead: Bytes;1632 readonly parentHead: Bytes;1638 readonly relayParentNumber: u32;1633 readonly relayParentNumber: u32;1639 readonly relayParentStorageRoot: H256;1634 readonly relayParentStorageRoot: H256;1640 readonly maxPovSize: u32;1635 readonly maxPovSize: u32;1641 }1636 }164216371643 /** @name PolkadotPrimitivesV2UpgradeRestriction (149) */1638 /** @name PolkadotPrimitivesV2UpgradeRestriction (148) */1644 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1639 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1645 readonly isPresent: boolean;1640 readonly isPresent: boolean;1646 readonly type: 'Present';1641 readonly type: 'Present';1647 }1642 }164816431649 /** @name SpTrieStorageProof (150) */1644 /** @name SpTrieStorageProof (149) */1650 interface SpTrieStorageProof extends Struct {1645 interface SpTrieStorageProof extends Struct {1651 readonly trieNodes: BTreeSet<Bytes>;1646 readonly trieNodes: BTreeSet<Bytes>;1652 }1647 }165316481654 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (152) */1649 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (151) */1655 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1650 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1656 readonly dmqMqcHead: H256;1651 readonly dmqMqcHead: H256;1657 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1652 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1658 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1653 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1659 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1654 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1660 }1655 }166116561662 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (155) */1657 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (154) */1663 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1658 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1664 readonly maxCapacity: u32;1659 readonly maxCapacity: u32;1665 readonly maxTotalSize: u32;1660 readonly maxTotalSize: u32;1669 readonly mqcHead: Option<H256>;1664 readonly mqcHead: Option<H256>;1670 }1665 }167116661672 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (156) */1667 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (155) */1673 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1668 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1674 readonly maxCodeSize: u32;1669 readonly maxCodeSize: u32;1675 readonly maxHeadDataSize: u32;1670 readonly maxHeadDataSize: u32;1682 readonly validationUpgradeDelay: u32;1677 readonly validationUpgradeDelay: u32;1683 }1678 }168416791685 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (162) */1680 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (161) */1686 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1681 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1687 readonly recipient: u32;1682 readonly recipient: u32;1688 readonly data: Bytes;1683 readonly data: Bytes;1689 }1684 }169016851691 /** @name CumulusPalletParachainSystemCall (163) */1686 /** @name CumulusPalletParachainSystemCall (162) */1692 interface CumulusPalletParachainSystemCall extends Enum {1687 interface CumulusPalletParachainSystemCall extends Enum {1693 readonly isSetValidationData: boolean;1688 readonly isSetValidationData: boolean;1694 readonly asSetValidationData: {1689 readonly asSetValidationData: {1709 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1704 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1710 }1705 }171117061712 /** @name CumulusPrimitivesParachainInherentParachainInherentData (164) */1707 /** @name CumulusPrimitivesParachainInherentParachainInherentData (163) */1713 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1708 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1714 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1709 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1715 readonly relayChainState: SpTrieStorageProof;1710 readonly relayChainState: SpTrieStorageProof;1716 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1711 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1717 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1712 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1718 }1713 }171917141720 /** @name PolkadotCorePrimitivesInboundDownwardMessage (166) */1715 /** @name PolkadotCorePrimitivesInboundDownwardMessage (165) */1721 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1716 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1722 readonly sentAt: u32;1717 readonly sentAt: u32;1723 readonly msg: Bytes;1718 readonly msg: Bytes;1724 }1719 }172517201726 /** @name PolkadotCorePrimitivesInboundHrmpMessage (169) */1721 /** @name PolkadotCorePrimitivesInboundHrmpMessage (168) */1727 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1722 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1728 readonly sentAt: u32;1723 readonly sentAt: u32;1729 readonly data: Bytes;1724 readonly data: Bytes;1730 }1725 }173117261732 /** @name CumulusPalletParachainSystemError (172) */1727 /** @name CumulusPalletParachainSystemError (171) */1733 interface CumulusPalletParachainSystemError extends Enum {1728 interface CumulusPalletParachainSystemError extends Enum {1734 readonly isOverlappingUpgrades: boolean;1729 readonly isOverlappingUpgrades: boolean;1735 readonly isProhibitedByPolkadot: boolean;1730 readonly isProhibitedByPolkadot: boolean;1742 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1737 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1743 }1738 }174417391745 /** @name PalletBalancesBalanceLock (174) */1740 /** @name PalletBalancesBalanceLock (173) */1746 interface PalletBalancesBalanceLock extends Struct {1741 interface PalletBalancesBalanceLock extends Struct {1747 readonly id: U8aFixed;1742 readonly id: U8aFixed;1748 readonly amount: u128;1743 readonly amount: u128;1749 readonly reasons: PalletBalancesReasons;1744 readonly reasons: PalletBalancesReasons;1750 }1745 }175117461752 /** @name PalletBalancesReasons (175) */1747 /** @name PalletBalancesReasons (174) */1753 interface PalletBalancesReasons extends Enum {1748 interface PalletBalancesReasons extends Enum {1754 readonly isFee: boolean;1749 readonly isFee: boolean;1755 readonly isMisc: boolean;1750 readonly isMisc: boolean;1756 readonly isAll: boolean;1751 readonly isAll: boolean;1757 readonly type: 'Fee' | 'Misc' | 'All';1752 readonly type: 'Fee' | 'Misc' | 'All';1758 }1753 }175917541760 /** @name PalletBalancesReserveData (178) */1755 /** @name PalletBalancesReserveData (177) */1761 interface PalletBalancesReserveData extends Struct {1756 interface PalletBalancesReserveData extends Struct {1762 readonly id: U8aFixed;1757 readonly id: U8aFixed;1763 readonly amount: u128;1758 readonly amount: u128;1764 }1759 }176517601766 /** @name PalletBalancesReleases (180) */1761 /** @name PalletBalancesReleases (179) */1767 interface PalletBalancesReleases extends Enum {1762 interface PalletBalancesReleases extends Enum {1768 readonly isV100: boolean;1763 readonly isV100: boolean;1769 readonly isV200: boolean;1764 readonly isV200: boolean;1770 readonly type: 'V100' | 'V200';1765 readonly type: 'V100' | 'V200';1771 }1766 }177217671773 /** @name PalletBalancesCall (181) */1768 /** @name PalletBalancesCall (180) */1774 interface PalletBalancesCall extends Enum {1769 interface PalletBalancesCall extends Enum {1775 readonly isTransfer: boolean;1770 readonly isTransfer: boolean;1776 readonly asTransfer: {1771 readonly asTransfer: {1807 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1802 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1808 }1803 }180918041810 /** @name PalletBalancesError (184) */1805 /** @name PalletBalancesError (183) */1811 interface PalletBalancesError extends Enum {1806 interface PalletBalancesError extends Enum {1812 readonly isVestingBalance: boolean;1807 readonly isVestingBalance: boolean;1813 readonly isLiquidityRestrictions: boolean;1808 readonly isLiquidityRestrictions: boolean;1820 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1815 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1821 }1816 }182218171823 /** @name PalletTimestampCall (186) */1818 /** @name PalletTimestampCall (185) */1824 interface PalletTimestampCall extends Enum {1819 interface PalletTimestampCall extends Enum {1825 readonly isSet: boolean;1820 readonly isSet: boolean;1826 readonly asSet: {1821 readonly asSet: {1829 readonly type: 'Set';1824 readonly type: 'Set';1830 }1825 }183118261832 /** @name PalletTransactionPaymentReleases (188) */1827 /** @name PalletTransactionPaymentReleases (187) */1833 interface PalletTransactionPaymentReleases extends Enum {1828 interface PalletTransactionPaymentReleases extends Enum {1834 readonly isV1Ancient: boolean;1829 readonly isV1Ancient: boolean;1835 readonly isV2: boolean;1830 readonly isV2: boolean;1836 readonly type: 'V1Ancient' | 'V2';1831 readonly type: 'V1Ancient' | 'V2';1837 }1832 }183818331839 /** @name PalletTreasuryProposal (189) */1834 /** @name PalletTreasuryProposal (188) */1840 interface PalletTreasuryProposal extends Struct {1835 interface PalletTreasuryProposal extends Struct {1841 readonly proposer: AccountId32;1836 readonly proposer: AccountId32;1842 readonly value: u128;1837 readonly value: u128;1843 readonly beneficiary: AccountId32;1838 readonly beneficiary: AccountId32;1844 readonly bond: u128;1839 readonly bond: u128;1845 }1840 }184618411847 /** @name PalletTreasuryCall (192) */1842 /** @name PalletTreasuryCall (191) */1848 interface PalletTreasuryCall extends Enum {1843 interface PalletTreasuryCall extends Enum {1849 readonly isProposeSpend: boolean;1844 readonly isProposeSpend: boolean;1850 readonly asProposeSpend: {1845 readonly asProposeSpend: {1871 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1866 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1872 }1867 }187318681874 /** @name FrameSupportPalletId (195) */1869 /** @name FrameSupportPalletId (194) */1875 interface FrameSupportPalletId extends U8aFixed {}1870 interface FrameSupportPalletId extends U8aFixed {}187618711877 /** @name PalletTreasuryError (196) */1872 /** @name PalletTreasuryError (195) */1878 interface PalletTreasuryError extends Enum {1873 interface PalletTreasuryError extends Enum {1879 readonly isInsufficientProposersBalance: boolean;1874 readonly isInsufficientProposersBalance: boolean;1880 readonly isInvalidIndex: boolean;1875 readonly isInvalidIndex: boolean;1884 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1879 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1885 }1880 }188618811887 /** @name PalletSudoCall (197) */1882 /** @name PalletSudoCall (196) */1888 interface PalletSudoCall extends Enum {1883 interface PalletSudoCall extends Enum {1889 readonly isSudo: boolean;1884 readonly isSudo: boolean;1890 readonly asSudo: {1885 readonly asSudo: {1907 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1902 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1908 }1903 }190919041910 /** @name OrmlVestingModuleCall (199) */1905 /** @name OrmlVestingModuleCall (198) */1911 interface OrmlVestingModuleCall extends Enum {1906 interface OrmlVestingModuleCall extends Enum {1912 readonly isClaim: boolean;1907 readonly isClaim: boolean;1913 readonly isVestedTransfer: boolean;1908 readonly isVestedTransfer: boolean;1927 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1922 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1928 }1923 }192919241930 /** @name OrmlXtokensModuleCall (201) */1925 /** @name OrmlXtokensModuleCall (200) */1931 interface OrmlXtokensModuleCall extends Enum {1926 interface OrmlXtokensModuleCall extends Enum {1932 readonly isTransfer: boolean;1927 readonly isTransfer: boolean;1933 readonly asTransfer: {1928 readonly asTransfer: {1974 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1969 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1975 }1970 }197619711977 /** @name XcmVersionedMultiAsset (202) */1972 /** @name XcmVersionedMultiAsset (201) */1978 interface XcmVersionedMultiAsset extends Enum {1973 interface XcmVersionedMultiAsset extends Enum {1979 readonly isV0: boolean;1974 readonly isV0: boolean;1980 readonly asV0: XcmV0MultiAsset;1975 readonly asV0: XcmV0MultiAsset;1983 readonly type: 'V0' | 'V1';1978 readonly type: 'V0' | 'V1';1984 }1979 }198519801986 /** @name OrmlTokensModuleCall (205) */1981 /** @name OrmlTokensModuleCall (204) */1987 interface OrmlTokensModuleCall extends Enum {1982 interface OrmlTokensModuleCall extends Enum {1988 readonly isTransfer: boolean;1983 readonly isTransfer: boolean;1989 readonly asTransfer: {1984 readonly asTransfer: {2020 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';2015 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';2021 }2016 }202220172023 /** @name CumulusPalletXcmpQueueCall (206) */2018 /** @name CumulusPalletXcmpQueueCall (205) */2024 interface CumulusPalletXcmpQueueCall extends Enum {2019 interface CumulusPalletXcmpQueueCall extends Enum {2025 readonly isServiceOverweight: boolean;2020 readonly isServiceOverweight: boolean;2026 readonly asServiceOverweight: {2021 readonly asServiceOverweight: {2056 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2051 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2057 }2052 }205820532059 /** @name PalletXcmCall (207) */2054 /** @name PalletXcmCall (206) */2060 interface PalletXcmCall extends Enum {2055 interface PalletXcmCall extends Enum {2061 readonly isSend: boolean;2056 readonly isSend: boolean;2062 readonly asSend: {2057 readonly asSend: {2118 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2113 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2119 }2114 }212021152121 /** @name XcmVersionedXcm (208) */2116 /** @name XcmVersionedXcm (207) */2122 interface XcmVersionedXcm extends Enum {2117 interface XcmVersionedXcm extends Enum {2123 readonly isV0: boolean;2118 readonly isV0: boolean;2124 readonly asV0: XcmV0Xcm;2119 readonly asV0: XcmV0Xcm;2129 readonly type: 'V0' | 'V1' | 'V2';2124 readonly type: 'V0' | 'V1' | 'V2';2130 }2125 }213121262132 /** @name XcmV0Xcm (209) */2127 /** @name XcmV0Xcm (208) */2133 interface XcmV0Xcm extends Enum {2128 interface XcmV0Xcm extends Enum {2134 readonly isWithdrawAsset: boolean;2129 readonly isWithdrawAsset: boolean;2135 readonly asWithdrawAsset: {2130 readonly asWithdrawAsset: {2192 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2187 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2193 }2188 }219421892195 /** @name XcmV0Order (211) */2190 /** @name XcmV0Order (210) */2196 interface XcmV0Order extends Enum {2191 interface XcmV0Order extends Enum {2197 readonly isNull: boolean;2192 readonly isNull: boolean;2198 readonly isDepositAsset: boolean;2193 readonly isDepositAsset: boolean;2240 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2235 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2241 }2236 }224222372243 /** @name XcmV0Response (213) */2238 /** @name XcmV0Response (212) */2244 interface XcmV0Response extends Enum {2239 interface XcmV0Response extends Enum {2245 readonly isAssets: boolean;2240 readonly isAssets: boolean;2246 readonly asAssets: Vec<XcmV0MultiAsset>;2241 readonly asAssets: Vec<XcmV0MultiAsset>;2247 readonly type: 'Assets';2242 readonly type: 'Assets';2248 }2243 }224922442250 /** @name XcmV1Xcm (214) */2245 /** @name XcmV1Xcm (213) */2251 interface XcmV1Xcm extends Enum {2246 interface XcmV1Xcm extends Enum {2252 readonly isWithdrawAsset: boolean;2247 readonly isWithdrawAsset: boolean;2253 readonly asWithdrawAsset: {2248 readonly asWithdrawAsset: {2316 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2311 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2317 }2312 }231823132319 /** @name XcmV1Order (216) */2314 /** @name XcmV1Order (215) */2320 interface XcmV1Order extends Enum {2315 interface XcmV1Order extends Enum {2321 readonly isNoop: boolean;2316 readonly isNoop: boolean;2322 readonly isDepositAsset: boolean;2317 readonly isDepositAsset: boolean;2366 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2361 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2367 }2362 }236823632369 /** @name XcmV1Response (218) */2364 /** @name XcmV1Response (217) */2370 interface XcmV1Response extends Enum {2365 interface XcmV1Response extends Enum {2371 readonly isAssets: boolean;2366 readonly isAssets: boolean;2372 readonly asAssets: XcmV1MultiassetMultiAssets;2367 readonly asAssets: XcmV1MultiassetMultiAssets;2375 readonly type: 'Assets' | 'Version';2370 readonly type: 'Assets' | 'Version';2376 }2371 }237723722378 /** @name CumulusPalletXcmCall (232) */2373 /** @name CumulusPalletXcmCall (231) */2379 type CumulusPalletXcmCall = Null;2374 type CumulusPalletXcmCall = Null;238023752381 /** @name CumulusPalletDmpQueueCall (233) */2376 /** @name CumulusPalletDmpQueueCall (232) */2382 interface CumulusPalletDmpQueueCall extends Enum {2377 interface CumulusPalletDmpQueueCall extends Enum {2383 readonly isServiceOverweight: boolean;2378 readonly isServiceOverweight: boolean;2384 readonly asServiceOverweight: {2379 readonly asServiceOverweight: {2388 readonly type: 'ServiceOverweight';2383 readonly type: 'ServiceOverweight';2389 }2384 }239023852391 /** @name PalletInflationCall (234) */2386 /** @name PalletInflationCall (233) */2392 interface PalletInflationCall extends Enum {2387 interface PalletInflationCall extends Enum {2393 readonly isStartInflation: boolean;2388 readonly isStartInflation: boolean;2394 readonly asStartInflation: {2389 readonly asStartInflation: {2397 readonly type: 'StartInflation';2392 readonly type: 'StartInflation';2398 }2393 }239923942400 /** @name PalletUniqueCall (235) */2395 /** @name PalletUniqueCall (234) */2401 interface PalletUniqueCall extends Enum {2396 interface PalletUniqueCall extends Enum {2402 readonly isCreateCollection: boolean;2397 readonly isCreateCollection: boolean;2403 readonly asCreateCollection: {2398 readonly asCreateCollection: {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';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';2562 }2557 }256325582564 /** @name UpDataStructsCollectionMode (240) */2559 /** @name UpDataStructsCollectionMode (239) */2565 interface UpDataStructsCollectionMode extends Enum {2560 interface UpDataStructsCollectionMode extends Enum {2566 readonly isNft: boolean;2561 readonly isNft: boolean;2567 readonly isFungible: boolean;2562 readonly isFungible: boolean;2570 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2565 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2571 }2566 }257225672573 /** @name UpDataStructsCreateCollectionData (241) */2568 /** @name UpDataStructsCreateCollectionData (240) */2574 interface UpDataStructsCreateCollectionData extends Struct {2569 interface UpDataStructsCreateCollectionData extends Struct {2575 readonly mode: UpDataStructsCollectionMode;2570 readonly mode: UpDataStructsCollectionMode;2576 readonly access: Option<UpDataStructsAccessMode>;2571 readonly access: Option<UpDataStructsAccessMode>;2584 readonly properties: Vec<UpDataStructsProperty>;2579 readonly properties: Vec<UpDataStructsProperty>;2585 }2580 }258625812587 /** @name UpDataStructsAccessMode (243) */2582 /** @name UpDataStructsAccessMode (242) */2588 interface UpDataStructsAccessMode extends Enum {2583 interface UpDataStructsAccessMode extends Enum {2589 readonly isNormal: boolean;2584 readonly isNormal: boolean;2590 readonly isAllowList: boolean;2585 readonly isAllowList: boolean;2591 readonly type: 'Normal' | 'AllowList';2586 readonly type: 'Normal' | 'AllowList';2592 }2587 }259325882594 /** @name UpDataStructsCollectionLimits (245) */2589 /** @name UpDataStructsCollectionLimits (244) */2595 interface UpDataStructsCollectionLimits extends Struct {2590 interface UpDataStructsCollectionLimits extends Struct {2596 readonly accountTokenOwnershipLimit: Option<u32>;2591 readonly accountTokenOwnershipLimit: Option<u32>;2597 readonly sponsoredDataSize: Option<u32>;2592 readonly sponsoredDataSize: Option<u32>;2604 readonly transfersEnabled: Option<bool>;2599 readonly transfersEnabled: Option<bool>;2605 }2600 }260626012607 /** @name UpDataStructsSponsoringRateLimit (247) */2602 /** @name UpDataStructsSponsoringRateLimit (246) */2608 interface UpDataStructsSponsoringRateLimit extends Enum {2603 interface UpDataStructsSponsoringRateLimit extends Enum {2609 readonly isSponsoringDisabled: boolean;2604 readonly isSponsoringDisabled: boolean;2610 readonly isBlocks: boolean;2605 readonly isBlocks: boolean;2611 readonly asBlocks: u32;2606 readonly asBlocks: u32;2612 readonly type: 'SponsoringDisabled' | 'Blocks';2607 readonly type: 'SponsoringDisabled' | 'Blocks';2613 }2608 }261426092615 /** @name UpDataStructsCollectionPermissions (250) */2610 /** @name UpDataStructsCollectionPermissions (249) */2616 interface UpDataStructsCollectionPermissions extends Struct {2611 interface UpDataStructsCollectionPermissions extends Struct {2617 readonly access: Option<UpDataStructsAccessMode>;2612 readonly access: Option<UpDataStructsAccessMode>;2618 readonly mintMode: Option<bool>;2613 readonly mintMode: Option<bool>;2619 readonly nesting: Option<UpDataStructsNestingPermissions>;2614 readonly nesting: Option<UpDataStructsNestingPermissions>;2620 }2615 }262126162622 /** @name UpDataStructsNestingPermissions (252) */2617 /** @name UpDataStructsNestingPermissions (251) */2623 interface UpDataStructsNestingPermissions extends Struct {2618 interface UpDataStructsNestingPermissions extends Struct {2624 readonly tokenOwner: bool;2619 readonly tokenOwner: bool;2625 readonly collectionAdmin: bool;2620 readonly collectionAdmin: bool;2626 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2621 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2627 }2622 }262826232629 /** @name UpDataStructsOwnerRestrictedSet (254) */2624 /** @name UpDataStructsOwnerRestrictedSet (253) */2630 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}2625 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}263126262632 /** @name UpDataStructsPropertyKeyPermission (259) */2627 /** @name UpDataStructsPropertyKeyPermission (258) */2633 interface UpDataStructsPropertyKeyPermission extends Struct {2628 interface UpDataStructsPropertyKeyPermission extends Struct {2634 readonly key: Bytes;2629 readonly key: Bytes;2635 readonly permission: UpDataStructsPropertyPermission;2630 readonly permission: UpDataStructsPropertyPermission;2636 }2631 }263726322638 /** @name UpDataStructsPropertyPermission (260) */2633 /** @name UpDataStructsPropertyPermission (259) */2639 interface UpDataStructsPropertyPermission extends Struct {2634 interface UpDataStructsPropertyPermission extends Struct {2640 readonly mutable: bool;2635 readonly mutable: bool;2641 readonly collectionAdmin: bool;2636 readonly collectionAdmin: bool;2642 readonly tokenOwner: bool;2637 readonly tokenOwner: bool;2643 }2638 }264426392645 /** @name UpDataStructsProperty (263) */2640 /** @name UpDataStructsProperty (262) */2646 interface UpDataStructsProperty extends Struct {2641 interface UpDataStructsProperty extends Struct {2647 readonly key: Bytes;2642 readonly key: Bytes;2648 readonly value: Bytes;2643 readonly value: Bytes;2649 }2644 }265026452651 /** @name UpDataStructsCreateItemData (266) */2646 /** @name UpDataStructsCreateItemData (265) */2652 interface UpDataStructsCreateItemData extends Enum {2647 interface UpDataStructsCreateItemData extends Enum {2653 readonly isNft: boolean;2648 readonly isNft: boolean;2654 readonly asNft: UpDataStructsCreateNftData;2649 readonly asNft: UpDataStructsCreateNftData;2659 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2654 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2660 }2655 }266126562662 /** @name UpDataStructsCreateNftData (267) */2657 /** @name UpDataStructsCreateNftData (266) */2663 interface UpDataStructsCreateNftData extends Struct {2658 interface UpDataStructsCreateNftData extends Struct {2664 readonly properties: Vec<UpDataStructsProperty>;2659 readonly properties: Vec<UpDataStructsProperty>;2665 }2660 }266626612667 /** @name UpDataStructsCreateFungibleData (268) */2662 /** @name UpDataStructsCreateFungibleData (267) */2668 interface UpDataStructsCreateFungibleData extends Struct {2663 interface UpDataStructsCreateFungibleData extends Struct {2669 readonly value: u128;2664 readonly value: u128;2670 }2665 }267126662672 /** @name UpDataStructsCreateReFungibleData (269) */2667 /** @name UpDataStructsCreateReFungibleData (268) */2673 interface UpDataStructsCreateReFungibleData extends Struct {2668 interface UpDataStructsCreateReFungibleData extends Struct {2674 readonly pieces: u128;2669 readonly pieces: u128;2675 readonly properties: Vec<UpDataStructsProperty>;2670 readonly properties: Vec<UpDataStructsProperty>;2676 }2671 }267726722678 /** @name UpDataStructsCreateItemExData (272) */2673 /** @name UpDataStructsCreateItemExData (271) */2679 interface UpDataStructsCreateItemExData extends Enum {2674 interface UpDataStructsCreateItemExData extends Enum {2680 readonly isNft: boolean;2675 readonly isNft: boolean;2681 readonly asNft: Vec<UpDataStructsCreateNftExData>;2676 readonly asNft: Vec<UpDataStructsCreateNftExData>;2688 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2683 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2689 }2684 }269026852691 /** @name UpDataStructsCreateNftExData (274) */2686 /** @name UpDataStructsCreateNftExData (273) */2692 interface UpDataStructsCreateNftExData extends Struct {2687 interface UpDataStructsCreateNftExData extends Struct {2693 readonly properties: Vec<UpDataStructsProperty>;2688 readonly properties: Vec<UpDataStructsProperty>;2694 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2689 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2695 }2690 }269626912697 /** @name UpDataStructsCreateRefungibleExSingleOwner (281) */2692 /** @name UpDataStructsCreateRefungibleExSingleOwner (280) */2698 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2693 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2699 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2694 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2700 readonly pieces: u128;2695 readonly pieces: u128;2701 readonly properties: Vec<UpDataStructsProperty>;2696 readonly properties: Vec<UpDataStructsProperty>;2702 }2697 }270326982704 /** @name UpDataStructsCreateRefungibleExMultipleOwners (283) */2699 /** @name UpDataStructsCreateRefungibleExMultipleOwners (282) */2705 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2700 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2706 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2701 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2707 readonly properties: Vec<UpDataStructsProperty>;2702 readonly properties: Vec<UpDataStructsProperty>;2708 }2703 }270927042710 /** @name PalletUniqueSchedulerV2Call (284) */2705 /** @name PalletUniqueSchedulerV2Call (283) */2711 interface PalletUniqueSchedulerV2Call extends Enum {2706 interface PalletUniqueSchedulerV2Call extends Enum {2712 readonly isSchedule: boolean;2707 readonly isSchedule: boolean;2713 readonly asSchedule: {2708 readonly asSchedule: {2756 readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';2751 readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';2757 }2752 }275827532759 /** @name PalletConfigurationCall (287) */2754 /** @name PalletConfigurationCall (286) */2760 interface PalletConfigurationCall extends Enum {2755 interface PalletConfigurationCall extends Enum {2761 readonly isSetWeightToFeeCoefficientOverride: boolean;2756 readonly isSetWeightToFeeCoefficientOverride: boolean;2762 readonly asSetWeightToFeeCoefficientOverride: {2757 readonly asSetWeightToFeeCoefficientOverride: {2769 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2764 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2770 }2765 }277127662772 /** @name PalletTemplateTransactionPaymentCall (289) */2767 /** @name PalletTemplateTransactionPaymentCall (288) */2773 type PalletTemplateTransactionPaymentCall = Null;2768 type PalletTemplateTransactionPaymentCall = Null;277427692775 /** @name PalletStructureCall (290) */2770 /** @name PalletStructureCall (289) */2776 type PalletStructureCall = Null;2771 type PalletStructureCall = Null;277727722778 /** @name PalletRmrkCoreCall (291) */2773 /** @name PalletRmrkCoreCall (290) */2779 interface PalletRmrkCoreCall extends Enum {2774 interface PalletRmrkCoreCall extends Enum {2780 readonly isCreateCollection: boolean;2775 readonly isCreateCollection: boolean;2781 readonly asCreateCollection: {2776 readonly asCreateCollection: {2881 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2876 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2882 }2877 }288328782884 /** @name RmrkTraitsResourceResourceTypes (297) */2879 /** @name RmrkTraitsResourceResourceTypes (296) */2885 interface RmrkTraitsResourceResourceTypes extends Enum {2880 interface RmrkTraitsResourceResourceTypes extends Enum {2886 readonly isBasic: boolean;2881 readonly isBasic: boolean;2887 readonly asBasic: RmrkTraitsResourceBasicResource;2882 readonly asBasic: RmrkTraitsResourceBasicResource;2892 readonly type: 'Basic' | 'Composable' | 'Slot';2887 readonly type: 'Basic' | 'Composable' | 'Slot';2893 }2888 }289428892895 /** @name RmrkTraitsResourceBasicResource (299) */2890 /** @name RmrkTraitsResourceBasicResource (298) */2896 interface RmrkTraitsResourceBasicResource extends Struct {2891 interface RmrkTraitsResourceBasicResource extends Struct {2897 readonly src: Option<Bytes>;2892 readonly src: Option<Bytes>;2898 readonly metadata: Option<Bytes>;2893 readonly metadata: Option<Bytes>;2899 readonly license: Option<Bytes>;2894 readonly license: Option<Bytes>;2900 readonly thumb: Option<Bytes>;2895 readonly thumb: Option<Bytes>;2901 }2896 }290228972903 /** @name RmrkTraitsResourceComposableResource (301) */2898 /** @name RmrkTraitsResourceComposableResource (300) */2904 interface RmrkTraitsResourceComposableResource extends Struct {2899 interface RmrkTraitsResourceComposableResource extends Struct {2905 readonly parts: Vec<u32>;2900 readonly parts: Vec<u32>;2906 readonly base: u32;2901 readonly base: u32;2910 readonly thumb: Option<Bytes>;2905 readonly thumb: Option<Bytes>;2911 }2906 }291229072913 /** @name RmrkTraitsResourceSlotResource (302) */2908 /** @name RmrkTraitsResourceSlotResource (301) */2914 interface RmrkTraitsResourceSlotResource extends Struct {2909 interface RmrkTraitsResourceSlotResource extends Struct {2915 readonly base: u32;2910 readonly base: u32;2916 readonly src: Option<Bytes>;2911 readonly src: Option<Bytes>;2920 readonly thumb: Option<Bytes>;2915 readonly thumb: Option<Bytes>;2921 }2916 }292229172923 /** @name PalletRmrkEquipCall (305) */2918 /** @name PalletRmrkEquipCall (304) */2924 interface PalletRmrkEquipCall extends Enum {2919 interface PalletRmrkEquipCall extends Enum {2925 readonly isCreateBase: boolean;2920 readonly isCreateBase: boolean;2926 readonly asCreateBase: {2921 readonly asCreateBase: {2942 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2937 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2943 }2938 }294429392945 /** @name RmrkTraitsPartPartType (308) */2940 /** @name RmrkTraitsPartPartType (307) */2946 interface RmrkTraitsPartPartType extends Enum {2941 interface RmrkTraitsPartPartType extends Enum {2947 readonly isFixedPart: boolean;2942 readonly isFixedPart: boolean;2948 readonly asFixedPart: RmrkTraitsPartFixedPart;2943 readonly asFixedPart: RmrkTraitsPartFixedPart;2951 readonly type: 'FixedPart' | 'SlotPart';2946 readonly type: 'FixedPart' | 'SlotPart';2952 }2947 }295329482954 /** @name RmrkTraitsPartFixedPart (310) */2949 /** @name RmrkTraitsPartFixedPart (309) */2955 interface RmrkTraitsPartFixedPart extends Struct {2950 interface RmrkTraitsPartFixedPart extends Struct {2956 readonly id: u32;2951 readonly id: u32;2957 readonly z: u32;2952 readonly z: u32;2958 readonly src: Bytes;2953 readonly src: Bytes;2959 }2954 }296029552961 /** @name RmrkTraitsPartSlotPart (311) */2956 /** @name RmrkTraitsPartSlotPart (310) */2962 interface RmrkTraitsPartSlotPart extends Struct {2957 interface RmrkTraitsPartSlotPart extends Struct {2963 readonly id: u32;2958 readonly id: u32;2964 readonly equippable: RmrkTraitsPartEquippableList;2959 readonly equippable: RmrkTraitsPartEquippableList;2965 readonly src: Bytes;2960 readonly src: Bytes;2966 readonly z: u32;2961 readonly z: u32;2967 }2962 }296829632969 /** @name RmrkTraitsPartEquippableList (312) */2964 /** @name RmrkTraitsPartEquippableList (311) */2970 interface RmrkTraitsPartEquippableList extends Enum {2965 interface RmrkTraitsPartEquippableList extends Enum {2971 readonly isAll: boolean;2966 readonly isAll: boolean;2972 readonly isEmpty: boolean;2967 readonly isEmpty: boolean;2975 readonly type: 'All' | 'Empty' | 'Custom';2970 readonly type: 'All' | 'Empty' | 'Custom';2976 }2971 }297729722978 /** @name RmrkTraitsTheme (314) */2973 /** @name RmrkTraitsTheme (313) */2979 interface RmrkTraitsTheme extends Struct {2974 interface RmrkTraitsTheme extends Struct {2980 readonly name: Bytes;2975 readonly name: Bytes;2981 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2976 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2982 readonly inherit: bool;2977 readonly inherit: bool;2983 }2978 }298429792985 /** @name RmrkTraitsThemeThemeProperty (316) */2980 /** @name RmrkTraitsThemeThemeProperty (315) */2986 interface RmrkTraitsThemeThemeProperty extends Struct {2981 interface RmrkTraitsThemeThemeProperty extends Struct {2987 readonly key: Bytes;2982 readonly key: Bytes;2988 readonly value: Bytes;2983 readonly value: Bytes;2989 }2984 }299029852991 /** @name PalletAppPromotionCall (318) */2986 /** @name PalletAppPromotionCall (317) */2992 interface PalletAppPromotionCall extends Enum {2987 interface PalletAppPromotionCall extends Enum {2993 readonly isSetAdminAddress: boolean;2988 readonly isSetAdminAddress: boolean;2994 readonly asSetAdminAddress: {2989 readonly asSetAdminAddress: {3022 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';3017 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';3023 }3018 }302430193025 /** @name PalletForeignAssetsModuleCall (319) */3020 /** @name PalletForeignAssetsModuleCall (318) */3026 interface PalletForeignAssetsModuleCall extends Enum {3021 interface PalletForeignAssetsModuleCall extends Enum {3027 readonly isRegisterForeignAsset: boolean;3022 readonly isRegisterForeignAsset: boolean;3028 readonly asRegisterForeignAsset: {3023 readonly asRegisterForeignAsset: {3039 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3034 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3040 }3035 }304130363042 /** @name PalletEvmCall (320) */3037 /** @name PalletEvmCall (319) */3043 interface PalletEvmCall extends Enum {3038 interface PalletEvmCall extends Enum {3044 readonly isWithdraw: boolean;3039 readonly isWithdraw: boolean;3045 readonly asWithdraw: {3040 readonly asWithdraw: {3084 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3079 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3085 }3080 }308630813087 /** @name PalletEthereumCall (326) */3082 /** @name PalletEthereumCall (325) */3088 interface PalletEthereumCall extends Enum {3083 interface PalletEthereumCall extends Enum {3089 readonly isTransact: boolean;3084 readonly isTransact: boolean;3090 readonly asTransact: {3085 readonly asTransact: {3093 readonly type: 'Transact';3088 readonly type: 'Transact';3094 }3089 }309530903096 /** @name EthereumTransactionTransactionV2 (327) */3091 /** @name EthereumTransactionTransactionV2 (326) */3097 interface EthereumTransactionTransactionV2 extends Enum {3092 interface EthereumTransactionTransactionV2 extends Enum {3098 readonly isLegacy: boolean;3093 readonly isLegacy: boolean;3099 readonly asLegacy: EthereumTransactionLegacyTransaction;3094 readonly asLegacy: EthereumTransactionLegacyTransaction;3104 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3099 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3105 }3100 }310631013107 /** @name EthereumTransactionLegacyTransaction (328) */3102 /** @name EthereumTransactionLegacyTransaction (327) */3108 interface EthereumTransactionLegacyTransaction extends Struct {3103 interface EthereumTransactionLegacyTransaction extends Struct {3109 readonly nonce: U256;3104 readonly nonce: U256;3110 readonly gasPrice: U256;3105 readonly gasPrice: U256;3115 readonly signature: EthereumTransactionTransactionSignature;3110 readonly signature: EthereumTransactionTransactionSignature;3116 }3111 }311731123118 /** @name EthereumTransactionTransactionAction (329) */3113 /** @name EthereumTransactionTransactionAction (328) */3119 interface EthereumTransactionTransactionAction extends Enum {3114 interface EthereumTransactionTransactionAction extends Enum {3120 readonly isCall: boolean;3115 readonly isCall: boolean;3121 readonly asCall: H160;3116 readonly asCall: H160;3122 readonly isCreate: boolean;3117 readonly isCreate: boolean;3123 readonly type: 'Call' | 'Create';3118 readonly type: 'Call' | 'Create';3124 }3119 }312531203126 /** @name EthereumTransactionTransactionSignature (330) */3121 /** @name EthereumTransactionTransactionSignature (329) */3127 interface EthereumTransactionTransactionSignature extends Struct {3122 interface EthereumTransactionTransactionSignature extends Struct {3128 readonly v: u64;3123 readonly v: u64;3129 readonly r: H256;3124 readonly r: H256;3130 readonly s: H256;3125 readonly s: H256;3131 }3126 }313231273133 /** @name EthereumTransactionEip2930Transaction (332) */3128 /** @name EthereumTransactionEip2930Transaction (331) */3134 interface EthereumTransactionEip2930Transaction extends Struct {3129 interface EthereumTransactionEip2930Transaction extends Struct {3135 readonly chainId: u64;3130 readonly chainId: u64;3136 readonly nonce: U256;3131 readonly nonce: U256;3145 readonly s: H256;3140 readonly s: H256;3146 }3141 }314731423148 /** @name EthereumTransactionAccessListItem (334) */3143 /** @name EthereumTransactionAccessListItem (333) */3149 interface EthereumTransactionAccessListItem extends Struct {3144 interface EthereumTransactionAccessListItem extends Struct {3150 readonly address: H160;3145 readonly address: H160;3151 readonly storageKeys: Vec<H256>;3146 readonly storageKeys: Vec<H256>;3152 }3147 }315331483154 /** @name EthereumTransactionEip1559Transaction (335) */3149 /** @name EthereumTransactionEip1559Transaction (334) */3155 interface EthereumTransactionEip1559Transaction extends Struct {3150 interface EthereumTransactionEip1559Transaction extends Struct {3156 readonly chainId: u64;3151 readonly chainId: u64;3157 readonly nonce: U256;3152 readonly nonce: U256;3167 readonly s: H256;3162 readonly s: H256;3168 }3163 }316931643170 /** @name PalletEvmMigrationCall (336) */3165 /** @name PalletEvmMigrationCall (335) */3171 interface PalletEvmMigrationCall extends Enum {3166 interface PalletEvmMigrationCall extends Enum {3172 readonly isBegin: boolean;3167 readonly isBegin: boolean;3173 readonly asBegin: {3168 readonly asBegin: {3194 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3189 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3195 }3190 }319631913197 /** @name PalletMaintenanceCall (340) */3192 /** @name PalletMaintenanceCall (339) */3198 interface PalletMaintenanceCall extends Enum {3193 interface PalletMaintenanceCall extends Enum {3199 readonly isEnable: boolean;3194 readonly isEnable: boolean;3200 readonly isDisable: boolean;3195 readonly isDisable: boolean;3201 readonly type: 'Enable' | 'Disable';3196 readonly type: 'Enable' | 'Disable';3202 }3197 }320331983204 /** @name PalletTestUtilsCall (341) */3199 /** @name PalletTestUtilsCall (340) */3205 interface PalletTestUtilsCall extends Enum {3200 interface PalletTestUtilsCall extends Enum {3206 readonly isEnable: boolean;3201 readonly isEnable: boolean;3207 readonly isSetTestValue: boolean;3202 readonly isSetTestValue: boolean;3226 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';3221 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';3227 }3222 }322832233229 /** @name PalletSudoError (343) */3224 /** @name PalletSudoError (342) */3230 interface PalletSudoError extends Enum {3225 interface PalletSudoError extends Enum {3231 readonly isRequireSudo: boolean;3226 readonly isRequireSudo: boolean;3232 readonly type: 'RequireSudo';3227 readonly type: 'RequireSudo';3233 }3228 }323432293235 /** @name OrmlVestingModuleError (345) */3230 /** @name OrmlVestingModuleError (344) */3236 interface OrmlVestingModuleError extends Enum {3231 interface OrmlVestingModuleError extends Enum {3237 readonly isZeroVestingPeriod: boolean;3232 readonly isZeroVestingPeriod: boolean;3238 readonly isZeroVestingPeriodCount: boolean;3233 readonly isZeroVestingPeriodCount: boolean;3243 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3238 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3244 }3239 }324532403246 /** @name OrmlXtokensModuleError (346) */3241 /** @name OrmlXtokensModuleError (345) */3247 interface OrmlXtokensModuleError extends Enum {3242 interface OrmlXtokensModuleError extends Enum {3248 readonly isAssetHasNoReserve: boolean;3243 readonly isAssetHasNoReserve: boolean;3249 readonly isNotCrossChainTransfer: boolean;3244 readonly isNotCrossChainTransfer: boolean;3267 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3262 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3268 }3263 }326932643270 /** @name OrmlTokensBalanceLock (349) */3265 /** @name OrmlTokensBalanceLock (348) */3271 interface OrmlTokensBalanceLock extends Struct {3266 interface OrmlTokensBalanceLock extends Struct {3272 readonly id: U8aFixed;3267 readonly id: U8aFixed;3273 readonly amount: u128;3268 readonly amount: u128;3274 }3269 }327532703276 /** @name OrmlTokensAccountData (351) */3271 /** @name OrmlTokensAccountData (350) */3277 interface OrmlTokensAccountData extends Struct {3272 interface OrmlTokensAccountData extends Struct {3278 readonly free: u128;3273 readonly free: u128;3279 readonly reserved: u128;3274 readonly reserved: u128;3280 readonly frozen: u128;3275 readonly frozen: u128;3281 }3276 }328232773283 /** @name OrmlTokensReserveData (353) */3278 /** @name OrmlTokensReserveData (352) */3284 interface OrmlTokensReserveData extends Struct {3279 interface OrmlTokensReserveData extends Struct {3285 readonly id: Null;3280 readonly id: Null;3286 readonly amount: u128;3281 readonly amount: u128;3287 }3282 }328832833289 /** @name OrmlTokensModuleError (355) */3284 /** @name OrmlTokensModuleError (354) */3290 interface OrmlTokensModuleError extends Enum {3285 interface OrmlTokensModuleError extends Enum {3291 readonly isBalanceTooLow: boolean;3286 readonly isBalanceTooLow: boolean;3292 readonly isAmountIntoBalanceFailed: boolean;3287 readonly isAmountIntoBalanceFailed: boolean;3299 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3294 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3300 }3295 }330132963302 /** @name CumulusPalletXcmpQueueInboundChannelDetails (357) */3297 /** @name CumulusPalletXcmpQueueInboundChannelDetails (356) */3303 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3298 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3304 readonly sender: u32;3299 readonly sender: u32;3305 readonly state: CumulusPalletXcmpQueueInboundState;3300 readonly state: CumulusPalletXcmpQueueInboundState;3306 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3301 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3307 }3302 }330833033309 /** @name CumulusPalletXcmpQueueInboundState (358) */3304 /** @name CumulusPalletXcmpQueueInboundState (357) */3310 interface CumulusPalletXcmpQueueInboundState extends Enum {3305 interface CumulusPalletXcmpQueueInboundState extends Enum {3311 readonly isOk: boolean;3306 readonly isOk: boolean;3312 readonly isSuspended: boolean;3307 readonly isSuspended: boolean;3313 readonly type: 'Ok' | 'Suspended';3308 readonly type: 'Ok' | 'Suspended';3314 }3309 }331533103316 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (361) */3311 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (360) */3317 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3312 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3318 readonly isConcatenatedVersionedXcm: boolean;3313 readonly isConcatenatedVersionedXcm: boolean;3319 readonly isConcatenatedEncodedBlob: boolean;3314 readonly isConcatenatedEncodedBlob: boolean;3320 readonly isSignals: boolean;3315 readonly isSignals: boolean;3321 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3316 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3322 }3317 }332333183324 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (364) */3319 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (363) */3325 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3320 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3326 readonly recipient: u32;3321 readonly recipient: u32;3327 readonly state: CumulusPalletXcmpQueueOutboundState;3322 readonly state: CumulusPalletXcmpQueueOutboundState;3330 readonly lastIndex: u16;3325 readonly lastIndex: u16;3331 }3326 }333233273333 /** @name CumulusPalletXcmpQueueOutboundState (365) */3328 /** @name CumulusPalletXcmpQueueOutboundState (364) */3334 interface CumulusPalletXcmpQueueOutboundState extends Enum {3329 interface CumulusPalletXcmpQueueOutboundState extends Enum {3335 readonly isOk: boolean;3330 readonly isOk: boolean;3336 readonly isSuspended: boolean;3331 readonly isSuspended: boolean;3337 readonly type: 'Ok' | 'Suspended';3332 readonly type: 'Ok' | 'Suspended';3338 }3333 }333933343340 /** @name CumulusPalletXcmpQueueQueueConfigData (367) */3335 /** @name CumulusPalletXcmpQueueQueueConfigData (366) */3341 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3336 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3342 readonly suspendThreshold: u32;3337 readonly suspendThreshold: u32;3343 readonly dropThreshold: u32;3338 readonly dropThreshold: u32;3347 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3342 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3348 }3343 }334933443350 /** @name CumulusPalletXcmpQueueError (369) */3345 /** @name CumulusPalletXcmpQueueError (368) */3351 interface CumulusPalletXcmpQueueError extends Enum {3346 interface CumulusPalletXcmpQueueError extends Enum {3352 readonly isFailedToSend: boolean;3347 readonly isFailedToSend: boolean;3353 readonly isBadXcmOrigin: boolean;3348 readonly isBadXcmOrigin: boolean;3357 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3352 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3358 }3353 }335933543360 /** @name PalletXcmError (370) */3355 /** @name PalletXcmError (369) */3361 interface PalletXcmError extends Enum {3356 interface PalletXcmError extends Enum {3362 readonly isUnreachable: boolean;3357 readonly isUnreachable: boolean;3363 readonly isSendFailure: boolean;3358 readonly isSendFailure: boolean;3375 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3370 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3376 }3371 }337733723378 /** @name CumulusPalletXcmError (371) */3373 /** @name CumulusPalletXcmError (370) */3379 type CumulusPalletXcmError = Null;3374 type CumulusPalletXcmError = Null;338033753381 /** @name CumulusPalletDmpQueueConfigData (372) */3376 /** @name CumulusPalletDmpQueueConfigData (371) */3382 interface CumulusPalletDmpQueueConfigData extends Struct {3377 interface CumulusPalletDmpQueueConfigData extends Struct {3383 readonly maxIndividual: SpWeightsWeightV2Weight;3378 readonly maxIndividual: SpWeightsWeightV2Weight;3384 }3379 }338533803386 /** @name CumulusPalletDmpQueuePageIndexData (373) */3381 /** @name CumulusPalletDmpQueuePageIndexData (372) */3387 interface CumulusPalletDmpQueuePageIndexData extends Struct {3382 interface CumulusPalletDmpQueuePageIndexData extends Struct {3388 readonly beginUsed: u32;3383 readonly beginUsed: u32;3389 readonly endUsed: u32;3384 readonly endUsed: u32;3390 readonly overweightCount: u64;3385 readonly overweightCount: u64;3391 }3386 }339233873393 /** @name CumulusPalletDmpQueueError (376) */3388 /** @name CumulusPalletDmpQueueError (375) */3394 interface CumulusPalletDmpQueueError extends Enum {3389 interface CumulusPalletDmpQueueError extends Enum {3395 readonly isUnknown: boolean;3390 readonly isUnknown: boolean;3396 readonly isOverLimit: boolean;3391 readonly isOverLimit: boolean;3397 readonly type: 'Unknown' | 'OverLimit';3392 readonly type: 'Unknown' | 'OverLimit';3398 }3393 }339933943400 /** @name PalletUniqueError (380) */3395 /** @name PalletUniqueError (379) */3401 interface PalletUniqueError extends Enum {3396 interface PalletUniqueError extends Enum {3402 readonly isCollectionDecimalPointLimitExceeded: boolean;3397 readonly isCollectionDecimalPointLimitExceeded: boolean;3403 readonly isConfirmUnsetSponsorFail: boolean;3404 readonly isEmptyArgument: boolean;3398 readonly isEmptyArgument: boolean;3405 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3399 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3406 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3400 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3407 }3401 }340834023409 /** @name PalletUniqueSchedulerV2BlockAgenda (381) */3403 /** @name PalletUniqueSchedulerV2BlockAgenda (380) */3410 interface PalletUniqueSchedulerV2BlockAgenda extends Struct {3404 interface PalletUniqueSchedulerV2BlockAgenda extends Struct {3411 readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;3405 readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;3412 readonly freePlaces: u32;3406 readonly freePlaces: u32;3413 }3407 }341434083415 /** @name PalletUniqueSchedulerV2Scheduled (384) */3409 /** @name PalletUniqueSchedulerV2Scheduled (383) */3416 interface PalletUniqueSchedulerV2Scheduled extends Struct {3410 interface PalletUniqueSchedulerV2Scheduled extends Struct {3417 readonly maybeId: Option<U8aFixed>;3411 readonly maybeId: Option<U8aFixed>;3418 readonly priority: u8;3412 readonly priority: u8;3421 readonly origin: OpalRuntimeOriginCaller;3415 readonly origin: OpalRuntimeOriginCaller;3422 }3416 }342334173424 /** @name PalletUniqueSchedulerV2ScheduledCall (385) */3418 /** @name PalletUniqueSchedulerV2ScheduledCall (384) */3425 interface PalletUniqueSchedulerV2ScheduledCall extends Enum {3419 interface PalletUniqueSchedulerV2ScheduledCall extends Enum {3426 readonly isInline: boolean;3420 readonly isInline: boolean;3427 readonly asInline: Bytes;3421 readonly asInline: Bytes;3433 readonly type: 'Inline' | 'PreimageLookup';3427 readonly type: 'Inline' | 'PreimageLookup';3434 }3428 }343534293436 /** @name OpalRuntimeOriginCaller (387) */3430 /** @name OpalRuntimeOriginCaller (386) */3437 interface OpalRuntimeOriginCaller extends Enum {3431 interface OpalRuntimeOriginCaller extends Enum {3438 readonly isSystem: boolean;3432 readonly isSystem: boolean;3439 readonly asSystem: FrameSupportDispatchRawOrigin;3433 readonly asSystem: FrameSupportDispatchRawOrigin;3447 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3441 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3448 }3442 }344934433450 /** @name FrameSupportDispatchRawOrigin (388) */3444 /** @name FrameSupportDispatchRawOrigin (387) */3451 interface FrameSupportDispatchRawOrigin extends Enum {3445 interface FrameSupportDispatchRawOrigin extends Enum {3452 readonly isRoot: boolean;3446 readonly isRoot: boolean;3453 readonly isSigned: boolean;3447 readonly isSigned: boolean;3456 readonly type: 'Root' | 'Signed' | 'None';3450 readonly type: 'Root' | 'Signed' | 'None';3457 }3451 }345834523459 /** @name PalletXcmOrigin (389) */3453 /** @name PalletXcmOrigin (388) */3460 interface PalletXcmOrigin extends Enum {3454 interface PalletXcmOrigin extends Enum {3461 readonly isXcm: boolean;3455 readonly isXcm: boolean;3462 readonly asXcm: XcmV1MultiLocation;3456 readonly asXcm: XcmV1MultiLocation;3465 readonly type: 'Xcm' | 'Response';3459 readonly type: 'Xcm' | 'Response';3466 }3460 }346734613468 /** @name CumulusPalletXcmOrigin (390) */3462 /** @name CumulusPalletXcmOrigin (389) */3469 interface CumulusPalletXcmOrigin extends Enum {3463 interface CumulusPalletXcmOrigin extends Enum {3470 readonly isRelay: boolean;3464 readonly isRelay: boolean;3471 readonly isSiblingParachain: boolean;3465 readonly isSiblingParachain: boolean;3472 readonly asSiblingParachain: u32;3466 readonly asSiblingParachain: u32;3473 readonly type: 'Relay' | 'SiblingParachain';3467 readonly type: 'Relay' | 'SiblingParachain';3474 }3468 }347534693476 /** @name PalletEthereumRawOrigin (391) */3470 /** @name PalletEthereumRawOrigin (390) */3477 interface PalletEthereumRawOrigin extends Enum {3471 interface PalletEthereumRawOrigin extends Enum {3478 readonly isEthereumTransaction: boolean;3472 readonly isEthereumTransaction: boolean;3479 readonly asEthereumTransaction: H160;3473 readonly asEthereumTransaction: H160;3480 readonly type: 'EthereumTransaction';3474 readonly type: 'EthereumTransaction';3481 }3475 }348234763483 /** @name SpCoreVoid (392) */3477 /** @name SpCoreVoid (391) */3484 type SpCoreVoid = Null;3478 type SpCoreVoid = Null;348534793486 /** @name PalletUniqueSchedulerV2Error (394) */3480 /** @name PalletUniqueSchedulerV2Error (393) */3487 interface PalletUniqueSchedulerV2Error extends Enum {3481 interface PalletUniqueSchedulerV2Error extends Enum {3488 readonly isFailedToSchedule: boolean;3482 readonly isFailedToSchedule: boolean;3489 readonly isAgendaIsExhausted: boolean;3483 readonly isAgendaIsExhausted: boolean;3496 readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';3490 readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';3497 }3491 }349834923499 /** @name UpDataStructsCollection (395) */3493 /** @name UpDataStructsCollection (394) */3500 interface UpDataStructsCollection extends Struct {3494 interface UpDataStructsCollection extends Struct {3501 readonly owner: AccountId32;3495 readonly owner: AccountId32;3502 readonly mode: UpDataStructsCollectionMode;3496 readonly mode: UpDataStructsCollectionMode;3509 readonly flags: U8aFixed;3503 readonly flags: U8aFixed;3510 }3504 }351135053512 /** @name UpDataStructsSponsorshipStateAccountId32 (396) */3506 /** @name UpDataStructsSponsorshipStateAccountId32 (395) */3513 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3507 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3514 readonly isDisabled: boolean;3508 readonly isDisabled: boolean;3515 readonly isUnconfirmed: boolean;3509 readonly isUnconfirmed: boolean;3519 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3513 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3520 }3514 }352135153522 /** @name UpDataStructsProperties (398) */3516 /** @name UpDataStructsProperties (397) */3523 interface UpDataStructsProperties extends Struct {3517 interface UpDataStructsProperties extends Struct {3524 readonly map: UpDataStructsPropertiesMapBoundedVec;3518 readonly map: UpDataStructsPropertiesMapBoundedVec;3525 readonly consumedSpace: u32;3519 readonly consumedSpace: u32;3526 readonly spaceLimit: u32;3520 readonly spaceLimit: u32;3527 }3521 }352835223529 /** @name UpDataStructsPropertiesMapBoundedVec (399) */3523 /** @name UpDataStructsPropertiesMapBoundedVec (398) */3530 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}3524 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}353135253532 /** @name UpDataStructsPropertiesMapPropertyPermission (404) */3526 /** @name UpDataStructsPropertiesMapPropertyPermission (403) */3533 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}3527 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}353435283535 /** @name UpDataStructsCollectionStats (411) */3529 /** @name UpDataStructsCollectionStats (410) */3536 interface UpDataStructsCollectionStats extends Struct {3530 interface UpDataStructsCollectionStats extends Struct {3537 readonly created: u32;3531 readonly created: u32;3538 readonly destroyed: u32;3532 readonly destroyed: u32;3539 readonly alive: u32;3533 readonly alive: u32;3540 }3534 }354135353542 /** @name UpDataStructsTokenChild (412) */3536 /** @name UpDataStructsTokenChild (411) */3543 interface UpDataStructsTokenChild extends Struct {3537 interface UpDataStructsTokenChild extends Struct {3544 readonly token: u32;3538 readonly token: u32;3545 readonly collection: u32;3539 readonly collection: u32;3546 }3540 }354735413548 /** @name PhantomTypeUpDataStructs (413) */3542 /** @name PhantomTypeUpDataStructs (412) */3549 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}3543 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}355035443551 /** @name UpDataStructsTokenData (415) */3545 /** @name UpDataStructsTokenData (414) */3552 interface UpDataStructsTokenData extends Struct {3546 interface UpDataStructsTokenData extends Struct {3553 readonly properties: Vec<UpDataStructsProperty>;3547 readonly properties: Vec<UpDataStructsProperty>;3554 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3548 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3555 readonly pieces: u128;3549 readonly pieces: u128;3556 }3550 }355735513558 /** @name UpDataStructsRpcCollection (417) */3552 /** @name UpDataStructsRpcCollection (416) */3559 interface UpDataStructsRpcCollection extends Struct {3553 interface UpDataStructsRpcCollection extends Struct {3560 readonly owner: AccountId32;3554 readonly owner: AccountId32;3561 readonly mode: UpDataStructsCollectionMode;3555 readonly mode: UpDataStructsCollectionMode;3571 readonly flags: UpDataStructsRpcCollectionFlags;3565 readonly flags: UpDataStructsRpcCollectionFlags;3572 }3566 }357335673574 /** @name UpDataStructsRpcCollectionFlags (418) */3568 /** @name UpDataStructsRpcCollectionFlags (417) */3575 interface UpDataStructsRpcCollectionFlags extends Struct {3569 interface UpDataStructsRpcCollectionFlags extends Struct {3576 readonly foreign: bool;3570 readonly foreign: bool;3577 readonly erc721metadata: bool;3571 readonly erc721metadata: bool;3578 }3572 }357935733580 /** @name RmrkTraitsCollectionCollectionInfo (419) */3574 /** @name RmrkTraitsCollectionCollectionInfo (418) */3581 interface RmrkTraitsCollectionCollectionInfo extends Struct {3575 interface RmrkTraitsCollectionCollectionInfo extends Struct {3582 readonly issuer: AccountId32;3576 readonly issuer: AccountId32;3583 readonly metadata: Bytes;3577 readonly metadata: Bytes;3586 readonly nftsCount: u32;3580 readonly nftsCount: u32;3587 }3581 }358835823589 /** @name RmrkTraitsNftNftInfo (420) */3583 /** @name RmrkTraitsNftNftInfo (419) */3590 interface RmrkTraitsNftNftInfo extends Struct {3584 interface RmrkTraitsNftNftInfo extends Struct {3591 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3585 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3592 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3586 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3595 readonly pending: bool;3589 readonly pending: bool;3596 }3590 }359735913598 /** @name RmrkTraitsNftRoyaltyInfo (422) */3592 /** @name RmrkTraitsNftRoyaltyInfo (421) */3599 interface RmrkTraitsNftRoyaltyInfo extends Struct {3593 interface RmrkTraitsNftRoyaltyInfo extends Struct {3600 readonly recipient: AccountId32;3594 readonly recipient: AccountId32;3601 readonly amount: Permill;3595 readonly amount: Permill;3602 }3596 }360335973604 /** @name RmrkTraitsResourceResourceInfo (423) */3598 /** @name RmrkTraitsResourceResourceInfo (422) */3605 interface RmrkTraitsResourceResourceInfo extends Struct {3599 interface RmrkTraitsResourceResourceInfo extends Struct {3606 readonly id: u32;3600 readonly id: u32;3607 readonly resource: RmrkTraitsResourceResourceTypes;3601 readonly resource: RmrkTraitsResourceResourceTypes;3608 readonly pending: bool;3602 readonly pending: bool;3609 readonly pendingRemoval: bool;3603 readonly pendingRemoval: bool;3610 }3604 }361136053612 /** @name RmrkTraitsPropertyPropertyInfo (424) */3606 /** @name RmrkTraitsPropertyPropertyInfo (423) */3613 interface RmrkTraitsPropertyPropertyInfo extends Struct {3607 interface RmrkTraitsPropertyPropertyInfo extends Struct {3614 readonly key: Bytes;3608 readonly key: Bytes;3615 readonly value: Bytes;3609 readonly value: Bytes;3616 }3610 }361736113618 /** @name RmrkTraitsBaseBaseInfo (425) */3612 /** @name RmrkTraitsBaseBaseInfo (424) */3619 interface RmrkTraitsBaseBaseInfo extends Struct {3613 interface RmrkTraitsBaseBaseInfo extends Struct {3620 readonly issuer: AccountId32;3614 readonly issuer: AccountId32;3621 readonly baseType: Bytes;3615 readonly baseType: Bytes;3622 readonly symbol: Bytes;3616 readonly symbol: Bytes;3623 }3617 }362436183625 /** @name RmrkTraitsNftNftChild (426) */3619 /** @name RmrkTraitsNftNftChild (425) */3626 interface RmrkTraitsNftNftChild extends Struct {3620 interface RmrkTraitsNftNftChild extends Struct {3627 readonly collectionId: u32;3621 readonly collectionId: u32;3628 readonly nftId: u32;3622 readonly nftId: u32;3629 }3623 }363036243631 /** @name PalletCommonError (428) */3625 /** @name PalletCommonError (427) */3632 interface PalletCommonError extends Enum {3626 interface PalletCommonError extends Enum {3633 readonly isCollectionNotFound: boolean;3627 readonly isCollectionNotFound: boolean;3634 readonly isMustBeTokenOwner: boolean;3628 readonly isMustBeTokenOwner: boolean;3664 readonly isEmptyPropertyKey: boolean;3658 readonly isEmptyPropertyKey: boolean;3665 readonly isCollectionIsExternal: boolean;3659 readonly isCollectionIsExternal: boolean;3666 readonly isCollectionIsInternal: boolean;3660 readonly isCollectionIsInternal: boolean;3661 readonly isConfirmSponsorshipFail: boolean;3662 readonly isUserIsNotCollectionAdmin: 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';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';3668 }3664 }366936653670 /** @name PalletFungibleError (430) */3666 /** @name PalletFungibleError (429) */3671 interface PalletFungibleError extends Enum {3667 interface PalletFungibleError extends Enum {3672 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3668 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3673 readonly isFungibleItemsHaveNoId: boolean;3669 readonly isFungibleItemsHaveNoId: boolean;3678 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';3674 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';3679 }3675 }368036763681 /** @name PalletRefungibleItemData (431) */3677 /** @name PalletRefungibleItemData (430) */3682 interface PalletRefungibleItemData extends Struct {3678 interface PalletRefungibleItemData extends Struct {3683 readonly constData: Bytes;3679 readonly constData: Bytes;3684 }3680 }368536813686 /** @name PalletRefungibleError (436) */3682 /** @name PalletRefungibleError (435) */3687 interface PalletRefungibleError extends Enum {3683 interface PalletRefungibleError extends Enum {3688 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3684 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3689 readonly isWrongRefungiblePieces: boolean;3685 readonly isWrongRefungiblePieces: boolean;3693 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3689 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3694 }3690 }369536913696 /** @name PalletNonfungibleItemData (437) */3692 /** @name PalletNonfungibleItemData (436) */3697 interface PalletNonfungibleItemData extends Struct {3693 interface PalletNonfungibleItemData extends Struct {3698 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3694 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3699 }3695 }370036963701 /** @name UpDataStructsPropertyScope (439) */3697 /** @name UpDataStructsPropertyScope (438) */3702 interface UpDataStructsPropertyScope extends Enum {3698 interface UpDataStructsPropertyScope extends Enum {3703 readonly isNone: boolean;3699 readonly isNone: boolean;3704 readonly isRmrk: boolean;3700 readonly isRmrk: boolean;3705 readonly type: 'None' | 'Rmrk';3701 readonly type: 'None' | 'Rmrk';3706 }3702 }370737033708 /** @name PalletNonfungibleError (441) */3704 /** @name PalletNonfungibleError (440) */3709 interface PalletNonfungibleError extends Enum {3705 interface PalletNonfungibleError extends Enum {3710 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3706 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3711 readonly isNonfungibleItemsHaveNoAmount: boolean;3707 readonly isNonfungibleItemsHaveNoAmount: boolean;3712 readonly isCantBurnNftWithChildren: boolean;3708 readonly isCantBurnNftWithChildren: boolean;3713 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3709 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3714 }3710 }371537113716 /** @name PalletStructureError (442) */3712 /** @name PalletStructureError (441) */3717 interface PalletStructureError extends Enum {3713 interface PalletStructureError extends Enum {3718 readonly isOuroborosDetected: boolean;3714 readonly isOuroborosDetected: boolean;3719 readonly isDepthLimit: boolean;3715 readonly isDepthLimit: boolean;3722 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3718 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3723 }3719 }372437203725 /** @name PalletRmrkCoreError (443) */3721 /** @name PalletRmrkCoreError (442) */3726 interface PalletRmrkCoreError extends Enum {3722 interface PalletRmrkCoreError extends Enum {3727 readonly isCorruptedCollectionType: boolean;3723 readonly isCorruptedCollectionType: boolean;3728 readonly isRmrkPropertyKeyIsTooLong: boolean;3724 readonly isRmrkPropertyKeyIsTooLong: boolean;3746 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3742 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3747 }3743 }374837443749 /** @name PalletRmrkEquipError (445) */3745 /** @name PalletRmrkEquipError (444) */3750 interface PalletRmrkEquipError extends Enum {3746 interface PalletRmrkEquipError extends Enum {3751 readonly isPermissionError: boolean;3747 readonly isPermissionError: boolean;3752 readonly isNoAvailableBaseId: boolean;3748 readonly isNoAvailableBaseId: boolean;3758 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3754 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3759 }3755 }376037563761 /** @name PalletAppPromotionError (451) */3757 /** @name PalletAppPromotionError (450) */3762 interface PalletAppPromotionError extends Enum {3758 interface PalletAppPromotionError extends Enum {3763 readonly isAdminNotSet: boolean;3759 readonly isAdminNotSet: boolean;3764 readonly isNoPermission: boolean;3760 readonly isNoPermission: boolean;3769 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3765 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3770 }3766 }377137673772 /** @name PalletForeignAssetsModuleError (452) */3768 /** @name PalletForeignAssetsModuleError (451) */3773 interface PalletForeignAssetsModuleError extends Enum {3769 interface PalletForeignAssetsModuleError extends Enum {3774 readonly isBadLocation: boolean;3770 readonly isBadLocation: boolean;3775 readonly isMultiLocationExisted: boolean;3771 readonly isMultiLocationExisted: boolean;3778 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3774 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3779 }3775 }378037763781 /** @name PalletEvmError (454) */3777 /** @name PalletEvmError (453) */3782 interface PalletEvmError extends Enum {3778 interface PalletEvmError extends Enum {3783 readonly isBalanceLow: boolean;3779 readonly isBalanceLow: boolean;3784 readonly isFeeOverflow: boolean;3780 readonly isFeeOverflow: boolean;3793 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';3789 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';3794 }3790 }379537913796 /** @name FpRpcTransactionStatus (457) */3792 /** @name FpRpcTransactionStatus (456) */3797 interface FpRpcTransactionStatus extends Struct {3793 interface FpRpcTransactionStatus extends Struct {3798 readonly transactionHash: H256;3794 readonly transactionHash: H256;3799 readonly transactionIndex: u32;3795 readonly transactionIndex: u32;3804 readonly logsBloom: EthbloomBloom;3800 readonly logsBloom: EthbloomBloom;3805 }3801 }380638023807 /** @name EthbloomBloom (459) */3803 /** @name EthbloomBloom (458) */3808 interface EthbloomBloom extends U8aFixed {}3804 interface EthbloomBloom extends U8aFixed {}380938053810 /** @name EthereumReceiptReceiptV3 (461) */3806 /** @name EthereumReceiptReceiptV3 (460) */3811 interface EthereumReceiptReceiptV3 extends Enum {3807 interface EthereumReceiptReceiptV3 extends Enum {3812 readonly isLegacy: boolean;3808 readonly isLegacy: boolean;3813 readonly asLegacy: EthereumReceiptEip658ReceiptData;3809 readonly asLegacy: EthereumReceiptEip658ReceiptData;3818 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3814 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3819 }3815 }382038163821 /** @name EthereumReceiptEip658ReceiptData (462) */3817 /** @name EthereumReceiptEip658ReceiptData (461) */3822 interface EthereumReceiptEip658ReceiptData extends Struct {3818 interface EthereumReceiptEip658ReceiptData extends Struct {3823 readonly statusCode: u8;3819 readonly statusCode: u8;3824 readonly usedGas: U256;3820 readonly usedGas: U256;3825 readonly logsBloom: EthbloomBloom;3821 readonly logsBloom: EthbloomBloom;3826 readonly logs: Vec<EthereumLog>;3822 readonly logs: Vec<EthereumLog>;3827 }3823 }382838243829 /** @name EthereumBlock (463) */3825 /** @name EthereumBlock (462) */3830 interface EthereumBlock extends Struct {3826 interface EthereumBlock extends Struct {3831 readonly header: EthereumHeader;3827 readonly header: EthereumHeader;3832 readonly transactions: Vec<EthereumTransactionTransactionV2>;3828 readonly transactions: Vec<EthereumTransactionTransactionV2>;3833 readonly ommers: Vec<EthereumHeader>;3829 readonly ommers: Vec<EthereumHeader>;3834 }3830 }383538313836 /** @name EthereumHeader (464) */3832 /** @name EthereumHeader (463) */3837 interface EthereumHeader extends Struct {3833 interface EthereumHeader extends Struct {3838 readonly parentHash: H256;3834 readonly parentHash: H256;3839 readonly ommersHash: H256;3835 readonly ommersHash: H256;3852 readonly nonce: EthereumTypesHashH64;3848 readonly nonce: EthereumTypesHashH64;3853 }3849 }385438503855 /** @name EthereumTypesHashH64 (465) */3851 /** @name EthereumTypesHashH64 (464) */3856 interface EthereumTypesHashH64 extends U8aFixed {}3852 interface EthereumTypesHashH64 extends U8aFixed {}385738533858 /** @name PalletEthereumError (470) */3854 /** @name PalletEthereumError (469) */3859 interface PalletEthereumError extends Enum {3855 interface PalletEthereumError extends Enum {3860 readonly isInvalidSignature: boolean;3856 readonly isInvalidSignature: boolean;3861 readonly isPreLogExists: boolean;3857 readonly isPreLogExists: boolean;3862 readonly type: 'InvalidSignature' | 'PreLogExists';3858 readonly type: 'InvalidSignature' | 'PreLogExists';3863 }3859 }386438603865 /** @name PalletEvmCoderSubstrateError (471) */3861 /** @name PalletEvmCoderSubstrateError (470) */3866 interface PalletEvmCoderSubstrateError extends Enum {3862 interface PalletEvmCoderSubstrateError extends Enum {3867 readonly isOutOfGas: boolean;3863 readonly isOutOfGas: boolean;3868 readonly isOutOfFund: boolean;3864 readonly isOutOfFund: boolean;3869 readonly type: 'OutOfGas' | 'OutOfFund';3865 readonly type: 'OutOfGas' | 'OutOfFund';3870 }3866 }387138673872 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (472) */3868 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (471) */3873 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3869 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3874 readonly isDisabled: boolean;3870 readonly isDisabled: boolean;3875 readonly isUnconfirmed: boolean;3871 readonly isUnconfirmed: boolean;3879 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3875 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3880 }3876 }388138773882 /** @name PalletEvmContractHelpersSponsoringModeT (473) */3878 /** @name PalletEvmContractHelpersSponsoringModeT (472) */3883 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3879 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3884 readonly isDisabled: boolean;3880 readonly isDisabled: boolean;3885 readonly isAllowlisted: boolean;3881 readonly isAllowlisted: boolean;3886 readonly isGenerous: boolean;3882 readonly isGenerous: boolean;3887 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3883 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3888 }3884 }388938853890 /** @name PalletEvmContractHelpersError (479) */3886 /** @name PalletEvmContractHelpersError (478) */3891 interface PalletEvmContractHelpersError extends Enum {3887 interface PalletEvmContractHelpersError extends Enum {3892 readonly isNoPermission: boolean;3888 readonly isNoPermission: boolean;3893 readonly isNoPendingSponsor: boolean;3889 readonly isNoPendingSponsor: boolean;3894 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3890 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3895 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3891 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3896 }3892 }389738933898 /** @name PalletEvmMigrationError (480) */3894 /** @name PalletEvmMigrationError (479) */3899 interface PalletEvmMigrationError extends Enum {3895 interface PalletEvmMigrationError extends Enum {3900 readonly isAccountNotEmpty: boolean;3896 readonly isAccountNotEmpty: boolean;3901 readonly isAccountIsNotMigrating: boolean;3897 readonly isAccountIsNotMigrating: boolean;3902 readonly isBadEvent: boolean;3898 readonly isBadEvent: boolean;3903 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3899 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3904 }3900 }390539013906 /** @name PalletMaintenanceError (481) */3902 /** @name PalletMaintenanceError (480) */3907 type PalletMaintenanceError = Null;3903 type PalletMaintenanceError = Null;390839043909 /** @name PalletTestUtilsError (482) */3905 /** @name PalletTestUtilsError (481) */3910 interface PalletTestUtilsError extends Enum {3906 interface PalletTestUtilsError extends Enum {3911 readonly isTestPalletDisabled: boolean;3907 readonly isTestPalletDisabled: boolean;3912 readonly isTriggerRollback: boolean;3908 readonly isTriggerRollback: boolean;3913 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3909 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3914 }3910 }391539113916 /** @name SpRuntimeMultiSignature (484) */3912 /** @name SpRuntimeMultiSignature (483) */3917 interface SpRuntimeMultiSignature extends Enum {3913 interface SpRuntimeMultiSignature extends Enum {3918 readonly isEd25519: boolean;3914 readonly isEd25519: boolean;3919 readonly asEd25519: SpCoreEd25519Signature;3915 readonly asEd25519: SpCoreEd25519Signature;3924 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3920 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3925 }3921 }392639223927 /** @name SpCoreEd25519Signature (485) */3923 /** @name SpCoreEd25519Signature (484) */3928 interface SpCoreEd25519Signature extends U8aFixed {}3924 interface SpCoreEd25519Signature extends U8aFixed {}392939253930 /** @name SpCoreSr25519Signature (487) */3926 /** @name SpCoreSr25519Signature (486) */3931 interface SpCoreSr25519Signature extends U8aFixed {}3927 interface SpCoreSr25519Signature extends U8aFixed {}393239283933 /** @name SpCoreEcdsaSignature (488) */3929 /** @name SpCoreEcdsaSignature (487) */3934 interface SpCoreEcdsaSignature extends U8aFixed {}3930 interface SpCoreEcdsaSignature extends U8aFixed {}393539313936 /** @name FrameSystemExtensionsCheckSpecVersion (491) */3932 /** @name FrameSystemExtensionsCheckSpecVersion (490) */3937 type FrameSystemExtensionsCheckSpecVersion = Null;3933 type FrameSystemExtensionsCheckSpecVersion = Null;393839343939 /** @name FrameSystemExtensionsCheckTxVersion (492) */3935 /** @name FrameSystemExtensionsCheckTxVersion (491) */3940 type FrameSystemExtensionsCheckTxVersion = Null;3936 type FrameSystemExtensionsCheckTxVersion = Null;394139373942 /** @name FrameSystemExtensionsCheckGenesis (493) */3938 /** @name FrameSystemExtensionsCheckGenesis (492) */3943 type FrameSystemExtensionsCheckGenesis = Null;3939 type FrameSystemExtensionsCheckGenesis = Null;394439403945 /** @name FrameSystemExtensionsCheckNonce (496) */3941 /** @name FrameSystemExtensionsCheckNonce (495) */3946 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}3942 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}394739433948 /** @name FrameSystemExtensionsCheckWeight (497) */3944 /** @name FrameSystemExtensionsCheckWeight (496) */3949 type FrameSystemExtensionsCheckWeight = Null;3945 type FrameSystemExtensionsCheckWeight = Null;395039463951 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (498) */3947 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (497) */3952 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;3948 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;395339493954 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (499) */3950 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (498) */3955 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}3951 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}395639523957 /** @name OpalRuntimeRuntime (500) */3953 /** @name OpalRuntimeRuntime (499) */3958 type OpalRuntimeRuntime = Null;3954 type OpalRuntimeRuntime = Null;395939553960 /** @name PalletEthereumFakeTransactionFinalizer (501) */3956 /** @name PalletEthereumFakeTransactionFinalizer (500) */3961 type PalletEthereumFakeTransactionFinalizer = Null;3957 type PalletEthereumFakeTransactionFinalizer = Null;396239583963} // declare module3959} // 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');
}
/**