git.delta.rocks / unique-network / refs/commits / 77f635892a89

difftreelog

refactor(identity) rename insert_identities > set + regenerate types

Fahrrader2022-12-27parent: #f8930f8.patch.diff
in: master

6 files changed

modifiedpallets/data-management/src/lib.rsdiffbeforeafterboth
154 /// Insert or remove identities.154 /// Insert or remove identities.
155 #[pallet::call_index(5)]155 #[pallet::call_index(5)]
156 #[pallet::weight(<SelfWeightOf<T>>::insert_events(identities.len() as u32))] // todo:collator weight156 #[pallet::weight(<SelfWeightOf<T>>::insert_events(identities.len() as u32))] // todo:collator weight
157 pub fn insert_identities(157 pub fn set_identities(
158 origin: OriginFor<T>,158 origin: OriginFor<T>,
159 identities: Vec<(159 identities: Vec<(
160 T::AccountId,160 T::AccountId,
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
10import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';10import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
11import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';11import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
12import type { AccountId32, Call, H160, H256, MultiAddress, Permill } from '@polkadot/types/interfaces/runtime';12import type { AccountId32, Call, H160, H256, MultiAddress, Permill } from '@polkadot/types/interfaces/runtime';
13import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OpalRuntimeRuntimeCommonSessionKeys, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityBitFlags, PalletIdentityIdentityInfo, PalletIdentityJudgement, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, SpRuntimeHeader, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';13import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OpalRuntimeRuntimeCommonSessionKeys, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityBitFlags, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistration, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, SpRuntimeHeader, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
1414
15export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;15export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
16export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;16export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
312 * Create substrate events312 * Create substrate events
313 **/313 **/
314 insertEvents: AugmentedSubmittable<(events: Vec<Bytes> | (Bytes | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Bytes>]>;314 insertEvents: AugmentedSubmittable<(events: Vec<Bytes> | (Bytes | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Bytes>]>;
315 /**
316 * Insert or remove identities.
317 **/
318 insertIdentities: AugmentedSubmittable<(identities: Vec<ITuple<[AccountId32, Option<PalletIdentityRegistration>]>> | ([AccountId32 | string | Uint8Array, Option<PalletIdentityRegistration> | null | Uint8Array | PalletIdentityRegistration | { judgements?: any; deposit?: any; info?: any } | string])[]) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[AccountId32, Option<PalletIdentityRegistration>]>>]>;
315 /**319 /**
316 * Insert items into contract storage, this method can be called320 * Insert items into contract storage, this method can be called
317 * multiple times321 * multiple times
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
1477 readonly asInsertEvents: {1477 readonly asInsertEvents: {
1478 readonly events: Vec<Bytes>;1478 readonly events: Vec<Bytes>;
1479 } & Struct;1479 } & Struct;
1480 readonly isInsertIdentities: boolean;
1481 readonly asInsertIdentities: {
1482 readonly identities: Vec<ITuple<[AccountId32, Option<PalletIdentityRegistration>]>>;
1483 } & Struct;
1480 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';1484 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents' | 'InsertIdentities';
1481}1485}
14821486
1483/** @name PalletDataManagementError */1487/** @name PalletDataManagementError */
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
3226 },3226 },
3227 insert_events: {3227 insert_events: {
3228 events: 'Vec<Bytes>'3228 events: 'Vec<Bytes>',
3229 }3229 },
3230 set_identities: {
3231 identities: 'Vec<(AccountId32,Option<PalletIdentityRegistration>)>'
3232 }
3230 }3233 }
3231 },3234 },
3232 /**3235 /**
3233 * Lookup415: pallet_maintenance::pallet::Call<T>3236 * Lookup418: pallet_maintenance::pallet::Call<T>
3234 **/3237 **/
3235 PalletMaintenanceCall: {3238 PalletMaintenanceCall: {
3236 _enum: ['enable', 'disable']3239 _enum: ['enable', 'disable']
3237 },3240 },
3238 /**3241 /**
3239 * Lookup416: pallet_test_utils::pallet::Call<T>3242 * Lookup419: pallet_test_utils::pallet::Call<T>
3240 **/3243 **/
3241 PalletTestUtilsCall: {3244 PalletTestUtilsCall: {
3242 _enum: {3245 _enum: {
3243 enable: 'Null',3246 enable: 'Null',
3254 }3257 }
3255 }3258 }
3256 },3259 },
3257 /**3260 /**
3258 * Lookup418: pallet_sudo::pallet::Error<T>3261 * Lookup421: pallet_sudo::pallet::Error<T>
3259 **/3262 **/
3260 PalletSudoError: {3263 PalletSudoError: {
3261 _enum: ['RequireSudo']3264 _enum: ['RequireSudo']
3262 },3265 },
3263 /**3266 /**
3264 * Lookup420: orml_vesting::module::Error<T>3267 * Lookup423: orml_vesting::module::Error<T>
3265 **/3268 **/
3266 OrmlVestingModuleError: {3269 OrmlVestingModuleError: {
3267 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']3270 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
3268 },3271 },
3269 /**3272 /**
3270 * Lookup421: orml_xtokens::module::Error<T>3273 * Lookup424: orml_xtokens::module::Error<T>
3271 **/3274 **/
3272 OrmlXtokensModuleError: {3275 OrmlXtokensModuleError: {
3273 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']3276 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
3274 },3277 },
3275 /**3278 /**
3276 * Lookup424: orml_tokens::BalanceLock<Balance>3279 * Lookup427: orml_tokens::BalanceLock<Balance>
3277 **/3280 **/
3278 OrmlTokensBalanceLock: {3281 OrmlTokensBalanceLock: {
3279 id: '[u8;8]',3282 id: '[u8;8]',
3280 amount: 'u128'3283 amount: 'u128'
3281 },3284 },
3282 /**3285 /**
3283 * Lookup426: orml_tokens::AccountData<Balance>3286 * Lookup429: orml_tokens::AccountData<Balance>
3284 **/3287 **/
3285 OrmlTokensAccountData: {3288 OrmlTokensAccountData: {
3286 free: 'u128',3289 free: 'u128',
3287 reserved: 'u128',3290 reserved: 'u128',
3288 frozen: 'u128'3291 frozen: 'u128'
3289 },3292 },
3290 /**3293 /**
3291 * Lookup428: orml_tokens::ReserveData<ReserveIdentifier, Balance>3294 * Lookup431: orml_tokens::ReserveData<ReserveIdentifier, Balance>
3292 **/3295 **/
3293 OrmlTokensReserveData: {3296 OrmlTokensReserveData: {
3294 id: 'Null',3297 id: 'Null',
3295 amount: 'u128'3298 amount: 'u128'
3296 },3299 },
3297 /**3300 /**
3298 * Lookup430: orml_tokens::module::Error<T>3301 * Lookup433: orml_tokens::module::Error<T>
3299 **/3302 **/
3300 OrmlTokensModuleError: {3303 OrmlTokensModuleError: {
3301 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']3304 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
3302 },3305 },
3303 /**3306 /**
3304 * Lookup432: cumulus_pallet_xcmp_queue::InboundChannelDetails3307 * Lookup435: cumulus_pallet_xcmp_queue::InboundChannelDetails
3305 **/3308 **/
3306 CumulusPalletXcmpQueueInboundChannelDetails: {3309 CumulusPalletXcmpQueueInboundChannelDetails: {
3307 sender: 'u32',3310 sender: 'u32',
3308 state: 'CumulusPalletXcmpQueueInboundState',3311 state: 'CumulusPalletXcmpQueueInboundState',
3309 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'3312 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
3310 },3313 },
3311 /**3314 /**
3312 * Lookup433: cumulus_pallet_xcmp_queue::InboundState3315 * Lookup436: cumulus_pallet_xcmp_queue::InboundState
3313 **/3316 **/
3314 CumulusPalletXcmpQueueInboundState: {3317 CumulusPalletXcmpQueueInboundState: {
3315 _enum: ['Ok', 'Suspended']3318 _enum: ['Ok', 'Suspended']
3316 },3319 },
3317 /**3320 /**
3318 * Lookup436: polkadot_parachain::primitives::XcmpMessageFormat3321 * Lookup439: polkadot_parachain::primitives::XcmpMessageFormat
3319 **/3322 **/
3320 PolkadotParachainPrimitivesXcmpMessageFormat: {3323 PolkadotParachainPrimitivesXcmpMessageFormat: {
3321 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']3324 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
3322 },3325 },
3323 /**3326 /**
3324 * Lookup439: cumulus_pallet_xcmp_queue::OutboundChannelDetails3327 * Lookup442: cumulus_pallet_xcmp_queue::OutboundChannelDetails
3325 **/3328 **/
3326 CumulusPalletXcmpQueueOutboundChannelDetails: {3329 CumulusPalletXcmpQueueOutboundChannelDetails: {
3327 recipient: 'u32',3330 recipient: 'u32',
3328 state: 'CumulusPalletXcmpQueueOutboundState',3331 state: 'CumulusPalletXcmpQueueOutboundState',
3329 signalsExist: 'bool',3332 signalsExist: 'bool',
3330 firstIndex: 'u16',3333 firstIndex: 'u16',
3331 lastIndex: 'u16'3334 lastIndex: 'u16'
3332 },3335 },
3333 /**3336 /**
3334 * Lookup440: cumulus_pallet_xcmp_queue::OutboundState3337 * Lookup443: cumulus_pallet_xcmp_queue::OutboundState
3335 **/3338 **/
3336 CumulusPalletXcmpQueueOutboundState: {3339 CumulusPalletXcmpQueueOutboundState: {
3337 _enum: ['Ok', 'Suspended']3340 _enum: ['Ok', 'Suspended']
3338 },3341 },
3339 /**3342 /**
3340 * Lookup442: cumulus_pallet_xcmp_queue::QueueConfigData3343 * Lookup445: cumulus_pallet_xcmp_queue::QueueConfigData
3341 **/3344 **/
3342 CumulusPalletXcmpQueueQueueConfigData: {3345 CumulusPalletXcmpQueueQueueConfigData: {
3343 suspendThreshold: 'u32',3346 suspendThreshold: 'u32',
3344 dropThreshold: 'u32',3347 dropThreshold: 'u32',
3347 weightRestrictDecay: 'SpWeightsWeightV2Weight',3350 weightRestrictDecay: 'SpWeightsWeightV2Weight',
3348 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3351 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'
3349 },3352 },
3350 /**3353 /**
3351 * Lookup444: cumulus_pallet_xcmp_queue::pallet::Error<T>3354 * Lookup447: cumulus_pallet_xcmp_queue::pallet::Error<T>
3352 **/3355 **/
3353 CumulusPalletXcmpQueueError: {3356 CumulusPalletXcmpQueueError: {
3354 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3357 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
3355 },3358 },
3356 /**3359 /**
3357 * Lookup445: pallet_xcm::pallet::Error<T>3360 * Lookup448: pallet_xcm::pallet::Error<T>
3358 **/3361 **/
3359 PalletXcmError: {3362 PalletXcmError: {
3360 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3363 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
3361 },3364 },
3362 /**3365 /**
3363 * Lookup446: cumulus_pallet_xcm::pallet::Error<T>3366 * Lookup449: cumulus_pallet_xcm::pallet::Error<T>
3364 **/3367 **/
3365 CumulusPalletXcmError: 'Null',3368 CumulusPalletXcmError: 'Null',
3366 /**3369 /**
3367 * Lookup447: cumulus_pallet_dmp_queue::ConfigData3370 * Lookup450: cumulus_pallet_dmp_queue::ConfigData
3368 **/3371 **/
3369 CumulusPalletDmpQueueConfigData: {3372 CumulusPalletDmpQueueConfigData: {
3370 maxIndividual: 'SpWeightsWeightV2Weight'3373 maxIndividual: 'SpWeightsWeightV2Weight'
3371 },3374 },
3372 /**3375 /**
3373 * Lookup448: cumulus_pallet_dmp_queue::PageIndexData3376 * Lookup451: cumulus_pallet_dmp_queue::PageIndexData
3374 **/3377 **/
3375 CumulusPalletDmpQueuePageIndexData: {3378 CumulusPalletDmpQueuePageIndexData: {
3376 beginUsed: 'u32',3379 beginUsed: 'u32',
3377 endUsed: 'u32',3380 endUsed: 'u32',
3378 overweightCount: 'u64'3381 overweightCount: 'u64'
3379 },3382 },
3380 /**3383 /**
3381 * Lookup451: cumulus_pallet_dmp_queue::pallet::Error<T>3384 * Lookup454: cumulus_pallet_dmp_queue::pallet::Error<T>
3382 **/3385 **/
3383 CumulusPalletDmpQueueError: {3386 CumulusPalletDmpQueueError: {
3384 _enum: ['Unknown', 'OverLimit']3387 _enum: ['Unknown', 'OverLimit']
3385 },3388 },
3386 /**3389 /**
3387 * Lookup455: pallet_unique::Error<T>3390 * Lookup458: pallet_unique::Error<T>
3388 **/3391 **/
3389 PalletUniqueError: {3392 PalletUniqueError: {
3390 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3393 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
3391 },3394 },
3392 /**3395 /**
3393 * Lookup456: pallet_configuration::pallet::Error<T>3396 * Lookup459: pallet_configuration::pallet::Error<T>
3394 **/3397 **/
3395 PalletConfigurationError: {3398 PalletConfigurationError: {
3396 _enum: ['InconsistentConfiguration']3399 _enum: ['InconsistentConfiguration']
3397 },3400 },
3398 /**3401 /**
3399 * Lookup457: up_data_structs::Collection<sp_core::crypto::AccountId32>3402 * Lookup460: up_data_structs::Collection<sp_core::crypto::AccountId32>
3400 **/3403 **/
3401 UpDataStructsCollection: {3404 UpDataStructsCollection: {
3402 owner: 'AccountId32',3405 owner: 'AccountId32',
3403 mode: 'UpDataStructsCollectionMode',3406 mode: 'UpDataStructsCollectionMode',
3409 permissions: 'UpDataStructsCollectionPermissions',3412 permissions: 'UpDataStructsCollectionPermissions',
3410 flags: '[u8;1]'3413 flags: '[u8;1]'
3411 },3414 },
3412 /**3415 /**
3413 * Lookup458: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3416 * Lookup461: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
3414 **/3417 **/
3415 UpDataStructsSponsorshipStateAccountId32: {3418 UpDataStructsSponsorshipStateAccountId32: {
3416 _enum: {3419 _enum: {
3417 Disabled: 'Null',3420 Disabled: 'Null',
3418 Unconfirmed: 'AccountId32',3421 Unconfirmed: 'AccountId32',
3419 Confirmed: 'AccountId32'3422 Confirmed: 'AccountId32'
3420 }3423 }
3421 },3424 },
3422 /**3425 /**
3423 * Lookup459: up_data_structs::Properties3426 * Lookup462: up_data_structs::Properties
3424 **/3427 **/
3425 UpDataStructsProperties: {3428 UpDataStructsProperties: {
3426 map: 'UpDataStructsPropertiesMapBoundedVec',3429 map: 'UpDataStructsPropertiesMapBoundedVec',
3427 consumedSpace: 'u32',3430 consumedSpace: 'u32',
3428 spaceLimit: 'u32'3431 spaceLimit: 'u32'
3429 },3432 },
3430 /**3433 /**
3431 * Lookup460: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3434 * Lookup463: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3432 **/3435 **/
3433 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3436 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
3434 /**3437 /**
3435 * Lookup465: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3438 * Lookup468: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
3436 **/3439 **/
3437 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3440 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
3438 /**3441 /**
3439 * Lookup472: up_data_structs::CollectionStats3442 * Lookup475: up_data_structs::CollectionStats
3440 **/3443 **/
3441 UpDataStructsCollectionStats: {3444 UpDataStructsCollectionStats: {
3442 created: 'u32',3445 created: 'u32',
3443 destroyed: 'u32',3446 destroyed: 'u32',
3444 alive: 'u32'3447 alive: 'u32'
3445 },3448 },
3446 /**3449 /**
3447 * Lookup473: up_data_structs::TokenChild3450 * Lookup476: up_data_structs::TokenChild
3448 **/3451 **/
3449 UpDataStructsTokenChild: {3452 UpDataStructsTokenChild: {
3450 token: 'u32',3453 token: 'u32',
3451 collection: 'u32'3454 collection: 'u32'
3452 },3455 },
3453 /**3456 /**
3454 * Lookup474: PhantomType::up_data_structs<T>3457 * Lookup477: PhantomType::up_data_structs<T>
3455 **/3458 **/
3456 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild,UpPovEstimateRpcPovInfo);0]',3459 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild,UpPovEstimateRpcPovInfo);0]',
3457 /**3460 /**
3458 * Lookup476: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3461 * Lookup479: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3459 **/3462 **/
3460 UpDataStructsTokenData: {3463 UpDataStructsTokenData: {
3461 properties: 'Vec<UpDataStructsProperty>',3464 properties: 'Vec<UpDataStructsProperty>',
3462 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3465 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',
3463 pieces: 'u128'3466 pieces: 'u128'
3464 },3467 },
3465 /**3468 /**
3466 * Lookup478: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3469 * Lookup481: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
3467 **/3470 **/
3468 UpDataStructsRpcCollection: {3471 UpDataStructsRpcCollection: {
3469 owner: 'AccountId32',3472 owner: 'AccountId32',
3470 mode: 'UpDataStructsCollectionMode',3473 mode: 'UpDataStructsCollectionMode',
3479 readOnly: 'bool',3482 readOnly: 'bool',
3480 flags: 'UpDataStructsRpcCollectionFlags'3483 flags: 'UpDataStructsRpcCollectionFlags'
3481 },3484 },
3482 /**3485 /**
3483 * Lookup479: up_data_structs::RpcCollectionFlags3486 * Lookup482: up_data_structs::RpcCollectionFlags
3484 **/3487 **/
3485 UpDataStructsRpcCollectionFlags: {3488 UpDataStructsRpcCollectionFlags: {
3486 foreign: 'bool',3489 foreign: 'bool',
3487 erc721metadata: 'bool'3490 erc721metadata: 'bool'
3488 },3491 },
3489 /**3492 /**
3490 * Lookup480: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>3493 * Lookup483: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
3491 **/3494 **/
3492 RmrkTraitsCollectionCollectionInfo: {3495 RmrkTraitsCollectionCollectionInfo: {
3493 issuer: 'AccountId32',3496 issuer: 'AccountId32',
3494 metadata: 'Bytes',3497 metadata: 'Bytes',
3495 max: 'Option<u32>',3498 max: 'Option<u32>',
3496 symbol: 'Bytes',3499 symbol: 'Bytes',
3497 nftsCount: 'u32'3500 nftsCount: 'u32'
3498 },3501 },
3499 /**3502 /**
3500 * Lookup481: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3503 * Lookup484: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3501 **/3504 **/
3502 RmrkTraitsNftNftInfo: {3505 RmrkTraitsNftNftInfo: {
3503 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3506 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
3504 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3507 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',
3505 metadata: 'Bytes',3508 metadata: 'Bytes',
3506 equipped: 'bool',3509 equipped: 'bool',
3507 pending: 'bool'3510 pending: 'bool'
3508 },3511 },
3509 /**3512 /**
3510 * Lookup483: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3513 * Lookup486: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
3511 **/3514 **/
3512 RmrkTraitsNftRoyaltyInfo: {3515 RmrkTraitsNftRoyaltyInfo: {
3513 recipient: 'AccountId32',3516 recipient: 'AccountId32',
3514 amount: 'Permill'3517 amount: 'Permill'
3515 },3518 },
3516 /**3519 /**
3517 * Lookup484: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3520 * Lookup487: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3518 **/3521 **/
3519 RmrkTraitsResourceResourceInfo: {3522 RmrkTraitsResourceResourceInfo: {
3520 id: 'u32',3523 id: 'u32',
3521 resource: 'RmrkTraitsResourceResourceTypes',3524 resource: 'RmrkTraitsResourceResourceTypes',
3522 pending: 'bool',3525 pending: 'bool',
3523 pendingRemoval: 'bool'3526 pendingRemoval: 'bool'
3524 },3527 },
3525 /**3528 /**
3526 * Lookup485: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3529 * Lookup488: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3527 **/3530 **/
3528 RmrkTraitsPropertyPropertyInfo: {3531 RmrkTraitsPropertyPropertyInfo: {
3529 key: 'Bytes',3532 key: 'Bytes',
3530 value: 'Bytes'3533 value: 'Bytes'
3531 },3534 },
3532 /**3535 /**
3533 * Lookup486: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3536 * Lookup489: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3534 **/3537 **/
3535 RmrkTraitsBaseBaseInfo: {3538 RmrkTraitsBaseBaseInfo: {
3536 issuer: 'AccountId32',3539 issuer: 'AccountId32',
3537 baseType: 'Bytes',3540 baseType: 'Bytes',
3538 symbol: 'Bytes'3541 symbol: 'Bytes'
3539 },3542 },
3540 /**3543 /**
3541 * Lookup487: rmrk_traits::nft::NftChild3544 * Lookup490: rmrk_traits::nft::NftChild
3542 **/3545 **/
3543 RmrkTraitsNftNftChild: {3546 RmrkTraitsNftNftChild: {
3544 collectionId: 'u32',3547 collectionId: 'u32',
3545 nftId: 'u32'3548 nftId: 'u32'
3546 },3549 },
3547 /**3550 /**
3548 * Lookup488: up_pov_estimate_rpc::PovInfo3551 * Lookup491: up_pov_estimate_rpc::PovInfo
3549 **/3552 **/
3550 UpPovEstimateRpcPovInfo: {3553 UpPovEstimateRpcPovInfo: {
3551 proofSize: 'u64',3554 proofSize: 'u64',
3552 compactProofSize: 'u64',3555 compactProofSize: 'u64',
3553 compressedProofSize: 'u64',3556 compressedProofSize: 'u64',
3554 results: 'Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>',3557 results: 'Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>',
3555 keyValues: 'Vec<UpPovEstimateRpcTrieKeyValue>'3558 keyValues: 'Vec<UpPovEstimateRpcTrieKeyValue>'
3556 },3559 },
3557 /**3560 /**
3558 * Lookup491: sp_runtime::transaction_validity::TransactionValidityError3561 * Lookup494: sp_runtime::transaction_validity::TransactionValidityError
3559 **/3562 **/
3560 SpRuntimeTransactionValidityTransactionValidityError: {3563 SpRuntimeTransactionValidityTransactionValidityError: {
3561 _enum: {3564 _enum: {
3562 Invalid: 'SpRuntimeTransactionValidityInvalidTransaction',3565 Invalid: 'SpRuntimeTransactionValidityInvalidTransaction',
3563 Unknown: 'SpRuntimeTransactionValidityUnknownTransaction'3566 Unknown: 'SpRuntimeTransactionValidityUnknownTransaction'
3564 }3567 }
3565 },3568 },
3566 /**3569 /**
3567 * Lookup492: sp_runtime::transaction_validity::InvalidTransaction3570 * Lookup495: sp_runtime::transaction_validity::InvalidTransaction
3568 **/3571 **/
3569 SpRuntimeTransactionValidityInvalidTransaction: {3572 SpRuntimeTransactionValidityInvalidTransaction: {
3570 _enum: {3573 _enum: {
3571 Call: 'Null',3574 Call: 'Null',
3581 BadSigner: 'Null'3584 BadSigner: 'Null'
3582 }3585 }
3583 },3586 },
3584 /**3587 /**
3585 * Lookup493: sp_runtime::transaction_validity::UnknownTransaction3588 * Lookup496: sp_runtime::transaction_validity::UnknownTransaction
3586 **/3589 **/
3587 SpRuntimeTransactionValidityUnknownTransaction: {3590 SpRuntimeTransactionValidityUnknownTransaction: {
3588 _enum: {3591 _enum: {
3589 CannotLookup: 'Null',3592 CannotLookup: 'Null',
3590 NoUnsignedValidator: 'Null',3593 NoUnsignedValidator: 'Null',
3591 Custom: 'u8'3594 Custom: 'u8'
3592 }3595 }
3593 },3596 },
3594 /**3597 /**
3595 * Lookup495: up_pov_estimate_rpc::TrieKeyValue3598 * Lookup498: up_pov_estimate_rpc::TrieKeyValue
3596 **/3599 **/
3597 UpPovEstimateRpcTrieKeyValue: {3600 UpPovEstimateRpcTrieKeyValue: {
3598 key: 'Bytes',3601 key: 'Bytes',
3599 value: 'Bytes'3602 value: 'Bytes'
3600 },3603 },
3601 /**3604 /**
3602 * Lookup497: pallet_common::pallet::Error<T>3605 * Lookup500: pallet_common::pallet::Error<T>
3603 **/3606 **/
3604 PalletCommonError: {3607 PalletCommonError: {
3605 _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']3608 _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']
3606 },3609 },
3607 /**3610 /**
3608 * Lookup499: pallet_fungible::pallet::Error<T>3611 * Lookup502: pallet_fungible::pallet::Error<T>
3609 **/3612 **/
3610 PalletFungibleError: {3613 PalletFungibleError: {
3611 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']3614 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']
3612 },3615 },
3613 /**3616 /**
3614 * Lookup503: pallet_refungible::pallet::Error<T>3617 * Lookup506: pallet_refungible::pallet::Error<T>
3615 **/3618 **/
3616 PalletRefungibleError: {3619 PalletRefungibleError: {
3617 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3620 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
3618 },3621 },
3619 /**3622 /**
3620 * Lookup504: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3623 * Lookup507: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3621 **/3624 **/
3622 PalletNonfungibleItemData: {3625 PalletNonfungibleItemData: {
3623 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3626 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
3624 },3627 },
3625 /**3628 /**
3626 * Lookup506: up_data_structs::PropertyScope3629 * Lookup509: up_data_structs::PropertyScope
3627 **/3630 **/
3628 UpDataStructsPropertyScope: {3631 UpDataStructsPropertyScope: {
3629 _enum: ['None', 'Rmrk']3632 _enum: ['None', 'Rmrk']
3630 },3633 },
3631 /**3634 /**
3632 * Lookup509: pallet_nonfungible::pallet::Error<T>3635 * Lookup512: pallet_nonfungible::pallet::Error<T>
3633 **/3636 **/
3634 PalletNonfungibleError: {3637 PalletNonfungibleError: {
3635 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3638 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
3636 },3639 },
3637 /**3640 /**
3638 * Lookup510: pallet_structure::pallet::Error<T>3641 * Lookup513: pallet_structure::pallet::Error<T>
3639 **/3642 **/
3640 PalletStructureError: {3643 PalletStructureError: {
3641 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3644 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
3642 },3645 },
3643 /**3646 /**
3644 * Lookup511: pallet_rmrk_core::pallet::Error<T>3647 * Lookup514: pallet_rmrk_core::pallet::Error<T>
3645 **/3648 **/
3646 PalletRmrkCoreError: {3649 PalletRmrkCoreError: {
3647 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3650 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
3648 },3651 },
3649 /**3652 /**
3650 * Lookup513: pallet_rmrk_equip::pallet::Error<T>3653 * Lookup516: pallet_rmrk_equip::pallet::Error<T>
3651 **/3654 **/
3652 PalletRmrkEquipError: {3655 PalletRmrkEquipError: {
3653 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3656 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
3654 },3657 },
3655 /**3658 /**
3656 * Lookup519: pallet_app_promotion::pallet::Error<T>3659 * Lookup522: pallet_app_promotion::pallet::Error<T>
3657 **/3660 **/
3658 PalletAppPromotionError: {3661 PalletAppPromotionError: {
3659 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3662 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
3660 },3663 },
3661 /**3664 /**
3662 * Lookup520: pallet_foreign_assets::module::Error<T>3665 * Lookup523: pallet_foreign_assets::module::Error<T>
3663 **/3666 **/
3664 PalletForeignAssetsModuleError: {3667 PalletForeignAssetsModuleError: {
3665 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3668 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
3666 },3669 },
3667 /**3670 /**
3668 * Lookup522: pallet_evm::pallet::Error<T>3671 * Lookup525: pallet_evm::pallet::Error<T>
3669 **/3672 **/
3670 PalletEvmError: {3673 PalletEvmError: {
3671 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']3674 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']
3672 },3675 },
3673 /**3676 /**
3674 * Lookup525: fp_rpc::TransactionStatus3677 * Lookup528: fp_rpc::TransactionStatus
3675 **/3678 **/
3676 FpRpcTransactionStatus: {3679 FpRpcTransactionStatus: {
3677 transactionHash: 'H256',3680 transactionHash: 'H256',
3678 transactionIndex: 'u32',3681 transactionIndex: 'u32',
3682 logs: 'Vec<EthereumLog>',3685 logs: 'Vec<EthereumLog>',
3683 logsBloom: 'EthbloomBloom'3686 logsBloom: 'EthbloomBloom'
3684 },3687 },
3685 /**3688 /**
3686 * Lookup527: ethbloom::Bloom3689 * Lookup530: ethbloom::Bloom
3687 **/3690 **/
3688 EthbloomBloom: '[u8;256]',3691 EthbloomBloom: '[u8;256]',
3689 /**3692 /**
3690 * Lookup529: ethereum::receipt::ReceiptV33693 * Lookup532: ethereum::receipt::ReceiptV3
3691 **/3694 **/
3692 EthereumReceiptReceiptV3: {3695 EthereumReceiptReceiptV3: {
3693 _enum: {3696 _enum: {
3694 Legacy: 'EthereumReceiptEip658ReceiptData',3697 Legacy: 'EthereumReceiptEip658ReceiptData',
3695 EIP2930: 'EthereumReceiptEip658ReceiptData',3698 EIP2930: 'EthereumReceiptEip658ReceiptData',
3696 EIP1559: 'EthereumReceiptEip658ReceiptData'3699 EIP1559: 'EthereumReceiptEip658ReceiptData'
3697 }3700 }
3698 },3701 },
3699 /**3702 /**
3700 * Lookup530: ethereum::receipt::EIP658ReceiptData3703 * Lookup533: ethereum::receipt::EIP658ReceiptData
3701 **/3704 **/
3702 EthereumReceiptEip658ReceiptData: {3705 EthereumReceiptEip658ReceiptData: {
3703 statusCode: 'u8',3706 statusCode: 'u8',
3704 usedGas: 'U256',3707 usedGas: 'U256',
3705 logsBloom: 'EthbloomBloom',3708 logsBloom: 'EthbloomBloom',
3706 logs: 'Vec<EthereumLog>'3709 logs: 'Vec<EthereumLog>'
3707 },3710 },
3708 /**3711 /**
3709 * Lookup531: ethereum::block::Block<ethereum::transaction::TransactionV2>3712 * Lookup534: ethereum::block::Block<ethereum::transaction::TransactionV2>
3710 **/3713 **/
3711 EthereumBlock: {3714 EthereumBlock: {
3712 header: 'EthereumHeader',3715 header: 'EthereumHeader',
3713 transactions: 'Vec<EthereumTransactionTransactionV2>',3716 transactions: 'Vec<EthereumTransactionTransactionV2>',
3714 ommers: 'Vec<EthereumHeader>'3717 ommers: 'Vec<EthereumHeader>'
3715 },3718 },
3716 /**3719 /**
3717 * Lookup532: ethereum::header::Header3720 * Lookup535: ethereum::header::Header
3718 **/3721 **/
3719 EthereumHeader: {3722 EthereumHeader: {
3720 parentHash: 'H256',3723 parentHash: 'H256',
3721 ommersHash: 'H256',3724 ommersHash: 'H256',
3733 mixHash: 'H256',3736 mixHash: 'H256',
3734 nonce: 'EthereumTypesHashH64'3737 nonce: 'EthereumTypesHashH64'
3735 },3738 },
3736 /**3739 /**
3737 * Lookup533: ethereum_types::hash::H643740 * Lookup536: ethereum_types::hash::H64
3738 **/3741 **/
3739 EthereumTypesHashH64: '[u8;8]',3742 EthereumTypesHashH64: '[u8;8]',
3740 /**3743 /**
3741 * Lookup538: pallet_ethereum::pallet::Error<T>3744 * Lookup541: pallet_ethereum::pallet::Error<T>
3742 **/3745 **/
3743 PalletEthereumError: {3746 PalletEthereumError: {
3744 _enum: ['InvalidSignature', 'PreLogExists']3747 _enum: ['InvalidSignature', 'PreLogExists']
3745 },3748 },
3746 /**3749 /**
3747 * Lookup539: pallet_evm_coder_substrate::pallet::Error<T>3750 * Lookup542: pallet_evm_coder_substrate::pallet::Error<T>
3748 **/3751 **/
3749 PalletEvmCoderSubstrateError: {3752 PalletEvmCoderSubstrateError: {
3750 _enum: ['OutOfGas', 'OutOfFund']3753 _enum: ['OutOfGas', 'OutOfFund']
3751 },3754 },
3752 /**3755 /**
3753 * Lookup540: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3756 * Lookup543: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3754 **/3757 **/
3755 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3758 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
3756 _enum: {3759 _enum: {
3757 Disabled: 'Null',3760 Disabled: 'Null',
3758 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3761 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',
3759 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3762 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'
3760 }3763 }
3761 },3764 },
3762 /**3765 /**
3763 * Lookup541: pallet_evm_contract_helpers::SponsoringModeT3766 * Lookup544: pallet_evm_contract_helpers::SponsoringModeT
3764 **/3767 **/
3765 PalletEvmContractHelpersSponsoringModeT: {3768 PalletEvmContractHelpersSponsoringModeT: {
3766 _enum: ['Disabled', 'Allowlisted', 'Generous']3769 _enum: ['Disabled', 'Allowlisted', 'Generous']
3767 },3770 },
3768 /**3771 /**
3769 * Lookup547: pallet_evm_contract_helpers::pallet::Error<T>3772 * Lookup550: pallet_evm_contract_helpers::pallet::Error<T>
3770 **/3773 **/
3771 PalletEvmContractHelpersError: {3774 PalletEvmContractHelpersError: {
3772 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3775 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
3773 },3776 },
3774 /**3777 /**
3775 * Lookup548: pallet_data_management::pallet::Error<T>3778 * Lookup551: pallet_data_management::pallet::Error<T>
3776 **/3779 **/
3777 PalletDataManagementError: {3780 PalletDataManagementError: {
3778 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3781 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
3779 },3782 },
3780 /**3783 /**
3781 * Lookup549: pallet_maintenance::pallet::Error<T>3784 * Lookup552: pallet_maintenance::pallet::Error<T>
3782 **/3785 **/
3783 PalletMaintenanceError: 'Null',3786 PalletMaintenanceError: 'Null',
3784 /**3787 /**
3785 * Lookup550: pallet_test_utils::pallet::Error<T>3788 * Lookup553: pallet_test_utils::pallet::Error<T>
3786 **/3789 **/
3787 PalletTestUtilsError: {3790 PalletTestUtilsError: {
3788 _enum: ['TestPalletDisabled', 'TriggerRollback']3791 _enum: ['TestPalletDisabled', 'TriggerRollback']
3789 },3792 },
3790 /**3793 /**
3791 * Lookup552: sp_runtime::MultiSignature3794 * Lookup555: sp_runtime::MultiSignature
3792 **/3795 **/
3793 SpRuntimeMultiSignature: {3796 SpRuntimeMultiSignature: {
3794 _enum: {3797 _enum: {
3795 Ed25519: 'SpCoreEd25519Signature',3798 Ed25519: 'SpCoreEd25519Signature',
3796 Sr25519: 'SpCoreSr25519Signature',3799 Sr25519: 'SpCoreSr25519Signature',
3797 Ecdsa: 'SpCoreEcdsaSignature'3800 Ecdsa: 'SpCoreEcdsaSignature'
3798 }3801 }
3799 },3802 },
3800 /**3803 /**
3801 * Lookup553: sp_core::ed25519::Signature3804 * Lookup556: sp_core::ed25519::Signature
3802 **/3805 **/
3803 SpCoreEd25519Signature: '[u8;64]',3806 SpCoreEd25519Signature: '[u8;64]',
3804 /**3807 /**
3805 * Lookup555: sp_core::sr25519::Signature3808 * Lookup558: sp_core::sr25519::Signature
3806 **/3809 **/
3807 SpCoreSr25519Signature: '[u8;64]',3810 SpCoreSr25519Signature: '[u8;64]',
3808 /**3811 /**
3809 * Lookup556: sp_core::ecdsa::Signature3812 * Lookup559: sp_core::ecdsa::Signature
3810 **/3813 **/
3811 SpCoreEcdsaSignature: '[u8;65]',3814 SpCoreEcdsaSignature: '[u8;65]',
3812 /**3815 /**
3813 * Lookup559: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3816 * Lookup562: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
3814 **/3817 **/
3815 FrameSystemExtensionsCheckSpecVersion: 'Null',3818 FrameSystemExtensionsCheckSpecVersion: 'Null',
3816 /**3819 /**
3817 * Lookup560: frame_system::extensions::check_tx_version::CheckTxVersion<T>3820 * Lookup563: frame_system::extensions::check_tx_version::CheckTxVersion<T>
3818 **/3821 **/
3819 FrameSystemExtensionsCheckTxVersion: 'Null',3822 FrameSystemExtensionsCheckTxVersion: 'Null',
3820 /**3823 /**
3821 * Lookup561: frame_system::extensions::check_genesis::CheckGenesis<T>3824 * Lookup564: frame_system::extensions::check_genesis::CheckGenesis<T>
3822 **/3825 **/
3823 FrameSystemExtensionsCheckGenesis: 'Null',3826 FrameSystemExtensionsCheckGenesis: 'Null',
3824 /**3827 /**
3825 * Lookup564: frame_system::extensions::check_nonce::CheckNonce<T>3828 * Lookup567: frame_system::extensions::check_nonce::CheckNonce<T>
3826 **/3829 **/
3827 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3830 FrameSystemExtensionsCheckNonce: 'Compact<u32>',
3828 /**3831 /**
3829 * Lookup565: frame_system::extensions::check_weight::CheckWeight<T>3832 * Lookup568: frame_system::extensions::check_weight::CheckWeight<T>
3830 **/3833 **/
3831 FrameSystemExtensionsCheckWeight: 'Null',3834 FrameSystemExtensionsCheckWeight: 'Null',
3832 /**3835 /**
3833 * Lookup566: opal_runtime::runtime_common::maintenance::CheckMaintenance3836 * Lookup569: opal_runtime::runtime_common::maintenance::CheckMaintenance
3834 **/3837 **/
3835 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3838 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
3836 /**3839 /**
3837 * Lookup567: opal_runtime::runtime_common::data_management::FilterIdentity3840 * Lookup570: opal_runtime::runtime_common::data_management::FilterIdentity
3838 **/3841 **/
3839 OpalRuntimeRuntimeCommonDataManagementFilterIdentity: 'Null',3842 OpalRuntimeRuntimeCommonDataManagementFilterIdentity: 'Null',
3840 /**3843 /**
3841 * Lookup568: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3844 * Lookup571: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
3842 **/3845 **/
3843 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3846 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
3844 /**3847 /**
3845 * Lookup569: opal_runtime::Runtime3848 * Lookup572: opal_runtime::Runtime
3846 **/3849 **/
3847 OpalRuntimeRuntime: 'Null',3850 OpalRuntimeRuntime: 'Null',
3848 /**3851 /**
3849 * Lookup570: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3852 * Lookup573: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
3850 **/3853 **/
3851 PalletEthereumFakeTransactionFinalizer: 'Null'3854 PalletEthereumFakeTransactionFinalizer: 'Null'
3852};3855};
38533856
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
3513 readonly asInsertEvents: {3513 readonly asInsertEvents: {
3514 readonly events: Vec<Bytes>;3514 readonly events: Vec<Bytes>;
3515 } & Struct;3515 } & Struct;
3516 readonly isInsertIdentities: boolean;
3517 readonly asInsertIdentities: {
3518 readonly identities: Vec<ITuple<[AccountId32, Option<PalletIdentityRegistration>]>>;
3519 } & Struct;
3516 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3520 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents' | 'InsertIdentities';
3517 }3521 }
35183522
3519 /** @name PalletMaintenanceCall (415) */3523 /** @name PalletMaintenanceCall (418) */
3520 interface PalletMaintenanceCall extends Enum {3524 interface PalletMaintenanceCall extends Enum {
3521 readonly isEnable: boolean;3525 readonly isEnable: boolean;
3522 readonly isDisable: boolean;3526 readonly isDisable: boolean;
3523 readonly type: 'Enable' | 'Disable';3527 readonly type: 'Enable' | 'Disable';
3524 }3528 }
35253529
3526 /** @name PalletTestUtilsCall (416) */3530 /** @name PalletTestUtilsCall (419) */
3527 interface PalletTestUtilsCall extends Enum {3531 interface PalletTestUtilsCall extends Enum {
3528 readonly isEnable: boolean;3532 readonly isEnable: boolean;
3529 readonly isSetTestValue: boolean;3533 readonly isSetTestValue: boolean;
3543 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';3547 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';
3544 }3548 }
35453549
3546 /** @name PalletSudoError (418) */3550 /** @name PalletSudoError (421) */
3547 interface PalletSudoError extends Enum {3551 interface PalletSudoError extends Enum {
3548 readonly isRequireSudo: boolean;3552 readonly isRequireSudo: boolean;
3549 readonly type: 'RequireSudo';3553 readonly type: 'RequireSudo';
3550 }3554 }
35513555
3552 /** @name OrmlVestingModuleError (420) */3556 /** @name OrmlVestingModuleError (423) */
3553 interface OrmlVestingModuleError extends Enum {3557 interface OrmlVestingModuleError extends Enum {
3554 readonly isZeroVestingPeriod: boolean;3558 readonly isZeroVestingPeriod: boolean;
3555 readonly isZeroVestingPeriodCount: boolean;3559 readonly isZeroVestingPeriodCount: boolean;
3560 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3564 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
3561 }3565 }
35623566
3563 /** @name OrmlXtokensModuleError (421) */3567 /** @name OrmlXtokensModuleError (424) */
3564 interface OrmlXtokensModuleError extends Enum {3568 interface OrmlXtokensModuleError extends Enum {
3565 readonly isAssetHasNoReserve: boolean;3569 readonly isAssetHasNoReserve: boolean;
3566 readonly isNotCrossChainTransfer: boolean;3570 readonly isNotCrossChainTransfer: boolean;
3584 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3588 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
3585 }3589 }
35863590
3587 /** @name OrmlTokensBalanceLock (424) */3591 /** @name OrmlTokensBalanceLock (427) */
3588 interface OrmlTokensBalanceLock extends Struct {3592 interface OrmlTokensBalanceLock extends Struct {
3589 readonly id: U8aFixed;3593 readonly id: U8aFixed;
3590 readonly amount: u128;3594 readonly amount: u128;
3591 }3595 }
35923596
3593 /** @name OrmlTokensAccountData (426) */3597 /** @name OrmlTokensAccountData (429) */
3594 interface OrmlTokensAccountData extends Struct {3598 interface OrmlTokensAccountData extends Struct {
3595 readonly free: u128;3599 readonly free: u128;
3596 readonly reserved: u128;3600 readonly reserved: u128;
3597 readonly frozen: u128;3601 readonly frozen: u128;
3598 }3602 }
35993603
3600 /** @name OrmlTokensReserveData (428) */3604 /** @name OrmlTokensReserveData (431) */
3601 interface OrmlTokensReserveData extends Struct {3605 interface OrmlTokensReserveData extends Struct {
3602 readonly id: Null;3606 readonly id: Null;
3603 readonly amount: u128;3607 readonly amount: u128;
3604 }3608 }
36053609
3606 /** @name OrmlTokensModuleError (430) */3610 /** @name OrmlTokensModuleError (433) */
3607 interface OrmlTokensModuleError extends Enum {3611 interface OrmlTokensModuleError extends Enum {
3608 readonly isBalanceTooLow: boolean;3612 readonly isBalanceTooLow: boolean;
3609 readonly isAmountIntoBalanceFailed: boolean;3613 readonly isAmountIntoBalanceFailed: boolean;
3616 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3620 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
3617 }3621 }
36183622
3619 /** @name CumulusPalletXcmpQueueInboundChannelDetails (432) */3623 /** @name CumulusPalletXcmpQueueInboundChannelDetails (435) */
3620 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3624 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
3621 readonly sender: u32;3625 readonly sender: u32;
3622 readonly state: CumulusPalletXcmpQueueInboundState;3626 readonly state: CumulusPalletXcmpQueueInboundState;
3623 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3627 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
3624 }3628 }
36253629
3626 /** @name CumulusPalletXcmpQueueInboundState (433) */3630 /** @name CumulusPalletXcmpQueueInboundState (436) */
3627 interface CumulusPalletXcmpQueueInboundState extends Enum {3631 interface CumulusPalletXcmpQueueInboundState extends Enum {
3628 readonly isOk: boolean;3632 readonly isOk: boolean;
3629 readonly isSuspended: boolean;3633 readonly isSuspended: boolean;
3630 readonly type: 'Ok' | 'Suspended';3634 readonly type: 'Ok' | 'Suspended';
3631 }3635 }
36323636
3633 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (436) */3637 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (439) */
3634 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3638 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
3635 readonly isConcatenatedVersionedXcm: boolean;3639 readonly isConcatenatedVersionedXcm: boolean;
3636 readonly isConcatenatedEncodedBlob: boolean;3640 readonly isConcatenatedEncodedBlob: boolean;
3637 readonly isSignals: boolean;3641 readonly isSignals: boolean;
3638 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3642 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
3639 }3643 }
36403644
3641 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (439) */3645 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (442) */
3642 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3646 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
3643 readonly recipient: u32;3647 readonly recipient: u32;
3644 readonly state: CumulusPalletXcmpQueueOutboundState;3648 readonly state: CumulusPalletXcmpQueueOutboundState;
3647 readonly lastIndex: u16;3651 readonly lastIndex: u16;
3648 }3652 }
36493653
3650 /** @name CumulusPalletXcmpQueueOutboundState (440) */3654 /** @name CumulusPalletXcmpQueueOutboundState (443) */
3651 interface CumulusPalletXcmpQueueOutboundState extends Enum {3655 interface CumulusPalletXcmpQueueOutboundState extends Enum {
3652 readonly isOk: boolean;3656 readonly isOk: boolean;
3653 readonly isSuspended: boolean;3657 readonly isSuspended: boolean;
3654 readonly type: 'Ok' | 'Suspended';3658 readonly type: 'Ok' | 'Suspended';
3655 }3659 }
36563660
3657 /** @name CumulusPalletXcmpQueueQueueConfigData (442) */3661 /** @name CumulusPalletXcmpQueueQueueConfigData (445) */
3658 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3662 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
3659 readonly suspendThreshold: u32;3663 readonly suspendThreshold: u32;
3660 readonly dropThreshold: u32;3664 readonly dropThreshold: u32;
3664 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3668 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;
3665 }3669 }
36663670
3667 /** @name CumulusPalletXcmpQueueError (444) */3671 /** @name CumulusPalletXcmpQueueError (447) */
3668 interface CumulusPalletXcmpQueueError extends Enum {3672 interface CumulusPalletXcmpQueueError extends Enum {
3669 readonly isFailedToSend: boolean;3673 readonly isFailedToSend: boolean;
3670 readonly isBadXcmOrigin: boolean;3674 readonly isBadXcmOrigin: boolean;
3674 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3678 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
3675 }3679 }
36763680
3677 /** @name PalletXcmError (445) */3681 /** @name PalletXcmError (448) */
3678 interface PalletXcmError extends Enum {3682 interface PalletXcmError extends Enum {
3679 readonly isUnreachable: boolean;3683 readonly isUnreachable: boolean;
3680 readonly isSendFailure: boolean;3684 readonly isSendFailure: boolean;
3692 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3696 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
3693 }3697 }
36943698
3695 /** @name CumulusPalletXcmError (446) */3699 /** @name CumulusPalletXcmError (449) */
3696 type CumulusPalletXcmError = Null;3700 type CumulusPalletXcmError = Null;
36973701
3698 /** @name CumulusPalletDmpQueueConfigData (447) */3702 /** @name CumulusPalletDmpQueueConfigData (450) */
3699 interface CumulusPalletDmpQueueConfigData extends Struct {3703 interface CumulusPalletDmpQueueConfigData extends Struct {
3700 readonly maxIndividual: SpWeightsWeightV2Weight;3704 readonly maxIndividual: SpWeightsWeightV2Weight;
3701 }3705 }
37023706
3703 /** @name CumulusPalletDmpQueuePageIndexData (448) */3707 /** @name CumulusPalletDmpQueuePageIndexData (451) */
3704 interface CumulusPalletDmpQueuePageIndexData extends Struct {3708 interface CumulusPalletDmpQueuePageIndexData extends Struct {
3705 readonly beginUsed: u32;3709 readonly beginUsed: u32;
3706 readonly endUsed: u32;3710 readonly endUsed: u32;
3707 readonly overweightCount: u64;3711 readonly overweightCount: u64;
3708 }3712 }
37093713
3710 /** @name CumulusPalletDmpQueueError (451) */3714 /** @name CumulusPalletDmpQueueError (454) */
3711 interface CumulusPalletDmpQueueError extends Enum {3715 interface CumulusPalletDmpQueueError extends Enum {
3712 readonly isUnknown: boolean;3716 readonly isUnknown: boolean;
3713 readonly isOverLimit: boolean;3717 readonly isOverLimit: boolean;
3714 readonly type: 'Unknown' | 'OverLimit';3718 readonly type: 'Unknown' | 'OverLimit';
3715 }3719 }
37163720
3717 /** @name PalletUniqueError (455) */3721 /** @name PalletUniqueError (458) */
3718 interface PalletUniqueError extends Enum {3722 interface PalletUniqueError extends Enum {
3719 readonly isCollectionDecimalPointLimitExceeded: boolean;3723 readonly isCollectionDecimalPointLimitExceeded: boolean;
3720 readonly isEmptyArgument: boolean;3724 readonly isEmptyArgument: boolean;
3721 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3725 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;
3722 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3726 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
3723 }3727 }
37243728
3725 /** @name PalletConfigurationError (456) */3729 /** @name PalletConfigurationError (459) */
3726 interface PalletConfigurationError extends Enum {3730 interface PalletConfigurationError extends Enum {
3727 readonly isInconsistentConfiguration: boolean;3731 readonly isInconsistentConfiguration: boolean;
3728 readonly type: 'InconsistentConfiguration';3732 readonly type: 'InconsistentConfiguration';
3729 }3733 }
37303734
3731 /** @name UpDataStructsCollection (457) */3735 /** @name UpDataStructsCollection (460) */
3732 interface UpDataStructsCollection extends Struct {3736 interface UpDataStructsCollection extends Struct {
3733 readonly owner: AccountId32;3737 readonly owner: AccountId32;
3734 readonly mode: UpDataStructsCollectionMode;3738 readonly mode: UpDataStructsCollectionMode;
3741 readonly flags: U8aFixed;3745 readonly flags: U8aFixed;
3742 }3746 }
37433747
3744 /** @name UpDataStructsSponsorshipStateAccountId32 (458) */3748 /** @name UpDataStructsSponsorshipStateAccountId32 (461) */
3745 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3749 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
3746 readonly isDisabled: boolean;3750 readonly isDisabled: boolean;
3747 readonly isUnconfirmed: boolean;3751 readonly isUnconfirmed: boolean;
3751 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3755 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
3752 }3756 }
37533757
3754 /** @name UpDataStructsProperties (459) */3758 /** @name UpDataStructsProperties (462) */
3755 interface UpDataStructsProperties extends Struct {3759 interface UpDataStructsProperties extends Struct {
3756 readonly map: UpDataStructsPropertiesMapBoundedVec;3760 readonly map: UpDataStructsPropertiesMapBoundedVec;
3757 readonly consumedSpace: u32;3761 readonly consumedSpace: u32;
3758 readonly spaceLimit: u32;3762 readonly spaceLimit: u32;
3759 }3763 }
37603764
3761 /** @name UpDataStructsPropertiesMapBoundedVec (460) */3765 /** @name UpDataStructsPropertiesMapBoundedVec (463) */
3762 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}3766 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
37633767
3764 /** @name UpDataStructsPropertiesMapPropertyPermission (465) */3768 /** @name UpDataStructsPropertiesMapPropertyPermission (468) */
3765 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}3769 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
37663770
3767 /** @name UpDataStructsCollectionStats (472) */3771 /** @name UpDataStructsCollectionStats (475) */
3768 interface UpDataStructsCollectionStats extends Struct {3772 interface UpDataStructsCollectionStats extends Struct {
3769 readonly created: u32;3773 readonly created: u32;
3770 readonly destroyed: u32;3774 readonly destroyed: u32;
3771 readonly alive: u32;3775 readonly alive: u32;
3772 }3776 }
37733777
3774 /** @name UpDataStructsTokenChild (473) */3778 /** @name UpDataStructsTokenChild (476) */
3775 interface UpDataStructsTokenChild extends Struct {3779 interface UpDataStructsTokenChild extends Struct {
3776 readonly token: u32;3780 readonly token: u32;
3777 readonly collection: u32;3781 readonly collection: u32;
3778 }3782 }
37793783
3780 /** @name PhantomTypeUpDataStructs (474) */3784 /** @name PhantomTypeUpDataStructs (477) */
3781 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild, UpPovEstimateRpcPovInfo]>> {}3785 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild, UpPovEstimateRpcPovInfo]>> {}
37823786
3783 /** @name UpDataStructsTokenData (476) */3787 /** @name UpDataStructsTokenData (479) */
3784 interface UpDataStructsTokenData extends Struct {3788 interface UpDataStructsTokenData extends Struct {
3785 readonly properties: Vec<UpDataStructsProperty>;3789 readonly properties: Vec<UpDataStructsProperty>;
3786 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3790 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
3787 readonly pieces: u128;3791 readonly pieces: u128;
3788 }3792 }
37893793
3790 /** @name UpDataStructsRpcCollection (478) */3794 /** @name UpDataStructsRpcCollection (481) */
3791 interface UpDataStructsRpcCollection extends Struct {3795 interface UpDataStructsRpcCollection extends Struct {
3792 readonly owner: AccountId32;3796 readonly owner: AccountId32;
3793 readonly mode: UpDataStructsCollectionMode;3797 readonly mode: UpDataStructsCollectionMode;
3803 readonly flags: UpDataStructsRpcCollectionFlags;3807 readonly flags: UpDataStructsRpcCollectionFlags;
3804 }3808 }
38053809
3806 /** @name UpDataStructsRpcCollectionFlags (479) */3810 /** @name UpDataStructsRpcCollectionFlags (482) */
3807 interface UpDataStructsRpcCollectionFlags extends Struct {3811 interface UpDataStructsRpcCollectionFlags extends Struct {
3808 readonly foreign: bool;3812 readonly foreign: bool;
3809 readonly erc721metadata: bool;3813 readonly erc721metadata: bool;
3810 }3814 }
38113815
3812 /** @name RmrkTraitsCollectionCollectionInfo (480) */3816 /** @name RmrkTraitsCollectionCollectionInfo (483) */
3813 interface RmrkTraitsCollectionCollectionInfo extends Struct {3817 interface RmrkTraitsCollectionCollectionInfo extends Struct {
3814 readonly issuer: AccountId32;3818 readonly issuer: AccountId32;
3815 readonly metadata: Bytes;3819 readonly metadata: Bytes;
3818 readonly nftsCount: u32;3822 readonly nftsCount: u32;
3819 }3823 }
38203824
3821 /** @name RmrkTraitsNftNftInfo (481) */3825 /** @name RmrkTraitsNftNftInfo (484) */
3822 interface RmrkTraitsNftNftInfo extends Struct {3826 interface RmrkTraitsNftNftInfo extends Struct {
3823 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3827 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
3824 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3828 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
3827 readonly pending: bool;3831 readonly pending: bool;
3828 }3832 }
38293833
3830 /** @name RmrkTraitsNftRoyaltyInfo (483) */3834 /** @name RmrkTraitsNftRoyaltyInfo (486) */
3831 interface RmrkTraitsNftRoyaltyInfo extends Struct {3835 interface RmrkTraitsNftRoyaltyInfo extends Struct {
3832 readonly recipient: AccountId32;3836 readonly recipient: AccountId32;
3833 readonly amount: Permill;3837 readonly amount: Permill;
3834 }3838 }
38353839
3836 /** @name RmrkTraitsResourceResourceInfo (484) */3840 /** @name RmrkTraitsResourceResourceInfo (487) */
3837 interface RmrkTraitsResourceResourceInfo extends Struct {3841 interface RmrkTraitsResourceResourceInfo extends Struct {
3838 readonly id: u32;3842 readonly id: u32;
3839 readonly resource: RmrkTraitsResourceResourceTypes;3843 readonly resource: RmrkTraitsResourceResourceTypes;
3840 readonly pending: bool;3844 readonly pending: bool;
3841 readonly pendingRemoval: bool;3845 readonly pendingRemoval: bool;
3842 }3846 }
38433847
3844 /** @name RmrkTraitsPropertyPropertyInfo (485) */3848 /** @name RmrkTraitsPropertyPropertyInfo (488) */
3845 interface RmrkTraitsPropertyPropertyInfo extends Struct {3849 interface RmrkTraitsPropertyPropertyInfo extends Struct {
3846 readonly key: Bytes;3850 readonly key: Bytes;
3847 readonly value: Bytes;3851 readonly value: Bytes;
3848 }3852 }
38493853
3850 /** @name RmrkTraitsBaseBaseInfo (486) */3854 /** @name RmrkTraitsBaseBaseInfo (489) */
3851 interface RmrkTraitsBaseBaseInfo extends Struct {3855 interface RmrkTraitsBaseBaseInfo extends Struct {
3852 readonly issuer: AccountId32;3856 readonly issuer: AccountId32;
3853 readonly baseType: Bytes;3857 readonly baseType: Bytes;
3854 readonly symbol: Bytes;3858 readonly symbol: Bytes;
3855 }3859 }
38563860
3857 /** @name RmrkTraitsNftNftChild (487) */3861 /** @name RmrkTraitsNftNftChild (490) */
3858 interface RmrkTraitsNftNftChild extends Struct {3862 interface RmrkTraitsNftNftChild extends Struct {
3859 readonly collectionId: u32;3863 readonly collectionId: u32;
3860 readonly nftId: u32;3864 readonly nftId: u32;
3861 }3865 }
38623866
3863 /** @name UpPovEstimateRpcPovInfo (488) */3867 /** @name UpPovEstimateRpcPovInfo (491) */
3864 interface UpPovEstimateRpcPovInfo extends Struct {3868 interface UpPovEstimateRpcPovInfo extends Struct {
3865 readonly proofSize: u64;3869 readonly proofSize: u64;
3866 readonly compactProofSize: u64;3870 readonly compactProofSize: u64;
3869 readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;3873 readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;
3870 }3874 }
38713875
3872 /** @name SpRuntimeTransactionValidityTransactionValidityError (491) */3876 /** @name SpRuntimeTransactionValidityTransactionValidityError (494) */
3873 interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {3877 interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {
3874 readonly isInvalid: boolean;3878 readonly isInvalid: boolean;
3875 readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;3879 readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;
3878 readonly type: 'Invalid' | 'Unknown';3882 readonly type: 'Invalid' | 'Unknown';
3879 }3883 }
38803884
3881 /** @name SpRuntimeTransactionValidityInvalidTransaction (492) */3885 /** @name SpRuntimeTransactionValidityInvalidTransaction (495) */
3882 interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {3886 interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {
3883 readonly isCall: boolean;3887 readonly isCall: boolean;
3884 readonly isPayment: boolean;3888 readonly isPayment: boolean;
3895 readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';3899 readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';
3896 }3900 }
38973901
3898 /** @name SpRuntimeTransactionValidityUnknownTransaction (493) */3902 /** @name SpRuntimeTransactionValidityUnknownTransaction (496) */
3899 interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {3903 interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {
3900 readonly isCannotLookup: boolean;3904 readonly isCannotLookup: boolean;
3901 readonly isNoUnsignedValidator: boolean;3905 readonly isNoUnsignedValidator: boolean;
3904 readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';3908 readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';
3905 }3909 }
39063910
3907 /** @name UpPovEstimateRpcTrieKeyValue (495) */3911 /** @name UpPovEstimateRpcTrieKeyValue (498) */
3908 interface UpPovEstimateRpcTrieKeyValue extends Struct {3912 interface UpPovEstimateRpcTrieKeyValue extends Struct {
3909 readonly key: Bytes;3913 readonly key: Bytes;
3910 readonly value: Bytes;3914 readonly value: Bytes;
3911 }3915 }
39123916
3913 /** @name PalletCommonError (497) */3917 /** @name PalletCommonError (500) */
3914 interface PalletCommonError extends Enum {3918 interface PalletCommonError extends Enum {
3915 readonly isCollectionNotFound: boolean;3919 readonly isCollectionNotFound: boolean;
3916 readonly isMustBeTokenOwner: boolean;3920 readonly isMustBeTokenOwner: boolean;
3951 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';3955 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';
3952 }3956 }
39533957
3954 /** @name PalletFungibleError (499) */3958 /** @name PalletFungibleError (502) */
3955 interface PalletFungibleError extends Enum {3959 interface PalletFungibleError extends Enum {
3956 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3960 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
3957 readonly isFungibleItemsHaveNoId: boolean;3961 readonly isFungibleItemsHaveNoId: boolean;
3963 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';3967 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';
3964 }3968 }
39653969
3966 /** @name PalletRefungibleError (503) */3970 /** @name PalletRefungibleError (506) */
3967 interface PalletRefungibleError extends Enum {3971 interface PalletRefungibleError extends Enum {
3968 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3972 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
3969 readonly isWrongRefungiblePieces: boolean;3973 readonly isWrongRefungiblePieces: boolean;
3973 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3977 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
3974 }3978 }
39753979
3976 /** @name PalletNonfungibleItemData (504) */3980 /** @name PalletNonfungibleItemData (507) */
3977 interface PalletNonfungibleItemData extends Struct {3981 interface PalletNonfungibleItemData extends Struct {
3978 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3982 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
3979 }3983 }
39803984
3981 /** @name UpDataStructsPropertyScope (506) */3985 /** @name UpDataStructsPropertyScope (509) */
3982 interface UpDataStructsPropertyScope extends Enum {3986 interface UpDataStructsPropertyScope extends Enum {
3983 readonly isNone: boolean;3987 readonly isNone: boolean;
3984 readonly isRmrk: boolean;3988 readonly isRmrk: boolean;
3985 readonly type: 'None' | 'Rmrk';3989 readonly type: 'None' | 'Rmrk';
3986 }3990 }
39873991
3988 /** @name PalletNonfungibleError (509) */3992 /** @name PalletNonfungibleError (512) */
3989 interface PalletNonfungibleError extends Enum {3993 interface PalletNonfungibleError extends Enum {
3990 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3994 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
3991 readonly isNonfungibleItemsHaveNoAmount: boolean;3995 readonly isNonfungibleItemsHaveNoAmount: boolean;
3992 readonly isCantBurnNftWithChildren: boolean;3996 readonly isCantBurnNftWithChildren: boolean;
3993 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3997 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
3994 }3998 }
39953999
3996 /** @name PalletStructureError (510) */4000 /** @name PalletStructureError (513) */
3997 interface PalletStructureError extends Enum {4001 interface PalletStructureError extends Enum {
3998 readonly isOuroborosDetected: boolean;4002 readonly isOuroborosDetected: boolean;
3999 readonly isDepthLimit: boolean;4003 readonly isDepthLimit: boolean;
4002 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';4006 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
4003 }4007 }
40044008
4005 /** @name PalletRmrkCoreError (511) */4009 /** @name PalletRmrkCoreError (514) */
4006 interface PalletRmrkCoreError extends Enum {4010 interface PalletRmrkCoreError extends Enum {
4007 readonly isCorruptedCollectionType: boolean;4011 readonly isCorruptedCollectionType: boolean;
4008 readonly isRmrkPropertyKeyIsTooLong: boolean;4012 readonly isRmrkPropertyKeyIsTooLong: boolean;
4026 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';4030 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
4027 }4031 }
40284032
4029 /** @name PalletRmrkEquipError (513) */4033 /** @name PalletRmrkEquipError (516) */
4030 interface PalletRmrkEquipError extends Enum {4034 interface PalletRmrkEquipError extends Enum {
4031 readonly isPermissionError: boolean;4035 readonly isPermissionError: boolean;
4032 readonly isNoAvailableBaseId: boolean;4036 readonly isNoAvailableBaseId: boolean;
4038 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';4042 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
4039 }4043 }
40404044
4041 /** @name PalletAppPromotionError (519) */4045 /** @name PalletAppPromotionError (522) */
4042 interface PalletAppPromotionError extends Enum {4046 interface PalletAppPromotionError extends Enum {
4043 readonly isAdminNotSet: boolean;4047 readonly isAdminNotSet: boolean;
4044 readonly isNoPermission: boolean;4048 readonly isNoPermission: boolean;
4049 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';4053 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
4050 }4054 }
40514055
4052 /** @name PalletForeignAssetsModuleError (520) */4056 /** @name PalletForeignAssetsModuleError (523) */
4053 interface PalletForeignAssetsModuleError extends Enum {4057 interface PalletForeignAssetsModuleError extends Enum {
4054 readonly isBadLocation: boolean;4058 readonly isBadLocation: boolean;
4055 readonly isMultiLocationExisted: boolean;4059 readonly isMultiLocationExisted: boolean;
4058 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';4062 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
4059 }4063 }
40604064
4061 /** @name PalletEvmError (522) */4065 /** @name PalletEvmError (525) */
4062 interface PalletEvmError extends Enum {4066 interface PalletEvmError extends Enum {
4063 readonly isBalanceLow: boolean;4067 readonly isBalanceLow: boolean;
4064 readonly isFeeOverflow: boolean;4068 readonly isFeeOverflow: boolean;
4074 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';4078 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';
4075 }4079 }
40764080
4077 /** @name FpRpcTransactionStatus (525) */4081 /** @name FpRpcTransactionStatus (528) */
4078 interface FpRpcTransactionStatus extends Struct {4082 interface FpRpcTransactionStatus extends Struct {
4079 readonly transactionHash: H256;4083 readonly transactionHash: H256;
4080 readonly transactionIndex: u32;4084 readonly transactionIndex: u32;
4085 readonly logsBloom: EthbloomBloom;4089 readonly logsBloom: EthbloomBloom;
4086 }4090 }
40874091
4088 /** @name EthbloomBloom (527) */4092 /** @name EthbloomBloom (530) */
4089 interface EthbloomBloom extends U8aFixed {}4093 interface EthbloomBloom extends U8aFixed {}
40904094
4091 /** @name EthereumReceiptReceiptV3 (529) */4095 /** @name EthereumReceiptReceiptV3 (532) */
4092 interface EthereumReceiptReceiptV3 extends Enum {4096 interface EthereumReceiptReceiptV3 extends Enum {
4093 readonly isLegacy: boolean;4097 readonly isLegacy: boolean;
4094 readonly asLegacy: EthereumReceiptEip658ReceiptData;4098 readonly asLegacy: EthereumReceiptEip658ReceiptData;
4099 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';4103 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
4100 }4104 }
41014105
4102 /** @name EthereumReceiptEip658ReceiptData (530) */4106 /** @name EthereumReceiptEip658ReceiptData (533) */
4103 interface EthereumReceiptEip658ReceiptData extends Struct {4107 interface EthereumReceiptEip658ReceiptData extends Struct {
4104 readonly statusCode: u8;4108 readonly statusCode: u8;
4105 readonly usedGas: U256;4109 readonly usedGas: U256;
4106 readonly logsBloom: EthbloomBloom;4110 readonly logsBloom: EthbloomBloom;
4107 readonly logs: Vec<EthereumLog>;4111 readonly logs: Vec<EthereumLog>;
4108 }4112 }
41094113
4110 /** @name EthereumBlock (531) */4114 /** @name EthereumBlock (534) */
4111 interface EthereumBlock extends Struct {4115 interface EthereumBlock extends Struct {
4112 readonly header: EthereumHeader;4116 readonly header: EthereumHeader;
4113 readonly transactions: Vec<EthereumTransactionTransactionV2>;4117 readonly transactions: Vec<EthereumTransactionTransactionV2>;
4114 readonly ommers: Vec<EthereumHeader>;4118 readonly ommers: Vec<EthereumHeader>;
4115 }4119 }
41164120
4117 /** @name EthereumHeader (532) */4121 /** @name EthereumHeader (535) */
4118 interface EthereumHeader extends Struct {4122 interface EthereumHeader extends Struct {
4119 readonly parentHash: H256;4123 readonly parentHash: H256;
4120 readonly ommersHash: H256;4124 readonly ommersHash: H256;
4133 readonly nonce: EthereumTypesHashH64;4137 readonly nonce: EthereumTypesHashH64;
4134 }4138 }
41354139
4136 /** @name EthereumTypesHashH64 (533) */4140 /** @name EthereumTypesHashH64 (536) */
4137 interface EthereumTypesHashH64 extends U8aFixed {}4141 interface EthereumTypesHashH64 extends U8aFixed {}
41384142
4139 /** @name PalletEthereumError (538) */4143 /** @name PalletEthereumError (541) */
4140 interface PalletEthereumError extends Enum {4144 interface PalletEthereumError extends Enum {
4141 readonly isInvalidSignature: boolean;4145 readonly isInvalidSignature: boolean;
4142 readonly isPreLogExists: boolean;4146 readonly isPreLogExists: boolean;
4143 readonly type: 'InvalidSignature' | 'PreLogExists';4147 readonly type: 'InvalidSignature' | 'PreLogExists';
4144 }4148 }
41454149
4146 /** @name PalletEvmCoderSubstrateError (539) */4150 /** @name PalletEvmCoderSubstrateError (542) */
4147 interface PalletEvmCoderSubstrateError extends Enum {4151 interface PalletEvmCoderSubstrateError extends Enum {
4148 readonly isOutOfGas: boolean;4152 readonly isOutOfGas: boolean;
4149 readonly isOutOfFund: boolean;4153 readonly isOutOfFund: boolean;
4150 readonly type: 'OutOfGas' | 'OutOfFund';4154 readonly type: 'OutOfGas' | 'OutOfFund';
4151 }4155 }
41524156
4153 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (540) */4157 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (543) */
4154 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {4158 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
4155 readonly isDisabled: boolean;4159 readonly isDisabled: boolean;
4156 readonly isUnconfirmed: boolean;4160 readonly isUnconfirmed: boolean;
4160 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';4164 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
4161 }4165 }
41624166
4163 /** @name PalletEvmContractHelpersSponsoringModeT (541) */4167 /** @name PalletEvmContractHelpersSponsoringModeT (544) */
4164 interface PalletEvmContractHelpersSponsoringModeT extends Enum {4168 interface PalletEvmContractHelpersSponsoringModeT extends Enum {
4165 readonly isDisabled: boolean;4169 readonly isDisabled: boolean;
4166 readonly isAllowlisted: boolean;4170 readonly isAllowlisted: boolean;
4167 readonly isGenerous: boolean;4171 readonly isGenerous: boolean;
4168 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';4172 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
4169 }4173 }
41704174
4171 /** @name PalletEvmContractHelpersError (547) */4175 /** @name PalletEvmContractHelpersError (550) */
4172 interface PalletEvmContractHelpersError extends Enum {4176 interface PalletEvmContractHelpersError extends Enum {
4173 readonly isNoPermission: boolean;4177 readonly isNoPermission: boolean;
4174 readonly isNoPendingSponsor: boolean;4178 readonly isNoPendingSponsor: boolean;
4175 readonly isTooManyMethodsHaveSponsoredLimit: boolean;4179 readonly isTooManyMethodsHaveSponsoredLimit: boolean;
4176 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';4180 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
4177 }4181 }
41784182
4179 /** @name PalletDataManagementError (548) */4183 /** @name PalletDataManagementError (551) */
4180 interface PalletDataManagementError extends Enum {4184 interface PalletDataManagementError extends Enum {
4181 readonly isAccountNotEmpty: boolean;4185 readonly isAccountNotEmpty: boolean;
4182 readonly isAccountIsNotMigrating: boolean;4186 readonly isAccountIsNotMigrating: boolean;
4183 readonly isBadEvent: boolean;4187 readonly isBadEvent: boolean;
4184 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';4188 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
4185 }4189 }
41864190
4187 /** @name PalletMaintenanceError (549) */4191 /** @name PalletMaintenanceError (552) */
4188 type PalletMaintenanceError = Null;4192 type PalletMaintenanceError = Null;
41894193
4190 /** @name PalletTestUtilsError (550) */4194 /** @name PalletTestUtilsError (553) */
4191 interface PalletTestUtilsError extends Enum {4195 interface PalletTestUtilsError extends Enum {
4192 readonly isTestPalletDisabled: boolean;4196 readonly isTestPalletDisabled: boolean;
4193 readonly isTriggerRollback: boolean;4197 readonly isTriggerRollback: boolean;
4194 readonly type: 'TestPalletDisabled' | 'TriggerRollback';4198 readonly type: 'TestPalletDisabled' | 'TriggerRollback';
4195 }4199 }
41964200
4197 /** @name SpRuntimeMultiSignature (552) */4201 /** @name SpRuntimeMultiSignature (555) */
4198 interface SpRuntimeMultiSignature extends Enum {4202 interface SpRuntimeMultiSignature extends Enum {
4199 readonly isEd25519: boolean;4203 readonly isEd25519: boolean;
4200 readonly asEd25519: SpCoreEd25519Signature;4204 readonly asEd25519: SpCoreEd25519Signature;
4205 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';4209 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
4206 }4210 }
42074211
4208 /** @name SpCoreEd25519Signature (553) */4212 /** @name SpCoreEd25519Signature (556) */
4209 interface SpCoreEd25519Signature extends U8aFixed {}4213 interface SpCoreEd25519Signature extends U8aFixed {}
42104214
4211 /** @name SpCoreSr25519Signature (555) */4215 /** @name SpCoreSr25519Signature (558) */
4212 interface SpCoreSr25519Signature extends U8aFixed {}4216 interface SpCoreSr25519Signature extends U8aFixed {}
42134217
4214 /** @name SpCoreEcdsaSignature (556) */4218 /** @name SpCoreEcdsaSignature (559) */
4215 interface SpCoreEcdsaSignature extends U8aFixed {}4219 interface SpCoreEcdsaSignature extends U8aFixed {}
42164220
4217 /** @name FrameSystemExtensionsCheckSpecVersion (559) */4221 /** @name FrameSystemExtensionsCheckSpecVersion (562) */
4218 type FrameSystemExtensionsCheckSpecVersion = Null;4222 type FrameSystemExtensionsCheckSpecVersion = Null;
42194223
4220 /** @name FrameSystemExtensionsCheckTxVersion (560) */4224 /** @name FrameSystemExtensionsCheckTxVersion (563) */
4221 type FrameSystemExtensionsCheckTxVersion = Null;4225 type FrameSystemExtensionsCheckTxVersion = Null;
42224226
4223 /** @name FrameSystemExtensionsCheckGenesis (561) */4227 /** @name FrameSystemExtensionsCheckGenesis (564) */
4224 type FrameSystemExtensionsCheckGenesis = Null;4228 type FrameSystemExtensionsCheckGenesis = Null;
42254229
4226 /** @name FrameSystemExtensionsCheckNonce (564) */4230 /** @name FrameSystemExtensionsCheckNonce (567) */
4227 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}4231 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
42284232
4229 /** @name FrameSystemExtensionsCheckWeight (565) */4233 /** @name FrameSystemExtensionsCheckWeight (568) */
4230 type FrameSystemExtensionsCheckWeight = Null;4234 type FrameSystemExtensionsCheckWeight = Null;
42314235
4232 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (566) */4236 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (569) */
4233 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;4237 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
42344238
4235 /** @name OpalRuntimeRuntimeCommonDataManagementFilterIdentity (567) */4239 /** @name OpalRuntimeRuntimeCommonDataManagementFilterIdentity (570) */
4236 type OpalRuntimeRuntimeCommonDataManagementFilterIdentity = Null;4240 type OpalRuntimeRuntimeCommonDataManagementFilterIdentity = Null;
42374241
4238 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (568) */4242 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (571) */
4239 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}4243 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
42404244
4241 /** @name OpalRuntimeRuntime (569) */4245 /** @name OpalRuntimeRuntime (572) */
4242 type OpalRuntimeRuntime = Null;4246 type OpalRuntimeRuntime = Null;
42434247
4244 /** @name PalletEthereumFakeTransactionFinalizer (570) */4248 /** @name PalletEthereumFakeTransactionFinalizer (573) */
4245 type PalletEthereumFakeTransactionFinalizer = Null;4249 type PalletEthereumFakeTransactionFinalizer = Null;
42464250
4247} // declare module4251} // declare module
modifiedtests/src/util/index.tsdiffbeforeafterboth
111 Scheduler = 'scheduler',111 Scheduler = 'scheduler',
112 AppPromotion = 'apppromotion',112 AppPromotion = 'apppromotion',
113 CollatorSelection = 'collatorselection',113 CollatorSelection = 'collatorselection',
114 Session = 'session',
115 Identity = 'identity',
114 TestUtils = 'testutils',116 TestUtils = 'testutils',
115}117}
116118