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.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';5import type { ITuple } from '@polkadot/types-codec/types';6import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';7import type { Event } from '@polkadot/types/interfaces/system';89/** @name CumulusPalletDmpQueueCall */10export interface CumulusPalletDmpQueueCall extends Enum {11 readonly isServiceOverweight: boolean;12 readonly asServiceOverweight: {13 readonly index: u64;14 readonly weightLimit: u64;15 } & Struct;16 readonly type: 'ServiceOverweight';17}1819/** @name CumulusPalletDmpQueueConfigData */20export interface CumulusPalletDmpQueueConfigData extends Struct {21 readonly maxIndividual: SpWeightsWeightV2Weight;22}2324/** @name CumulusPalletDmpQueueError */25export interface CumulusPalletDmpQueueError extends Enum {26 readonly isUnknown: boolean;27 readonly isOverLimit: boolean;28 readonly type: 'Unknown' | 'OverLimit';29}3031/** @name CumulusPalletDmpQueueEvent */32export interface CumulusPalletDmpQueueEvent extends Enum {33 readonly isInvalidFormat: boolean;34 readonly asInvalidFormat: {35 readonly messageId: U8aFixed;36 } & Struct;37 readonly isUnsupportedVersion: boolean;38 readonly asUnsupportedVersion: {39 readonly messageId: U8aFixed;40 } & Struct;41 readonly isExecutedDownward: boolean;42 readonly asExecutedDownward: {43 readonly messageId: U8aFixed;44 readonly outcome: XcmV2TraitsOutcome;45 } & Struct;46 readonly isWeightExhausted: boolean;47 readonly asWeightExhausted: {48 readonly messageId: U8aFixed;49 readonly remainingWeight: SpWeightsWeightV2Weight;50 readonly requiredWeight: SpWeightsWeightV2Weight;51 } & Struct;52 readonly isOverweightEnqueued: boolean;53 readonly asOverweightEnqueued: {54 readonly messageId: U8aFixed;55 readonly overweightIndex: u64;56 readonly requiredWeight: SpWeightsWeightV2Weight;57 } & Struct;58 readonly isOverweightServiced: boolean;59 readonly asOverweightServiced: {60 readonly overweightIndex: u64;61 readonly weightUsed: SpWeightsWeightV2Weight;62 } & Struct;63 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';64}6566/** @name CumulusPalletDmpQueuePageIndexData */67export interface CumulusPalletDmpQueuePageIndexData extends Struct {68 readonly beginUsed: u32;69 readonly endUsed: u32;70 readonly overweightCount: u64;71}7273/** @name CumulusPalletParachainSystemCall */74export interface CumulusPalletParachainSystemCall extends Enum {75 readonly isSetValidationData: boolean;76 readonly asSetValidationData: {77 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;78 } & Struct;79 readonly isSudoSendUpwardMessage: boolean;80 readonly asSudoSendUpwardMessage: {81 readonly message: Bytes;82 } & Struct;83 readonly isAuthorizeUpgrade: boolean;84 readonly asAuthorizeUpgrade: {85 readonly codeHash: H256;86 } & Struct;87 readonly isEnactAuthorizedUpgrade: boolean;88 readonly asEnactAuthorizedUpgrade: {89 readonly code: Bytes;90 } & Struct;91 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';92}9394/** @name CumulusPalletParachainSystemError */95export interface CumulusPalletParachainSystemError extends Enum {96 readonly isOverlappingUpgrades: boolean;97 readonly isProhibitedByPolkadot: boolean;98 readonly isTooBig: boolean;99 readonly isValidationDataNotAvailable: boolean;100 readonly isHostConfigurationNotAvailable: boolean;101 readonly isNotScheduled: boolean;102 readonly isNothingAuthorized: boolean;103 readonly isUnauthorized: boolean;104 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';105}106107/** @name CumulusPalletParachainSystemEvent */108export interface CumulusPalletParachainSystemEvent extends Enum {109 readonly isValidationFunctionStored: boolean;110 readonly isValidationFunctionApplied: boolean;111 readonly asValidationFunctionApplied: {112 readonly relayChainBlockNum: u32;113 } & Struct;114 readonly isValidationFunctionDiscarded: boolean;115 readonly isUpgradeAuthorized: boolean;116 readonly asUpgradeAuthorized: {117 readonly codeHash: H256;118 } & Struct;119 readonly isDownwardMessagesReceived: boolean;120 readonly asDownwardMessagesReceived: {121 readonly count: u32;122 } & Struct;123 readonly isDownwardMessagesProcessed: boolean;124 readonly asDownwardMessagesProcessed: {125 readonly weightUsed: SpWeightsWeightV2Weight;126 readonly dmqHead: H256;127 } & Struct;128 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';129}130131/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot */132export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {133 readonly dmqMqcHead: H256;134 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;135 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;136 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;137}138139/** @name CumulusPalletXcmCall */140export interface CumulusPalletXcmCall extends Null {}141142/** @name CumulusPalletXcmError */143export interface CumulusPalletXcmError extends Null {}144145/** @name CumulusPalletXcmEvent */146export interface CumulusPalletXcmEvent extends Enum {147 readonly isInvalidFormat: boolean;148 readonly asInvalidFormat: U8aFixed;149 readonly isUnsupportedVersion: boolean;150 readonly asUnsupportedVersion: U8aFixed;151 readonly isExecutedDownward: boolean;152 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;153 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';154}155156/** @name CumulusPalletXcmOrigin */157export interface CumulusPalletXcmOrigin extends Enum {158 readonly isRelay: boolean;159 readonly isSiblingParachain: boolean;160 readonly asSiblingParachain: u32;161 readonly type: 'Relay' | 'SiblingParachain';162}163164/** @name CumulusPalletXcmpQueueCall */165export interface CumulusPalletXcmpQueueCall extends Enum {166 readonly isServiceOverweight: boolean;167 readonly asServiceOverweight: {168 readonly index: u64;169 readonly weightLimit: u64;170 } & Struct;171 readonly isSuspendXcmExecution: boolean;172 readonly isResumeXcmExecution: boolean;173 readonly isUpdateSuspendThreshold: boolean;174 readonly asUpdateSuspendThreshold: {175 readonly new_: u32;176 } & Struct;177 readonly isUpdateDropThreshold: boolean;178 readonly asUpdateDropThreshold: {179 readonly new_: u32;180 } & Struct;181 readonly isUpdateResumeThreshold: boolean;182 readonly asUpdateResumeThreshold: {183 readonly new_: u32;184 } & Struct;185 readonly isUpdateThresholdWeight: boolean;186 readonly asUpdateThresholdWeight: {187 readonly new_: u64;188 } & Struct;189 readonly isUpdateWeightRestrictDecay: boolean;190 readonly asUpdateWeightRestrictDecay: {191 readonly new_: u64;192 } & Struct;193 readonly isUpdateXcmpMaxIndividualWeight: boolean;194 readonly asUpdateXcmpMaxIndividualWeight: {195 readonly new_: u64;196 } & Struct;197 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';198}199200/** @name CumulusPalletXcmpQueueError */201export interface CumulusPalletXcmpQueueError extends Enum {202 readonly isFailedToSend: boolean;203 readonly isBadXcmOrigin: boolean;204 readonly isBadXcm: boolean;205 readonly isBadOverweightIndex: boolean;206 readonly isWeightOverLimit: boolean;207 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';208}209210/** @name CumulusPalletXcmpQueueEvent */211export interface CumulusPalletXcmpQueueEvent extends Enum {212 readonly isSuccess: boolean;213 readonly asSuccess: {214 readonly messageHash: Option<H256>;215 readonly weight: SpWeightsWeightV2Weight;216 } & Struct;217 readonly isFail: boolean;218 readonly asFail: {219 readonly messageHash: Option<H256>;220 readonly error: XcmV2TraitsError;221 readonly weight: SpWeightsWeightV2Weight;222 } & Struct;223 readonly isBadVersion: boolean;224 readonly asBadVersion: {225 readonly messageHash: Option<H256>;226 } & Struct;227 readonly isBadFormat: boolean;228 readonly asBadFormat: {229 readonly messageHash: Option<H256>;230 } & Struct;231 readonly isUpwardMessageSent: boolean;232 readonly asUpwardMessageSent: {233 readonly messageHash: Option<H256>;234 } & Struct;235 readonly isXcmpMessageSent: boolean;236 readonly asXcmpMessageSent: {237 readonly messageHash: Option<H256>;238 } & Struct;239 readonly isOverweightEnqueued: boolean;240 readonly asOverweightEnqueued: {241 readonly sender: u32;242 readonly sentAt: u32;243 readonly index: u64;244 readonly required: SpWeightsWeightV2Weight;245 } & Struct;246 readonly isOverweightServiced: boolean;247 readonly asOverweightServiced: {248 readonly index: u64;249 readonly used: SpWeightsWeightV2Weight;250 } & Struct;251 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';252}253254/** @name CumulusPalletXcmpQueueInboundChannelDetails */255export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {256 readonly sender: u32;257 readonly state: CumulusPalletXcmpQueueInboundState;258 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;259}260261/** @name CumulusPalletXcmpQueueInboundState */262export interface CumulusPalletXcmpQueueInboundState extends Enum {263 readonly isOk: boolean;264 readonly isSuspended: boolean;265 readonly type: 'Ok' | 'Suspended';266}267268/** @name CumulusPalletXcmpQueueOutboundChannelDetails */269export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {270 readonly recipient: u32;271 readonly state: CumulusPalletXcmpQueueOutboundState;272 readonly signalsExist: bool;273 readonly firstIndex: u16;274 readonly lastIndex: u16;275}276277/** @name CumulusPalletXcmpQueueOutboundState */278export interface CumulusPalletXcmpQueueOutboundState extends Enum {279 readonly isOk: boolean;280 readonly isSuspended: boolean;281 readonly type: 'Ok' | 'Suspended';282}283284/** @name CumulusPalletXcmpQueueQueueConfigData */285export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {286 readonly suspendThreshold: u32;287 readonly dropThreshold: u32;288 readonly resumeThreshold: u32;289 readonly thresholdWeight: SpWeightsWeightV2Weight;290 readonly weightRestrictDecay: SpWeightsWeightV2Weight;291 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;292}293294/** @name CumulusPrimitivesParachainInherentParachainInherentData */295export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {296 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;297 readonly relayChainState: SpTrieStorageProof;298 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;299 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;300}301302/** @name EthbloomBloom */303export interface EthbloomBloom extends U8aFixed {}304305/** @name EthereumBlock */306export interface EthereumBlock extends Struct {307 readonly header: EthereumHeader;308 readonly transactions: Vec<EthereumTransactionTransactionV2>;309 readonly ommers: Vec<EthereumHeader>;310}311312/** @name EthereumHeader */313export interface EthereumHeader extends Struct {314 readonly parentHash: H256;315 readonly ommersHash: H256;316 readonly beneficiary: H160;317 readonly stateRoot: H256;318 readonly transactionsRoot: H256;319 readonly receiptsRoot: H256;320 readonly logsBloom: EthbloomBloom;321 readonly difficulty: U256;322 readonly number: U256;323 readonly gasLimit: U256;324 readonly gasUsed: U256;325 readonly timestamp: u64;326 readonly extraData: Bytes;327 readonly mixHash: H256;328 readonly nonce: EthereumTypesHashH64;329}330331/** @name EthereumLog */332export interface EthereumLog extends Struct {333 readonly address: H160;334 readonly topics: Vec<H256>;335 readonly data: Bytes;336}337338/** @name EthereumReceiptEip658ReceiptData */339export interface EthereumReceiptEip658ReceiptData extends Struct {340 readonly statusCode: u8;341 readonly usedGas: U256;342 readonly logsBloom: EthbloomBloom;343 readonly logs: Vec<EthereumLog>;344}345346/** @name EthereumReceiptReceiptV3 */347export interface EthereumReceiptReceiptV3 extends Enum {348 readonly isLegacy: boolean;349 readonly asLegacy: EthereumReceiptEip658ReceiptData;350 readonly isEip2930: boolean;351 readonly asEip2930: EthereumReceiptEip658ReceiptData;352 readonly isEip1559: boolean;353 readonly asEip1559: EthereumReceiptEip658ReceiptData;354 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';355}356357/** @name EthereumTransactionAccessListItem */358export interface EthereumTransactionAccessListItem extends Struct {359 readonly address: H160;360 readonly storageKeys: Vec<H256>;361}362363/** @name EthereumTransactionEip1559Transaction */364export interface EthereumTransactionEip1559Transaction extends Struct {365 readonly chainId: u64;366 readonly nonce: U256;367 readonly maxPriorityFeePerGas: U256;368 readonly maxFeePerGas: U256;369 readonly gasLimit: U256;370 readonly action: EthereumTransactionTransactionAction;371 readonly value: U256;372 readonly input: Bytes;373 readonly accessList: Vec<EthereumTransactionAccessListItem>;374 readonly oddYParity: bool;375 readonly r: H256;376 readonly s: H256;377}378379/** @name EthereumTransactionEip2930Transaction */380export interface EthereumTransactionEip2930Transaction extends Struct {381 readonly chainId: u64;382 readonly nonce: U256;383 readonly gasPrice: U256;384 readonly gasLimit: U256;385 readonly action: EthereumTransactionTransactionAction;386 readonly value: U256;387 readonly input: Bytes;388 readonly accessList: Vec<EthereumTransactionAccessListItem>;389 readonly oddYParity: bool;390 readonly r: H256;391 readonly s: H256;392}393394/** @name EthereumTransactionLegacyTransaction */395export interface EthereumTransactionLegacyTransaction extends Struct {396 readonly nonce: U256;397 readonly gasPrice: U256;398 readonly gasLimit: U256;399 readonly action: EthereumTransactionTransactionAction;400 readonly value: U256;401 readonly input: Bytes;402 readonly signature: EthereumTransactionTransactionSignature;403}404405/** @name EthereumTransactionTransactionAction */406export interface EthereumTransactionTransactionAction extends Enum {407 readonly isCall: boolean;408 readonly asCall: H160;409 readonly isCreate: boolean;410 readonly type: 'Call' | 'Create';411}412413/** @name EthereumTransactionTransactionSignature */414export interface EthereumTransactionTransactionSignature extends Struct {415 readonly v: u64;416 readonly r: H256;417 readonly s: H256;418}419420/** @name EthereumTransactionTransactionV2 */421export interface EthereumTransactionTransactionV2 extends Enum {422 readonly isLegacy: boolean;423 readonly asLegacy: EthereumTransactionLegacyTransaction;424 readonly isEip2930: boolean;425 readonly asEip2930: EthereumTransactionEip2930Transaction;426 readonly isEip1559: boolean;427 readonly asEip1559: EthereumTransactionEip1559Transaction;428 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';429}430431/** @name EthereumTypesHashH64 */432export interface EthereumTypesHashH64 extends U8aFixed {}433434/** @name EvmCoreErrorExitError */435export interface EvmCoreErrorExitError extends Enum {436 readonly isStackUnderflow: boolean;437 readonly isStackOverflow: boolean;438 readonly isInvalidJump: boolean;439 readonly isInvalidRange: boolean;440 readonly isDesignatedInvalid: boolean;441 readonly isCallTooDeep: boolean;442 readonly isCreateCollision: boolean;443 readonly isCreateContractLimit: boolean;444 readonly isOutOfOffset: boolean;445 readonly isOutOfGas: boolean;446 readonly isOutOfFund: boolean;447 readonly isPcUnderflow: boolean;448 readonly isCreateEmpty: boolean;449 readonly isOther: boolean;450 readonly asOther: Text;451 readonly isInvalidCode: boolean;452 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';453}454455/** @name EvmCoreErrorExitFatal */456export interface EvmCoreErrorExitFatal extends Enum {457 readonly isNotSupported: boolean;458 readonly isUnhandledInterrupt: boolean;459 readonly isCallErrorAsFatal: boolean;460 readonly asCallErrorAsFatal: EvmCoreErrorExitError;461 readonly isOther: boolean;462 readonly asOther: Text;463 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';464}465466/** @name EvmCoreErrorExitReason */467export interface EvmCoreErrorExitReason extends Enum {468 readonly isSucceed: boolean;469 readonly asSucceed: EvmCoreErrorExitSucceed;470 readonly isError: boolean;471 readonly asError: EvmCoreErrorExitError;472 readonly isRevert: boolean;473 readonly asRevert: EvmCoreErrorExitRevert;474 readonly isFatal: boolean;475 readonly asFatal: EvmCoreErrorExitFatal;476 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';477}478479/** @name EvmCoreErrorExitRevert */480export interface EvmCoreErrorExitRevert extends Enum {481 readonly isReverted: boolean;482 readonly type: 'Reverted';483}484485/** @name EvmCoreErrorExitSucceed */486export interface EvmCoreErrorExitSucceed extends Enum {487 readonly isStopped: boolean;488 readonly isReturned: boolean;489 readonly isSuicided: boolean;490 readonly type: 'Stopped' | 'Returned' | 'Suicided';491}492493/** @name FpRpcTransactionStatus */494export interface FpRpcTransactionStatus extends Struct {495 readonly transactionHash: H256;496 readonly transactionIndex: u32;497 readonly from: H160;498 readonly to: Option<H160>;499 readonly contractAddress: Option<H160>;500 readonly logs: Vec<EthereumLog>;501 readonly logsBloom: EthbloomBloom;502}503504/** @name FrameSupportDispatchDispatchClass */505export interface FrameSupportDispatchDispatchClass extends Enum {506 readonly isNormal: boolean;507 readonly isOperational: boolean;508 readonly isMandatory: boolean;509 readonly type: 'Normal' | 'Operational' | 'Mandatory';510}511512/** @name FrameSupportDispatchDispatchInfo */513export interface FrameSupportDispatchDispatchInfo extends Struct {514 readonly weight: SpWeightsWeightV2Weight;515 readonly class: FrameSupportDispatchDispatchClass;516 readonly paysFee: FrameSupportDispatchPays;517}518519/** @name FrameSupportDispatchPays */520export interface FrameSupportDispatchPays extends Enum {521 readonly isYes: boolean;522 readonly isNo: boolean;523 readonly type: 'Yes' | 'No';524}525526/** @name FrameSupportDispatchPerDispatchClassU32 */527export interface FrameSupportDispatchPerDispatchClassU32 extends Struct {528 readonly normal: u32;529 readonly operational: u32;530 readonly mandatory: u32;531}532533/** @name FrameSupportDispatchPerDispatchClassWeight */534export interface FrameSupportDispatchPerDispatchClassWeight extends Struct {535 readonly normal: SpWeightsWeightV2Weight;536 readonly operational: SpWeightsWeightV2Weight;537 readonly mandatory: SpWeightsWeightV2Weight;538}539540/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass */541export interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {542 readonly normal: FrameSystemLimitsWeightsPerClass;543 readonly operational: FrameSystemLimitsWeightsPerClass;544 readonly mandatory: FrameSystemLimitsWeightsPerClass;545}546547/** @name FrameSupportDispatchRawOrigin */548export interface FrameSupportDispatchRawOrigin extends Enum {549 readonly isRoot: boolean;550 readonly isSigned: boolean;551 readonly asSigned: AccountId32;552 readonly isNone: boolean;553 readonly type: 'Root' | 'Signed' | 'None';554}555556/** @name FrameSupportPalletId */557export interface FrameSupportPalletId extends U8aFixed {}558559/** @name FrameSupportTokensMiscBalanceStatus */560export interface FrameSupportTokensMiscBalanceStatus extends Enum {561 readonly isFree: boolean;562 readonly isReserved: boolean;563 readonly type: 'Free' | 'Reserved';564}565566/** @name FrameSystemAccountInfo */567export interface FrameSystemAccountInfo extends Struct {568 readonly nonce: u32;569 readonly consumers: u32;570 readonly providers: u32;571 readonly sufficients: u32;572 readonly data: PalletBalancesAccountData;573}574575/** @name FrameSystemCall */576export interface FrameSystemCall extends Enum {577 readonly isFillBlock: boolean;578 readonly asFillBlock: {579 readonly ratio: Perbill;580 } & Struct;581 readonly isRemark: boolean;582 readonly asRemark: {583 readonly remark: Bytes;584 } & Struct;585 readonly isSetHeapPages: boolean;586 readonly asSetHeapPages: {587 readonly pages: u64;588 } & Struct;589 readonly isSetCode: boolean;590 readonly asSetCode: {591 readonly code: Bytes;592 } & Struct;593 readonly isSetCodeWithoutChecks: boolean;594 readonly asSetCodeWithoutChecks: {595 readonly code: Bytes;596 } & Struct;597 readonly isSetStorage: boolean;598 readonly asSetStorage: {599 readonly items: Vec<ITuple<[Bytes, Bytes]>>;600 } & Struct;601 readonly isKillStorage: boolean;602 readonly asKillStorage: {603 readonly keys_: Vec<Bytes>;604 } & Struct;605 readonly isKillPrefix: boolean;606 readonly asKillPrefix: {607 readonly prefix: Bytes;608 readonly subkeys: u32;609 } & Struct;610 readonly isRemarkWithEvent: boolean;611 readonly asRemarkWithEvent: {612 readonly remark: Bytes;613 } & Struct;614 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';615}616617/** @name FrameSystemError */618export interface FrameSystemError extends Enum {619 readonly isInvalidSpecName: boolean;620 readonly isSpecVersionNeedsToIncrease: boolean;621 readonly isFailedToExtractRuntimeVersion: boolean;622 readonly isNonDefaultComposite: boolean;623 readonly isNonZeroRefCount: boolean;624 readonly isCallFiltered: boolean;625 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';626}627628/** @name FrameSystemEvent */629export interface FrameSystemEvent extends Enum {630 readonly isExtrinsicSuccess: boolean;631 readonly asExtrinsicSuccess: {632 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;633 } & Struct;634 readonly isExtrinsicFailed: boolean;635 readonly asExtrinsicFailed: {636 readonly dispatchError: SpRuntimeDispatchError;637 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;638 } & Struct;639 readonly isCodeUpdated: boolean;640 readonly isNewAccount: boolean;641 readonly asNewAccount: {642 readonly account: AccountId32;643 } & Struct;644 readonly isKilledAccount: boolean;645 readonly asKilledAccount: {646 readonly account: AccountId32;647 } & Struct;648 readonly isRemarked: boolean;649 readonly asRemarked: {650 readonly sender: AccountId32;651 readonly hash_: H256;652 } & Struct;653 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';654}655656/** @name FrameSystemEventRecord */657export interface FrameSystemEventRecord extends Struct {658 readonly phase: FrameSystemPhase;659 readonly event: Event;660 readonly topics: Vec<H256>;661}662663/** @name FrameSystemExtensionsCheckGenesis */664export interface FrameSystemExtensionsCheckGenesis extends Null {}665666/** @name FrameSystemExtensionsCheckNonce */667export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}668669/** @name FrameSystemExtensionsCheckSpecVersion */670export interface FrameSystemExtensionsCheckSpecVersion extends Null {}671672/** @name FrameSystemExtensionsCheckTxVersion */673export interface FrameSystemExtensionsCheckTxVersion extends Null {}674675/** @name FrameSystemExtensionsCheckWeight */676export interface FrameSystemExtensionsCheckWeight extends Null {}677678/** @name FrameSystemLastRuntimeUpgradeInfo */679export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {680 readonly specVersion: Compact<u32>;681 readonly specName: Text;682}683684/** @name FrameSystemLimitsBlockLength */685export interface FrameSystemLimitsBlockLength extends Struct {686 readonly max: FrameSupportDispatchPerDispatchClassU32;687}688689/** @name FrameSystemLimitsBlockWeights */690export interface FrameSystemLimitsBlockWeights extends Struct {691 readonly baseBlock: SpWeightsWeightV2Weight;692 readonly maxBlock: SpWeightsWeightV2Weight;693 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;694}695696/** @name FrameSystemLimitsWeightsPerClass */697export interface FrameSystemLimitsWeightsPerClass extends Struct {698 readonly baseExtrinsic: SpWeightsWeightV2Weight;699 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;700 readonly maxTotal: Option<SpWeightsWeightV2Weight>;701 readonly reserved: Option<SpWeightsWeightV2Weight>;702}703704/** @name FrameSystemPhase */705export interface FrameSystemPhase extends Enum {706 readonly isApplyExtrinsic: boolean;707 readonly asApplyExtrinsic: u32;708 readonly isFinalization: boolean;709 readonly isInitialization: boolean;710 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';711}712713/** @name OpalRuntimeOriginCaller */714export interface OpalRuntimeOriginCaller extends Enum {715 readonly isSystem: boolean;716 readonly asSystem: FrameSupportDispatchRawOrigin;717 readonly isVoid: boolean;718 readonly asVoid: SpCoreVoid;719 readonly isPolkadotXcm: boolean;720 readonly asPolkadotXcm: PalletXcmOrigin;721 readonly isCumulusXcm: boolean;722 readonly asCumulusXcm: CumulusPalletXcmOrigin;723 readonly isEthereum: boolean;724 readonly asEthereum: PalletEthereumRawOrigin;725 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';726}727728/** @name OpalRuntimeRuntime */729export interface OpalRuntimeRuntime extends Null {}730731/** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance */732export interface OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}733734/** @name OrmlTokensAccountData */735export interface OrmlTokensAccountData extends Struct {736 readonly free: u128;737 readonly reserved: u128;738 readonly frozen: u128;739}740741/** @name OrmlTokensBalanceLock */742export interface OrmlTokensBalanceLock extends Struct {743 readonly id: U8aFixed;744 readonly amount: u128;745}746747/** @name OrmlTokensModuleCall */748export interface OrmlTokensModuleCall extends Enum {749 readonly isTransfer: boolean;750 readonly asTransfer: {751 readonly dest: MultiAddress;752 readonly currencyId: PalletForeignAssetsAssetIds;753 readonly amount: Compact<u128>;754 } & Struct;755 readonly isTransferAll: boolean;756 readonly asTransferAll: {757 readonly dest: MultiAddress;758 readonly currencyId: PalletForeignAssetsAssetIds;759 readonly keepAlive: bool;760 } & Struct;761 readonly isTransferKeepAlive: boolean;762 readonly asTransferKeepAlive: {763 readonly dest: MultiAddress;764 readonly currencyId: PalletForeignAssetsAssetIds;765 readonly amount: Compact<u128>;766 } & Struct;767 readonly isForceTransfer: boolean;768 readonly asForceTransfer: {769 readonly source: MultiAddress;770 readonly dest: MultiAddress;771 readonly currencyId: PalletForeignAssetsAssetIds;772 readonly amount: Compact<u128>;773 } & Struct;774 readonly isSetBalance: boolean;775 readonly asSetBalance: {776 readonly who: MultiAddress;777 readonly currencyId: PalletForeignAssetsAssetIds;778 readonly newFree: Compact<u128>;779 readonly newReserved: Compact<u128>;780 } & Struct;781 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';782}783784/** @name OrmlTokensModuleError */785export interface OrmlTokensModuleError extends Enum {786 readonly isBalanceTooLow: boolean;787 readonly isAmountIntoBalanceFailed: boolean;788 readonly isLiquidityRestrictions: boolean;789 readonly isMaxLocksExceeded: boolean;790 readonly isKeepAlive: boolean;791 readonly isExistentialDeposit: boolean;792 readonly isDeadAccount: boolean;793 readonly isTooManyReserves: boolean;794 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';795}796797/** @name OrmlTokensModuleEvent */798export interface OrmlTokensModuleEvent extends Enum {799 readonly isEndowed: boolean;800 readonly asEndowed: {801 readonly currencyId: PalletForeignAssetsAssetIds;802 readonly who: AccountId32;803 readonly amount: u128;804 } & Struct;805 readonly isDustLost: boolean;806 readonly asDustLost: {807 readonly currencyId: PalletForeignAssetsAssetIds;808 readonly who: AccountId32;809 readonly amount: u128;810 } & Struct;811 readonly isTransfer: boolean;812 readonly asTransfer: {813 readonly currencyId: PalletForeignAssetsAssetIds;814 readonly from: AccountId32;815 readonly to: AccountId32;816 readonly amount: u128;817 } & Struct;818 readonly isReserved: boolean;819 readonly asReserved: {820 readonly currencyId: PalletForeignAssetsAssetIds;821 readonly who: AccountId32;822 readonly amount: u128;823 } & Struct;824 readonly isUnreserved: boolean;825 readonly asUnreserved: {826 readonly currencyId: PalletForeignAssetsAssetIds;827 readonly who: AccountId32;828 readonly amount: u128;829 } & Struct;830 readonly isReserveRepatriated: boolean;831 readonly asReserveRepatriated: {832 readonly currencyId: PalletForeignAssetsAssetIds;833 readonly from: AccountId32;834 readonly to: AccountId32;835 readonly amount: u128;836 readonly status: FrameSupportTokensMiscBalanceStatus;837 } & Struct;838 readonly isBalanceSet: boolean;839 readonly asBalanceSet: {840 readonly currencyId: PalletForeignAssetsAssetIds;841 readonly who: AccountId32;842 readonly free: u128;843 readonly reserved: u128;844 } & Struct;845 readonly isTotalIssuanceSet: boolean;846 readonly asTotalIssuanceSet: {847 readonly currencyId: PalletForeignAssetsAssetIds;848 readonly amount: u128;849 } & Struct;850 readonly isWithdrawn: boolean;851 readonly asWithdrawn: {852 readonly currencyId: PalletForeignAssetsAssetIds;853 readonly who: AccountId32;854 readonly amount: u128;855 } & Struct;856 readonly isSlashed: boolean;857 readonly asSlashed: {858 readonly currencyId: PalletForeignAssetsAssetIds;859 readonly who: AccountId32;860 readonly freeAmount: u128;861 readonly reservedAmount: u128;862 } & Struct;863 readonly isDeposited: boolean;864 readonly asDeposited: {865 readonly currencyId: PalletForeignAssetsAssetIds;866 readonly who: AccountId32;867 readonly amount: u128;868 } & Struct;869 readonly isLockSet: boolean;870 readonly asLockSet: {871 readonly lockId: U8aFixed;872 readonly currencyId: PalletForeignAssetsAssetIds;873 readonly who: AccountId32;874 readonly amount: u128;875 } & Struct;876 readonly isLockRemoved: boolean;877 readonly asLockRemoved: {878 readonly lockId: U8aFixed;879 readonly currencyId: PalletForeignAssetsAssetIds;880 readonly who: AccountId32;881 } & Struct;882 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';883}884885/** @name OrmlTokensReserveData */886export interface OrmlTokensReserveData extends Struct {887 readonly id: Null;888 readonly amount: u128;889}890891/** @name OrmlVestingModuleCall */892export interface OrmlVestingModuleCall extends Enum {893 readonly isClaim: boolean;894 readonly isVestedTransfer: boolean;895 readonly asVestedTransfer: {896 readonly dest: MultiAddress;897 readonly schedule: OrmlVestingVestingSchedule;898 } & Struct;899 readonly isUpdateVestingSchedules: boolean;900 readonly asUpdateVestingSchedules: {901 readonly who: MultiAddress;902 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;903 } & Struct;904 readonly isClaimFor: boolean;905 readonly asClaimFor: {906 readonly dest: MultiAddress;907 } & Struct;908 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';909}910911/** @name OrmlVestingModuleError */912export interface OrmlVestingModuleError extends Enum {913 readonly isZeroVestingPeriod: boolean;914 readonly isZeroVestingPeriodCount: boolean;915 readonly isInsufficientBalanceToLock: boolean;916 readonly isTooManyVestingSchedules: boolean;917 readonly isAmountLow: boolean;918 readonly isMaxVestingSchedulesExceeded: boolean;919 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';920}921922/** @name OrmlVestingModuleEvent */923export interface OrmlVestingModuleEvent extends Enum {924 readonly isVestingScheduleAdded: boolean;925 readonly asVestingScheduleAdded: {926 readonly from: AccountId32;927 readonly to: AccountId32;928 readonly vestingSchedule: OrmlVestingVestingSchedule;929 } & Struct;930 readonly isClaimed: boolean;931 readonly asClaimed: {932 readonly who: AccountId32;933 readonly amount: u128;934 } & Struct;935 readonly isVestingSchedulesUpdated: boolean;936 readonly asVestingSchedulesUpdated: {937 readonly who: AccountId32;938 } & Struct;939 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';940}941942/** @name OrmlVestingVestingSchedule */943export interface OrmlVestingVestingSchedule extends Struct {944 readonly start: u32;945 readonly period: u32;946 readonly periodCount: u32;947 readonly perPeriod: Compact<u128>;948}949950/** @name OrmlXtokensModuleCall */951export interface OrmlXtokensModuleCall extends Enum {952 readonly isTransfer: boolean;953 readonly asTransfer: {954 readonly currencyId: PalletForeignAssetsAssetIds;955 readonly amount: u128;956 readonly dest: XcmVersionedMultiLocation;957 readonly destWeightLimit: XcmV2WeightLimit;958 } & Struct;959 readonly isTransferMultiasset: boolean;960 readonly asTransferMultiasset: {961 readonly asset: XcmVersionedMultiAsset;962 readonly dest: XcmVersionedMultiLocation;963 readonly destWeightLimit: XcmV2WeightLimit;964 } & Struct;965 readonly isTransferWithFee: boolean;966 readonly asTransferWithFee: {967 readonly currencyId: PalletForeignAssetsAssetIds;968 readonly amount: u128;969 readonly fee: u128;970 readonly dest: XcmVersionedMultiLocation;971 readonly destWeightLimit: XcmV2WeightLimit;972 } & Struct;973 readonly isTransferMultiassetWithFee: boolean;974 readonly asTransferMultiassetWithFee: {975 readonly asset: XcmVersionedMultiAsset;976 readonly fee: XcmVersionedMultiAsset;977 readonly dest: XcmVersionedMultiLocation;978 readonly destWeightLimit: XcmV2WeightLimit;979 } & Struct;980 readonly isTransferMulticurrencies: boolean;981 readonly asTransferMulticurrencies: {982 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;983 readonly feeItem: u32;984 readonly dest: XcmVersionedMultiLocation;985 readonly destWeightLimit: XcmV2WeightLimit;986 } & Struct;987 readonly isTransferMultiassets: boolean;988 readonly asTransferMultiassets: {989 readonly assets: XcmVersionedMultiAssets;990 readonly feeItem: u32;991 readonly dest: XcmVersionedMultiLocation;992 readonly destWeightLimit: XcmV2WeightLimit;993 } & Struct;994 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';995}996997/** @name OrmlXtokensModuleError */998export interface OrmlXtokensModuleError extends Enum {999 readonly isAssetHasNoReserve: boolean;1000 readonly isNotCrossChainTransfer: boolean;1001 readonly isInvalidDest: boolean;1002 readonly isNotCrossChainTransferableCurrency: boolean;1003 readonly isUnweighableMessage: boolean;1004 readonly isXcmExecutionFailed: boolean;1005 readonly isCannotReanchor: boolean;1006 readonly isInvalidAncestry: boolean;1007 readonly isInvalidAsset: boolean;1008 readonly isDestinationNotInvertible: boolean;1009 readonly isBadVersion: boolean;1010 readonly isDistinctReserveForAssetAndFee: boolean;1011 readonly isZeroFee: boolean;1012 readonly isZeroAmount: boolean;1013 readonly isTooManyAssetsBeingSent: boolean;1014 readonly isAssetIndexNonExistent: boolean;1015 readonly isFeeNotEnough: boolean;1016 readonly isNotSupportedMultiLocation: boolean;1017 readonly isMinXcmFeeNotDefined: boolean;1018 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';1019}10201021/** @name OrmlXtokensModuleEvent */1022export interface OrmlXtokensModuleEvent extends Enum {1023 readonly isTransferredMultiAssets: boolean;1024 readonly asTransferredMultiAssets: {1025 readonly sender: AccountId32;1026 readonly assets: XcmV1MultiassetMultiAssets;1027 readonly fee: XcmV1MultiAsset;1028 readonly dest: XcmV1MultiLocation;1029 } & Struct;1030 readonly type: 'TransferredMultiAssets';1031}10321033/** @name PalletAppPromotionCall */1034export interface PalletAppPromotionCall extends Enum {1035 readonly isSetAdminAddress: boolean;1036 readonly asSetAdminAddress: {1037 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;1038 } & Struct;1039 readonly isStake: boolean;1040 readonly asStake: {1041 readonly amount: u128;1042 } & Struct;1043 readonly isUnstake: boolean;1044 readonly isSponsorCollection: boolean;1045 readonly asSponsorCollection: {1046 readonly collectionId: u32;1047 } & Struct;1048 readonly isStopSponsoringCollection: boolean;1049 readonly asStopSponsoringCollection: {1050 readonly collectionId: u32;1051 } & Struct;1052 readonly isSponsorContract: boolean;1053 readonly asSponsorContract: {1054 readonly contractId: H160;1055 } & Struct;1056 readonly isStopSponsoringContract: boolean;1057 readonly asStopSponsoringContract: {1058 readonly contractId: H160;1059 } & Struct;1060 readonly isPayoutStakers: boolean;1061 readonly asPayoutStakers: {1062 readonly stakersNumber: Option<u8>;1063 } & Struct;1064 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';1065}10661067/** @name PalletAppPromotionError */1068export interface PalletAppPromotionError extends Enum {1069 readonly isAdminNotSet: boolean;1070 readonly isNoPermission: boolean;1071 readonly isNotSufficientFunds: boolean;1072 readonly isPendingForBlockOverflow: boolean;1073 readonly isSponsorNotSet: boolean;1074 readonly isIncorrectLockedBalanceOperation: boolean;1075 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';1076}10771078/** @name PalletAppPromotionEvent */1079export interface PalletAppPromotionEvent extends Enum {1080 readonly isStakingRecalculation: boolean;1081 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1082 readonly isStake: boolean;1083 readonly asStake: ITuple<[AccountId32, u128]>;1084 readonly isUnstake: boolean;1085 readonly asUnstake: ITuple<[AccountId32, u128]>;1086 readonly isSetAdmin: boolean;1087 readonly asSetAdmin: AccountId32;1088 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1089}10901091/** @name PalletBalancesAccountData */1092export interface PalletBalancesAccountData extends Struct {1093 readonly free: u128;1094 readonly reserved: u128;1095 readonly miscFrozen: u128;1096 readonly feeFrozen: u128;1097}10981099/** @name PalletBalancesBalanceLock */1100export interface PalletBalancesBalanceLock extends Struct {1101 readonly id: U8aFixed;1102 readonly amount: u128;1103 readonly reasons: PalletBalancesReasons;1104}11051106/** @name PalletBalancesCall */1107export interface PalletBalancesCall extends Enum {1108 readonly isTransfer: boolean;1109 readonly asTransfer: {1110 readonly dest: MultiAddress;1111 readonly value: Compact<u128>;1112 } & Struct;1113 readonly isSetBalance: boolean;1114 readonly asSetBalance: {1115 readonly who: MultiAddress;1116 readonly newFree: Compact<u128>;1117 readonly newReserved: Compact<u128>;1118 } & Struct;1119 readonly isForceTransfer: boolean;1120 readonly asForceTransfer: {1121 readonly source: MultiAddress;1122 readonly dest: MultiAddress;1123 readonly value: Compact<u128>;1124 } & Struct;1125 readonly isTransferKeepAlive: boolean;1126 readonly asTransferKeepAlive: {1127 readonly dest: MultiAddress;1128 readonly value: Compact<u128>;1129 } & Struct;1130 readonly isTransferAll: boolean;1131 readonly asTransferAll: {1132 readonly dest: MultiAddress;1133 readonly keepAlive: bool;1134 } & Struct;1135 readonly isForceUnreserve: boolean;1136 readonly asForceUnreserve: {1137 readonly who: MultiAddress;1138 readonly amount: u128;1139 } & Struct;1140 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1141}11421143/** @name PalletBalancesError */1144export interface PalletBalancesError extends Enum {1145 readonly isVestingBalance: boolean;1146 readonly isLiquidityRestrictions: boolean;1147 readonly isInsufficientBalance: boolean;1148 readonly isExistentialDeposit: boolean;1149 readonly isKeepAlive: boolean;1150 readonly isExistingVestingSchedule: boolean;1151 readonly isDeadAccount: boolean;1152 readonly isTooManyReserves: boolean;1153 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1154}11551156/** @name PalletBalancesEvent */1157export interface PalletBalancesEvent extends Enum {1158 readonly isEndowed: boolean;1159 readonly asEndowed: {1160 readonly account: AccountId32;1161 readonly freeBalance: u128;1162 } & Struct;1163 readonly isDustLost: boolean;1164 readonly asDustLost: {1165 readonly account: AccountId32;1166 readonly amount: u128;1167 } & Struct;1168 readonly isTransfer: boolean;1169 readonly asTransfer: {1170 readonly from: AccountId32;1171 readonly to: AccountId32;1172 readonly amount: u128;1173 } & Struct;1174 readonly isBalanceSet: boolean;1175 readonly asBalanceSet: {1176 readonly who: AccountId32;1177 readonly free: u128;1178 readonly reserved: u128;1179 } & Struct;1180 readonly isReserved: boolean;1181 readonly asReserved: {1182 readonly who: AccountId32;1183 readonly amount: u128;1184 } & Struct;1185 readonly isUnreserved: boolean;1186 readonly asUnreserved: {1187 readonly who: AccountId32;1188 readonly amount: u128;1189 } & Struct;1190 readonly isReserveRepatriated: boolean;1191 readonly asReserveRepatriated: {1192 readonly from: AccountId32;1193 readonly to: AccountId32;1194 readonly amount: u128;1195 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;1196 } & Struct;1197 readonly isDeposit: boolean;1198 readonly asDeposit: {1199 readonly who: AccountId32;1200 readonly amount: u128;1201 } & Struct;1202 readonly isWithdraw: boolean;1203 readonly asWithdraw: {1204 readonly who: AccountId32;1205 readonly amount: u128;1206 } & Struct;1207 readonly isSlashed: boolean;1208 readonly asSlashed: {1209 readonly who: AccountId32;1210 readonly amount: u128;1211 } & Struct;1212 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';1213}12141215/** @name PalletBalancesReasons */1216export interface PalletBalancesReasons extends Enum {1217 readonly isFee: boolean;1218 readonly isMisc: boolean;1219 readonly isAll: boolean;1220 readonly type: 'Fee' | 'Misc' | 'All';1221}12221223/** @name PalletBalancesReleases */1224export interface PalletBalancesReleases extends Enum {1225 readonly isV100: boolean;1226 readonly isV200: boolean;1227 readonly type: 'V100' | 'V200';1228}12291230/** @name PalletBalancesReserveData */1231export interface PalletBalancesReserveData extends Struct {1232 readonly id: U8aFixed;1233 readonly amount: u128;1234}12351236/** @name PalletCommonError */1237export interface PalletCommonError extends Enum {1238 readonly isCollectionNotFound: boolean;1239 readonly isMustBeTokenOwner: boolean;1240 readonly isNoPermission: boolean;1241 readonly isCantDestroyNotEmptyCollection: boolean;1242 readonly isPublicMintingNotAllowed: boolean;1243 readonly isAddressNotInAllowlist: boolean;1244 readonly isCollectionNameLimitExceeded: boolean;1245 readonly isCollectionDescriptionLimitExceeded: boolean;1246 readonly isCollectionTokenPrefixLimitExceeded: boolean;1247 readonly isTotalCollectionsLimitExceeded: boolean;1248 readonly isCollectionAdminCountExceeded: boolean;1249 readonly isCollectionLimitBoundsExceeded: boolean;1250 readonly isOwnerPermissionsCantBeReverted: boolean;1251 readonly isTransferNotAllowed: boolean;1252 readonly isAccountTokenLimitExceeded: boolean;1253 readonly isCollectionTokenLimitExceeded: boolean;1254 readonly isMetadataFlagFrozen: boolean;1255 readonly isTokenNotFound: boolean;1256 readonly isTokenValueTooLow: boolean;1257 readonly isApprovedValueTooLow: boolean;1258 readonly isCantApproveMoreThanOwned: boolean;1259 readonly isAddressIsZero: boolean;1260 readonly isUnsupportedOperation: boolean;1261 readonly isNotSufficientFounds: boolean;1262 readonly isUserIsNotAllowedToNest: boolean;1263 readonly isSourceCollectionIsNotAllowedToNest: boolean;1264 readonly isCollectionFieldSizeExceeded: boolean;1265 readonly isNoSpaceForProperty: boolean;1266 readonly isPropertyLimitReached: boolean;1267 readonly isPropertyKeyIsTooLong: boolean;1268 readonly isInvalidCharacterInPropertyKey: boolean;1269 readonly isEmptyPropertyKey: boolean;1270 readonly isCollectionIsExternal: boolean;1271 readonly isCollectionIsInternal: boolean;1272 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';1273}12741275/** @name PalletCommonEvent */1276export interface PalletCommonEvent extends Enum {1277 readonly isCollectionCreated: boolean;1278 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1279 readonly isCollectionDestroyed: boolean;1280 readonly asCollectionDestroyed: u32;1281 readonly isItemCreated: boolean;1282 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1283 readonly isItemDestroyed: boolean;1284 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1285 readonly isTransfer: boolean;1286 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1287 readonly isApproved: boolean;1288 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1289 readonly isApprovedForAll: boolean;1290 readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1291 readonly isCollectionPropertySet: boolean;1292 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1293 readonly isCollectionPropertyDeleted: boolean;1294 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1295 readonly isTokenPropertySet: boolean;1296 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1297 readonly isTokenPropertyDeleted: boolean;1298 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1299 readonly isPropertyPermissionSet: boolean;1300 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1301 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';1302}13031304/** @name PalletConfigurationCall */1305export interface PalletConfigurationCall extends Enum {1306 readonly isSetWeightToFeeCoefficientOverride: boolean;1307 readonly asSetWeightToFeeCoefficientOverride: {1308 readonly coeff: Option<u32>;1309 } & Struct;1310 readonly isSetMinGasPriceOverride: boolean;1311 readonly asSetMinGasPriceOverride: {1312 readonly coeff: Option<u64>;1313 } & Struct;1314 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';1315}13161317/** @name PalletEthereumCall */1318export interface PalletEthereumCall extends Enum {1319 readonly isTransact: boolean;1320 readonly asTransact: {1321 readonly transaction: EthereumTransactionTransactionV2;1322 } & Struct;1323 readonly type: 'Transact';1324}13251326/** @name PalletEthereumError */1327export interface PalletEthereumError extends Enum {1328 readonly isInvalidSignature: boolean;1329 readonly isPreLogExists: boolean;1330 readonly type: 'InvalidSignature' | 'PreLogExists';1331}13321333/** @name PalletEthereumEvent */1334export interface PalletEthereumEvent extends Enum {1335 readonly isExecuted: boolean;1336 readonly asExecuted: {1337 readonly from: H160;1338 readonly to: H160;1339 readonly transactionHash: H256;1340 readonly exitReason: EvmCoreErrorExitReason;1341 } & Struct;1342 readonly type: 'Executed';1343}13441345/** @name PalletEthereumFakeTransactionFinalizer */1346export interface PalletEthereumFakeTransactionFinalizer extends Null {}13471348/** @name PalletEthereumRawOrigin */1349export interface PalletEthereumRawOrigin extends Enum {1350 readonly isEthereumTransaction: boolean;1351 readonly asEthereumTransaction: H160;1352 readonly type: 'EthereumTransaction';1353}13541355/** @name PalletEvmAccountBasicCrossAccountIdRepr */1356export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1357 readonly isSubstrate: boolean;1358 readonly asSubstrate: AccountId32;1359 readonly isEthereum: boolean;1360 readonly asEthereum: H160;1361 readonly type: 'Substrate' | 'Ethereum';1362}13631364/** @name PalletEvmCall */1365export interface PalletEvmCall extends Enum {1366 readonly isWithdraw: boolean;1367 readonly asWithdraw: {1368 readonly address: H160;1369 readonly value: u128;1370 } & Struct;1371 readonly isCall: boolean;1372 readonly asCall: {1373 readonly source: H160;1374 readonly target: H160;1375 readonly input: Bytes;1376 readonly value: U256;1377 readonly gasLimit: u64;1378 readonly maxFeePerGas: U256;1379 readonly maxPriorityFeePerGas: Option<U256>;1380 readonly nonce: Option<U256>;1381 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1382 } & Struct;1383 readonly isCreate: boolean;1384 readonly asCreate: {1385 readonly source: H160;1386 readonly init: Bytes;1387 readonly value: U256;1388 readonly gasLimit: u64;1389 readonly maxFeePerGas: U256;1390 readonly maxPriorityFeePerGas: Option<U256>;1391 readonly nonce: Option<U256>;1392 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1393 } & Struct;1394 readonly isCreate2: boolean;1395 readonly asCreate2: {1396 readonly source: H160;1397 readonly init: Bytes;1398 readonly salt: H256;1399 readonly value: U256;1400 readonly gasLimit: u64;1401 readonly maxFeePerGas: U256;1402 readonly maxPriorityFeePerGas: Option<U256>;1403 readonly nonce: Option<U256>;1404 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1405 } & Struct;1406 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1407}14081409/** @name PalletEvmCoderSubstrateError */1410export interface PalletEvmCoderSubstrateError extends Enum {1411 readonly isOutOfGas: boolean;1412 readonly isOutOfFund: boolean;1413 readonly type: 'OutOfGas' | 'OutOfFund';1414}14151416/** @name PalletEvmContractHelpersError */1417export interface PalletEvmContractHelpersError extends Enum {1418 readonly isNoPermission: boolean;1419 readonly isNoPendingSponsor: boolean;1420 readonly isTooManyMethodsHaveSponsoredLimit: boolean;1421 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';1422}14231424/** @name PalletEvmContractHelpersEvent */1425export interface PalletEvmContractHelpersEvent extends Enum {1426 readonly isContractSponsorSet: boolean;1427 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1428 readonly isContractSponsorshipConfirmed: boolean;1429 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1430 readonly isContractSponsorRemoved: boolean;1431 readonly asContractSponsorRemoved: H160;1432 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1433}14341435/** @name PalletEvmContractHelpersSponsoringModeT */1436export interface PalletEvmContractHelpersSponsoringModeT extends Enum {1437 readonly isDisabled: boolean;1438 readonly isAllowlisted: boolean;1439 readonly isGenerous: boolean;1440 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';1441}14421443/** @name PalletEvmError */1444export interface PalletEvmError extends Enum {1445 readonly isBalanceLow: boolean;1446 readonly isFeeOverflow: boolean;1447 readonly isPaymentOverflow: boolean;1448 readonly isWithdrawFailed: boolean;1449 readonly isGasPriceTooLow: boolean;1450 readonly isInvalidNonce: boolean;1451 readonly isGasLimitTooLow: boolean;1452 readonly isGasLimitTooHigh: boolean;1453 readonly isUndefined: boolean;1454 readonly isReentrancy: boolean;1455 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';1456}14571458/** @name PalletEvmEvent */1459export interface PalletEvmEvent extends Enum {1460 readonly isLog: boolean;1461 readonly asLog: {1462 readonly log: EthereumLog;1463 } & Struct;1464 readonly isCreated: boolean;1465 readonly asCreated: {1466 readonly address: H160;1467 } & Struct;1468 readonly isCreatedFailed: boolean;1469 readonly asCreatedFailed: {1470 readonly address: H160;1471 } & Struct;1472 readonly isExecuted: boolean;1473 readonly asExecuted: {1474 readonly address: H160;1475 } & Struct;1476 readonly isExecutedFailed: boolean;1477 readonly asExecutedFailed: {1478 readonly address: H160;1479 } & Struct;1480 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1481}14821483/** @name PalletEvmMigrationCall */1484export interface PalletEvmMigrationCall extends Enum {1485 readonly isBegin: boolean;1486 readonly asBegin: {1487 readonly address: H160;1488 } & Struct;1489 readonly isSetData: boolean;1490 readonly asSetData: {1491 readonly address: H160;1492 readonly data: Vec<ITuple<[H256, H256]>>;1493 } & Struct;1494 readonly isFinish: boolean;1495 readonly asFinish: {1496 readonly address: H160;1497 readonly code: Bytes;1498 } & Struct;1499 readonly isInsertEthLogs: boolean;1500 readonly asInsertEthLogs: {1501 readonly logs: Vec<EthereumLog>;1502 } & Struct;1503 readonly isInsertEvents: boolean;1504 readonly asInsertEvents: {1505 readonly events: Vec<Bytes>;1506 } & Struct;1507 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';1508}15091510/** @name PalletEvmMigrationError */1511export interface PalletEvmMigrationError extends Enum {1512 readonly isAccountNotEmpty: boolean;1513 readonly isAccountIsNotMigrating: boolean;1514 readonly isBadEvent: boolean;1515 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';1516}15171518/** @name PalletEvmMigrationEvent */1519export interface PalletEvmMigrationEvent extends Enum {1520 readonly isTestEvent: boolean;1521 readonly type: 'TestEvent';1522}15231524/** @name PalletForeignAssetsAssetIds */1525export interface PalletForeignAssetsAssetIds extends Enum {1526 readonly isForeignAssetId: boolean;1527 readonly asForeignAssetId: u32;1528 readonly isNativeAssetId: boolean;1529 readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;1530 readonly type: 'ForeignAssetId' | 'NativeAssetId';1531}15321533/** @name PalletForeignAssetsModuleAssetMetadata */1534export interface PalletForeignAssetsModuleAssetMetadata extends Struct {1535 readonly name: Bytes;1536 readonly symbol: Bytes;1537 readonly decimals: u8;1538 readonly minimalBalance: u128;1539}15401541/** @name PalletForeignAssetsModuleCall */1542export interface PalletForeignAssetsModuleCall extends Enum {1543 readonly isRegisterForeignAsset: boolean;1544 readonly asRegisterForeignAsset: {1545 readonly owner: AccountId32;1546 readonly location: XcmVersionedMultiLocation;1547 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1548 } & Struct;1549 readonly isUpdateForeignAsset: boolean;1550 readonly asUpdateForeignAsset: {1551 readonly foreignAssetId: u32;1552 readonly location: XcmVersionedMultiLocation;1553 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1554 } & Struct;1555 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';1556}15571558/** @name PalletForeignAssetsModuleError */1559export interface PalletForeignAssetsModuleError extends Enum {1560 readonly isBadLocation: boolean;1561 readonly isMultiLocationExisted: boolean;1562 readonly isAssetIdNotExists: boolean;1563 readonly isAssetIdExisted: boolean;1564 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';1565}15661567/** @name PalletForeignAssetsModuleEvent */1568export interface PalletForeignAssetsModuleEvent extends Enum {1569 readonly isForeignAssetRegistered: boolean;1570 readonly asForeignAssetRegistered: {1571 readonly assetId: u32;1572 readonly assetAddress: XcmV1MultiLocation;1573 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1574 } & Struct;1575 readonly isForeignAssetUpdated: boolean;1576 readonly asForeignAssetUpdated: {1577 readonly assetId: u32;1578 readonly assetAddress: XcmV1MultiLocation;1579 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1580 } & Struct;1581 readonly isAssetRegistered: boolean;1582 readonly asAssetRegistered: {1583 readonly assetId: PalletForeignAssetsAssetIds;1584 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1585 } & Struct;1586 readonly isAssetUpdated: boolean;1587 readonly asAssetUpdated: {1588 readonly assetId: PalletForeignAssetsAssetIds;1589 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1590 } & Struct;1591 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1592}15931594/** @name PalletForeignAssetsNativeCurrency */1595export interface PalletForeignAssetsNativeCurrency extends Enum {1596 readonly isHere: boolean;1597 readonly isParent: boolean;1598 readonly type: 'Here' | 'Parent';1599}16001601/** @name PalletFungibleError */1602export interface PalletFungibleError extends Enum {1603 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;1604 readonly isFungibleItemsHaveNoId: boolean;1605 readonly isFungibleItemsDontHaveData: boolean;1606 readonly isFungibleDisallowsNesting: boolean;1607 readonly isSettingPropertiesNotAllowed: boolean;1608 readonly isSettingAllowanceForAllNotAllowed: boolean;1609 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';1610}16111612/** @name PalletInflationCall */1613export interface PalletInflationCall extends Enum {1614 readonly isStartInflation: boolean;1615 readonly asStartInflation: {1616 readonly inflationStartRelayBlock: u32;1617 } & Struct;1618 readonly type: 'StartInflation';1619}16201621/** @name PalletMaintenanceCall */1622export interface PalletMaintenanceCall extends Enum {1623 readonly isEnable: boolean;1624 readonly isDisable: boolean;1625 readonly type: 'Enable' | 'Disable';1626}16271628/** @name PalletMaintenanceError */1629export interface PalletMaintenanceError extends Null {}16301631/** @name PalletMaintenanceEvent */1632export interface PalletMaintenanceEvent extends Enum {1633 readonly isMaintenanceEnabled: boolean;1634 readonly isMaintenanceDisabled: boolean;1635 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1636}16371638/** @name PalletNonfungibleError */1639export interface PalletNonfungibleError extends Enum {1640 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;1641 readonly isNonfungibleItemsHaveNoAmount: boolean;1642 readonly isCantBurnNftWithChildren: boolean;1643 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';1644}16451646/** @name PalletNonfungibleItemData */1647export interface PalletNonfungibleItemData extends Struct {1648 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1649}16501651/** @name PalletRefungibleError */1652export interface PalletRefungibleError extends Enum {1653 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;1654 readonly isWrongRefungiblePieces: boolean;1655 readonly isRepartitionWhileNotOwningAllPieces: boolean;1656 readonly isRefungibleDisallowsNesting: boolean;1657 readonly isSettingPropertiesNotAllowed: boolean;1658 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';1659}16601661/** @name PalletRefungibleItemData */1662export interface PalletRefungibleItemData extends Struct {1663 readonly constData: Bytes;1664}16651666/** @name PalletRmrkCoreCall */1667export interface PalletRmrkCoreCall extends Enum {1668 readonly isCreateCollection: boolean;1669 readonly asCreateCollection: {1670 readonly metadata: Bytes;1671 readonly max: Option<u32>;1672 readonly symbol: Bytes;1673 } & Struct;1674 readonly isDestroyCollection: boolean;1675 readonly asDestroyCollection: {1676 readonly collectionId: u32;1677 } & Struct;1678 readonly isChangeCollectionIssuer: boolean;1679 readonly asChangeCollectionIssuer: {1680 readonly collectionId: u32;1681 readonly newIssuer: MultiAddress;1682 } & Struct;1683 readonly isLockCollection: boolean;1684 readonly asLockCollection: {1685 readonly collectionId: u32;1686 } & Struct;1687 readonly isMintNft: boolean;1688 readonly asMintNft: {1689 readonly owner: Option<AccountId32>;1690 readonly collectionId: u32;1691 readonly recipient: Option<AccountId32>;1692 readonly royaltyAmount: Option<Permill>;1693 readonly metadata: Bytes;1694 readonly transferable: bool;1695 readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;1696 } & Struct;1697 readonly isBurnNft: boolean;1698 readonly asBurnNft: {1699 readonly collectionId: u32;1700 readonly nftId: u32;1701 readonly maxBurns: u32;1702 } & Struct;1703 readonly isSend: boolean;1704 readonly asSend: {1705 readonly rmrkCollectionId: u32;1706 readonly rmrkNftId: u32;1707 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;1708 } & Struct;1709 readonly isAcceptNft: boolean;1710 readonly asAcceptNft: {1711 readonly rmrkCollectionId: u32;1712 readonly rmrkNftId: u32;1713 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;1714 } & Struct;1715 readonly isRejectNft: boolean;1716 readonly asRejectNft: {1717 readonly rmrkCollectionId: u32;1718 readonly rmrkNftId: u32;1719 } & Struct;1720 readonly isAcceptResource: boolean;1721 readonly asAcceptResource: {1722 readonly rmrkCollectionId: u32;1723 readonly rmrkNftId: u32;1724 readonly resourceId: u32;1725 } & Struct;1726 readonly isAcceptResourceRemoval: boolean;1727 readonly asAcceptResourceRemoval: {1728 readonly rmrkCollectionId: u32;1729 readonly rmrkNftId: u32;1730 readonly resourceId: u32;1731 } & Struct;1732 readonly isSetProperty: boolean;1733 readonly asSetProperty: {1734 readonly rmrkCollectionId: Compact<u32>;1735 readonly maybeNftId: Option<u32>;1736 readonly key: Bytes;1737 readonly value: Bytes;1738 } & Struct;1739 readonly isSetPriority: boolean;1740 readonly asSetPriority: {1741 readonly rmrkCollectionId: u32;1742 readonly rmrkNftId: u32;1743 readonly priorities: Vec<u32>;1744 } & Struct;1745 readonly isAddBasicResource: boolean;1746 readonly asAddBasicResource: {1747 readonly rmrkCollectionId: u32;1748 readonly nftId: u32;1749 readonly resource: RmrkTraitsResourceBasicResource;1750 } & Struct;1751 readonly isAddComposableResource: boolean;1752 readonly asAddComposableResource: {1753 readonly rmrkCollectionId: u32;1754 readonly nftId: u32;1755 readonly resource: RmrkTraitsResourceComposableResource;1756 } & Struct;1757 readonly isAddSlotResource: boolean;1758 readonly asAddSlotResource: {1759 readonly rmrkCollectionId: u32;1760 readonly nftId: u32;1761 readonly resource: RmrkTraitsResourceSlotResource;1762 } & Struct;1763 readonly isRemoveResource: boolean;1764 readonly asRemoveResource: {1765 readonly rmrkCollectionId: u32;1766 readonly nftId: u32;1767 readonly resourceId: u32;1768 } & Struct;1769 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';1770}17711772/** @name PalletRmrkCoreError */1773export interface PalletRmrkCoreError extends Enum {1774 readonly isCorruptedCollectionType: boolean;1775 readonly isRmrkPropertyKeyIsTooLong: boolean;1776 readonly isRmrkPropertyValueIsTooLong: boolean;1777 readonly isRmrkPropertyIsNotFound: boolean;1778 readonly isUnableToDecodeRmrkData: boolean;1779 readonly isCollectionNotEmpty: boolean;1780 readonly isNoAvailableCollectionId: boolean;1781 readonly isNoAvailableNftId: boolean;1782 readonly isCollectionUnknown: boolean;1783 readonly isNoPermission: boolean;1784 readonly isNonTransferable: boolean;1785 readonly isCollectionFullOrLocked: boolean;1786 readonly isResourceDoesntExist: boolean;1787 readonly isCannotSendToDescendentOrSelf: boolean;1788 readonly isCannotAcceptNonOwnedNft: boolean;1789 readonly isCannotRejectNonOwnedNft: boolean;1790 readonly isCannotRejectNonPendingNft: boolean;1791 readonly isResourceNotPending: boolean;1792 readonly isNoAvailableResourceId: boolean;1793 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';1794}17951796/** @name PalletRmrkCoreEvent */1797export interface PalletRmrkCoreEvent extends Enum {1798 readonly isCollectionCreated: boolean;1799 readonly asCollectionCreated: {1800 readonly issuer: AccountId32;1801 readonly collectionId: u32;1802 } & Struct;1803 readonly isCollectionDestroyed: boolean;1804 readonly asCollectionDestroyed: {1805 readonly issuer: AccountId32;1806 readonly collectionId: u32;1807 } & Struct;1808 readonly isIssuerChanged: boolean;1809 readonly asIssuerChanged: {1810 readonly oldIssuer: AccountId32;1811 readonly newIssuer: AccountId32;1812 readonly collectionId: u32;1813 } & Struct;1814 readonly isCollectionLocked: boolean;1815 readonly asCollectionLocked: {1816 readonly issuer: AccountId32;1817 readonly collectionId: u32;1818 } & Struct;1819 readonly isNftMinted: boolean;1820 readonly asNftMinted: {1821 readonly owner: AccountId32;1822 readonly collectionId: u32;1823 readonly nftId: u32;1824 } & Struct;1825 readonly isNftBurned: boolean;1826 readonly asNftBurned: {1827 readonly owner: AccountId32;1828 readonly nftId: u32;1829 } & Struct;1830 readonly isNftSent: boolean;1831 readonly asNftSent: {1832 readonly sender: AccountId32;1833 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1834 readonly collectionId: u32;1835 readonly nftId: u32;1836 readonly approvalRequired: bool;1837 } & Struct;1838 readonly isNftAccepted: boolean;1839 readonly asNftAccepted: {1840 readonly sender: AccountId32;1841 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1842 readonly collectionId: u32;1843 readonly nftId: u32;1844 } & Struct;1845 readonly isNftRejected: boolean;1846 readonly asNftRejected: {1847 readonly sender: AccountId32;1848 readonly collectionId: u32;1849 readonly nftId: u32;1850 } & Struct;1851 readonly isPropertySet: boolean;1852 readonly asPropertySet: {1853 readonly collectionId: u32;1854 readonly maybeNftId: Option<u32>;1855 readonly key: Bytes;1856 readonly value: Bytes;1857 } & Struct;1858 readonly isResourceAdded: boolean;1859 readonly asResourceAdded: {1860 readonly nftId: u32;1861 readonly resourceId: u32;1862 } & Struct;1863 readonly isResourceRemoval: boolean;1864 readonly asResourceRemoval: {1865 readonly nftId: u32;1866 readonly resourceId: u32;1867 } & Struct;1868 readonly isResourceAccepted: boolean;1869 readonly asResourceAccepted: {1870 readonly nftId: u32;1871 readonly resourceId: u32;1872 } & Struct;1873 readonly isResourceRemovalAccepted: boolean;1874 readonly asResourceRemovalAccepted: {1875 readonly nftId: u32;1876 readonly resourceId: u32;1877 } & Struct;1878 readonly isPrioritySet: boolean;1879 readonly asPrioritySet: {1880 readonly collectionId: u32;1881 readonly nftId: u32;1882 } & Struct;1883 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1884}18851886/** @name PalletRmrkEquipCall */1887export interface PalletRmrkEquipCall extends Enum {1888 readonly isCreateBase: boolean;1889 readonly asCreateBase: {1890 readonly baseType: Bytes;1891 readonly symbol: Bytes;1892 readonly parts: Vec<RmrkTraitsPartPartType>;1893 } & Struct;1894 readonly isThemeAdd: boolean;1895 readonly asThemeAdd: {1896 readonly baseId: u32;1897 readonly theme: RmrkTraitsTheme;1898 } & Struct;1899 readonly isEquippable: boolean;1900 readonly asEquippable: {1901 readonly baseId: u32;1902 readonly slotId: u32;1903 readonly equippables: RmrkTraitsPartEquippableList;1904 } & Struct;1905 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';1906}19071908/** @name PalletRmrkEquipError */1909export interface PalletRmrkEquipError extends Enum {1910 readonly isPermissionError: boolean;1911 readonly isNoAvailableBaseId: boolean;1912 readonly isNoAvailablePartId: boolean;1913 readonly isBaseDoesntExist: boolean;1914 readonly isNeedsDefaultThemeFirst: boolean;1915 readonly isPartDoesntExist: boolean;1916 readonly isNoEquippableOnFixedPart: boolean;1917 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';1918}19191920/** @name PalletRmrkEquipEvent */1921export interface PalletRmrkEquipEvent extends Enum {1922 readonly isBaseCreated: boolean;1923 readonly asBaseCreated: {1924 readonly issuer: AccountId32;1925 readonly baseId: u32;1926 } & Struct;1927 readonly isEquippablesUpdated: boolean;1928 readonly asEquippablesUpdated: {1929 readonly baseId: u32;1930 readonly slotId: u32;1931 } & Struct;1932 readonly type: 'BaseCreated' | 'EquippablesUpdated';1933}19341935/** @name PalletStructureCall */1936export interface PalletStructureCall extends Null {}19371938/** @name PalletStructureError */1939export interface PalletStructureError extends Enum {1940 readonly isOuroborosDetected: boolean;1941 readonly isDepthLimit: boolean;1942 readonly isBreadthLimit: boolean;1943 readonly isTokenNotFound: boolean;1944 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';1945}19461947/** @name PalletStructureEvent */1948export interface PalletStructureEvent extends Enum {1949 readonly isExecuted: boolean;1950 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1951 readonly type: 'Executed';1952}19531954/** @name PalletSudoCall */1955export interface PalletSudoCall extends Enum {1956 readonly isSudo: boolean;1957 readonly asSudo: {1958 readonly call: Call;1959 } & Struct;1960 readonly isSudoUncheckedWeight: boolean;1961 readonly asSudoUncheckedWeight: {1962 readonly call: Call;1963 readonly weight: SpWeightsWeightV2Weight;1964 } & Struct;1965 readonly isSetKey: boolean;1966 readonly asSetKey: {1967 readonly new_: MultiAddress;1968 } & Struct;1969 readonly isSudoAs: boolean;1970 readonly asSudoAs: {1971 readonly who: MultiAddress;1972 readonly call: Call;1973 } & Struct;1974 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1975}19761977/** @name PalletSudoError */1978export interface PalletSudoError extends Enum {1979 readonly isRequireSudo: boolean;1980 readonly type: 'RequireSudo';1981}19821983/** @name PalletSudoEvent */1984export interface PalletSudoEvent extends Enum {1985 readonly isSudid: boolean;1986 readonly asSudid: {1987 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1988 } & Struct;1989 readonly isKeyChanged: boolean;1990 readonly asKeyChanged: {1991 readonly oldSudoer: Option<AccountId32>;1992 } & Struct;1993 readonly isSudoAsDone: boolean;1994 readonly asSudoAsDone: {1995 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1996 } & Struct;1997 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';1998}19992000/** @name PalletTemplateTransactionPaymentCall */2001export interface PalletTemplateTransactionPaymentCall extends Null {}20022003/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */2004export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}20052006/** @name PalletTestUtilsCall */2007export interface PalletTestUtilsCall extends Enum {2008 readonly isEnable: boolean;2009 readonly isSetTestValue: boolean;2010 readonly asSetTestValue: {2011 readonly value: u32;2012 } & Struct;2013 readonly isSetTestValueAndRollback: boolean;2014 readonly asSetTestValueAndRollback: {2015 readonly value: u32;2016 } & Struct;2017 readonly isIncTestValue: boolean;2018 readonly isSelfCancelingInc: boolean;2019 readonly asSelfCancelingInc: {2020 readonly id: U8aFixed;2021 readonly maxTestValue: u32;2022 } & Struct;2023 readonly isJustTakeFee: boolean;2024 readonly isBatchAll: boolean;2025 readonly asBatchAll: {2026 readonly calls: Vec<Call>;2027 } & Struct;2028 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';2029}20302031/** @name PalletTestUtilsError */2032export interface PalletTestUtilsError extends Enum {2033 readonly isTestPalletDisabled: boolean;2034 readonly isTriggerRollback: boolean;2035 readonly type: 'TestPalletDisabled' | 'TriggerRollback';2036}20372038/** @name PalletTestUtilsEvent */2039export interface PalletTestUtilsEvent extends Enum {2040 readonly isValueIsSet: boolean;2041 readonly isShouldRollback: boolean;2042 readonly isBatchCompleted: boolean;2043 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';2044}20452046/** @name PalletTimestampCall */2047export interface PalletTimestampCall extends Enum {2048 readonly isSet: boolean;2049 readonly asSet: {2050 readonly now: Compact<u64>;2051 } & Struct;2052 readonly type: 'Set';2053}20542055/** @name PalletTransactionPaymentEvent */2056export interface PalletTransactionPaymentEvent extends Enum {2057 readonly isTransactionFeePaid: boolean;2058 readonly asTransactionFeePaid: {2059 readonly who: AccountId32;2060 readonly actualFee: u128;2061 readonly tip: u128;2062 } & Struct;2063 readonly type: 'TransactionFeePaid';2064}20652066/** @name PalletTransactionPaymentReleases */2067export interface PalletTransactionPaymentReleases extends Enum {2068 readonly isV1Ancient: boolean;2069 readonly isV2: boolean;2070 readonly type: 'V1Ancient' | 'V2';2071}20722073/** @name PalletTreasuryCall */2074export interface PalletTreasuryCall extends Enum {2075 readonly isProposeSpend: boolean;2076 readonly asProposeSpend: {2077 readonly value: Compact<u128>;2078 readonly beneficiary: MultiAddress;2079 } & Struct;2080 readonly isRejectProposal: boolean;2081 readonly asRejectProposal: {2082 readonly proposalId: Compact<u32>;2083 } & Struct;2084 readonly isApproveProposal: boolean;2085 readonly asApproveProposal: {2086 readonly proposalId: Compact<u32>;2087 } & Struct;2088 readonly isSpend: boolean;2089 readonly asSpend: {2090 readonly amount: Compact<u128>;2091 readonly beneficiary: MultiAddress;2092 } & Struct;2093 readonly isRemoveApproval: boolean;2094 readonly asRemoveApproval: {2095 readonly proposalId: Compact<u32>;2096 } & Struct;2097 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';2098}20992100/** @name PalletTreasuryError */2101export interface PalletTreasuryError extends Enum {2102 readonly isInsufficientProposersBalance: boolean;2103 readonly isInvalidIndex: boolean;2104 readonly isTooManyApprovals: boolean;2105 readonly isInsufficientPermission: boolean;2106 readonly isProposalNotApproved: boolean;2107 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';2108}21092110/** @name PalletTreasuryEvent */2111export interface PalletTreasuryEvent extends Enum {2112 readonly isProposed: boolean;2113 readonly asProposed: {2114 readonly proposalIndex: u32;2115 } & Struct;2116 readonly isSpending: boolean;2117 readonly asSpending: {2118 readonly budgetRemaining: u128;2119 } & Struct;2120 readonly isAwarded: boolean;2121 readonly asAwarded: {2122 readonly proposalIndex: u32;2123 readonly award: u128;2124 readonly account: AccountId32;2125 } & Struct;2126 readonly isRejected: boolean;2127 readonly asRejected: {2128 readonly proposalIndex: u32;2129 readonly slashed: u128;2130 } & Struct;2131 readonly isBurnt: boolean;2132 readonly asBurnt: {2133 readonly burntFunds: u128;2134 } & Struct;2135 readonly isRollover: boolean;2136 readonly asRollover: {2137 readonly rolloverBalance: u128;2138 } & Struct;2139 readonly isDeposit: boolean;2140 readonly asDeposit: {2141 readonly value: u128;2142 } & Struct;2143 readonly isSpendApproved: boolean;2144 readonly asSpendApproved: {2145 readonly proposalIndex: u32;2146 readonly amount: u128;2147 readonly beneficiary: AccountId32;2148 } & Struct;2149 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';2150}21512152/** @name PalletTreasuryProposal */2153export interface PalletTreasuryProposal extends Struct {2154 readonly proposer: AccountId32;2155 readonly value: u128;2156 readonly beneficiary: AccountId32;2157 readonly bond: u128;2158}21592160/** @name PalletUniqueCall */2161export interface PalletUniqueCall extends Enum {2162 readonly isCreateCollection: boolean;2163 readonly asCreateCollection: {2164 readonly collectionName: Vec<u16>;2165 readonly collectionDescription: Vec<u16>;2166 readonly tokenPrefix: Bytes;2167 readonly mode: UpDataStructsCollectionMode;2168 } & Struct;2169 readonly isCreateCollectionEx: boolean;2170 readonly asCreateCollectionEx: {2171 readonly data: UpDataStructsCreateCollectionData;2172 } & Struct;2173 readonly isDestroyCollection: boolean;2174 readonly asDestroyCollection: {2175 readonly collectionId: u32;2176 } & Struct;2177 readonly isAddToAllowList: boolean;2178 readonly asAddToAllowList: {2179 readonly collectionId: u32;2180 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2181 } & Struct;2182 readonly isRemoveFromAllowList: boolean;2183 readonly asRemoveFromAllowList: {2184 readonly collectionId: u32;2185 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2186 } & Struct;2187 readonly isChangeCollectionOwner: boolean;2188 readonly asChangeCollectionOwner: {2189 readonly collectionId: u32;2190 readonly newOwner: AccountId32;2191 } & Struct;2192 readonly isAddCollectionAdmin: boolean;2193 readonly asAddCollectionAdmin: {2194 readonly collectionId: u32;2195 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2196 } & Struct;2197 readonly isRemoveCollectionAdmin: boolean;2198 readonly asRemoveCollectionAdmin: {2199 readonly collectionId: u32;2200 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2201 } & Struct;2202 readonly isSetCollectionSponsor: boolean;2203 readonly asSetCollectionSponsor: {2204 readonly collectionId: u32;2205 readonly newSponsor: AccountId32;2206 } & Struct;2207 readonly isConfirmSponsorship: boolean;2208 readonly asConfirmSponsorship: {2209 readonly collectionId: u32;2210 } & Struct;2211 readonly isRemoveCollectionSponsor: boolean;2212 readonly asRemoveCollectionSponsor: {2213 readonly collectionId: u32;2214 } & Struct;2215 readonly isCreateItem: boolean;2216 readonly asCreateItem: {2217 readonly collectionId: u32;2218 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2219 readonly data: UpDataStructsCreateItemData;2220 } & Struct;2221 readonly isCreateMultipleItems: boolean;2222 readonly asCreateMultipleItems: {2223 readonly collectionId: u32;2224 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2225 readonly itemsData: Vec<UpDataStructsCreateItemData>;2226 } & Struct;2227 readonly isSetCollectionProperties: boolean;2228 readonly asSetCollectionProperties: {2229 readonly collectionId: u32;2230 readonly properties: Vec<UpDataStructsProperty>;2231 } & Struct;2232 readonly isDeleteCollectionProperties: boolean;2233 readonly asDeleteCollectionProperties: {2234 readonly collectionId: u32;2235 readonly propertyKeys: Vec<Bytes>;2236 } & Struct;2237 readonly isSetTokenProperties: boolean;2238 readonly asSetTokenProperties: {2239 readonly collectionId: u32;2240 readonly tokenId: u32;2241 readonly properties: Vec<UpDataStructsProperty>;2242 } & Struct;2243 readonly isDeleteTokenProperties: boolean;2244 readonly asDeleteTokenProperties: {2245 readonly collectionId: u32;2246 readonly tokenId: u32;2247 readonly propertyKeys: Vec<Bytes>;2248 } & Struct;2249 readonly isSetTokenPropertyPermissions: boolean;2250 readonly asSetTokenPropertyPermissions: {2251 readonly collectionId: u32;2252 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2253 } & Struct;2254 readonly isCreateMultipleItemsEx: boolean;2255 readonly asCreateMultipleItemsEx: {2256 readonly collectionId: u32;2257 readonly data: UpDataStructsCreateItemExData;2258 } & Struct;2259 readonly isSetTransfersEnabledFlag: boolean;2260 readonly asSetTransfersEnabledFlag: {2261 readonly collectionId: u32;2262 readonly value: bool;2263 } & Struct;2264 readonly isBurnItem: boolean;2265 readonly asBurnItem: {2266 readonly collectionId: u32;2267 readonly itemId: u32;2268 readonly value: u128;2269 } & Struct;2270 readonly isBurnFrom: boolean;2271 readonly asBurnFrom: {2272 readonly collectionId: u32;2273 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2274 readonly itemId: u32;2275 readonly value: u128;2276 } & Struct;2277 readonly isTransfer: boolean;2278 readonly asTransfer: {2279 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2280 readonly collectionId: u32;2281 readonly itemId: u32;2282 readonly value: u128;2283 } & Struct;2284 readonly isApprove: boolean;2285 readonly asApprove: {2286 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2287 readonly collectionId: u32;2288 readonly itemId: u32;2289 readonly amount: u128;2290 } & Struct;2291 readonly isTransferFrom: boolean;2292 readonly asTransferFrom: {2293 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2294 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2295 readonly collectionId: u32;2296 readonly itemId: u32;2297 readonly value: u128;2298 } & Struct;2299 readonly isSetCollectionLimits: boolean;2300 readonly asSetCollectionLimits: {2301 readonly collectionId: u32;2302 readonly newLimit: UpDataStructsCollectionLimits;2303 } & Struct;2304 readonly isSetCollectionPermissions: boolean;2305 readonly asSetCollectionPermissions: {2306 readonly collectionId: u32;2307 readonly newPermission: UpDataStructsCollectionPermissions;2308 } & Struct;2309 readonly isRepartition: boolean;2310 readonly asRepartition: {2311 readonly collectionId: u32;2312 readonly tokenId: u32;2313 readonly amount: u128;2314 } & Struct;2315 readonly isSetAllowanceForAll: boolean;2316 readonly asSetAllowanceForAll: {2317 readonly collectionId: u32;2318 readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2319 readonly approve: bool;2320 } & Struct;2321 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';2322}23232324/** @name PalletUniqueError */2325export interface PalletUniqueError extends Enum {2326 readonly isCollectionDecimalPointLimitExceeded: boolean;2327 readonly isConfirmUnsetSponsorFail: boolean;2328 readonly isEmptyArgument: boolean;2329 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;2330 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';2331}23322333/** @name PalletUniqueRawEvent */2334export interface PalletUniqueRawEvent extends Enum {2335 readonly isCollectionSponsorRemoved: boolean;2336 readonly asCollectionSponsorRemoved: u32;2337 readonly isCollectionAdminAdded: boolean;2338 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2339 readonly isCollectionOwnedChanged: boolean;2340 readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;2341 readonly isCollectionSponsorSet: boolean;2342 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;2343 readonly isSponsorshipConfirmed: boolean;2344 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;2345 readonly isCollectionAdminRemoved: boolean;2346 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2347 readonly isAllowListAddressRemoved: boolean;2348 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2349 readonly isAllowListAddressAdded: boolean;2350 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2351 readonly isCollectionLimitSet: boolean;2352 readonly asCollectionLimitSet: u32;2353 readonly isCollectionPermissionSet: boolean;2354 readonly asCollectionPermissionSet: u32;2355 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';2356}23572358/** @name PalletUniqueSchedulerV2BlockAgenda */2359export interface PalletUniqueSchedulerV2BlockAgenda extends Struct {2360 readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;2361 readonly freePlaces: u32;2362}23632364/** @name PalletUniqueSchedulerV2Call */2365export interface PalletUniqueSchedulerV2Call extends Enum {2366 readonly isSchedule: boolean;2367 readonly asSchedule: {2368 readonly when: u32;2369 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2370 readonly priority: Option<u8>;2371 readonly call: Call;2372 } & Struct;2373 readonly isCancel: boolean;2374 readonly asCancel: {2375 readonly when: u32;2376 readonly index: u32;2377 } & Struct;2378 readonly isScheduleNamed: boolean;2379 readonly asScheduleNamed: {2380 readonly id: U8aFixed;2381 readonly when: u32;2382 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2383 readonly priority: Option<u8>;2384 readonly call: Call;2385 } & Struct;2386 readonly isCancelNamed: boolean;2387 readonly asCancelNamed: {2388 readonly id: U8aFixed;2389 } & Struct;2390 readonly isScheduleAfter: boolean;2391 readonly asScheduleAfter: {2392 readonly after: u32;2393 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2394 readonly priority: Option<u8>;2395 readonly call: Call;2396 } & Struct;2397 readonly isScheduleNamedAfter: boolean;2398 readonly asScheduleNamedAfter: {2399 readonly id: U8aFixed;2400 readonly after: u32;2401 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2402 readonly priority: Option<u8>;2403 readonly call: Call;2404 } & Struct;2405 readonly isChangeNamedPriority: boolean;2406 readonly asChangeNamedPriority: {2407 readonly id: U8aFixed;2408 readonly priority: u8;2409 } & Struct;2410 readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';2411}24122413/** @name PalletUniqueSchedulerV2Error */2414export interface PalletUniqueSchedulerV2Error extends Enum {2415 readonly isFailedToSchedule: boolean;2416 readonly isAgendaIsExhausted: boolean;2417 readonly isScheduledCallCorrupted: boolean;2418 readonly isPreimageNotFound: boolean;2419 readonly isTooBigScheduledCall: boolean;2420 readonly isNotFound: boolean;2421 readonly isTargetBlockNumberInPast: boolean;2422 readonly isNamed: boolean;2423 readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';2424}24252426/** @name PalletUniqueSchedulerV2Event */2427export interface PalletUniqueSchedulerV2Event extends Enum {2428 readonly isScheduled: boolean;2429 readonly asScheduled: {2430 readonly when: u32;2431 readonly index: u32;2432 } & Struct;2433 readonly isCanceled: boolean;2434 readonly asCanceled: {2435 readonly when: u32;2436 readonly index: u32;2437 } & Struct;2438 readonly isDispatched: boolean;2439 readonly asDispatched: {2440 readonly task: ITuple<[u32, u32]>;2441 readonly id: Option<U8aFixed>;2442 readonly result: Result<Null, SpRuntimeDispatchError>;2443 } & Struct;2444 readonly isPriorityChanged: boolean;2445 readonly asPriorityChanged: {2446 readonly task: ITuple<[u32, u32]>;2447 readonly priority: u8;2448 } & Struct;2449 readonly isCallUnavailable: boolean;2450 readonly asCallUnavailable: {2451 readonly task: ITuple<[u32, u32]>;2452 readonly id: Option<U8aFixed>;2453 } & Struct;2454 readonly isPermanentlyOverweight: boolean;2455 readonly asPermanentlyOverweight: {2456 readonly task: ITuple<[u32, u32]>;2457 readonly id: Option<U8aFixed>;2458 } & Struct;2459 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';2460}24612462/** @name PalletUniqueSchedulerV2Scheduled */2463export interface PalletUniqueSchedulerV2Scheduled extends Struct {2464 readonly maybeId: Option<U8aFixed>;2465 readonly priority: u8;2466 readonly call: PalletUniqueSchedulerV2ScheduledCall;2467 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2468 readonly origin: OpalRuntimeOriginCaller;2469}24702471/** @name PalletUniqueSchedulerV2ScheduledCall */2472export interface PalletUniqueSchedulerV2ScheduledCall extends Enum {2473 readonly isInline: boolean;2474 readonly asInline: Bytes;2475 readonly isPreimageLookup: boolean;2476 readonly asPreimageLookup: {2477 readonly hash_: H256;2478 readonly unboundedLen: u32;2479 } & Struct;2480 readonly type: 'Inline' | 'PreimageLookup';2481}24822483/** @name PalletXcmCall */2484export interface PalletXcmCall extends Enum {2485 readonly isSend: boolean;2486 readonly asSend: {2487 readonly dest: XcmVersionedMultiLocation;2488 readonly message: XcmVersionedXcm;2489 } & Struct;2490 readonly isTeleportAssets: boolean;2491 readonly asTeleportAssets: {2492 readonly dest: XcmVersionedMultiLocation;2493 readonly beneficiary: XcmVersionedMultiLocation;2494 readonly assets: XcmVersionedMultiAssets;2495 readonly feeAssetItem: u32;2496 } & Struct;2497 readonly isReserveTransferAssets: boolean;2498 readonly asReserveTransferAssets: {2499 readonly dest: XcmVersionedMultiLocation;2500 readonly beneficiary: XcmVersionedMultiLocation;2501 readonly assets: XcmVersionedMultiAssets;2502 readonly feeAssetItem: u32;2503 } & Struct;2504 readonly isExecute: boolean;2505 readonly asExecute: {2506 readonly message: XcmVersionedXcm;2507 readonly maxWeight: u64;2508 } & Struct;2509 readonly isForceXcmVersion: boolean;2510 readonly asForceXcmVersion: {2511 readonly location: XcmV1MultiLocation;2512 readonly xcmVersion: u32;2513 } & Struct;2514 readonly isForceDefaultXcmVersion: boolean;2515 readonly asForceDefaultXcmVersion: {2516 readonly maybeXcmVersion: Option<u32>;2517 } & Struct;2518 readonly isForceSubscribeVersionNotify: boolean;2519 readonly asForceSubscribeVersionNotify: {2520 readonly location: XcmVersionedMultiLocation;2521 } & Struct;2522 readonly isForceUnsubscribeVersionNotify: boolean;2523 readonly asForceUnsubscribeVersionNotify: {2524 readonly location: XcmVersionedMultiLocation;2525 } & Struct;2526 readonly isLimitedReserveTransferAssets: boolean;2527 readonly asLimitedReserveTransferAssets: {2528 readonly dest: XcmVersionedMultiLocation;2529 readonly beneficiary: XcmVersionedMultiLocation;2530 readonly assets: XcmVersionedMultiAssets;2531 readonly feeAssetItem: u32;2532 readonly weightLimit: XcmV2WeightLimit;2533 } & Struct;2534 readonly isLimitedTeleportAssets: boolean;2535 readonly asLimitedTeleportAssets: {2536 readonly dest: XcmVersionedMultiLocation;2537 readonly beneficiary: XcmVersionedMultiLocation;2538 readonly assets: XcmVersionedMultiAssets;2539 readonly feeAssetItem: u32;2540 readonly weightLimit: XcmV2WeightLimit;2541 } & Struct;2542 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2543}25442545/** @name PalletXcmError */2546export interface PalletXcmError extends Enum {2547 readonly isUnreachable: boolean;2548 readonly isSendFailure: boolean;2549 readonly isFiltered: boolean;2550 readonly isUnweighableMessage: boolean;2551 readonly isDestinationNotInvertible: boolean;2552 readonly isEmpty: boolean;2553 readonly isCannotReanchor: boolean;2554 readonly isTooManyAssets: boolean;2555 readonly isInvalidOrigin: boolean;2556 readonly isBadVersion: boolean;2557 readonly isBadLocation: boolean;2558 readonly isNoSubscription: boolean;2559 readonly isAlreadySubscribed: boolean;2560 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2561}25622563/** @name PalletXcmEvent */2564export interface PalletXcmEvent extends Enum {2565 readonly isAttempted: boolean;2566 readonly asAttempted: XcmV2TraitsOutcome;2567 readonly isSent: boolean;2568 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;2569 readonly isUnexpectedResponse: boolean;2570 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;2571 readonly isResponseReady: boolean;2572 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;2573 readonly isNotified: boolean;2574 readonly asNotified: ITuple<[u64, u8, u8]>;2575 readonly isNotifyOverweight: boolean;2576 readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;2577 readonly isNotifyDispatchError: boolean;2578 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;2579 readonly isNotifyDecodeFailed: boolean;2580 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;2581 readonly isInvalidResponder: boolean;2582 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;2583 readonly isInvalidResponderVersion: boolean;2584 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;2585 readonly isResponseTaken: boolean;2586 readonly asResponseTaken: u64;2587 readonly isAssetsTrapped: boolean;2588 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2589 readonly isVersionChangeNotified: boolean;2590 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;2591 readonly isSupportedVersionChanged: boolean;2592 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;2593 readonly isNotifyTargetSendFail: boolean;2594 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;2595 readonly isNotifyTargetMigrationFail: boolean;2596 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;2597 readonly isAssetsClaimed: boolean;2598 readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2599 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';2600}26012602/** @name PalletXcmOrigin */2603export interface PalletXcmOrigin extends Enum {2604 readonly isXcm: boolean;2605 readonly asXcm: XcmV1MultiLocation;2606 readonly isResponse: boolean;2607 readonly asResponse: XcmV1MultiLocation;2608 readonly type: 'Xcm' | 'Response';2609}26102611/** @name PhantomTypeUpDataStructs */2612export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}26132614/** @name PolkadotCorePrimitivesInboundDownwardMessage */2615export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {2616 readonly sentAt: u32;2617 readonly msg: Bytes;2618}26192620/** @name PolkadotCorePrimitivesInboundHrmpMessage */2621export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {2622 readonly sentAt: u32;2623 readonly data: Bytes;2624}26252626/** @name PolkadotCorePrimitivesOutboundHrmpMessage */2627export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {2628 readonly recipient: u32;2629 readonly data: Bytes;2630}26312632/** @name PolkadotParachainPrimitivesXcmpMessageFormat */2633export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2634 readonly isConcatenatedVersionedXcm: boolean;2635 readonly isConcatenatedEncodedBlob: boolean;2636 readonly isSignals: boolean;2637 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2638}26392640/** @name PolkadotPrimitivesV2AbridgedHostConfiguration */2641export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {2642 readonly maxCodeSize: u32;2643 readonly maxHeadDataSize: u32;2644 readonly maxUpwardQueueCount: u32;2645 readonly maxUpwardQueueSize: u32;2646 readonly maxUpwardMessageSize: u32;2647 readonly maxUpwardMessageNumPerCandidate: u32;2648 readonly hrmpMaxMessageNumPerCandidate: u32;2649 readonly validationUpgradeCooldown: u32;2650 readonly validationUpgradeDelay: u32;2651}26522653/** @name PolkadotPrimitivesV2AbridgedHrmpChannel */2654export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {2655 readonly maxCapacity: u32;2656 readonly maxTotalSize: u32;2657 readonly maxMessageSize: u32;2658 readonly msgCount: u32;2659 readonly totalSize: u32;2660 readonly mqcHead: Option<H256>;2661}26622663/** @name PolkadotPrimitivesV2PersistedValidationData */2664export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {2665 readonly parentHead: Bytes;2666 readonly relayParentNumber: u32;2667 readonly relayParentStorageRoot: H256;2668 readonly maxPovSize: u32;2669}26702671/** @name PolkadotPrimitivesV2UpgradeRestriction */2672export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {2673 readonly isPresent: boolean;2674 readonly type: 'Present';2675}26762677/** @name RmrkTraitsBaseBaseInfo */2678export interface RmrkTraitsBaseBaseInfo extends Struct {2679 readonly issuer: AccountId32;2680 readonly baseType: Bytes;2681 readonly symbol: Bytes;2682}26832684/** @name RmrkTraitsCollectionCollectionInfo */2685export interface RmrkTraitsCollectionCollectionInfo extends Struct {2686 readonly issuer: AccountId32;2687 readonly metadata: Bytes;2688 readonly max: Option<u32>;2689 readonly symbol: Bytes;2690 readonly nftsCount: u32;2691}26922693/** @name RmrkTraitsNftAccountIdOrCollectionNftTuple */2694export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {2695 readonly isAccountId: boolean;2696 readonly asAccountId: AccountId32;2697 readonly isCollectionAndNftTuple: boolean;2698 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;2699 readonly type: 'AccountId' | 'CollectionAndNftTuple';2700}27012702/** @name RmrkTraitsNftNftChild */2703export interface RmrkTraitsNftNftChild extends Struct {2704 readonly collectionId: u32;2705 readonly nftId: u32;2706}27072708/** @name RmrkTraitsNftNftInfo */2709export interface RmrkTraitsNftNftInfo extends Struct {2710 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2711 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;2712 readonly metadata: Bytes;2713 readonly equipped: bool;2714 readonly pending: bool;2715}27162717/** @name RmrkTraitsNftRoyaltyInfo */2718export interface RmrkTraitsNftRoyaltyInfo extends Struct {2719 readonly recipient: AccountId32;2720 readonly amount: Permill;2721}27222723/** @name RmrkTraitsPartEquippableList */2724export interface RmrkTraitsPartEquippableList extends Enum {2725 readonly isAll: boolean;2726 readonly isEmpty: boolean;2727 readonly isCustom: boolean;2728 readonly asCustom: Vec<u32>;2729 readonly type: 'All' | 'Empty' | 'Custom';2730}27312732/** @name RmrkTraitsPartFixedPart */2733export interface RmrkTraitsPartFixedPart extends Struct {2734 readonly id: u32;2735 readonly z: u32;2736 readonly src: Bytes;2737}27382739/** @name RmrkTraitsPartPartType */2740export interface RmrkTraitsPartPartType extends Enum {2741 readonly isFixedPart: boolean;2742 readonly asFixedPart: RmrkTraitsPartFixedPart;2743 readonly isSlotPart: boolean;2744 readonly asSlotPart: RmrkTraitsPartSlotPart;2745 readonly type: 'FixedPart' | 'SlotPart';2746}27472748/** @name RmrkTraitsPartSlotPart */2749export interface RmrkTraitsPartSlotPart extends Struct {2750 readonly id: u32;2751 readonly equippable: RmrkTraitsPartEquippableList;2752 readonly src: Bytes;2753 readonly z: u32;2754}27552756/** @name RmrkTraitsPropertyPropertyInfo */2757export interface RmrkTraitsPropertyPropertyInfo extends Struct {2758 readonly key: Bytes;2759 readonly value: Bytes;2760}27612762/** @name RmrkTraitsResourceBasicResource */2763export interface RmrkTraitsResourceBasicResource extends Struct {2764 readonly src: Option<Bytes>;2765 readonly metadata: Option<Bytes>;2766 readonly license: Option<Bytes>;2767 readonly thumb: Option<Bytes>;2768}27692770/** @name RmrkTraitsResourceComposableResource */2771export interface RmrkTraitsResourceComposableResource extends Struct {2772 readonly parts: Vec<u32>;2773 readonly base: u32;2774 readonly src: Option<Bytes>;2775 readonly metadata: Option<Bytes>;2776 readonly license: Option<Bytes>;2777 readonly thumb: Option<Bytes>;2778}27792780/** @name RmrkTraitsResourceResourceInfo */2781export interface RmrkTraitsResourceResourceInfo extends Struct {2782 readonly id: u32;2783 readonly resource: RmrkTraitsResourceResourceTypes;2784 readonly pending: bool;2785 readonly pendingRemoval: bool;2786}27872788/** @name RmrkTraitsResourceResourceTypes */2789export interface RmrkTraitsResourceResourceTypes extends Enum {2790 readonly isBasic: boolean;2791 readonly asBasic: RmrkTraitsResourceBasicResource;2792 readonly isComposable: boolean;2793 readonly asComposable: RmrkTraitsResourceComposableResource;2794 readonly isSlot: boolean;2795 readonly asSlot: RmrkTraitsResourceSlotResource;2796 readonly type: 'Basic' | 'Composable' | 'Slot';2797}27982799/** @name RmrkTraitsResourceSlotResource */2800export interface RmrkTraitsResourceSlotResource extends Struct {2801 readonly base: u32;2802 readonly src: Option<Bytes>;2803 readonly metadata: Option<Bytes>;2804 readonly slot: u32;2805 readonly license: Option<Bytes>;2806 readonly thumb: Option<Bytes>;2807}28082809/** @name RmrkTraitsTheme */2810export interface RmrkTraitsTheme extends Struct {2811 readonly name: Bytes;2812 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2813 readonly inherit: bool;2814}28152816/** @name RmrkTraitsThemeThemeProperty */2817export interface RmrkTraitsThemeThemeProperty extends Struct {2818 readonly key: Bytes;2819 readonly value: Bytes;2820}28212822/** @name SpCoreEcdsaSignature */2823export interface SpCoreEcdsaSignature extends U8aFixed {}28242825/** @name SpCoreEd25519Signature */2826export interface SpCoreEd25519Signature extends U8aFixed {}28272828/** @name SpCoreSr25519Signature */2829export interface SpCoreSr25519Signature extends U8aFixed {}28302831/** @name SpCoreVoid */2832export interface SpCoreVoid extends Null {}28332834/** @name SpRuntimeArithmeticError */2835export interface SpRuntimeArithmeticError extends Enum {2836 readonly isUnderflow: boolean;2837 readonly isOverflow: boolean;2838 readonly isDivisionByZero: boolean;2839 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';2840}28412842/** @name SpRuntimeDigest */2843export interface SpRuntimeDigest extends Struct {2844 readonly logs: Vec<SpRuntimeDigestDigestItem>;2845}28462847/** @name SpRuntimeDigestDigestItem */2848export interface SpRuntimeDigestDigestItem extends Enum {2849 readonly isOther: boolean;2850 readonly asOther: Bytes;2851 readonly isConsensus: boolean;2852 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;2853 readonly isSeal: boolean;2854 readonly asSeal: ITuple<[U8aFixed, Bytes]>;2855 readonly isPreRuntime: boolean;2856 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;2857 readonly isRuntimeEnvironmentUpdated: boolean;2858 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';2859}28602861/** @name SpRuntimeDispatchError */2862export interface SpRuntimeDispatchError extends Enum {2863 readonly isOther: boolean;2864 readonly isCannotLookup: boolean;2865 readonly isBadOrigin: boolean;2866 readonly isModule: boolean;2867 readonly asModule: SpRuntimeModuleError;2868 readonly isConsumerRemaining: boolean;2869 readonly isNoProviders: boolean;2870 readonly isTooManyConsumers: boolean;2871 readonly isToken: boolean;2872 readonly asToken: SpRuntimeTokenError;2873 readonly isArithmetic: boolean;2874 readonly asArithmetic: SpRuntimeArithmeticError;2875 readonly isTransactional: boolean;2876 readonly asTransactional: SpRuntimeTransactionalError;2877 readonly isExhausted: boolean;2878 readonly isCorruption: boolean;2879 readonly isUnavailable: boolean;2880 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';2881}28822883/** @name SpRuntimeModuleError */2884export interface SpRuntimeModuleError extends Struct {2885 readonly index: u8;2886 readonly error: U8aFixed;2887}28882889/** @name SpRuntimeMultiSignature */2890export interface SpRuntimeMultiSignature extends Enum {2891 readonly isEd25519: boolean;2892 readonly asEd25519: SpCoreEd25519Signature;2893 readonly isSr25519: boolean;2894 readonly asSr25519: SpCoreSr25519Signature;2895 readonly isEcdsa: boolean;2896 readonly asEcdsa: SpCoreEcdsaSignature;2897 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2898}28992900/** @name SpRuntimeTokenError */2901export interface SpRuntimeTokenError extends Enum {2902 readonly isNoFunds: boolean;2903 readonly isWouldDie: boolean;2904 readonly isBelowMinimum: boolean;2905 readonly isCannotCreate: boolean;2906 readonly isUnknownAsset: boolean;2907 readonly isFrozen: boolean;2908 readonly isUnsupported: boolean;2909 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';2910}29112912/** @name SpRuntimeTransactionalError */2913export interface SpRuntimeTransactionalError extends Enum {2914 readonly isLimitReached: boolean;2915 readonly isNoLayer: boolean;2916 readonly type: 'LimitReached' | 'NoLayer';2917}29182919/** @name SpTrieStorageProof */2920export interface SpTrieStorageProof extends Struct {2921 readonly trieNodes: BTreeSet<Bytes>;2922}29232924/** @name SpVersionRuntimeVersion */2925export interface SpVersionRuntimeVersion extends Struct {2926 readonly specName: Text;2927 readonly implName: Text;2928 readonly authoringVersion: u32;2929 readonly specVersion: u32;2930 readonly implVersion: u32;2931 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;2932 readonly transactionVersion: u32;2933 readonly stateVersion: u8;2934}29352936/** @name SpWeightsRuntimeDbWeight */2937export interface SpWeightsRuntimeDbWeight extends Struct {2938 readonly read: u64;2939 readonly write: u64;2940}29412942/** @name SpWeightsWeightV2Weight */2943export interface SpWeightsWeightV2Weight extends Struct {2944 readonly refTime: Compact<u64>;2945 readonly proofSize: Compact<u64>;2946}29472948/** @name UpDataStructsAccessMode */2949export interface UpDataStructsAccessMode extends Enum {2950 readonly isNormal: boolean;2951 readonly isAllowList: boolean;2952 readonly type: 'Normal' | 'AllowList';2953}29542955/** @name UpDataStructsCollection */2956export interface UpDataStructsCollection extends Struct {2957 readonly owner: AccountId32;2958 readonly mode: UpDataStructsCollectionMode;2959 readonly name: Vec<u16>;2960 readonly description: Vec<u16>;2961 readonly tokenPrefix: Bytes;2962 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;2963 readonly limits: UpDataStructsCollectionLimits;2964 readonly permissions: UpDataStructsCollectionPermissions;2965 readonly flags: U8aFixed;2966}29672968/** @name UpDataStructsCollectionLimits */2969export interface UpDataStructsCollectionLimits extends Struct {2970 readonly accountTokenOwnershipLimit: Option<u32>;2971 readonly sponsoredDataSize: Option<u32>;2972 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2973 readonly tokenLimit: Option<u32>;2974 readonly sponsorTransferTimeout: Option<u32>;2975 readonly sponsorApproveTimeout: Option<u32>;2976 readonly ownerCanTransfer: Option<bool>;2977 readonly ownerCanDestroy: Option<bool>;2978 readonly transfersEnabled: Option<bool>;2979}29802981/** @name UpDataStructsCollectionMode */2982export interface UpDataStructsCollectionMode extends Enum {2983 readonly isNft: boolean;2984 readonly isFungible: boolean;2985 readonly asFungible: u8;2986 readonly isReFungible: boolean;2987 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2988}29892990/** @name UpDataStructsCollectionPermissions */2991export interface UpDataStructsCollectionPermissions extends Struct {2992 readonly access: Option<UpDataStructsAccessMode>;2993 readonly mintMode: Option<bool>;2994 readonly nesting: Option<UpDataStructsNestingPermissions>;2995}29962997/** @name UpDataStructsCollectionStats */2998export interface UpDataStructsCollectionStats extends Struct {2999 readonly created: u32;3000 readonly destroyed: u32;3001 readonly alive: u32;3002}30033004/** @name UpDataStructsCreateCollectionData */3005export interface UpDataStructsCreateCollectionData extends Struct {3006 readonly mode: UpDataStructsCollectionMode;3007 readonly access: Option<UpDataStructsAccessMode>;3008 readonly name: Vec<u16>;3009 readonly description: Vec<u16>;3010 readonly tokenPrefix: Bytes;3011 readonly pendingSponsor: Option<AccountId32>;3012 readonly limits: Option<UpDataStructsCollectionLimits>;3013 readonly permissions: Option<UpDataStructsCollectionPermissions>;3014 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3015 readonly properties: Vec<UpDataStructsProperty>;3016}30173018/** @name UpDataStructsCreateFungibleData */3019export interface UpDataStructsCreateFungibleData extends Struct {3020 readonly value: u128;3021}30223023/** @name UpDataStructsCreateItemData */3024export interface UpDataStructsCreateItemData extends Enum {3025 readonly isNft: boolean;3026 readonly asNft: UpDataStructsCreateNftData;3027 readonly isFungible: boolean;3028 readonly asFungible: UpDataStructsCreateFungibleData;3029 readonly isReFungible: boolean;3030 readonly asReFungible: UpDataStructsCreateReFungibleData;3031 readonly type: 'Nft' | 'Fungible' | 'ReFungible';3032}30333034/** @name UpDataStructsCreateItemExData */3035export interface UpDataStructsCreateItemExData extends Enum {3036 readonly isNft: boolean;3037 readonly asNft: Vec<UpDataStructsCreateNftExData>;3038 readonly isFungible: boolean;3039 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr,u128>;3040 readonly isRefungibleMultipleItems: boolean;3041 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;3042 readonly isRefungibleMultipleOwners: boolean;3043 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;3044 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';3045}30463047/** @name UpDataStructsCreateNftData */3048export interface UpDataStructsCreateNftData extends Struct {3049 readonly properties: Vec<UpDataStructsProperty>;3050}30513052/** @name UpDataStructsCreateNftExData */3053export interface UpDataStructsCreateNftExData extends Struct {3054 readonly properties: Vec<UpDataStructsProperty>;3055 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3056}30573058/** @name UpDataStructsCreateReFungibleData */3059export interface UpDataStructsCreateReFungibleData extends Struct {3060 readonly pieces: u128;3061 readonly properties: Vec<UpDataStructsProperty>;3062}30633064/** @name UpDataStructsCreateRefungibleExMultipleOwners */3065export interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {3066 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;3067 readonly properties: Vec<UpDataStructsProperty>;3068}30693070/** @name UpDataStructsCreateRefungibleExSingleOwner */3071export interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {3072 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;3073 readonly pieces: u128;3074 readonly properties: Vec<UpDataStructsProperty>;3075}30763077/** @name UpDataStructsNestingPermissions */3078export interface UpDataStructsNestingPermissions extends Struct {3079 readonly tokenOwner: bool;3080 readonly collectionAdmin: bool;3081 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;3082}30833084/** @name UpDataStructsOwnerRestrictedSet */3085export interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}30863087/** @name UpDataStructsProperties */3088export interface UpDataStructsProperties extends Struct {3089 readonly map: UpDataStructsPropertiesMapBoundedVec;3090 readonly consumedSpace: u32;3091 readonly spaceLimit: u32;3092}30933094/** @name UpDataStructsPropertiesMapBoundedVec */3095export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}30963097/** @name UpDataStructsPropertiesMapPropertyPermission */3098export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}30993100/** @name UpDataStructsProperty */3101export interface UpDataStructsProperty extends Struct {3102 readonly key: Bytes;3103 readonly value: Bytes;3104}31053106/** @name UpDataStructsPropertyKeyPermission */3107export interface UpDataStructsPropertyKeyPermission extends Struct {3108 readonly key: Bytes;3109 readonly permission: UpDataStructsPropertyPermission;3110}31113112/** @name UpDataStructsPropertyPermission */3113export interface UpDataStructsPropertyPermission extends Struct {3114 readonly mutable: bool;3115 readonly collectionAdmin: bool;3116 readonly tokenOwner: bool;3117}31183119/** @name UpDataStructsPropertyScope */3120export interface UpDataStructsPropertyScope extends Enum {3121 readonly isNone: boolean;3122 readonly isRmrk: boolean;3123 readonly type: 'None' | 'Rmrk';3124}31253126/** @name UpDataStructsRpcCollection */3127export interface UpDataStructsRpcCollection extends Struct {3128 readonly owner: AccountId32;3129 readonly mode: UpDataStructsCollectionMode;3130 readonly name: Vec<u16>;3131 readonly description: Vec<u16>;3132 readonly tokenPrefix: Bytes;3133 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3134 readonly limits: UpDataStructsCollectionLimits;3135 readonly permissions: UpDataStructsCollectionPermissions;3136 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3137 readonly properties: Vec<UpDataStructsProperty>;3138 readonly readOnly: bool;3139 readonly flags: UpDataStructsRpcCollectionFlags;3140}31413142/** @name UpDataStructsRpcCollectionFlags */3143export interface UpDataStructsRpcCollectionFlags extends Struct {3144 readonly foreign: bool;3145 readonly erc721metadata: bool;3146}31473148/** @name UpDataStructsSponsoringRateLimit */3149export interface UpDataStructsSponsoringRateLimit extends Enum {3150 readonly isSponsoringDisabled: boolean;3151 readonly isBlocks: boolean;3152 readonly asBlocks: u32;3153 readonly type: 'SponsoringDisabled' | 'Blocks';3154}31553156/** @name UpDataStructsSponsorshipStateAccountId32 */3157export interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3158 readonly isDisabled: boolean;3159 readonly isUnconfirmed: boolean;3160 readonly asUnconfirmed: AccountId32;3161 readonly isConfirmed: boolean;3162 readonly asConfirmed: AccountId32;3163 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3164}31653166/** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr */3167export interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3168 readonly isDisabled: boolean;3169 readonly isUnconfirmed: boolean;3170 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3171 readonly isConfirmed: boolean;3172 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3173 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3174}31753176/** @name UpDataStructsTokenChild */3177export interface UpDataStructsTokenChild extends Struct {3178 readonly token: u32;3179 readonly collection: u32;3180}31813182/** @name UpDataStructsTokenData */3183export interface UpDataStructsTokenData extends Struct {3184 readonly properties: Vec<UpDataStructsProperty>;3185 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3186 readonly pieces: u128;3187}31883189/** @name XcmDoubleEncoded */3190export interface XcmDoubleEncoded extends Struct {3191 readonly encoded: Bytes;3192}31933194/** @name XcmV0Junction */3195export interface XcmV0Junction extends Enum {3196 readonly isParent: boolean;3197 readonly isParachain: boolean;3198 readonly asParachain: Compact<u32>;3199 readonly isAccountId32: boolean;3200 readonly asAccountId32: {3201 readonly network: XcmV0JunctionNetworkId;3202 readonly id: U8aFixed;3203 } & Struct;3204 readonly isAccountIndex64: boolean;3205 readonly asAccountIndex64: {3206 readonly network: XcmV0JunctionNetworkId;3207 readonly index: Compact<u64>;3208 } & Struct;3209 readonly isAccountKey20: boolean;3210 readonly asAccountKey20: {3211 readonly network: XcmV0JunctionNetworkId;3212 readonly key: U8aFixed;3213 } & Struct;3214 readonly isPalletInstance: boolean;3215 readonly asPalletInstance: u8;3216 readonly isGeneralIndex: boolean;3217 readonly asGeneralIndex: Compact<u128>;3218 readonly isGeneralKey: boolean;3219 readonly asGeneralKey: Bytes;3220 readonly isOnlyChild: boolean;3221 readonly isPlurality: boolean;3222 readonly asPlurality: {3223 readonly id: XcmV0JunctionBodyId;3224 readonly part: XcmV0JunctionBodyPart;3225 } & Struct;3226 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';3227}32283229/** @name XcmV0JunctionBodyId */3230export interface XcmV0JunctionBodyId extends Enum {3231 readonly isUnit: boolean;3232 readonly isNamed: boolean;3233 readonly asNamed: Bytes;3234 readonly isIndex: boolean;3235 readonly asIndex: Compact<u32>;3236 readonly isExecutive: boolean;3237 readonly isTechnical: boolean;3238 readonly isLegislative: boolean;3239 readonly isJudicial: boolean;3240 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';3241}32423243/** @name XcmV0JunctionBodyPart */3244export interface XcmV0JunctionBodyPart extends Enum {3245 readonly isVoice: boolean;3246 readonly isMembers: boolean;3247 readonly asMembers: {3248 readonly count: Compact<u32>;3249 } & Struct;3250 readonly isFraction: boolean;3251 readonly asFraction: {3252 readonly nom: Compact<u32>;3253 readonly denom: Compact<u32>;3254 } & Struct;3255 readonly isAtLeastProportion: boolean;3256 readonly asAtLeastProportion: {3257 readonly nom: Compact<u32>;3258 readonly denom: Compact<u32>;3259 } & Struct;3260 readonly isMoreThanProportion: boolean;3261 readonly asMoreThanProportion: {3262 readonly nom: Compact<u32>;3263 readonly denom: Compact<u32>;3264 } & Struct;3265 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';3266}32673268/** @name XcmV0JunctionNetworkId */3269export interface XcmV0JunctionNetworkId extends Enum {3270 readonly isAny: boolean;3271 readonly isNamed: boolean;3272 readonly asNamed: Bytes;3273 readonly isPolkadot: boolean;3274 readonly isKusama: boolean;3275 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';3276}32773278/** @name XcmV0MultiAsset */3279export interface XcmV0MultiAsset extends Enum {3280 readonly isNone: boolean;3281 readonly isAll: boolean;3282 readonly isAllFungible: boolean;3283 readonly isAllNonFungible: boolean;3284 readonly isAllAbstractFungible: boolean;3285 readonly asAllAbstractFungible: {3286 readonly id: Bytes;3287 } & Struct;3288 readonly isAllAbstractNonFungible: boolean;3289 readonly asAllAbstractNonFungible: {3290 readonly class: Bytes;3291 } & Struct;3292 readonly isAllConcreteFungible: boolean;3293 readonly asAllConcreteFungible: {3294 readonly id: XcmV0MultiLocation;3295 } & Struct;3296 readonly isAllConcreteNonFungible: boolean;3297 readonly asAllConcreteNonFungible: {3298 readonly class: XcmV0MultiLocation;3299 } & Struct;3300 readonly isAbstractFungible: boolean;3301 readonly asAbstractFungible: {3302 readonly id: Bytes;3303 readonly amount: Compact<u128>;3304 } & Struct;3305 readonly isAbstractNonFungible: boolean;3306 readonly asAbstractNonFungible: {3307 readonly class: Bytes;3308 readonly instance: XcmV1MultiassetAssetInstance;3309 } & Struct;3310 readonly isConcreteFungible: boolean;3311 readonly asConcreteFungible: {3312 readonly id: XcmV0MultiLocation;3313 readonly amount: Compact<u128>;3314 } & Struct;3315 readonly isConcreteNonFungible: boolean;3316 readonly asConcreteNonFungible: {3317 readonly class: XcmV0MultiLocation;3318 readonly instance: XcmV1MultiassetAssetInstance;3319 } & Struct;3320 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';3321}33223323/** @name XcmV0MultiLocation */3324export interface XcmV0MultiLocation extends Enum {3325 readonly isNull: boolean;3326 readonly isX1: boolean;3327 readonly asX1: XcmV0Junction;3328 readonly isX2: boolean;3329 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;3330 readonly isX3: boolean;3331 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3332 readonly isX4: boolean;3333 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3334 readonly isX5: boolean;3335 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3336 readonly isX6: boolean;3337 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3338 readonly isX7: boolean;3339 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3340 readonly isX8: boolean;3341 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3342 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';3343}33443345/** @name XcmV0Order */3346export interface XcmV0Order extends Enum {3347 readonly isNull: boolean;3348 readonly isDepositAsset: boolean;3349 readonly asDepositAsset: {3350 readonly assets: Vec<XcmV0MultiAsset>;3351 readonly dest: XcmV0MultiLocation;3352 } & Struct;3353 readonly isDepositReserveAsset: boolean;3354 readonly asDepositReserveAsset: {3355 readonly assets: Vec<XcmV0MultiAsset>;3356 readonly dest: XcmV0MultiLocation;3357 readonly effects: Vec<XcmV0Order>;3358 } & Struct;3359 readonly isExchangeAsset: boolean;3360 readonly asExchangeAsset: {3361 readonly give: Vec<XcmV0MultiAsset>;3362 readonly receive: Vec<XcmV0MultiAsset>;3363 } & Struct;3364 readonly isInitiateReserveWithdraw: boolean;3365 readonly asInitiateReserveWithdraw: {3366 readonly assets: Vec<XcmV0MultiAsset>;3367 readonly reserve: XcmV0MultiLocation;3368 readonly effects: Vec<XcmV0Order>;3369 } & Struct;3370 readonly isInitiateTeleport: boolean;3371 readonly asInitiateTeleport: {3372 readonly assets: Vec<XcmV0MultiAsset>;3373 readonly dest: XcmV0MultiLocation;3374 readonly effects: Vec<XcmV0Order>;3375 } & Struct;3376 readonly isQueryHolding: boolean;3377 readonly asQueryHolding: {3378 readonly queryId: Compact<u64>;3379 readonly dest: XcmV0MultiLocation;3380 readonly assets: Vec<XcmV0MultiAsset>;3381 } & Struct;3382 readonly isBuyExecution: boolean;3383 readonly asBuyExecution: {3384 readonly fees: XcmV0MultiAsset;3385 readonly weight: u64;3386 readonly debt: u64;3387 readonly haltOnError: bool;3388 readonly xcm: Vec<XcmV0Xcm>;3389 } & Struct;3390 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';3391}33923393/** @name XcmV0OriginKind */3394export interface XcmV0OriginKind extends Enum {3395 readonly isNative: boolean;3396 readonly isSovereignAccount: boolean;3397 readonly isSuperuser: boolean;3398 readonly isXcm: boolean;3399 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';3400}34013402/** @name XcmV0Response */3403export interface XcmV0Response extends Enum {3404 readonly isAssets: boolean;3405 readonly asAssets: Vec<XcmV0MultiAsset>;3406 readonly type: 'Assets';3407}34083409/** @name XcmV0Xcm */3410export interface XcmV0Xcm extends Enum {3411 readonly isWithdrawAsset: boolean;3412 readonly asWithdrawAsset: {3413 readonly assets: Vec<XcmV0MultiAsset>;3414 readonly effects: Vec<XcmV0Order>;3415 } & Struct;3416 readonly isReserveAssetDeposit: boolean;3417 readonly asReserveAssetDeposit: {3418 readonly assets: Vec<XcmV0MultiAsset>;3419 readonly effects: Vec<XcmV0Order>;3420 } & Struct;3421 readonly isTeleportAsset: boolean;3422 readonly asTeleportAsset: {3423 readonly assets: Vec<XcmV0MultiAsset>;3424 readonly effects: Vec<XcmV0Order>;3425 } & Struct;3426 readonly isQueryResponse: boolean;3427 readonly asQueryResponse: {3428 readonly queryId: Compact<u64>;3429 readonly response: XcmV0Response;3430 } & Struct;3431 readonly isTransferAsset: boolean;3432 readonly asTransferAsset: {3433 readonly assets: Vec<XcmV0MultiAsset>;3434 readonly dest: XcmV0MultiLocation;3435 } & Struct;3436 readonly isTransferReserveAsset: boolean;3437 readonly asTransferReserveAsset: {3438 readonly assets: Vec<XcmV0MultiAsset>;3439 readonly dest: XcmV0MultiLocation;3440 readonly effects: Vec<XcmV0Order>;3441 } & Struct;3442 readonly isTransact: boolean;3443 readonly asTransact: {3444 readonly originType: XcmV0OriginKind;3445 readonly requireWeightAtMost: u64;3446 readonly call: XcmDoubleEncoded;3447 } & Struct;3448 readonly isHrmpNewChannelOpenRequest: boolean;3449 readonly asHrmpNewChannelOpenRequest: {3450 readonly sender: Compact<u32>;3451 readonly maxMessageSize: Compact<u32>;3452 readonly maxCapacity: Compact<u32>;3453 } & Struct;3454 readonly isHrmpChannelAccepted: boolean;3455 readonly asHrmpChannelAccepted: {3456 readonly recipient: Compact<u32>;3457 } & Struct;3458 readonly isHrmpChannelClosing: boolean;3459 readonly asHrmpChannelClosing: {3460 readonly initiator: Compact<u32>;3461 readonly sender: Compact<u32>;3462 readonly recipient: Compact<u32>;3463 } & Struct;3464 readonly isRelayedFrom: boolean;3465 readonly asRelayedFrom: {3466 readonly who: XcmV0MultiLocation;3467 readonly message: XcmV0Xcm;3468 } & Struct;3469 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';3470}34713472/** @name XcmV1Junction */3473export interface XcmV1Junction extends Enum {3474 readonly isParachain: boolean;3475 readonly asParachain: Compact<u32>;3476 readonly isAccountId32: boolean;3477 readonly asAccountId32: {3478 readonly network: XcmV0JunctionNetworkId;3479 readonly id: U8aFixed;3480 } & Struct;3481 readonly isAccountIndex64: boolean;3482 readonly asAccountIndex64: {3483 readonly network: XcmV0JunctionNetworkId;3484 readonly index: Compact<u64>;3485 } & Struct;3486 readonly isAccountKey20: boolean;3487 readonly asAccountKey20: {3488 readonly network: XcmV0JunctionNetworkId;3489 readonly key: U8aFixed;3490 } & Struct;3491 readonly isPalletInstance: boolean;3492 readonly asPalletInstance: u8;3493 readonly isGeneralIndex: boolean;3494 readonly asGeneralIndex: Compact<u128>;3495 readonly isGeneralKey: boolean;3496 readonly asGeneralKey: Bytes;3497 readonly isOnlyChild: boolean;3498 readonly isPlurality: boolean;3499 readonly asPlurality: {3500 readonly id: XcmV0JunctionBodyId;3501 readonly part: XcmV0JunctionBodyPart;3502 } & Struct;3503 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';3504}35053506/** @name XcmV1MultiAsset */3507export interface XcmV1MultiAsset extends Struct {3508 readonly id: XcmV1MultiassetAssetId;3509 readonly fun: XcmV1MultiassetFungibility;3510}35113512/** @name XcmV1MultiassetAssetId */3513export interface XcmV1MultiassetAssetId extends Enum {3514 readonly isConcrete: boolean;3515 readonly asConcrete: XcmV1MultiLocation;3516 readonly isAbstract: boolean;3517 readonly asAbstract: Bytes;3518 readonly type: 'Concrete' | 'Abstract';3519}35203521/** @name XcmV1MultiassetAssetInstance */3522export interface XcmV1MultiassetAssetInstance extends Enum {3523 readonly isUndefined: boolean;3524 readonly isIndex: boolean;3525 readonly asIndex: Compact<u128>;3526 readonly isArray4: boolean;3527 readonly asArray4: U8aFixed;3528 readonly isArray8: boolean;3529 readonly asArray8: U8aFixed;3530 readonly isArray16: boolean;3531 readonly asArray16: U8aFixed;3532 readonly isArray32: boolean;3533 readonly asArray32: U8aFixed;3534 readonly isBlob: boolean;3535 readonly asBlob: Bytes;3536 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';3537}35383539/** @name XcmV1MultiassetFungibility */3540export interface XcmV1MultiassetFungibility extends Enum {3541 readonly isFungible: boolean;3542 readonly asFungible: Compact<u128>;3543 readonly isNonFungible: boolean;3544 readonly asNonFungible: XcmV1MultiassetAssetInstance;3545 readonly type: 'Fungible' | 'NonFungible';3546}35473548/** @name XcmV1MultiassetMultiAssetFilter */3549export interface XcmV1MultiassetMultiAssetFilter extends Enum {3550 readonly isDefinite: boolean;3551 readonly asDefinite: XcmV1MultiassetMultiAssets;3552 readonly isWild: boolean;3553 readonly asWild: XcmV1MultiassetWildMultiAsset;3554 readonly type: 'Definite' | 'Wild';3555}35563557/** @name XcmV1MultiassetMultiAssets */3558export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}35593560/** @name XcmV1MultiassetWildFungibility */3561export interface XcmV1MultiassetWildFungibility extends Enum {3562 readonly isFungible: boolean;3563 readonly isNonFungible: boolean;3564 readonly type: 'Fungible' | 'NonFungible';3565}35663567/** @name XcmV1MultiassetWildMultiAsset */3568export interface XcmV1MultiassetWildMultiAsset extends Enum {3569 readonly isAll: boolean;3570 readonly isAllOf: boolean;3571 readonly asAllOf: {3572 readonly id: XcmV1MultiassetAssetId;3573 readonly fun: XcmV1MultiassetWildFungibility;3574 } & Struct;3575 readonly type: 'All' | 'AllOf';3576}35773578/** @name XcmV1MultiLocation */3579export interface XcmV1MultiLocation extends Struct {3580 readonly parents: u8;3581 readonly interior: XcmV1MultilocationJunctions;3582}35833584/** @name XcmV1MultilocationJunctions */3585export interface XcmV1MultilocationJunctions extends Enum {3586 readonly isHere: boolean;3587 readonly isX1: boolean;3588 readonly asX1: XcmV1Junction;3589 readonly isX2: boolean;3590 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;3591 readonly isX3: boolean;3592 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3593 readonly isX4: boolean;3594 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3595 readonly isX5: boolean;3596 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3597 readonly isX6: boolean;3598 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3599 readonly isX7: boolean;3600 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3601 readonly isX8: boolean;3602 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3603 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';3604}36053606/** @name XcmV1Order */3607export interface XcmV1Order extends Enum {3608 readonly isNoop: boolean;3609 readonly isDepositAsset: boolean;3610 readonly asDepositAsset: {3611 readonly assets: XcmV1MultiassetMultiAssetFilter;3612 readonly maxAssets: u32;3613 readonly beneficiary: XcmV1MultiLocation;3614 } & Struct;3615 readonly isDepositReserveAsset: boolean;3616 readonly asDepositReserveAsset: {3617 readonly assets: XcmV1MultiassetMultiAssetFilter;3618 readonly maxAssets: u32;3619 readonly dest: XcmV1MultiLocation;3620 readonly effects: Vec<XcmV1Order>;3621 } & Struct;3622 readonly isExchangeAsset: boolean;3623 readonly asExchangeAsset: {3624 readonly give: XcmV1MultiassetMultiAssetFilter;3625 readonly receive: XcmV1MultiassetMultiAssets;3626 } & Struct;3627 readonly isInitiateReserveWithdraw: boolean;3628 readonly asInitiateReserveWithdraw: {3629 readonly assets: XcmV1MultiassetMultiAssetFilter;3630 readonly reserve: XcmV1MultiLocation;3631 readonly effects: Vec<XcmV1Order>;3632 } & Struct;3633 readonly isInitiateTeleport: boolean;3634 readonly asInitiateTeleport: {3635 readonly assets: XcmV1MultiassetMultiAssetFilter;3636 readonly dest: XcmV1MultiLocation;3637 readonly effects: Vec<XcmV1Order>;3638 } & Struct;3639 readonly isQueryHolding: boolean;3640 readonly asQueryHolding: {3641 readonly queryId: Compact<u64>;3642 readonly dest: XcmV1MultiLocation;3643 readonly assets: XcmV1MultiassetMultiAssetFilter;3644 } & Struct;3645 readonly isBuyExecution: boolean;3646 readonly asBuyExecution: {3647 readonly fees: XcmV1MultiAsset;3648 readonly weight: u64;3649 readonly debt: u64;3650 readonly haltOnError: bool;3651 readonly instructions: Vec<XcmV1Xcm>;3652 } & Struct;3653 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';3654}36553656/** @name XcmV1Response */3657export interface XcmV1Response extends Enum {3658 readonly isAssets: boolean;3659 readonly asAssets: XcmV1MultiassetMultiAssets;3660 readonly isVersion: boolean;3661 readonly asVersion: u32;3662 readonly type: 'Assets' | 'Version';3663}36643665/** @name XcmV1Xcm */3666export interface XcmV1Xcm extends Enum {3667 readonly isWithdrawAsset: boolean;3668 readonly asWithdrawAsset: {3669 readonly assets: XcmV1MultiassetMultiAssets;3670 readonly effects: Vec<XcmV1Order>;3671 } & Struct;3672 readonly isReserveAssetDeposited: boolean;3673 readonly asReserveAssetDeposited: {3674 readonly assets: XcmV1MultiassetMultiAssets;3675 readonly effects: Vec<XcmV1Order>;3676 } & Struct;3677 readonly isReceiveTeleportedAsset: boolean;3678 readonly asReceiveTeleportedAsset: {3679 readonly assets: XcmV1MultiassetMultiAssets;3680 readonly effects: Vec<XcmV1Order>;3681 } & Struct;3682 readonly isQueryResponse: boolean;3683 readonly asQueryResponse: {3684 readonly queryId: Compact<u64>;3685 readonly response: XcmV1Response;3686 } & Struct;3687 readonly isTransferAsset: boolean;3688 readonly asTransferAsset: {3689 readonly assets: XcmV1MultiassetMultiAssets;3690 readonly beneficiary: XcmV1MultiLocation;3691 } & Struct;3692 readonly isTransferReserveAsset: boolean;3693 readonly asTransferReserveAsset: {3694 readonly assets: XcmV1MultiassetMultiAssets;3695 readonly dest: XcmV1MultiLocation;3696 readonly effects: Vec<XcmV1Order>;3697 } & Struct;3698 readonly isTransact: boolean;3699 readonly asTransact: {3700 readonly originType: XcmV0OriginKind;3701 readonly requireWeightAtMost: u64;3702 readonly call: XcmDoubleEncoded;3703 } & Struct;3704 readonly isHrmpNewChannelOpenRequest: boolean;3705 readonly asHrmpNewChannelOpenRequest: {3706 readonly sender: Compact<u32>;3707 readonly maxMessageSize: Compact<u32>;3708 readonly maxCapacity: Compact<u32>;3709 } & Struct;3710 readonly isHrmpChannelAccepted: boolean;3711 readonly asHrmpChannelAccepted: {3712 readonly recipient: Compact<u32>;3713 } & Struct;3714 readonly isHrmpChannelClosing: boolean;3715 readonly asHrmpChannelClosing: {3716 readonly initiator: Compact<u32>;3717 readonly sender: Compact<u32>;3718 readonly recipient: Compact<u32>;3719 } & Struct;3720 readonly isRelayedFrom: boolean;3721 readonly asRelayedFrom: {3722 readonly who: XcmV1MultilocationJunctions;3723 readonly message: XcmV1Xcm;3724 } & Struct;3725 readonly isSubscribeVersion: boolean;3726 readonly asSubscribeVersion: {3727 readonly queryId: Compact<u64>;3728 readonly maxResponseWeight: Compact<u64>;3729 } & Struct;3730 readonly isUnsubscribeVersion: boolean;3731 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';3732}37333734/** @name XcmV2Instruction */3735export interface XcmV2Instruction extends Enum {3736 readonly isWithdrawAsset: boolean;3737 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;3738 readonly isReserveAssetDeposited: boolean;3739 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;3740 readonly isReceiveTeleportedAsset: boolean;3741 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;3742 readonly isQueryResponse: boolean;3743 readonly asQueryResponse: {3744 readonly queryId: Compact<u64>;3745 readonly response: XcmV2Response;3746 readonly maxWeight: Compact<u64>;3747 } & Struct;3748 readonly isTransferAsset: boolean;3749 readonly asTransferAsset: {3750 readonly assets: XcmV1MultiassetMultiAssets;3751 readonly beneficiary: XcmV1MultiLocation;3752 } & Struct;3753 readonly isTransferReserveAsset: boolean;3754 readonly asTransferReserveAsset: {3755 readonly assets: XcmV1MultiassetMultiAssets;3756 readonly dest: XcmV1MultiLocation;3757 readonly xcm: XcmV2Xcm;3758 } & Struct;3759 readonly isTransact: boolean;3760 readonly asTransact: {3761 readonly originType: XcmV0OriginKind;3762 readonly requireWeightAtMost: Compact<u64>;3763 readonly call: XcmDoubleEncoded;3764 } & Struct;3765 readonly isHrmpNewChannelOpenRequest: boolean;3766 readonly asHrmpNewChannelOpenRequest: {3767 readonly sender: Compact<u32>;3768 readonly maxMessageSize: Compact<u32>;3769 readonly maxCapacity: Compact<u32>;3770 } & Struct;3771 readonly isHrmpChannelAccepted: boolean;3772 readonly asHrmpChannelAccepted: {3773 readonly recipient: Compact<u32>;3774 } & Struct;3775 readonly isHrmpChannelClosing: boolean;3776 readonly asHrmpChannelClosing: {3777 readonly initiator: Compact<u32>;3778 readonly sender: Compact<u32>;3779 readonly recipient: Compact<u32>;3780 } & Struct;3781 readonly isClearOrigin: boolean;3782 readonly isDescendOrigin: boolean;3783 readonly asDescendOrigin: XcmV1MultilocationJunctions;3784 readonly isReportError: boolean;3785 readonly asReportError: {3786 readonly queryId: Compact<u64>;3787 readonly dest: XcmV1MultiLocation;3788 readonly maxResponseWeight: Compact<u64>;3789 } & Struct;3790 readonly isDepositAsset: boolean;3791 readonly asDepositAsset: {3792 readonly assets: XcmV1MultiassetMultiAssetFilter;3793 readonly maxAssets: Compact<u32>;3794 readonly beneficiary: XcmV1MultiLocation;3795 } & Struct;3796 readonly isDepositReserveAsset: boolean;3797 readonly asDepositReserveAsset: {3798 readonly assets: XcmV1MultiassetMultiAssetFilter;3799 readonly maxAssets: Compact<u32>;3800 readonly dest: XcmV1MultiLocation;3801 readonly xcm: XcmV2Xcm;3802 } & Struct;3803 readonly isExchangeAsset: boolean;3804 readonly asExchangeAsset: {3805 readonly give: XcmV1MultiassetMultiAssetFilter;3806 readonly receive: XcmV1MultiassetMultiAssets;3807 } & Struct;3808 readonly isInitiateReserveWithdraw: boolean;3809 readonly asInitiateReserveWithdraw: {3810 readonly assets: XcmV1MultiassetMultiAssetFilter;3811 readonly reserve: XcmV1MultiLocation;3812 readonly xcm: XcmV2Xcm;3813 } & Struct;3814 readonly isInitiateTeleport: boolean;3815 readonly asInitiateTeleport: {3816 readonly assets: XcmV1MultiassetMultiAssetFilter;3817 readonly dest: XcmV1MultiLocation;3818 readonly xcm: XcmV2Xcm;3819 } & Struct;3820 readonly isQueryHolding: boolean;3821 readonly asQueryHolding: {3822 readonly queryId: Compact<u64>;3823 readonly dest: XcmV1MultiLocation;3824 readonly assets: XcmV1MultiassetMultiAssetFilter;3825 readonly maxResponseWeight: Compact<u64>;3826 } & Struct;3827 readonly isBuyExecution: boolean;3828 readonly asBuyExecution: {3829 readonly fees: XcmV1MultiAsset;3830 readonly weightLimit: XcmV2WeightLimit;3831 } & Struct;3832 readonly isRefundSurplus: boolean;3833 readonly isSetErrorHandler: boolean;3834 readonly asSetErrorHandler: XcmV2Xcm;3835 readonly isSetAppendix: boolean;3836 readonly asSetAppendix: XcmV2Xcm;3837 readonly isClearError: boolean;3838 readonly isClaimAsset: boolean;3839 readonly asClaimAsset: {3840 readonly assets: XcmV1MultiassetMultiAssets;3841 readonly ticket: XcmV1MultiLocation;3842 } & Struct;3843 readonly isTrap: boolean;3844 readonly asTrap: Compact<u64>;3845 readonly isSubscribeVersion: boolean;3846 readonly asSubscribeVersion: {3847 readonly queryId: Compact<u64>;3848 readonly maxResponseWeight: Compact<u64>;3849 } & Struct;3850 readonly isUnsubscribeVersion: boolean;3851 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';3852}38533854/** @name XcmV2Response */3855export interface XcmV2Response extends Enum {3856 readonly isNull: boolean;3857 readonly isAssets: boolean;3858 readonly asAssets: XcmV1MultiassetMultiAssets;3859 readonly isExecutionResult: boolean;3860 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;3861 readonly isVersion: boolean;3862 readonly asVersion: u32;3863 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';3864}38653866/** @name XcmV2TraitsError */3867export interface XcmV2TraitsError extends Enum {3868 readonly isOverflow: boolean;3869 readonly isUnimplemented: boolean;3870 readonly isUntrustedReserveLocation: boolean;3871 readonly isUntrustedTeleportLocation: boolean;3872 readonly isMultiLocationFull: boolean;3873 readonly isMultiLocationNotInvertible: boolean;3874 readonly isBadOrigin: boolean;3875 readonly isInvalidLocation: boolean;3876 readonly isAssetNotFound: boolean;3877 readonly isFailedToTransactAsset: boolean;3878 readonly isNotWithdrawable: boolean;3879 readonly isLocationCannotHold: boolean;3880 readonly isExceedsMaxMessageSize: boolean;3881 readonly isDestinationUnsupported: boolean;3882 readonly isTransport: boolean;3883 readonly isUnroutable: boolean;3884 readonly isUnknownClaim: boolean;3885 readonly isFailedToDecode: boolean;3886 readonly isMaxWeightInvalid: boolean;3887 readonly isNotHoldingFees: boolean;3888 readonly isTooExpensive: boolean;3889 readonly isTrap: boolean;3890 readonly asTrap: u64;3891 readonly isUnhandledXcmVersion: boolean;3892 readonly isWeightLimitReached: boolean;3893 readonly asWeightLimitReached: u64;3894 readonly isBarrier: boolean;3895 readonly isWeightNotComputable: boolean;3896 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';3897}38983899/** @name XcmV2TraitsOutcome */3900export interface XcmV2TraitsOutcome extends Enum {3901 readonly isComplete: boolean;3902 readonly asComplete: u64;3903 readonly isIncomplete: boolean;3904 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;3905 readonly isError: boolean;3906 readonly asError: XcmV2TraitsError;3907 readonly type: 'Complete' | 'Incomplete' | 'Error';3908}39093910/** @name XcmV2WeightLimit */3911export interface XcmV2WeightLimit extends Enum {3912 readonly isUnlimited: boolean;3913 readonly isLimited: boolean;3914 readonly asLimited: Compact<u64>;3915 readonly type: 'Unlimited' | 'Limited';3916}39173918/** @name XcmV2Xcm */3919export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}39203921/** @name XcmVersionedMultiAsset */3922export interface XcmVersionedMultiAsset extends Enum {3923 readonly isV0: boolean;3924 readonly asV0: XcmV0MultiAsset;3925 readonly isV1: boolean;3926 readonly asV1: XcmV1MultiAsset;3927 readonly type: 'V0' | 'V1';3928}39293930/** @name XcmVersionedMultiAssets */3931export interface XcmVersionedMultiAssets extends Enum {3932 readonly isV0: boolean;3933 readonly asV0: Vec<XcmV0MultiAsset>;3934 readonly isV1: boolean;3935 readonly asV1: XcmV1MultiassetMultiAssets;3936 readonly type: 'V0' | 'V1';3937}39383939/** @name XcmVersionedMultiLocation */3940export interface XcmVersionedMultiLocation extends Enum {3941 readonly isV0: boolean;3942 readonly asV0: XcmV0MultiLocation;3943 readonly isV1: boolean;3944 readonly asV1: XcmV1MultiLocation;3945 readonly type: 'V0' | 'V1';3946}39473948/** @name XcmVersionedXcm */3949export interface XcmVersionedXcm extends Enum {3950 readonly isV0: boolean;3951 readonly asV0: XcmV0Xcm;3952 readonly isV1: boolean;3953 readonly asV1: XcmV1Xcm;3954 readonly isV2: boolean;3955 readonly asV2: XcmV2Xcm;3956 readonly type: 'V0' | 'V1' | 'V2';3957}39583959export type PHANTOM_DEFAULT = 'default';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.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -1109,41 +1109,7 @@
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
}
- /** @name PalletUniqueRawEvent (89) */
- 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';
- }
-
- /** @name PalletEvmAccountBasicCrossAccountIdRepr (90) */
- interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
- readonly isSubstrate: boolean;
- readonly asSubstrate: AccountId32;
- readonly isEthereum: boolean;
- readonly asEthereum: H160;
- readonly type: 'Substrate' | 'Ethereum';
- }
-
- /** @name PalletUniqueSchedulerV2Event (93) */
+ /** @name PalletUniqueSchedulerV2Event (89) */
interface PalletUniqueSchedulerV2Event extends Enum {
readonly isScheduled: boolean;
readonly asScheduled: {
@@ -1179,7 +1145,7 @@
readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';
}
- /** @name PalletCommonEvent (96) */
+ /** @name PalletCommonEvent (92) */
interface PalletCommonEvent extends Enum {
readonly isCollectionCreated: boolean;
readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
@@ -1205,17 +1171,46 @@
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 PalletEvmAccountBasicCrossAccountIdRepr (95) */
+ interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
+ readonly isSubstrate: boolean;
+ readonly asSubstrate: AccountId32;
+ readonly isEthereum: boolean;
+ readonly asEthereum: H160;
+ readonly type: 'Substrate' | 'Ethereum';
}
- /** @name PalletStructureEvent (100) */
+ /** @name PalletStructureEvent (99) */
interface PalletStructureEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
readonly type: 'Executed';
}
- /** @name PalletRmrkCoreEvent (101) */
+ /** @name PalletRmrkCoreEvent (100) */
interface PalletRmrkCoreEvent extends Enum {
readonly isCollectionCreated: boolean;
readonly asCollectionCreated: {
@@ -1305,7 +1300,7 @@
readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';
}
- /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (102) */
+ /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (101) */
interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {
readonly isAccountId: boolean;
readonly asAccountId: AccountId32;
@@ -1314,7 +1309,7 @@
readonly type: 'AccountId' | 'CollectionAndNftTuple';
}
- /** @name PalletRmrkEquipEvent (106) */
+ /** @name PalletRmrkEquipEvent (105) */
interface PalletRmrkEquipEvent extends Enum {
readonly isBaseCreated: boolean;
readonly asBaseCreated: {
@@ -1329,7 +1324,7 @@
readonly type: 'BaseCreated' | 'EquippablesUpdated';
}
- /** @name PalletAppPromotionEvent (107) */
+ /** @name PalletAppPromotionEvent (106) */
interface PalletAppPromotionEvent extends Enum {
readonly isStakingRecalculation: boolean;
readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;
@@ -1342,7 +1337,7 @@
readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
}
- /** @name PalletForeignAssetsModuleEvent (108) */
+ /** @name PalletForeignAssetsModuleEvent (107) */
interface PalletForeignAssetsModuleEvent extends Enum {
readonly isForeignAssetRegistered: boolean;
readonly asForeignAssetRegistered: {
@@ -1369,7 +1364,7 @@
readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';
}
- /** @name PalletForeignAssetsModuleAssetMetadata (109) */
+ /** @name PalletForeignAssetsModuleAssetMetadata (108) */
interface PalletForeignAssetsModuleAssetMetadata extends Struct {
readonly name: Bytes;
readonly symbol: Bytes;
@@ -1377,7 +1372,7 @@
readonly minimalBalance: u128;
}
- /** @name PalletEvmEvent (110) */
+ /** @name PalletEvmEvent (109) */
interface PalletEvmEvent extends Enum {
readonly isLog: boolean;
readonly asLog: {
@@ -1402,14 +1397,14 @@
readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';
}
- /** @name EthereumLog (111) */
+ /** @name EthereumLog (110) */
interface EthereumLog extends Struct {
readonly address: H160;
readonly topics: Vec<H256>;
readonly data: Bytes;
}
- /** @name PalletEthereumEvent (113) */
+ /** @name PalletEthereumEvent (112) */
interface PalletEthereumEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: {
@@ -1421,7 +1416,7 @@
readonly type: 'Executed';
}
- /** @name EvmCoreErrorExitReason (114) */
+ /** @name EvmCoreErrorExitReason (113) */
interface EvmCoreErrorExitReason extends Enum {
readonly isSucceed: boolean;
readonly asSucceed: EvmCoreErrorExitSucceed;
@@ -1434,7 +1429,7 @@
readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
}
- /** @name EvmCoreErrorExitSucceed (115) */
+ /** @name EvmCoreErrorExitSucceed (114) */
interface EvmCoreErrorExitSucceed extends Enum {
readonly isStopped: boolean;
readonly isReturned: boolean;
@@ -1442,7 +1437,7 @@
readonly type: 'Stopped' | 'Returned' | 'Suicided';
}
- /** @name EvmCoreErrorExitError (116) */
+ /** @name EvmCoreErrorExitError (115) */
interface EvmCoreErrorExitError extends Enum {
readonly isStackUnderflow: boolean;
readonly isStackOverflow: boolean;
@@ -1463,13 +1458,13 @@
readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
}
- /** @name EvmCoreErrorExitRevert (119) */
+ /** @name EvmCoreErrorExitRevert (118) */
interface EvmCoreErrorExitRevert extends Enum {
readonly isReverted: boolean;
readonly type: 'Reverted';
}
- /** @name EvmCoreErrorExitFatal (120) */
+ /** @name EvmCoreErrorExitFatal (119) */
interface EvmCoreErrorExitFatal extends Enum {
readonly isNotSupported: boolean;
readonly isUnhandledInterrupt: boolean;
@@ -1480,7 +1475,7 @@
readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
}
- /** @name PalletEvmContractHelpersEvent (121) */
+ /** @name PalletEvmContractHelpersEvent (120) */
interface PalletEvmContractHelpersEvent extends Enum {
readonly isContractSponsorSet: boolean;
readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
@@ -1491,20 +1486,20 @@
readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
}
- /** @name PalletEvmMigrationEvent (122) */
+ /** @name PalletEvmMigrationEvent (121) */
interface PalletEvmMigrationEvent extends Enum {
readonly isTestEvent: boolean;
readonly type: 'TestEvent';
}
- /** @name PalletMaintenanceEvent (123) */
+ /** @name PalletMaintenanceEvent (122) */
interface PalletMaintenanceEvent extends Enum {
readonly isMaintenanceEnabled: boolean;
readonly isMaintenanceDisabled: boolean;
readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';
}
- /** @name PalletTestUtilsEvent (124) */
+ /** @name PalletTestUtilsEvent (123) */
interface PalletTestUtilsEvent extends Enum {
readonly isValueIsSet: boolean;
readonly isShouldRollback: boolean;
@@ -1512,7 +1507,7 @@
readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';
}
- /** @name FrameSystemPhase (125) */
+ /** @name FrameSystemPhase (124) */
interface FrameSystemPhase extends Enum {
readonly isApplyExtrinsic: boolean;
readonly asApplyExtrinsic: u32;
@@ -1521,13 +1516,13 @@
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
}
- /** @name FrameSystemLastRuntimeUpgradeInfo (127) */
+ /** @name FrameSystemLastRuntimeUpgradeInfo (126) */
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
readonly specVersion: Compact<u32>;
readonly specName: Text;
}
- /** @name FrameSystemCall (128) */
+ /** @name FrameSystemCall (127) */
interface FrameSystemCall extends Enum {
readonly isFillBlock: boolean;
readonly asFillBlock: {
@@ -1569,21 +1564,21 @@
readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
}
- /** @name FrameSystemLimitsBlockWeights (133) */
+ /** @name FrameSystemLimitsBlockWeights (132) */
interface FrameSystemLimitsBlockWeights extends Struct {
readonly baseBlock: SpWeightsWeightV2Weight;
readonly maxBlock: SpWeightsWeightV2Weight;
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
}
- /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (134) */
+ /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (133) */
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
readonly normal: FrameSystemLimitsWeightsPerClass;
readonly operational: FrameSystemLimitsWeightsPerClass;
readonly mandatory: FrameSystemLimitsWeightsPerClass;
}
- /** @name FrameSystemLimitsWeightsPerClass (135) */
+ /** @name FrameSystemLimitsWeightsPerClass (134) */
interface FrameSystemLimitsWeightsPerClass extends Struct {
readonly baseExtrinsic: SpWeightsWeightV2Weight;
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
@@ -1591,25 +1586,25 @@
readonly reserved: Option<SpWeightsWeightV2Weight>;
}
- /** @name FrameSystemLimitsBlockLength (137) */
+ /** @name FrameSystemLimitsBlockLength (136) */
interface FrameSystemLimitsBlockLength extends Struct {
readonly max: FrameSupportDispatchPerDispatchClassU32;
}
- /** @name FrameSupportDispatchPerDispatchClassU32 (138) */
+ /** @name FrameSupportDispatchPerDispatchClassU32 (137) */
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
readonly normal: u32;
readonly operational: u32;
readonly mandatory: u32;
}
- /** @name SpWeightsRuntimeDbWeight (139) */
+ /** @name SpWeightsRuntimeDbWeight (138) */
interface SpWeightsRuntimeDbWeight extends Struct {
readonly read: u64;
readonly write: u64;
}
- /** @name SpVersionRuntimeVersion (140) */
+ /** @name SpVersionRuntimeVersion (139) */
interface SpVersionRuntimeVersion extends Struct {
readonly specName: Text;
readonly implName: Text;
@@ -1621,7 +1616,7 @@
readonly stateVersion: u8;
}
- /** @name FrameSystemError (145) */
+ /** @name FrameSystemError (144) */
interface FrameSystemError extends Enum {
readonly isInvalidSpecName: boolean;
readonly isSpecVersionNeedsToIncrease: boolean;
@@ -1632,7 +1627,7 @@
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
}
- /** @name PolkadotPrimitivesV2PersistedValidationData (146) */
+ /** @name PolkadotPrimitivesV2PersistedValidationData (145) */
interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
readonly parentHead: Bytes;
readonly relayParentNumber: u32;
@@ -1640,18 +1635,18 @@
readonly maxPovSize: u32;
}
- /** @name PolkadotPrimitivesV2UpgradeRestriction (149) */
+ /** @name PolkadotPrimitivesV2UpgradeRestriction (148) */
interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
readonly isPresent: boolean;
readonly type: 'Present';
}
- /** @name SpTrieStorageProof (150) */
+ /** @name SpTrieStorageProof (149) */
interface SpTrieStorageProof extends Struct {
readonly trieNodes: BTreeSet<Bytes>;
}
- /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (152) */
+ /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (151) */
interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
readonly dmqMqcHead: H256;
readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
@@ -1659,7 +1654,7 @@
readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
}
- /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (155) */
+ /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (154) */
interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
readonly maxCapacity: u32;
readonly maxTotalSize: u32;
@@ -1669,7 +1664,7 @@
readonly mqcHead: Option<H256>;
}
- /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (156) */
+ /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (155) */
interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
readonly maxCodeSize: u32;
readonly maxHeadDataSize: u32;
@@ -1682,13 +1677,13 @@
readonly validationUpgradeDelay: u32;
}
- /** @name PolkadotCorePrimitivesOutboundHrmpMessage (162) */
+ /** @name PolkadotCorePrimitivesOutboundHrmpMessage (161) */
interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
readonly recipient: u32;
readonly data: Bytes;
}
- /** @name CumulusPalletParachainSystemCall (163) */
+ /** @name CumulusPalletParachainSystemCall (162) */
interface CumulusPalletParachainSystemCall extends Enum {
readonly isSetValidationData: boolean;
readonly asSetValidationData: {
@@ -1709,7 +1704,7 @@
readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
}
- /** @name CumulusPrimitivesParachainInherentParachainInherentData (164) */
+ /** @name CumulusPrimitivesParachainInherentParachainInherentData (163) */
interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
readonly relayChainState: SpTrieStorageProof;
@@ -1717,19 +1712,19 @@
readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
}
- /** @name PolkadotCorePrimitivesInboundDownwardMessage (166) */
+ /** @name PolkadotCorePrimitivesInboundDownwardMessage (165) */
interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
readonly sentAt: u32;
readonly msg: Bytes;
}
- /** @name PolkadotCorePrimitivesInboundHrmpMessage (169) */
+ /** @name PolkadotCorePrimitivesInboundHrmpMessage (168) */
interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
readonly sentAt: u32;
readonly data: Bytes;
}
- /** @name CumulusPalletParachainSystemError (172) */
+ /** @name CumulusPalletParachainSystemError (171) */
interface CumulusPalletParachainSystemError extends Enum {
readonly isOverlappingUpgrades: boolean;
readonly isProhibitedByPolkadot: boolean;
@@ -1742,14 +1737,14 @@
readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';
}
- /** @name PalletBalancesBalanceLock (174) */
+ /** @name PalletBalancesBalanceLock (173) */
interface PalletBalancesBalanceLock extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
readonly reasons: PalletBalancesReasons;
}
- /** @name PalletBalancesReasons (175) */
+ /** @name PalletBalancesReasons (174) */
interface PalletBalancesReasons extends Enum {
readonly isFee: boolean;
readonly isMisc: boolean;
@@ -1757,20 +1752,20 @@
readonly type: 'Fee' | 'Misc' | 'All';
}
- /** @name PalletBalancesReserveData (178) */
+ /** @name PalletBalancesReserveData (177) */
interface PalletBalancesReserveData extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
}
- /** @name PalletBalancesReleases (180) */
+ /** @name PalletBalancesReleases (179) */
interface PalletBalancesReleases extends Enum {
readonly isV100: boolean;
readonly isV200: boolean;
readonly type: 'V100' | 'V200';
}
- /** @name PalletBalancesCall (181) */
+ /** @name PalletBalancesCall (180) */
interface PalletBalancesCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -1807,7 +1802,7 @@
readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
}
- /** @name PalletBalancesError (184) */
+ /** @name PalletBalancesError (183) */
interface PalletBalancesError extends Enum {
readonly isVestingBalance: boolean;
readonly isLiquidityRestrictions: boolean;
@@ -1820,7 +1815,7 @@
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
}
- /** @name PalletTimestampCall (186) */
+ /** @name PalletTimestampCall (185) */
interface PalletTimestampCall extends Enum {
readonly isSet: boolean;
readonly asSet: {
@@ -1829,14 +1824,14 @@
readonly type: 'Set';
}
- /** @name PalletTransactionPaymentReleases (188) */
+ /** @name PalletTransactionPaymentReleases (187) */
interface PalletTransactionPaymentReleases extends Enum {
readonly isV1Ancient: boolean;
readonly isV2: boolean;
readonly type: 'V1Ancient' | 'V2';
}
- /** @name PalletTreasuryProposal (189) */
+ /** @name PalletTreasuryProposal (188) */
interface PalletTreasuryProposal extends Struct {
readonly proposer: AccountId32;
readonly value: u128;
@@ -1844,7 +1839,7 @@
readonly bond: u128;
}
- /** @name PalletTreasuryCall (192) */
+ /** @name PalletTreasuryCall (191) */
interface PalletTreasuryCall extends Enum {
readonly isProposeSpend: boolean;
readonly asProposeSpend: {
@@ -1871,10 +1866,10 @@
readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';
}
- /** @name FrameSupportPalletId (195) */
+ /** @name FrameSupportPalletId (194) */
interface FrameSupportPalletId extends U8aFixed {}
- /** @name PalletTreasuryError (196) */
+ /** @name PalletTreasuryError (195) */
interface PalletTreasuryError extends Enum {
readonly isInsufficientProposersBalance: boolean;
readonly isInvalidIndex: boolean;
@@ -1884,7 +1879,7 @@
readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';
}
- /** @name PalletSudoCall (197) */
+ /** @name PalletSudoCall (196) */
interface PalletSudoCall extends Enum {
readonly isSudo: boolean;
readonly asSudo: {
@@ -1907,7 +1902,7 @@
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
}
- /** @name OrmlVestingModuleCall (199) */
+ /** @name OrmlVestingModuleCall (198) */
interface OrmlVestingModuleCall extends Enum {
readonly isClaim: boolean;
readonly isVestedTransfer: boolean;
@@ -1927,7 +1922,7 @@
readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
}
- /** @name OrmlXtokensModuleCall (201) */
+ /** @name OrmlXtokensModuleCall (200) */
interface OrmlXtokensModuleCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -1974,7 +1969,7 @@
readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
}
- /** @name XcmVersionedMultiAsset (202) */
+ /** @name XcmVersionedMultiAsset (201) */
interface XcmVersionedMultiAsset extends Enum {
readonly isV0: boolean;
readonly asV0: XcmV0MultiAsset;
@@ -1983,7 +1978,7 @@
readonly type: 'V0' | 'V1';
}
- /** @name OrmlTokensModuleCall (205) */
+ /** @name OrmlTokensModuleCall (204) */
interface OrmlTokensModuleCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -2020,7 +2015,7 @@
readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';
}
- /** @name CumulusPalletXcmpQueueCall (206) */
+ /** @name CumulusPalletXcmpQueueCall (205) */
interface CumulusPalletXcmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
@@ -2056,7 +2051,7 @@
readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
}
- /** @name PalletXcmCall (207) */
+ /** @name PalletXcmCall (206) */
interface PalletXcmCall extends Enum {
readonly isSend: boolean;
readonly asSend: {
@@ -2118,7 +2113,7 @@
readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
}
- /** @name XcmVersionedXcm (208) */
+ /** @name XcmVersionedXcm (207) */
interface XcmVersionedXcm extends Enum {
readonly isV0: boolean;
readonly asV0: XcmV0Xcm;
@@ -2129,7 +2124,7 @@
readonly type: 'V0' | 'V1' | 'V2';
}
- /** @name XcmV0Xcm (209) */
+ /** @name XcmV0Xcm (208) */
interface XcmV0Xcm extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: {
@@ -2192,7 +2187,7 @@
readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
}
- /** @name XcmV0Order (211) */
+ /** @name XcmV0Order (210) */
interface XcmV0Order extends Enum {
readonly isNull: boolean;
readonly isDepositAsset: boolean;
@@ -2240,14 +2235,14 @@
readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
}
- /** @name XcmV0Response (213) */
+ /** @name XcmV0Response (212) */
interface XcmV0Response extends Enum {
readonly isAssets: boolean;
readonly asAssets: Vec<XcmV0MultiAsset>;
readonly type: 'Assets';
}
- /** @name XcmV1Xcm (214) */
+ /** @name XcmV1Xcm (213) */
interface XcmV1Xcm extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: {
@@ -2316,7 +2311,7 @@
readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';
}
- /** @name XcmV1Order (216) */
+ /** @name XcmV1Order (215) */
interface XcmV1Order extends Enum {
readonly isNoop: boolean;
readonly isDepositAsset: boolean;
@@ -2366,7 +2361,7 @@
readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
}
- /** @name XcmV1Response (218) */
+ /** @name XcmV1Response (217) */
interface XcmV1Response extends Enum {
readonly isAssets: boolean;
readonly asAssets: XcmV1MultiassetMultiAssets;
@@ -2375,10 +2370,10 @@
readonly type: 'Assets' | 'Version';
}
- /** @name CumulusPalletXcmCall (232) */
+ /** @name CumulusPalletXcmCall (231) */
type CumulusPalletXcmCall = Null;
- /** @name CumulusPalletDmpQueueCall (233) */
+ /** @name CumulusPalletDmpQueueCall (232) */
interface CumulusPalletDmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
@@ -2388,7 +2383,7 @@
readonly type: 'ServiceOverweight';
}
- /** @name PalletInflationCall (234) */
+ /** @name PalletInflationCall (233) */
interface PalletInflationCall extends Enum {
readonly isStartInflation: boolean;
readonly asStartInflation: {
@@ -2397,7 +2392,7 @@
readonly type: 'StartInflation';
}
- /** @name PalletUniqueCall (235) */
+ /** @name PalletUniqueCall (234) */
interface PalletUniqueCall extends Enum {
readonly isCreateCollection: boolean;
readonly asCreateCollection: {
@@ -2561,7 +2556,7 @@
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';
}
- /** @name UpDataStructsCollectionMode (240) */
+ /** @name UpDataStructsCollectionMode (239) */
interface UpDataStructsCollectionMode extends Enum {
readonly isNft: boolean;
readonly isFungible: boolean;
@@ -2570,7 +2565,7 @@
readonly type: 'Nft' | 'Fungible' | 'ReFungible';
}
- /** @name UpDataStructsCreateCollectionData (241) */
+ /** @name UpDataStructsCreateCollectionData (240) */
interface UpDataStructsCreateCollectionData extends Struct {
readonly mode: UpDataStructsCollectionMode;
readonly access: Option<UpDataStructsAccessMode>;
@@ -2584,14 +2579,14 @@
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsAccessMode (243) */
+ /** @name UpDataStructsAccessMode (242) */
interface UpDataStructsAccessMode extends Enum {
readonly isNormal: boolean;
readonly isAllowList: boolean;
readonly type: 'Normal' | 'AllowList';
}
- /** @name UpDataStructsCollectionLimits (245) */
+ /** @name UpDataStructsCollectionLimits (244) */
interface UpDataStructsCollectionLimits extends Struct {
readonly accountTokenOwnershipLimit: Option<u32>;
readonly sponsoredDataSize: Option<u32>;
@@ -2604,7 +2599,7 @@
readonly transfersEnabled: Option<bool>;
}
- /** @name UpDataStructsSponsoringRateLimit (247) */
+ /** @name UpDataStructsSponsoringRateLimit (246) */
interface UpDataStructsSponsoringRateLimit extends Enum {
readonly isSponsoringDisabled: boolean;
readonly isBlocks: boolean;
@@ -2612,43 +2607,43 @@
readonly type: 'SponsoringDisabled' | 'Blocks';
}
- /** @name UpDataStructsCollectionPermissions (250) */
+ /** @name UpDataStructsCollectionPermissions (249) */
interface UpDataStructsCollectionPermissions extends Struct {
readonly access: Option<UpDataStructsAccessMode>;
readonly mintMode: Option<bool>;
readonly nesting: Option<UpDataStructsNestingPermissions>;
}
- /** @name UpDataStructsNestingPermissions (252) */
+ /** @name UpDataStructsNestingPermissions (251) */
interface UpDataStructsNestingPermissions extends Struct {
readonly tokenOwner: bool;
readonly collectionAdmin: bool;
readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;
}
- /** @name UpDataStructsOwnerRestrictedSet (254) */
+ /** @name UpDataStructsOwnerRestrictedSet (253) */
interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}
- /** @name UpDataStructsPropertyKeyPermission (259) */
+ /** @name UpDataStructsPropertyKeyPermission (258) */
interface UpDataStructsPropertyKeyPermission extends Struct {
readonly key: Bytes;
readonly permission: UpDataStructsPropertyPermission;
}
- /** @name UpDataStructsPropertyPermission (260) */
+ /** @name UpDataStructsPropertyPermission (259) */
interface UpDataStructsPropertyPermission extends Struct {
readonly mutable: bool;
readonly collectionAdmin: bool;
readonly tokenOwner: bool;
}
- /** @name UpDataStructsProperty (263) */
+ /** @name UpDataStructsProperty (262) */
interface UpDataStructsProperty extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name UpDataStructsCreateItemData (266) */
+ /** @name UpDataStructsCreateItemData (265) */
interface UpDataStructsCreateItemData extends Enum {
readonly isNft: boolean;
readonly asNft: UpDataStructsCreateNftData;
@@ -2659,23 +2654,23 @@
readonly type: 'Nft' | 'Fungible' | 'ReFungible';
}
- /** @name UpDataStructsCreateNftData (267) */
+ /** @name UpDataStructsCreateNftData (266) */
interface UpDataStructsCreateNftData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateFungibleData (268) */
+ /** @name UpDataStructsCreateFungibleData (267) */
interface UpDataStructsCreateFungibleData extends Struct {
readonly value: u128;
}
- /** @name UpDataStructsCreateReFungibleData (269) */
+ /** @name UpDataStructsCreateReFungibleData (268) */
interface UpDataStructsCreateReFungibleData extends Struct {
readonly pieces: u128;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateItemExData (272) */
+ /** @name UpDataStructsCreateItemExData (271) */
interface UpDataStructsCreateItemExData extends Enum {
readonly isNft: boolean;
readonly asNft: Vec<UpDataStructsCreateNftExData>;
@@ -2688,26 +2683,26 @@
readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
}
- /** @name UpDataStructsCreateNftExData (274) */
+ /** @name UpDataStructsCreateNftExData (273) */
interface UpDataStructsCreateNftExData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsCreateRefungibleExSingleOwner (281) */
+ /** @name UpDataStructsCreateRefungibleExSingleOwner (280) */
interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {
readonly user: PalletEvmAccountBasicCrossAccountIdRepr;
readonly pieces: u128;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateRefungibleExMultipleOwners (283) */
+ /** @name UpDataStructsCreateRefungibleExMultipleOwners (282) */
interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {
readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name PalletUniqueSchedulerV2Call (284) */
+ /** @name PalletUniqueSchedulerV2Call (283) */
interface PalletUniqueSchedulerV2Call extends Enum {
readonly isSchedule: boolean;
readonly asSchedule: {
@@ -2756,7 +2751,7 @@
readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';
}
- /** @name PalletConfigurationCall (287) */
+ /** @name PalletConfigurationCall (286) */
interface PalletConfigurationCall extends Enum {
readonly isSetWeightToFeeCoefficientOverride: boolean;
readonly asSetWeightToFeeCoefficientOverride: {
@@ -2769,13 +2764,13 @@
readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';
}
- /** @name PalletTemplateTransactionPaymentCall (289) */
+ /** @name PalletTemplateTransactionPaymentCall (288) */
type PalletTemplateTransactionPaymentCall = Null;
- /** @name PalletStructureCall (290) */
+ /** @name PalletStructureCall (289) */
type PalletStructureCall = Null;
- /** @name PalletRmrkCoreCall (291) */
+ /** @name PalletRmrkCoreCall (290) */
interface PalletRmrkCoreCall extends Enum {
readonly isCreateCollection: boolean;
readonly asCreateCollection: {
@@ -2881,7 +2876,7 @@
readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
}
- /** @name RmrkTraitsResourceResourceTypes (297) */
+ /** @name RmrkTraitsResourceResourceTypes (296) */
interface RmrkTraitsResourceResourceTypes extends Enum {
readonly isBasic: boolean;
readonly asBasic: RmrkTraitsResourceBasicResource;
@@ -2892,7 +2887,7 @@
readonly type: 'Basic' | 'Composable' | 'Slot';
}
- /** @name RmrkTraitsResourceBasicResource (299) */
+ /** @name RmrkTraitsResourceBasicResource (298) */
interface RmrkTraitsResourceBasicResource extends Struct {
readonly src: Option<Bytes>;
readonly metadata: Option<Bytes>;
@@ -2900,7 +2895,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceComposableResource (301) */
+ /** @name RmrkTraitsResourceComposableResource (300) */
interface RmrkTraitsResourceComposableResource extends Struct {
readonly parts: Vec<u32>;
readonly base: u32;
@@ -2910,7 +2905,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceSlotResource (302) */
+ /** @name RmrkTraitsResourceSlotResource (301) */
interface RmrkTraitsResourceSlotResource extends Struct {
readonly base: u32;
readonly src: Option<Bytes>;
@@ -2920,7 +2915,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name PalletRmrkEquipCall (305) */
+ /** @name PalletRmrkEquipCall (304) */
interface PalletRmrkEquipCall extends Enum {
readonly isCreateBase: boolean;
readonly asCreateBase: {
@@ -2942,7 +2937,7 @@
readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
}
- /** @name RmrkTraitsPartPartType (308) */
+ /** @name RmrkTraitsPartPartType (307) */
interface RmrkTraitsPartPartType extends Enum {
readonly isFixedPart: boolean;
readonly asFixedPart: RmrkTraitsPartFixedPart;
@@ -2951,14 +2946,14 @@
readonly type: 'FixedPart' | 'SlotPart';
}
- /** @name RmrkTraitsPartFixedPart (310) */
+ /** @name RmrkTraitsPartFixedPart (309) */
interface RmrkTraitsPartFixedPart extends Struct {
readonly id: u32;
readonly z: u32;
readonly src: Bytes;
}
- /** @name RmrkTraitsPartSlotPart (311) */
+ /** @name RmrkTraitsPartSlotPart (310) */
interface RmrkTraitsPartSlotPart extends Struct {
readonly id: u32;
readonly equippable: RmrkTraitsPartEquippableList;
@@ -2966,7 +2961,7 @@
readonly z: u32;
}
- /** @name RmrkTraitsPartEquippableList (312) */
+ /** @name RmrkTraitsPartEquippableList (311) */
interface RmrkTraitsPartEquippableList extends Enum {
readonly isAll: boolean;
readonly isEmpty: boolean;
@@ -2975,20 +2970,20 @@
readonly type: 'All' | 'Empty' | 'Custom';
}
- /** @name RmrkTraitsTheme (314) */
+ /** @name RmrkTraitsTheme (313) */
interface RmrkTraitsTheme extends Struct {
readonly name: Bytes;
readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
readonly inherit: bool;
}
- /** @name RmrkTraitsThemeThemeProperty (316) */
+ /** @name RmrkTraitsThemeThemeProperty (315) */
interface RmrkTraitsThemeThemeProperty extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name PalletAppPromotionCall (318) */
+ /** @name PalletAppPromotionCall (317) */
interface PalletAppPromotionCall extends Enum {
readonly isSetAdminAddress: boolean;
readonly asSetAdminAddress: {
@@ -3022,7 +3017,7 @@
readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';
}
- /** @name PalletForeignAssetsModuleCall (319) */
+ /** @name PalletForeignAssetsModuleCall (318) */
interface PalletForeignAssetsModuleCall extends Enum {
readonly isRegisterForeignAsset: boolean;
readonly asRegisterForeignAsset: {
@@ -3039,7 +3034,7 @@
readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
}
- /** @name PalletEvmCall (320) */
+ /** @name PalletEvmCall (319) */
interface PalletEvmCall extends Enum {
readonly isWithdraw: boolean;
readonly asWithdraw: {
@@ -3084,7 +3079,7 @@
readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
}
- /** @name PalletEthereumCall (326) */
+ /** @name PalletEthereumCall (325) */
interface PalletEthereumCall extends Enum {
readonly isTransact: boolean;
readonly asTransact: {
@@ -3093,7 +3088,7 @@
readonly type: 'Transact';
}
- /** @name EthereumTransactionTransactionV2 (327) */
+ /** @name EthereumTransactionTransactionV2 (326) */
interface EthereumTransactionTransactionV2 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -3104,7 +3099,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumTransactionLegacyTransaction (328) */
+ /** @name EthereumTransactionLegacyTransaction (327) */
interface EthereumTransactionLegacyTransaction extends Struct {
readonly nonce: U256;
readonly gasPrice: U256;
@@ -3115,7 +3110,7 @@
readonly signature: EthereumTransactionTransactionSignature;
}
- /** @name EthereumTransactionTransactionAction (329) */
+ /** @name EthereumTransactionTransactionAction (328) */
interface EthereumTransactionTransactionAction extends Enum {
readonly isCall: boolean;
readonly asCall: H160;
@@ -3123,14 +3118,14 @@
readonly type: 'Call' | 'Create';
}
- /** @name EthereumTransactionTransactionSignature (330) */
+ /** @name EthereumTransactionTransactionSignature (329) */
interface EthereumTransactionTransactionSignature extends Struct {
readonly v: u64;
readonly r: H256;
readonly s: H256;
}
- /** @name EthereumTransactionEip2930Transaction (332) */
+ /** @name EthereumTransactionEip2930Transaction (331) */
interface EthereumTransactionEip2930Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -3145,13 +3140,13 @@
readonly s: H256;
}
- /** @name EthereumTransactionAccessListItem (334) */
+ /** @name EthereumTransactionAccessListItem (333) */
interface EthereumTransactionAccessListItem extends Struct {
readonly address: H160;
readonly storageKeys: Vec<H256>;
}
- /** @name EthereumTransactionEip1559Transaction (335) */
+ /** @name EthereumTransactionEip1559Transaction (334) */
interface EthereumTransactionEip1559Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -3167,7 +3162,7 @@
readonly s: H256;
}
- /** @name PalletEvmMigrationCall (336) */
+ /** @name PalletEvmMigrationCall (335) */
interface PalletEvmMigrationCall extends Enum {
readonly isBegin: boolean;
readonly asBegin: {
@@ -3194,14 +3189,14 @@
readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';
}
- /** @name PalletMaintenanceCall (340) */
+ /** @name PalletMaintenanceCall (339) */
interface PalletMaintenanceCall extends Enum {
readonly isEnable: boolean;
readonly isDisable: boolean;
readonly type: 'Enable' | 'Disable';
}
- /** @name PalletTestUtilsCall (341) */
+ /** @name PalletTestUtilsCall (340) */
interface PalletTestUtilsCall extends Enum {
readonly isEnable: boolean;
readonly isSetTestValue: boolean;
@@ -3226,13 +3221,13 @@
readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';
}
- /** @name PalletSudoError (343) */
+ /** @name PalletSudoError (342) */
interface PalletSudoError extends Enum {
readonly isRequireSudo: boolean;
readonly type: 'RequireSudo';
}
- /** @name OrmlVestingModuleError (345) */
+ /** @name OrmlVestingModuleError (344) */
interface OrmlVestingModuleError extends Enum {
readonly isZeroVestingPeriod: boolean;
readonly isZeroVestingPeriodCount: boolean;
@@ -3243,7 +3238,7 @@
readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
}
- /** @name OrmlXtokensModuleError (346) */
+ /** @name OrmlXtokensModuleError (345) */
interface OrmlXtokensModuleError extends Enum {
readonly isAssetHasNoReserve: boolean;
readonly isNotCrossChainTransfer: boolean;
@@ -3267,26 +3262,26 @@
readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
}
- /** @name OrmlTokensBalanceLock (349) */
+ /** @name OrmlTokensBalanceLock (348) */
interface OrmlTokensBalanceLock extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
}
- /** @name OrmlTokensAccountData (351) */
+ /** @name OrmlTokensAccountData (350) */
interface OrmlTokensAccountData extends Struct {
readonly free: u128;
readonly reserved: u128;
readonly frozen: u128;
}
- /** @name OrmlTokensReserveData (353) */
+ /** @name OrmlTokensReserveData (352) */
interface OrmlTokensReserveData extends Struct {
readonly id: Null;
readonly amount: u128;
}
- /** @name OrmlTokensModuleError (355) */
+ /** @name OrmlTokensModuleError (354) */
interface OrmlTokensModuleError extends Enum {
readonly isBalanceTooLow: boolean;
readonly isAmountIntoBalanceFailed: boolean;
@@ -3299,21 +3294,21 @@
readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
}
- /** @name CumulusPalletXcmpQueueInboundChannelDetails (357) */
+ /** @name CumulusPalletXcmpQueueInboundChannelDetails (356) */
interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
readonly sender: u32;
readonly state: CumulusPalletXcmpQueueInboundState;
readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
}
- /** @name CumulusPalletXcmpQueueInboundState (358) */
+ /** @name CumulusPalletXcmpQueueInboundState (357) */
interface CumulusPalletXcmpQueueInboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name PolkadotParachainPrimitivesXcmpMessageFormat (361) */
+ /** @name PolkadotParachainPrimitivesXcmpMessageFormat (360) */
interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
readonly isConcatenatedVersionedXcm: boolean;
readonly isConcatenatedEncodedBlob: boolean;
@@ -3321,7 +3316,7 @@
readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
}
- /** @name CumulusPalletXcmpQueueOutboundChannelDetails (364) */
+ /** @name CumulusPalletXcmpQueueOutboundChannelDetails (363) */
interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
readonly recipient: u32;
readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -3330,14 +3325,14 @@
readonly lastIndex: u16;
}
- /** @name CumulusPalletXcmpQueueOutboundState (365) */
+ /** @name CumulusPalletXcmpQueueOutboundState (364) */
interface CumulusPalletXcmpQueueOutboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name CumulusPalletXcmpQueueQueueConfigData (367) */
+ /** @name CumulusPalletXcmpQueueQueueConfigData (366) */
interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
readonly suspendThreshold: u32;
readonly dropThreshold: u32;
@@ -3347,7 +3342,7 @@
readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;
}
- /** @name CumulusPalletXcmpQueueError (369) */
+ /** @name CumulusPalletXcmpQueueError (368) */
interface CumulusPalletXcmpQueueError extends Enum {
readonly isFailedToSend: boolean;
readonly isBadXcmOrigin: boolean;
@@ -3357,7 +3352,7 @@
readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
}
- /** @name PalletXcmError (370) */
+ /** @name PalletXcmError (369) */
interface PalletXcmError extends Enum {
readonly isUnreachable: boolean;
readonly isSendFailure: boolean;
@@ -3375,44 +3370,43 @@
readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
}
- /** @name CumulusPalletXcmError (371) */
+ /** @name CumulusPalletXcmError (370) */
type CumulusPalletXcmError = Null;
- /** @name CumulusPalletDmpQueueConfigData (372) */
+ /** @name CumulusPalletDmpQueueConfigData (371) */
interface CumulusPalletDmpQueueConfigData extends Struct {
readonly maxIndividual: SpWeightsWeightV2Weight;
}
- /** @name CumulusPalletDmpQueuePageIndexData (373) */
+ /** @name CumulusPalletDmpQueuePageIndexData (372) */
interface CumulusPalletDmpQueuePageIndexData extends Struct {
readonly beginUsed: u32;
readonly endUsed: u32;
readonly overweightCount: u64;
}
- /** @name CumulusPalletDmpQueueError (376) */
+ /** @name CumulusPalletDmpQueueError (375) */
interface CumulusPalletDmpQueueError extends Enum {
readonly isUnknown: boolean;
readonly isOverLimit: boolean;
readonly type: 'Unknown' | 'OverLimit';
}
- /** @name PalletUniqueError (380) */
+ /** @name PalletUniqueError (379) */
interface PalletUniqueError extends Enum {
readonly isCollectionDecimalPointLimitExceeded: boolean;
- readonly isConfirmUnsetSponsorFail: boolean;
readonly isEmptyArgument: boolean;
readonly isRepartitionCalledOnNonRefungibleCollection: boolean;
- readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
+ readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
}
- /** @name PalletUniqueSchedulerV2BlockAgenda (381) */
+ /** @name PalletUniqueSchedulerV2BlockAgenda (380) */
interface PalletUniqueSchedulerV2BlockAgenda extends Struct {
readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;
readonly freePlaces: u32;
}
- /** @name PalletUniqueSchedulerV2Scheduled (384) */
+ /** @name PalletUniqueSchedulerV2Scheduled (383) */
interface PalletUniqueSchedulerV2Scheduled extends Struct {
readonly maybeId: Option<U8aFixed>;
readonly priority: u8;
@@ -3421,7 +3415,7 @@
readonly origin: OpalRuntimeOriginCaller;
}
- /** @name PalletUniqueSchedulerV2ScheduledCall (385) */
+ /** @name PalletUniqueSchedulerV2ScheduledCall (384) */
interface PalletUniqueSchedulerV2ScheduledCall extends Enum {
readonly isInline: boolean;
readonly asInline: Bytes;
@@ -3433,7 +3427,7 @@
readonly type: 'Inline' | 'PreimageLookup';
}
- /** @name OpalRuntimeOriginCaller (387) */
+ /** @name OpalRuntimeOriginCaller (386) */
interface OpalRuntimeOriginCaller extends Enum {
readonly isSystem: boolean;
readonly asSystem: FrameSupportDispatchRawOrigin;
@@ -3447,7 +3441,7 @@
readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
}
- /** @name FrameSupportDispatchRawOrigin (388) */
+ /** @name FrameSupportDispatchRawOrigin (387) */
interface FrameSupportDispatchRawOrigin extends Enum {
readonly isRoot: boolean;
readonly isSigned: boolean;
@@ -3456,7 +3450,7 @@
readonly type: 'Root' | 'Signed' | 'None';
}
- /** @name PalletXcmOrigin (389) */
+ /** @name PalletXcmOrigin (388) */
interface PalletXcmOrigin extends Enum {
readonly isXcm: boolean;
readonly asXcm: XcmV1MultiLocation;
@@ -3465,7 +3459,7 @@
readonly type: 'Xcm' | 'Response';
}
- /** @name CumulusPalletXcmOrigin (390) */
+ /** @name CumulusPalletXcmOrigin (389) */
interface CumulusPalletXcmOrigin extends Enum {
readonly isRelay: boolean;
readonly isSiblingParachain: boolean;
@@ -3473,17 +3467,17 @@
readonly type: 'Relay' | 'SiblingParachain';
}
- /** @name PalletEthereumRawOrigin (391) */
+ /** @name PalletEthereumRawOrigin (390) */
interface PalletEthereumRawOrigin extends Enum {
readonly isEthereumTransaction: boolean;
readonly asEthereumTransaction: H160;
readonly type: 'EthereumTransaction';
}
- /** @name SpCoreVoid (392) */
+ /** @name SpCoreVoid (391) */
type SpCoreVoid = Null;
- /** @name PalletUniqueSchedulerV2Error (394) */
+ /** @name PalletUniqueSchedulerV2Error (393) */
interface PalletUniqueSchedulerV2Error extends Enum {
readonly isFailedToSchedule: boolean;
readonly isAgendaIsExhausted: boolean;
@@ -3496,7 +3490,7 @@
readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';
}
- /** @name UpDataStructsCollection (395) */
+ /** @name UpDataStructsCollection (394) */
interface UpDataStructsCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3509,7 +3503,7 @@
readonly flags: U8aFixed;
}
- /** @name UpDataStructsSponsorshipStateAccountId32 (396) */
+ /** @name UpDataStructsSponsorshipStateAccountId32 (395) */
interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3519,43 +3513,43 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name UpDataStructsProperties (398) */
+ /** @name UpDataStructsProperties (397) */
interface UpDataStructsProperties extends Struct {
readonly map: UpDataStructsPropertiesMapBoundedVec;
readonly consumedSpace: u32;
readonly spaceLimit: u32;
}
- /** @name UpDataStructsPropertiesMapBoundedVec (399) */
+ /** @name UpDataStructsPropertiesMapBoundedVec (398) */
interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
- /** @name UpDataStructsPropertiesMapPropertyPermission (404) */
+ /** @name UpDataStructsPropertiesMapPropertyPermission (403) */
interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
- /** @name UpDataStructsCollectionStats (411) */
+ /** @name UpDataStructsCollectionStats (410) */
interface UpDataStructsCollectionStats extends Struct {
readonly created: u32;
readonly destroyed: u32;
readonly alive: u32;
}
- /** @name UpDataStructsTokenChild (412) */
+ /** @name UpDataStructsTokenChild (411) */
interface UpDataStructsTokenChild extends Struct {
readonly token: u32;
readonly collection: u32;
}
- /** @name PhantomTypeUpDataStructs (413) */
+ /** @name PhantomTypeUpDataStructs (412) */
interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
- /** @name UpDataStructsTokenData (415) */
+ /** @name UpDataStructsTokenData (414) */
interface UpDataStructsTokenData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
readonly pieces: u128;
}
- /** @name UpDataStructsRpcCollection (417) */
+ /** @name UpDataStructsRpcCollection (416) */
interface UpDataStructsRpcCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3571,13 +3565,13 @@
readonly flags: UpDataStructsRpcCollectionFlags;
}
- /** @name UpDataStructsRpcCollectionFlags (418) */
+ /** @name UpDataStructsRpcCollectionFlags (417) */
interface UpDataStructsRpcCollectionFlags extends Struct {
readonly foreign: bool;
readonly erc721metadata: bool;
}
- /** @name RmrkTraitsCollectionCollectionInfo (419) */
+ /** @name RmrkTraitsCollectionCollectionInfo (418) */
interface RmrkTraitsCollectionCollectionInfo extends Struct {
readonly issuer: AccountId32;
readonly metadata: Bytes;
@@ -3586,7 +3580,7 @@
readonly nftsCount: u32;
}
- /** @name RmrkTraitsNftNftInfo (420) */
+ /** @name RmrkTraitsNftNftInfo (419) */
interface RmrkTraitsNftNftInfo extends Struct {
readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
@@ -3595,13 +3589,13 @@
readonly pending: bool;
}
- /** @name RmrkTraitsNftRoyaltyInfo (422) */
+ /** @name RmrkTraitsNftRoyaltyInfo (421) */
interface RmrkTraitsNftRoyaltyInfo extends Struct {
readonly recipient: AccountId32;
readonly amount: Permill;
}
- /** @name RmrkTraitsResourceResourceInfo (423) */
+ /** @name RmrkTraitsResourceResourceInfo (422) */
interface RmrkTraitsResourceResourceInfo extends Struct {
readonly id: u32;
readonly resource: RmrkTraitsResourceResourceTypes;
@@ -3609,26 +3603,26 @@
readonly pendingRemoval: bool;
}
- /** @name RmrkTraitsPropertyPropertyInfo (424) */
+ /** @name RmrkTraitsPropertyPropertyInfo (423) */
interface RmrkTraitsPropertyPropertyInfo extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name RmrkTraitsBaseBaseInfo (425) */
+ /** @name RmrkTraitsBaseBaseInfo (424) */
interface RmrkTraitsBaseBaseInfo extends Struct {
readonly issuer: AccountId32;
readonly baseType: Bytes;
readonly symbol: Bytes;
}
- /** @name RmrkTraitsNftNftChild (426) */
+ /** @name RmrkTraitsNftNftChild (425) */
interface RmrkTraitsNftNftChild extends Struct {
readonly collectionId: u32;
readonly nftId: u32;
}
- /** @name PalletCommonError (428) */
+ /** @name PalletCommonError (427) */
interface PalletCommonError extends Enum {
readonly isCollectionNotFound: boolean;
readonly isMustBeTokenOwner: boolean;
@@ -3664,10 +3658,12 @@
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 PalletFungibleError (430) */
+ /** @name PalletFungibleError (429) */
interface PalletFungibleError extends Enum {
readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isFungibleItemsHaveNoId: boolean;
@@ -3678,12 +3674,12 @@
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';
}
- /** @name PalletRefungibleItemData (431) */
+ /** @name PalletRefungibleItemData (430) */
interface PalletRefungibleItemData extends Struct {
readonly constData: Bytes;
}
- /** @name PalletRefungibleError (436) */
+ /** @name PalletRefungibleError (435) */
interface PalletRefungibleError extends Enum {
readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isWrongRefungiblePieces: boolean;
@@ -3693,19 +3689,19 @@
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletNonfungibleItemData (437) */
+ /** @name PalletNonfungibleItemData (436) */
interface PalletNonfungibleItemData extends Struct {
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsPropertyScope (439) */
+ /** @name UpDataStructsPropertyScope (438) */
interface UpDataStructsPropertyScope extends Enum {
readonly isNone: boolean;
readonly isRmrk: boolean;
readonly type: 'None' | 'Rmrk';
}
- /** @name PalletNonfungibleError (441) */
+ /** @name PalletNonfungibleError (440) */
interface PalletNonfungibleError extends Enum {
readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -3713,7 +3709,7 @@
readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
}
- /** @name PalletStructureError (442) */
+ /** @name PalletStructureError (441) */
interface PalletStructureError extends Enum {
readonly isOuroborosDetected: boolean;
readonly isDepthLimit: boolean;
@@ -3722,7 +3718,7 @@
readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
}
- /** @name PalletRmrkCoreError (443) */
+ /** @name PalletRmrkCoreError (442) */
interface PalletRmrkCoreError extends Enum {
readonly isCorruptedCollectionType: boolean;
readonly isRmrkPropertyKeyIsTooLong: boolean;
@@ -3746,7 +3742,7 @@
readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
}
- /** @name PalletRmrkEquipError (445) */
+ /** @name PalletRmrkEquipError (444) */
interface PalletRmrkEquipError extends Enum {
readonly isPermissionError: boolean;
readonly isNoAvailableBaseId: boolean;
@@ -3758,7 +3754,7 @@
readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
}
- /** @name PalletAppPromotionError (451) */
+ /** @name PalletAppPromotionError (450) */
interface PalletAppPromotionError extends Enum {
readonly isAdminNotSet: boolean;
readonly isNoPermission: boolean;
@@ -3769,7 +3765,7 @@
readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
}
- /** @name PalletForeignAssetsModuleError (452) */
+ /** @name PalletForeignAssetsModuleError (451) */
interface PalletForeignAssetsModuleError extends Enum {
readonly isBadLocation: boolean;
readonly isMultiLocationExisted: boolean;
@@ -3778,7 +3774,7 @@
readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
}
- /** @name PalletEvmError (454) */
+ /** @name PalletEvmError (453) */
interface PalletEvmError extends Enum {
readonly isBalanceLow: boolean;
readonly isFeeOverflow: boolean;
@@ -3793,7 +3789,7 @@
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';
}
- /** @name FpRpcTransactionStatus (457) */
+ /** @name FpRpcTransactionStatus (456) */
interface FpRpcTransactionStatus extends Struct {
readonly transactionHash: H256;
readonly transactionIndex: u32;
@@ -3804,10 +3800,10 @@
readonly logsBloom: EthbloomBloom;
}
- /** @name EthbloomBloom (459) */
+ /** @name EthbloomBloom (458) */
interface EthbloomBloom extends U8aFixed {}
- /** @name EthereumReceiptReceiptV3 (461) */
+ /** @name EthereumReceiptReceiptV3 (460) */
interface EthereumReceiptReceiptV3 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -3818,7 +3814,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumReceiptEip658ReceiptData (462) */
+ /** @name EthereumReceiptEip658ReceiptData (461) */
interface EthereumReceiptEip658ReceiptData extends Struct {
readonly statusCode: u8;
readonly usedGas: U256;
@@ -3826,14 +3822,14 @@
readonly logs: Vec<EthereumLog>;
}
- /** @name EthereumBlock (463) */
+ /** @name EthereumBlock (462) */
interface EthereumBlock extends Struct {
readonly header: EthereumHeader;
readonly transactions: Vec<EthereumTransactionTransactionV2>;
readonly ommers: Vec<EthereumHeader>;
}
- /** @name EthereumHeader (464) */
+ /** @name EthereumHeader (463) */
interface EthereumHeader extends Struct {
readonly parentHash: H256;
readonly ommersHash: H256;
@@ -3852,24 +3848,24 @@
readonly nonce: EthereumTypesHashH64;
}
- /** @name EthereumTypesHashH64 (465) */
+ /** @name EthereumTypesHashH64 (464) */
interface EthereumTypesHashH64 extends U8aFixed {}
- /** @name PalletEthereumError (470) */
+ /** @name PalletEthereumError (469) */
interface PalletEthereumError extends Enum {
readonly isInvalidSignature: boolean;
readonly isPreLogExists: boolean;
readonly type: 'InvalidSignature' | 'PreLogExists';
}
- /** @name PalletEvmCoderSubstrateError (471) */
+ /** @name PalletEvmCoderSubstrateError (470) */
interface PalletEvmCoderSubstrateError extends Enum {
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
readonly type: 'OutOfGas' | 'OutOfFund';
}
- /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (472) */
+ /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (471) */
interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3879,7 +3875,7 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name PalletEvmContractHelpersSponsoringModeT (473) */
+ /** @name PalletEvmContractHelpersSponsoringModeT (472) */
interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
readonly isAllowlisted: boolean;
@@ -3887,7 +3883,7 @@
readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
}
- /** @name PalletEvmContractHelpersError (479) */
+ /** @name PalletEvmContractHelpersError (478) */
interface PalletEvmContractHelpersError extends Enum {
readonly isNoPermission: boolean;
readonly isNoPendingSponsor: boolean;
@@ -3895,7 +3891,7 @@
readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
}
- /** @name PalletEvmMigrationError (480) */
+ /** @name PalletEvmMigrationError (479) */
interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
@@ -3903,17 +3899,17 @@
readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
}
- /** @name PalletMaintenanceError (481) */
+ /** @name PalletMaintenanceError (480) */
type PalletMaintenanceError = Null;
- /** @name PalletTestUtilsError (482) */
+ /** @name PalletTestUtilsError (481) */
interface PalletTestUtilsError extends Enum {
readonly isTestPalletDisabled: boolean;
readonly isTriggerRollback: boolean;
readonly type: 'TestPalletDisabled' | 'TriggerRollback';
}
- /** @name SpRuntimeMultiSignature (484) */
+ /** @name SpRuntimeMultiSignature (483) */
interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
readonly asEd25519: SpCoreEd25519Signature;
@@ -3924,40 +3920,40 @@
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
}
- /** @name SpCoreEd25519Signature (485) */
+ /** @name SpCoreEd25519Signature (484) */
interface SpCoreEd25519Signature extends U8aFixed {}
- /** @name SpCoreSr25519Signature (487) */
+ /** @name SpCoreSr25519Signature (486) */
interface SpCoreSr25519Signature extends U8aFixed {}
- /** @name SpCoreEcdsaSignature (488) */
+ /** @name SpCoreEcdsaSignature (487) */
interface SpCoreEcdsaSignature extends U8aFixed {}
- /** @name FrameSystemExtensionsCheckSpecVersion (491) */
+ /** @name FrameSystemExtensionsCheckSpecVersion (490) */
type FrameSystemExtensionsCheckSpecVersion = Null;
- /** @name FrameSystemExtensionsCheckTxVersion (492) */
+ /** @name FrameSystemExtensionsCheckTxVersion (491) */
type FrameSystemExtensionsCheckTxVersion = Null;
- /** @name FrameSystemExtensionsCheckGenesis (493) */
+ /** @name FrameSystemExtensionsCheckGenesis (492) */
type FrameSystemExtensionsCheckGenesis = Null;
- /** @name FrameSystemExtensionsCheckNonce (496) */
+ /** @name FrameSystemExtensionsCheckNonce (495) */
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
- /** @name FrameSystemExtensionsCheckWeight (497) */
+ /** @name FrameSystemExtensionsCheckWeight (496) */
type FrameSystemExtensionsCheckWeight = Null;
- /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (498) */
+ /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (497) */
type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
- /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (499) */
+ /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (498) */
interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name OpalRuntimeRuntime (500) */
+ /** @name OpalRuntimeRuntime (499) */
type OpalRuntimeRuntime = Null;
- /** @name PalletEthereumFakeTransactionFinalizer (501) */
+ /** @name PalletEthereumFakeTransactionFinalizer (500) */
type PalletEthereumFakeTransactionFinalizer = Null;
} // declare module
tests/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');
}
/**