@dedot/api 0.0.1-next.cfee875e.21 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/chaintypes/substrate/tx.d.ts +2 -2
- package/chaintypes/substrate/types.d.ts +377 -377
- package/cjs/client/BaseSubstrateClient.js +21 -0
- package/cjs/client/DedotClient.js +5 -4
- package/cjs/client/LegacyClient.js +6 -2
- package/cjs/executor/ErrorExecutor.js +3 -3
- package/cjs/executor/EventExecutor.js +2 -2
- package/cjs/executor/StorageQueryExecutor.js +1 -1
- package/cjs/executor/TxExecutor.js +3 -3
- package/cjs/executor/v2/StorageQueryExecutorV2.js +4 -4
- package/cjs/extrinsic/extensions/known/ChargeAssetTxPayment.js +2 -2
- package/cjs/extrinsic/extensions/known/StorageWeightReclaim.js +10 -0
- package/cjs/extrinsic/extensions/known/index.js +2 -0
- package/cjs/extrinsic/submittable/BaseSubmittableExtrinsic.js +31 -1
- package/cjs/extrinsic/submittable/SubmittableExtrinsic.js +7 -4
- package/cjs/extrinsic/submittable/SubmittableExtrinsicV2.js +11 -11
- package/cjs/extrinsic/submittable/utils.js +66 -1
- package/cjs/storage/QueryableStorage.js +17 -17
- package/client/BaseSubstrateClient.d.ts +15 -9
- package/client/BaseSubstrateClient.js +22 -1
- package/client/DedotClient.d.ts +2 -2
- package/client/DedotClient.js +5 -4
- package/client/LegacyClient.d.ts +3 -2
- package/client/LegacyClient.js +6 -2
- package/executor/ErrorExecutor.js +3 -3
- package/executor/EventExecutor.js +2 -2
- package/executor/Executor.d.ts +12 -12
- package/executor/StorageQueryExecutor.js +1 -1
- package/executor/TxExecutor.js +3 -3
- package/executor/v2/StorageQueryExecutorV2.js +4 -4
- package/extrinsic/extensions/known/ChargeAssetTxPayment.js +2 -2
- package/extrinsic/extensions/known/StorageWeightReclaim.d.ts +6 -0
- package/extrinsic/extensions/known/StorageWeightReclaim.js +6 -0
- package/extrinsic/extensions/known/index.js +2 -0
- package/extrinsic/submittable/BaseSubmittableExtrinsic.d.ts +2 -0
- package/extrinsic/submittable/BaseSubmittableExtrinsic.js +32 -2
- package/extrinsic/submittable/SubmittableExtrinsic.js +7 -4
- package/extrinsic/submittable/SubmittableExtrinsicV2.js +11 -11
- package/extrinsic/submittable/SubmittableResult.d.ts +4 -4
- package/extrinsic/submittable/utils.d.ts +10 -1
- package/extrinsic/submittable/utils.js +65 -1
- package/json-rpc/JsonRpcClient.d.ts +6 -5
- package/package.json +11 -11
- package/storage/QueryableStorage.js +17 -17
- package/types.d.ts +9 -1
|
@@ -745,14 +745,14 @@ export type SpNposElectionsElectionScore = {
|
|
|
745
745
|
sumStakeSquared: bigint;
|
|
746
746
|
};
|
|
747
747
|
export type PalletElectionProviderMultiPhasePhase = {
|
|
748
|
-
|
|
748
|
+
type: 'Off';
|
|
749
749
|
} | {
|
|
750
|
-
|
|
750
|
+
type: 'Signed';
|
|
751
751
|
} | {
|
|
752
|
-
|
|
752
|
+
type: 'Unsigned';
|
|
753
753
|
value: [boolean, number];
|
|
754
754
|
} | {
|
|
755
|
-
|
|
755
|
+
type: 'Emergency';
|
|
756
756
|
};
|
|
757
757
|
/**
|
|
758
758
|
* The `Event` enum of this pallet
|
|
@@ -935,16 +935,16 @@ export type PalletStakingPalletEvent =
|
|
|
935
935
|
};
|
|
936
936
|
};
|
|
937
937
|
export type PalletStakingRewardDestination = {
|
|
938
|
-
|
|
938
|
+
type: 'Staked';
|
|
939
939
|
} | {
|
|
940
|
-
|
|
940
|
+
type: 'Stash';
|
|
941
941
|
} | {
|
|
942
|
-
|
|
942
|
+
type: 'Controller';
|
|
943
943
|
} | {
|
|
944
|
-
|
|
944
|
+
type: 'Account';
|
|
945
945
|
value: AccountId32;
|
|
946
946
|
} | {
|
|
947
|
-
|
|
947
|
+
type: 'None';
|
|
948
948
|
};
|
|
949
949
|
export type PalletStakingValidatorPrefs = {
|
|
950
950
|
commission: Perbill;
|
|
@@ -1155,13 +1155,13 @@ export type PalletDemocracyEvent =
|
|
|
1155
1155
|
};
|
|
1156
1156
|
export type PalletDemocracyVoteThreshold = 'SuperMajorityApprove' | 'SuperMajorityAgainst' | 'SimpleMajority';
|
|
1157
1157
|
export type PalletDemocracyVoteAccountVote = {
|
|
1158
|
-
|
|
1158
|
+
type: 'Standard';
|
|
1159
1159
|
value: {
|
|
1160
1160
|
vote: PalletDemocracyVote;
|
|
1161
1161
|
balance: bigint;
|
|
1162
1162
|
};
|
|
1163
1163
|
} | {
|
|
1164
|
-
|
|
1164
|
+
type: 'Split';
|
|
1165
1165
|
value: {
|
|
1166
1166
|
aye: bigint;
|
|
1167
1167
|
nay: bigint;
|
|
@@ -1169,12 +1169,12 @@ export type PalletDemocracyVoteAccountVote = {
|
|
|
1169
1169
|
};
|
|
1170
1170
|
export type PalletDemocracyVote = number;
|
|
1171
1171
|
export type PalletDemocracyMetadataOwner = {
|
|
1172
|
-
|
|
1172
|
+
type: 'External';
|
|
1173
1173
|
} | {
|
|
1174
|
-
|
|
1174
|
+
type: 'Proposal';
|
|
1175
1175
|
value: number;
|
|
1176
1176
|
} | {
|
|
1177
|
-
|
|
1177
|
+
type: 'Referendum';
|
|
1178
1178
|
value: number;
|
|
1179
1179
|
};
|
|
1180
1180
|
/**
|
|
@@ -1712,9 +1712,9 @@ export type PalletContractsEvent =
|
|
|
1712
1712
|
};
|
|
1713
1713
|
};
|
|
1714
1714
|
export type PalletContractsOrigin = {
|
|
1715
|
-
|
|
1715
|
+
type: 'Root';
|
|
1716
1716
|
} | {
|
|
1717
|
-
|
|
1717
|
+
type: 'Signed';
|
|
1718
1718
|
value: AccountId32;
|
|
1719
1719
|
};
|
|
1720
1720
|
export type KitchensinkRuntimeRuntime = {};
|
|
@@ -3839,13 +3839,13 @@ export type PalletNftsEvent =
|
|
|
3839
3839
|
};
|
|
3840
3840
|
};
|
|
3841
3841
|
export type PalletNftsAttributeNamespace = {
|
|
3842
|
-
|
|
3842
|
+
type: 'Pallet';
|
|
3843
3843
|
} | {
|
|
3844
|
-
|
|
3844
|
+
type: 'CollectionOwner';
|
|
3845
3845
|
} | {
|
|
3846
|
-
|
|
3846
|
+
type: 'ItemOwner';
|
|
3847
3847
|
} | {
|
|
3848
|
-
|
|
3848
|
+
type: 'Account';
|
|
3849
3849
|
value: AccountId32;
|
|
3850
3850
|
};
|
|
3851
3851
|
export type PalletNftsPriceWithDirection = {
|
|
@@ -3854,10 +3854,10 @@ export type PalletNftsPriceWithDirection = {
|
|
|
3854
3854
|
};
|
|
3855
3855
|
export type PalletNftsPriceDirection = 'Send' | 'Receive';
|
|
3856
3856
|
export type PalletNftsPalletAttributes = {
|
|
3857
|
-
|
|
3857
|
+
type: 'UsedToClaim';
|
|
3858
3858
|
value: number;
|
|
3859
3859
|
} | {
|
|
3860
|
-
|
|
3860
|
+
type: 'TransferDisabled';
|
|
3861
3861
|
};
|
|
3862
3862
|
/**
|
|
3863
3863
|
* The `Event` enum of this pallet
|
|
@@ -4522,15 +4522,15 @@ export type PalletReferendaEvent =
|
|
|
4522
4522
|
};
|
|
4523
4523
|
};
|
|
4524
4524
|
export type FrameSupportPreimagesBounded = {
|
|
4525
|
-
|
|
4525
|
+
type: 'Legacy';
|
|
4526
4526
|
value: {
|
|
4527
4527
|
hash: H256;
|
|
4528
4528
|
};
|
|
4529
4529
|
} | {
|
|
4530
|
-
|
|
4530
|
+
type: 'Inline';
|
|
4531
4531
|
value: Bytes;
|
|
4532
4532
|
} | {
|
|
4533
|
-
|
|
4533
|
+
type: 'Lookup';
|
|
4534
4534
|
value: {
|
|
4535
4535
|
hash: H256;
|
|
4536
4536
|
len: number;
|
|
@@ -5431,37 +5431,37 @@ export type PalletUtilityCallLike =
|
|
|
5431
5431
|
};
|
|
5432
5432
|
};
|
|
5433
5433
|
export type KitchensinkRuntimeOriginCaller = {
|
|
5434
|
-
|
|
5434
|
+
type: 'System';
|
|
5435
5435
|
value: FrameSupportDispatchRawOrigin;
|
|
5436
5436
|
} | {
|
|
5437
|
-
|
|
5437
|
+
type: 'Council';
|
|
5438
5438
|
value: PalletCollectiveRawOrigin;
|
|
5439
5439
|
} | {
|
|
5440
|
-
|
|
5440
|
+
type: 'TechnicalCommittee';
|
|
5441
5441
|
value: PalletCollectiveRawOrigin;
|
|
5442
5442
|
} | {
|
|
5443
|
-
|
|
5443
|
+
type: 'AllianceMotion';
|
|
5444
5444
|
value: PalletCollectiveRawOrigin;
|
|
5445
5445
|
} | {
|
|
5446
|
-
|
|
5446
|
+
type: 'Void';
|
|
5447
5447
|
value: SpCoreVoid;
|
|
5448
5448
|
};
|
|
5449
5449
|
export type FrameSupportDispatchRawOrigin = {
|
|
5450
|
-
|
|
5450
|
+
type: 'Root';
|
|
5451
5451
|
} | {
|
|
5452
|
-
|
|
5452
|
+
type: 'Signed';
|
|
5453
5453
|
value: AccountId32;
|
|
5454
5454
|
} | {
|
|
5455
|
-
|
|
5455
|
+
type: 'None';
|
|
5456
5456
|
};
|
|
5457
5457
|
export type PalletCollectiveRawOrigin = {
|
|
5458
|
-
|
|
5458
|
+
type: 'Members';
|
|
5459
5459
|
value: [number, number];
|
|
5460
5460
|
} | {
|
|
5461
|
-
|
|
5461
|
+
type: 'Member';
|
|
5462
5462
|
value: AccountId32;
|
|
5463
5463
|
} | {
|
|
5464
|
-
|
|
5464
|
+
type: 'Phantom';
|
|
5465
5465
|
};
|
|
5466
5466
|
export type SpCoreVoid = null;
|
|
5467
5467
|
/**
|
|
@@ -5567,7 +5567,7 @@ export type SpSessionMembershipProof = {
|
|
|
5567
5567
|
validatorCount: number;
|
|
5568
5568
|
};
|
|
5569
5569
|
export type SpConsensusBabeDigestsNextConfigDescriptor = {
|
|
5570
|
-
|
|
5570
|
+
type: 'V1';
|
|
5571
5571
|
value: {
|
|
5572
5572
|
c: [bigint, bigint];
|
|
5573
5573
|
allowedSlots: SpConsensusBabeAllowedSlots;
|
|
@@ -7404,36 +7404,36 @@ export type PalletStakingPalletCallLike =
|
|
|
7404
7404
|
};
|
|
7405
7405
|
};
|
|
7406
7406
|
export type PalletStakingPalletConfigOp = {
|
|
7407
|
-
|
|
7407
|
+
type: 'Noop';
|
|
7408
7408
|
} | {
|
|
7409
|
-
|
|
7409
|
+
type: 'Set';
|
|
7410
7410
|
value: bigint;
|
|
7411
7411
|
} | {
|
|
7412
|
-
|
|
7412
|
+
type: 'Remove';
|
|
7413
7413
|
};
|
|
7414
7414
|
export type PalletStakingPalletConfigOpU32 = {
|
|
7415
|
-
|
|
7415
|
+
type: 'Noop';
|
|
7416
7416
|
} | {
|
|
7417
|
-
|
|
7417
|
+
type: 'Set';
|
|
7418
7418
|
value: number;
|
|
7419
7419
|
} | {
|
|
7420
|
-
|
|
7420
|
+
type: 'Remove';
|
|
7421
7421
|
};
|
|
7422
7422
|
export type PalletStakingPalletConfigOpPercent = {
|
|
7423
|
-
|
|
7423
|
+
type: 'Noop';
|
|
7424
7424
|
} | {
|
|
7425
|
-
|
|
7425
|
+
type: 'Set';
|
|
7426
7426
|
value: Percent;
|
|
7427
7427
|
} | {
|
|
7428
|
-
|
|
7428
|
+
type: 'Remove';
|
|
7429
7429
|
};
|
|
7430
7430
|
export type PalletStakingPalletConfigOpPerbill = {
|
|
7431
|
-
|
|
7431
|
+
type: 'Noop';
|
|
7432
7432
|
} | {
|
|
7433
|
-
|
|
7433
|
+
type: 'Set';
|
|
7434
7434
|
value: Perbill;
|
|
7435
7435
|
} | {
|
|
7436
|
-
|
|
7436
|
+
type: 'Remove';
|
|
7437
7437
|
};
|
|
7438
7438
|
/**
|
|
7439
7439
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -8837,11 +8837,11 @@ export type PalletElectionsPhragmenCallLike =
|
|
|
8837
8837
|
};
|
|
8838
8838
|
};
|
|
8839
8839
|
export type PalletElectionsPhragmenRenouncing = {
|
|
8840
|
-
|
|
8840
|
+
type: 'Member';
|
|
8841
8841
|
} | {
|
|
8842
|
-
|
|
8842
|
+
type: 'RunnerUp';
|
|
8843
8843
|
} | {
|
|
8844
|
-
|
|
8844
|
+
type: 'Candidate';
|
|
8845
8845
|
value: number;
|
|
8846
8846
|
};
|
|
8847
8847
|
/**
|
|
@@ -9123,10 +9123,10 @@ export type SpConsensusGrandpaEquivocationProof = {
|
|
|
9123
9123
|
equivocation: SpConsensusGrandpaEquivocation;
|
|
9124
9124
|
};
|
|
9125
9125
|
export type SpConsensusGrandpaEquivocation = {
|
|
9126
|
-
|
|
9126
|
+
type: 'Prevote';
|
|
9127
9127
|
value: FinalityGrandpaEquivocation;
|
|
9128
9128
|
} | {
|
|
9129
|
-
|
|
9129
|
+
type: 'Precommit';
|
|
9130
9130
|
value: FinalityGrandpaEquivocationPrecommit;
|
|
9131
9131
|
};
|
|
9132
9132
|
export type FinalityGrandpaEquivocation = {
|
|
@@ -10982,29 +10982,29 @@ export type PalletIdentityLegacyIdentityInfo = {
|
|
|
10982
10982
|
twitter: Data;
|
|
10983
10983
|
};
|
|
10984
10984
|
export type PalletIdentityJudgement = {
|
|
10985
|
-
|
|
10985
|
+
type: 'Unknown';
|
|
10986
10986
|
} | {
|
|
10987
|
-
|
|
10987
|
+
type: 'FeePaid';
|
|
10988
10988
|
value: bigint;
|
|
10989
10989
|
} | {
|
|
10990
|
-
|
|
10990
|
+
type: 'Reasonable';
|
|
10991
10991
|
} | {
|
|
10992
|
-
|
|
10992
|
+
type: 'KnownGood';
|
|
10993
10993
|
} | {
|
|
10994
|
-
|
|
10994
|
+
type: 'OutOfDate';
|
|
10995
10995
|
} | {
|
|
10996
|
-
|
|
10996
|
+
type: 'LowQuality';
|
|
10997
10997
|
} | {
|
|
10998
|
-
|
|
10998
|
+
type: 'Erroneous';
|
|
10999
10999
|
};
|
|
11000
11000
|
export type SpRuntimeMultiSignature = {
|
|
11001
|
-
|
|
11001
|
+
type: 'Ed25519';
|
|
11002
11002
|
value: SpCoreEd25519Signature;
|
|
11003
11003
|
} | {
|
|
11004
|
-
|
|
11004
|
+
type: 'Sr25519';
|
|
11005
11005
|
value: SpCoreSr25519Signature;
|
|
11006
11006
|
} | {
|
|
11007
|
-
|
|
11007
|
+
type: 'Ecdsa';
|
|
11008
11008
|
value: SpCoreEcdsaSignature;
|
|
11009
11009
|
};
|
|
11010
11010
|
export type SpCoreEcdsaSignature = FixedBytes<65>;
|
|
@@ -18913,11 +18913,11 @@ export type PalletNftsMintSettings = {
|
|
|
18913
18913
|
defaultItemSettings: PalletNftsBitFlagsItemSetting;
|
|
18914
18914
|
};
|
|
18915
18915
|
export type PalletNftsMintType = {
|
|
18916
|
-
|
|
18916
|
+
type: 'Issuer';
|
|
18917
18917
|
} | {
|
|
18918
|
-
|
|
18918
|
+
type: 'Public';
|
|
18919
18919
|
} | {
|
|
18920
|
-
|
|
18920
|
+
type: 'HolderOf';
|
|
18921
18921
|
value: number;
|
|
18922
18922
|
};
|
|
18923
18923
|
export type PalletNftsBitFlagsItemSetting = bigint;
|
|
@@ -19891,12 +19891,12 @@ export type PalletStateTrieMigrationMigrationTask = {
|
|
|
19891
19891
|
childItems: number;
|
|
19892
19892
|
};
|
|
19893
19893
|
export type PalletStateTrieMigrationProgress = {
|
|
19894
|
-
|
|
19894
|
+
type: 'ToStart';
|
|
19895
19895
|
} | {
|
|
19896
|
-
|
|
19896
|
+
type: 'LastKey';
|
|
19897
19897
|
value: Bytes;
|
|
19898
19898
|
} | {
|
|
19899
|
-
|
|
19899
|
+
type: 'Complete';
|
|
19900
19900
|
};
|
|
19901
19901
|
/**
|
|
19902
19902
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -20603,10 +20603,10 @@ export type PalletReferendaCallLike =
|
|
|
20603
20603
|
};
|
|
20604
20604
|
};
|
|
20605
20605
|
export type FrameSupportScheduleDispatchTime = {
|
|
20606
|
-
|
|
20606
|
+
type: 'At';
|
|
20607
20607
|
value: number;
|
|
20608
20608
|
} | {
|
|
20609
|
-
|
|
20609
|
+
type: 'After';
|
|
20610
20610
|
value: number;
|
|
20611
20611
|
};
|
|
20612
20612
|
/**
|
|
@@ -20977,19 +20977,19 @@ export type PalletConvictionVotingCallLike =
|
|
|
20977
20977
|
};
|
|
20978
20978
|
};
|
|
20979
20979
|
export type PalletConvictionVotingVoteAccountVote = {
|
|
20980
|
-
|
|
20980
|
+
type: 'Standard';
|
|
20981
20981
|
value: {
|
|
20982
20982
|
vote: PalletConvictionVotingVote;
|
|
20983
20983
|
balance: bigint;
|
|
20984
20984
|
};
|
|
20985
20985
|
} | {
|
|
20986
|
-
|
|
20986
|
+
type: 'Split';
|
|
20987
20987
|
value: {
|
|
20988
20988
|
aye: bigint;
|
|
20989
20989
|
nay: bigint;
|
|
20990
20990
|
};
|
|
20991
20991
|
} | {
|
|
20992
|
-
|
|
20992
|
+
type: 'SplitAbstain';
|
|
20993
20993
|
value: {
|
|
20994
20994
|
aye: bigint;
|
|
20995
20995
|
nay: bigint;
|
|
@@ -21403,10 +21403,10 @@ export type PalletAllianceMultihash = {
|
|
|
21403
21403
|
digest: Bytes;
|
|
21404
21404
|
};
|
|
21405
21405
|
export type PalletAllianceUnscrupulousItem = {
|
|
21406
|
-
|
|
21406
|
+
type: 'AccountId';
|
|
21407
21407
|
value: AccountId32;
|
|
21408
21408
|
} | {
|
|
21409
|
-
|
|
21409
|
+
type: 'Website';
|
|
21410
21410
|
value: Bytes;
|
|
21411
21411
|
};
|
|
21412
21412
|
/**
|
|
@@ -22269,43 +22269,43 @@ export type PalletNominationPoolsCallLike =
|
|
|
22269
22269
|
};
|
|
22270
22270
|
};
|
|
22271
22271
|
export type PalletNominationPoolsBondExtra = {
|
|
22272
|
-
|
|
22272
|
+
type: 'FreeBalance';
|
|
22273
22273
|
value: bigint;
|
|
22274
22274
|
} | {
|
|
22275
|
-
|
|
22275
|
+
type: 'Rewards';
|
|
22276
22276
|
};
|
|
22277
22277
|
export type PalletNominationPoolsPoolState = 'Open' | 'Blocked' | 'Destroying';
|
|
22278
22278
|
export type PalletNominationPoolsConfigOp = {
|
|
22279
|
-
|
|
22279
|
+
type: 'Noop';
|
|
22280
22280
|
} | {
|
|
22281
|
-
|
|
22281
|
+
type: 'Set';
|
|
22282
22282
|
value: bigint;
|
|
22283
22283
|
} | {
|
|
22284
|
-
|
|
22284
|
+
type: 'Remove';
|
|
22285
22285
|
};
|
|
22286
22286
|
export type PalletNominationPoolsConfigOpU32 = {
|
|
22287
|
-
|
|
22287
|
+
type: 'Noop';
|
|
22288
22288
|
} | {
|
|
22289
|
-
|
|
22289
|
+
type: 'Set';
|
|
22290
22290
|
value: number;
|
|
22291
22291
|
} | {
|
|
22292
|
-
|
|
22292
|
+
type: 'Remove';
|
|
22293
22293
|
};
|
|
22294
22294
|
export type PalletNominationPoolsConfigOpPerbill = {
|
|
22295
|
-
|
|
22295
|
+
type: 'Noop';
|
|
22296
22296
|
} | {
|
|
22297
|
-
|
|
22297
|
+
type: 'Set';
|
|
22298
22298
|
value: Perbill;
|
|
22299
22299
|
} | {
|
|
22300
|
-
|
|
22300
|
+
type: 'Remove';
|
|
22301
22301
|
};
|
|
22302
22302
|
export type PalletNominationPoolsConfigOp004 = {
|
|
22303
|
-
|
|
22303
|
+
type: 'Noop';
|
|
22304
22304
|
} | {
|
|
22305
|
-
|
|
22305
|
+
type: 'Set';
|
|
22306
22306
|
value: AccountId32;
|
|
22307
22307
|
} | {
|
|
22308
|
-
|
|
22308
|
+
type: 'Remove';
|
|
22309
22309
|
};
|
|
22310
22310
|
export type PalletNominationPoolsClaimPermission = 'Permissioned' | 'PermissionlessCompound' | 'PermissionlessWithdraw' | 'PermissionlessAll';
|
|
22311
22311
|
export type PalletNominationPoolsCommissionChangeRate = {
|
|
@@ -22313,9 +22313,9 @@ export type PalletNominationPoolsCommissionChangeRate = {
|
|
|
22313
22313
|
minDelay: number;
|
|
22314
22314
|
};
|
|
22315
22315
|
export type PalletNominationPoolsCommissionClaimPermission = {
|
|
22316
|
-
|
|
22316
|
+
type: 'Permissionless';
|
|
22317
22317
|
} | {
|
|
22318
|
-
|
|
22318
|
+
type: 'Account';
|
|
22319
22319
|
value: AccountId32;
|
|
22320
22320
|
};
|
|
22321
22321
|
/**
|
|
@@ -22739,9 +22739,9 @@ export type PalletAssetConversionCallLike =
|
|
|
22739
22739
|
};
|
|
22740
22740
|
};
|
|
22741
22741
|
export type FrameSupportTokensFungibleUnionOfNativeOrWithId = {
|
|
22742
|
-
|
|
22742
|
+
type: 'Native';
|
|
22743
22743
|
} | {
|
|
22744
|
-
|
|
22744
|
+
type: 'WithId';
|
|
22745
22745
|
value: number;
|
|
22746
22746
|
};
|
|
22747
22747
|
/**
|
|
@@ -23387,10 +23387,10 @@ export type PalletMigrationsCallLike =
|
|
|
23387
23387
|
};
|
|
23388
23388
|
};
|
|
23389
23389
|
export type PalletMigrationsMigrationCursor = {
|
|
23390
|
-
|
|
23390
|
+
type: 'Active';
|
|
23391
23391
|
value: PalletMigrationsActiveCursor;
|
|
23392
23392
|
} | {
|
|
23393
|
-
|
|
23393
|
+
type: 'Stuck';
|
|
23394
23394
|
};
|
|
23395
23395
|
export type PalletMigrationsActiveCursor = {
|
|
23396
23396
|
index: number;
|
|
@@ -23398,10 +23398,10 @@ export type PalletMigrationsActiveCursor = {
|
|
|
23398
23398
|
startedAt: number;
|
|
23399
23399
|
};
|
|
23400
23400
|
export type PalletMigrationsHistoricCleanupSelector = {
|
|
23401
|
-
|
|
23401
|
+
type: 'Specific';
|
|
23402
23402
|
value: Array<Bytes>;
|
|
23403
23403
|
} | {
|
|
23404
|
-
|
|
23404
|
+
type: 'Wildcard';
|
|
23405
23405
|
value: {
|
|
23406
23406
|
limit?: number | undefined;
|
|
23407
23407
|
previousCursor?: Bytes | undefined;
|
|
@@ -23982,11 +23982,11 @@ export type PalletBrokerScheduleItem = {
|
|
|
23982
23982
|
};
|
|
23983
23983
|
export type PalletBrokerCoreMask = FixedBytes<10>;
|
|
23984
23984
|
export type PalletBrokerCoretimeInterfaceCoreAssignment = {
|
|
23985
|
-
|
|
23985
|
+
type: 'Idle';
|
|
23986
23986
|
} | {
|
|
23987
|
-
|
|
23987
|
+
type: 'Pool';
|
|
23988
23988
|
} | {
|
|
23989
|
-
|
|
23989
|
+
type: 'Task';
|
|
23990
23990
|
value: number;
|
|
23991
23991
|
};
|
|
23992
23992
|
export type PalletBrokerRegionId = {
|
|
@@ -24062,29 +24062,29 @@ export type PalletParametersCallLike =
|
|
|
24062
24062
|
};
|
|
24063
24063
|
};
|
|
24064
24064
|
export type KitchensinkRuntimeRuntimeParameters = {
|
|
24065
|
-
|
|
24065
|
+
type: 'Storage';
|
|
24066
24066
|
value: KitchensinkRuntimeDynamicParamsStorageParameters;
|
|
24067
24067
|
} | {
|
|
24068
|
-
|
|
24068
|
+
type: 'Contract';
|
|
24069
24069
|
value: KitchensinkRuntimeDynamicParamsContractsParameters;
|
|
24070
24070
|
};
|
|
24071
24071
|
export type KitchensinkRuntimeDynamicParamsStorageParameters = {
|
|
24072
|
-
|
|
24072
|
+
type: 'BaseDeposit';
|
|
24073
24073
|
value: [KitchensinkRuntimeDynamicParamsStorageBaseDeposit, bigint | undefined];
|
|
24074
24074
|
} | {
|
|
24075
|
-
|
|
24075
|
+
type: 'ByteDeposit';
|
|
24076
24076
|
value: [KitchensinkRuntimeDynamicParamsStorageByteDeposit, bigint | undefined];
|
|
24077
24077
|
};
|
|
24078
24078
|
export type KitchensinkRuntimeDynamicParamsStorageBaseDeposit = {};
|
|
24079
24079
|
export type KitchensinkRuntimeDynamicParamsStorageByteDeposit = {};
|
|
24080
24080
|
export type KitchensinkRuntimeDynamicParamsContractsParameters = {
|
|
24081
|
-
|
|
24081
|
+
type: 'DepositPerItem';
|
|
24082
24082
|
value: [KitchensinkRuntimeDynamicParamsContractsDepositPerItem, bigint | undefined];
|
|
24083
24083
|
} | {
|
|
24084
|
-
|
|
24084
|
+
type: 'DepositPerByte';
|
|
24085
24085
|
value: [KitchensinkRuntimeDynamicParamsContractsDepositPerByte, bigint | undefined];
|
|
24086
24086
|
} | {
|
|
24087
|
-
|
|
24087
|
+
type: 'DefaultDepositLimit';
|
|
24088
24088
|
value: [KitchensinkRuntimeDynamicParamsContractsDefaultDepositLimit, bigint | undefined];
|
|
24089
24089
|
};
|
|
24090
24090
|
export type KitchensinkRuntimeDynamicParamsContractsDepositPerItem = {};
|
|
@@ -24829,10 +24829,10 @@ export type PalletRankedCollectiveEvent =
|
|
|
24829
24829
|
};
|
|
24830
24830
|
};
|
|
24831
24831
|
export type PalletRankedCollectiveVoteRecord = {
|
|
24832
|
-
|
|
24832
|
+
type: 'Aye';
|
|
24833
24833
|
value: number;
|
|
24834
24834
|
} | {
|
|
24835
|
-
|
|
24835
|
+
type: 'Nay';
|
|
24836
24836
|
value: number;
|
|
24837
24837
|
};
|
|
24838
24838
|
/**
|
|
@@ -25140,16 +25140,16 @@ export type PalletMessageQueueEvent =
|
|
|
25140
25140
|
};
|
|
25141
25141
|
};
|
|
25142
25142
|
export type FrameSupportMessagesProcessMessageError = {
|
|
25143
|
-
|
|
25143
|
+
type: 'BadFormat';
|
|
25144
25144
|
} | {
|
|
25145
|
-
|
|
25145
|
+
type: 'Corrupt';
|
|
25146
25146
|
} | {
|
|
25147
|
-
|
|
25147
|
+
type: 'Unsupported';
|
|
25148
25148
|
} | {
|
|
25149
|
-
|
|
25149
|
+
type: 'Overweight';
|
|
25150
25150
|
value: SpWeightsWeightV2Weight;
|
|
25151
25151
|
} | {
|
|
25152
|
-
|
|
25152
|
+
type: 'Yield';
|
|
25153
25153
|
};
|
|
25154
25154
|
/**
|
|
25155
25155
|
* The `Event` enum of this pallet
|
|
@@ -25279,25 +25279,25 @@ export type SpStatementStoreStatement = {
|
|
|
25279
25279
|
data?: Bytes | undefined;
|
|
25280
25280
|
};
|
|
25281
25281
|
export type SpStatementStoreProof = {
|
|
25282
|
-
|
|
25282
|
+
type: 'Sr25519';
|
|
25283
25283
|
value: {
|
|
25284
25284
|
signature: FixedBytes<64>;
|
|
25285
25285
|
signer: FixedBytes<32>;
|
|
25286
25286
|
};
|
|
25287
25287
|
} | {
|
|
25288
|
-
|
|
25288
|
+
type: 'Ed25519';
|
|
25289
25289
|
value: {
|
|
25290
25290
|
signature: FixedBytes<64>;
|
|
25291
25291
|
signer: FixedBytes<32>;
|
|
25292
25292
|
};
|
|
25293
25293
|
} | {
|
|
25294
|
-
|
|
25294
|
+
type: 'Secp256k1Ecdsa';
|
|
25295
25295
|
value: {
|
|
25296
25296
|
signature: FixedBytes<65>;
|
|
25297
25297
|
signer: FixedBytes<33>;
|
|
25298
25298
|
};
|
|
25299
25299
|
} | {
|
|
25300
|
-
|
|
25300
|
+
type: 'OnChain';
|
|
25301
25301
|
value: {
|
|
25302
25302
|
who: FixedBytes<32>;
|
|
25303
25303
|
blockHash: FixedBytes<32>;
|
|
@@ -25982,51 +25982,51 @@ export type PalletParametersEvent =
|
|
|
25982
25982
|
};
|
|
25983
25983
|
};
|
|
25984
25984
|
export type KitchensinkRuntimeRuntimeParametersKey = {
|
|
25985
|
-
|
|
25985
|
+
type: 'Storage';
|
|
25986
25986
|
value: KitchensinkRuntimeDynamicParamsStorageParametersKey;
|
|
25987
25987
|
} | {
|
|
25988
|
-
|
|
25988
|
+
type: 'Contract';
|
|
25989
25989
|
value: KitchensinkRuntimeDynamicParamsContractsParametersKey;
|
|
25990
25990
|
};
|
|
25991
25991
|
export type KitchensinkRuntimeDynamicParamsStorageParametersKey = {
|
|
25992
|
-
|
|
25992
|
+
type: 'BaseDeposit';
|
|
25993
25993
|
value: KitchensinkRuntimeDynamicParamsStorageBaseDeposit;
|
|
25994
25994
|
} | {
|
|
25995
|
-
|
|
25995
|
+
type: 'ByteDeposit';
|
|
25996
25996
|
value: KitchensinkRuntimeDynamicParamsStorageByteDeposit;
|
|
25997
25997
|
};
|
|
25998
25998
|
export type KitchensinkRuntimeDynamicParamsContractsParametersKey = {
|
|
25999
|
-
|
|
25999
|
+
type: 'DepositPerItem';
|
|
26000
26000
|
value: KitchensinkRuntimeDynamicParamsContractsDepositPerItem;
|
|
26001
26001
|
} | {
|
|
26002
|
-
|
|
26002
|
+
type: 'DepositPerByte';
|
|
26003
26003
|
value: KitchensinkRuntimeDynamicParamsContractsDepositPerByte;
|
|
26004
26004
|
} | {
|
|
26005
|
-
|
|
26005
|
+
type: 'DefaultDepositLimit';
|
|
26006
26006
|
value: KitchensinkRuntimeDynamicParamsContractsDefaultDepositLimit;
|
|
26007
26007
|
};
|
|
26008
26008
|
export type KitchensinkRuntimeRuntimeParametersValue = {
|
|
26009
|
-
|
|
26009
|
+
type: 'Storage';
|
|
26010
26010
|
value: KitchensinkRuntimeDynamicParamsStorageParametersValue;
|
|
26011
26011
|
} | {
|
|
26012
|
-
|
|
26012
|
+
type: 'Contract';
|
|
26013
26013
|
value: KitchensinkRuntimeDynamicParamsContractsParametersValue;
|
|
26014
26014
|
};
|
|
26015
26015
|
export type KitchensinkRuntimeDynamicParamsStorageParametersValue = {
|
|
26016
|
-
|
|
26016
|
+
type: 'BaseDeposit';
|
|
26017
26017
|
value: bigint;
|
|
26018
26018
|
} | {
|
|
26019
|
-
|
|
26019
|
+
type: 'ByteDeposit';
|
|
26020
26020
|
value: bigint;
|
|
26021
26021
|
};
|
|
26022
26022
|
export type KitchensinkRuntimeDynamicParamsContractsParametersValue = {
|
|
26023
|
-
|
|
26023
|
+
type: 'DepositPerItem';
|
|
26024
26024
|
value: bigint;
|
|
26025
26025
|
} | {
|
|
26026
|
-
|
|
26026
|
+
type: 'DepositPerByte';
|
|
26027
26027
|
value: bigint;
|
|
26028
26028
|
} | {
|
|
26029
|
-
|
|
26029
|
+
type: 'DefaultDepositLimit';
|
|
26030
26030
|
value: bigint;
|
|
26031
26031
|
};
|
|
26032
26032
|
/**
|
|
@@ -26131,13 +26131,13 @@ export type PalletUtilityError =
|
|
|
26131
26131
|
**/
|
|
26132
26132
|
'TooManyCalls';
|
|
26133
26133
|
export type SpConsensusBabeDigestsPreDigest = {
|
|
26134
|
-
|
|
26134
|
+
type: 'Primary';
|
|
26135
26135
|
value: SpConsensusBabeDigestsPrimaryPreDigest;
|
|
26136
26136
|
} | {
|
|
26137
|
-
|
|
26137
|
+
type: 'SecondaryPlain';
|
|
26138
26138
|
value: SpConsensusBabeDigestsSecondaryPlainPreDigest;
|
|
26139
26139
|
} | {
|
|
26140
|
-
|
|
26140
|
+
type: 'SecondaryVRF';
|
|
26141
26141
|
value: SpConsensusBabeDigestsSecondaryVRFPreDigest;
|
|
26142
26142
|
};
|
|
26143
26143
|
export type SpConsensusBabeDigestsPrimaryPreDigest = {
|
|
@@ -26221,25 +26221,25 @@ export type PalletBalancesIdAmount = {
|
|
|
26221
26221
|
amount: bigint;
|
|
26222
26222
|
};
|
|
26223
26223
|
export type KitchensinkRuntimeRuntimeHoldReason = {
|
|
26224
|
-
|
|
26224
|
+
type: 'Contracts';
|
|
26225
26225
|
value: PalletContractsHoldReason;
|
|
26226
26226
|
} | {
|
|
26227
|
-
|
|
26227
|
+
type: 'Preimage';
|
|
26228
26228
|
value: PalletPreimageHoldReason;
|
|
26229
26229
|
} | {
|
|
26230
|
-
|
|
26230
|
+
type: 'Nis';
|
|
26231
26231
|
value: PalletNisHoldReason;
|
|
26232
26232
|
} | {
|
|
26233
|
-
|
|
26233
|
+
type: 'NftFractionalization';
|
|
26234
26234
|
value: PalletNftFractionalizationHoldReason;
|
|
26235
26235
|
} | {
|
|
26236
|
-
|
|
26236
|
+
type: 'TransactionStorage';
|
|
26237
26237
|
value: PalletTransactionStorageHoldReason;
|
|
26238
26238
|
} | {
|
|
26239
|
-
|
|
26239
|
+
type: 'StateTrieMigration';
|
|
26240
26240
|
value: PalletStateTrieMigrationHoldReason;
|
|
26241
26241
|
} | {
|
|
26242
|
-
|
|
26242
|
+
type: 'SafeMode';
|
|
26243
26243
|
value: PalletSafeModeHoldReason;
|
|
26244
26244
|
};
|
|
26245
26245
|
export type PalletContractsHoldReason = 'CodeUploadDepositReserve' | 'StorageDepositReserve';
|
|
@@ -26254,7 +26254,7 @@ export type PalletBalancesIdAmountRuntimeFreezeReason = {
|
|
|
26254
26254
|
amount: bigint;
|
|
26255
26255
|
};
|
|
26256
26256
|
export type KitchensinkRuntimeRuntimeFreezeReason = {
|
|
26257
|
-
|
|
26257
|
+
type: 'NominationPools';
|
|
26258
26258
|
value: PalletNominationPoolsFreezeReason;
|
|
26259
26259
|
};
|
|
26260
26260
|
export type PalletNominationPoolsFreezeReason = 'PoolMinBalance';
|
|
@@ -26583,10 +26583,10 @@ export type PalletSessionError =
|
|
|
26583
26583
|
**/
|
|
26584
26584
|
| 'NoAccount';
|
|
26585
26585
|
export type PalletDemocracyReferendumInfo = {
|
|
26586
|
-
|
|
26586
|
+
type: 'Ongoing';
|
|
26587
26587
|
value: PalletDemocracyReferendumStatus;
|
|
26588
26588
|
} | {
|
|
26589
|
-
|
|
26589
|
+
type: 'Finished';
|
|
26590
26590
|
value: {
|
|
26591
26591
|
approved: boolean;
|
|
26592
26592
|
end: number;
|
|
@@ -26605,14 +26605,14 @@ export type PalletDemocracyTally = {
|
|
|
26605
26605
|
turnout: bigint;
|
|
26606
26606
|
};
|
|
26607
26607
|
export type PalletDemocracyVoteVoting = {
|
|
26608
|
-
|
|
26608
|
+
type: 'Direct';
|
|
26609
26609
|
value: {
|
|
26610
26610
|
votes: Array<[number, PalletDemocracyVoteAccountVote]>;
|
|
26611
26611
|
delegations: PalletDemocracyDelegations;
|
|
26612
26612
|
prior: PalletDemocracyVotePriorLock;
|
|
26613
26613
|
};
|
|
26614
26614
|
} | {
|
|
26615
|
-
|
|
26615
|
+
type: 'Delegating';
|
|
26616
26616
|
value: {
|
|
26617
26617
|
balance: bigint;
|
|
26618
26618
|
target: AccountId32;
|
|
@@ -26881,17 +26881,17 @@ export type PalletMembershipError =
|
|
|
26881
26881
|
**/
|
|
26882
26882
|
| 'TooManyMembers';
|
|
26883
26883
|
export type PalletGrandpaStoredState = {
|
|
26884
|
-
|
|
26884
|
+
type: 'Live';
|
|
26885
26885
|
} | {
|
|
26886
|
-
|
|
26886
|
+
type: 'PendingPause';
|
|
26887
26887
|
value: {
|
|
26888
26888
|
scheduledAt: number;
|
|
26889
26889
|
delay: number;
|
|
26890
26890
|
};
|
|
26891
26891
|
} | {
|
|
26892
|
-
|
|
26892
|
+
type: 'Paused';
|
|
26893
26893
|
} | {
|
|
26894
|
-
|
|
26894
|
+
type: 'PendingResume';
|
|
26895
26895
|
value: {
|
|
26896
26896
|
scheduledAt: number;
|
|
26897
26897
|
delay: number;
|
|
@@ -26952,14 +26952,14 @@ export type PalletTreasurySpendStatus = {
|
|
|
26952
26952
|
status: PalletTreasuryPaymentState;
|
|
26953
26953
|
};
|
|
26954
26954
|
export type PalletTreasuryPaymentState = {
|
|
26955
|
-
|
|
26955
|
+
type: 'Pending';
|
|
26956
26956
|
} | {
|
|
26957
|
-
|
|
26957
|
+
type: 'Attempted';
|
|
26958
26958
|
value: {
|
|
26959
26959
|
id: [];
|
|
26960
26960
|
};
|
|
26961
26961
|
} | {
|
|
26962
|
-
|
|
26962
|
+
type: 'Failed';
|
|
26963
26963
|
};
|
|
26964
26964
|
export type FrameSupportPalletId = FixedBytes<8>;
|
|
26965
26965
|
/**
|
|
@@ -27475,10 +27475,10 @@ export type PalletSocietyBid = {
|
|
|
27475
27475
|
value: bigint;
|
|
27476
27476
|
};
|
|
27477
27477
|
export type PalletSocietyBidKind = {
|
|
27478
|
-
|
|
27478
|
+
type: 'Deposit';
|
|
27479
27479
|
value: bigint;
|
|
27480
27480
|
} | {
|
|
27481
|
-
|
|
27481
|
+
type: 'Vouch';
|
|
27482
27482
|
value: [AccountId32, bigint];
|
|
27483
27483
|
};
|
|
27484
27484
|
export type PalletSocietyCandidacy = {
|
|
@@ -27789,13 +27789,13 @@ export type PalletGluttonError =
|
|
|
27789
27789
|
**/
|
|
27790
27790
|
| 'InsaneLimit';
|
|
27791
27791
|
export type PalletPreimageOldRequestStatus = {
|
|
27792
|
-
|
|
27792
|
+
type: 'Unrequested';
|
|
27793
27793
|
value: {
|
|
27794
27794
|
deposit: [AccountId32, bigint];
|
|
27795
27795
|
len: number;
|
|
27796
27796
|
};
|
|
27797
27797
|
} | {
|
|
27798
|
-
|
|
27798
|
+
type: 'Requested';
|
|
27799
27799
|
value: {
|
|
27800
27800
|
deposit?: [AccountId32, bigint] | undefined;
|
|
27801
27801
|
count: number;
|
|
@@ -27803,13 +27803,13 @@ export type PalletPreimageOldRequestStatus = {
|
|
|
27803
27803
|
};
|
|
27804
27804
|
};
|
|
27805
27805
|
export type PalletPreimageRequestStatus = {
|
|
27806
|
-
|
|
27806
|
+
type: 'Unrequested';
|
|
27807
27807
|
value: {
|
|
27808
27808
|
ticket: [AccountId32, FrameSupportTokensFungibleHoldConsideration];
|
|
27809
27809
|
len: number;
|
|
27810
27810
|
};
|
|
27811
27811
|
} | {
|
|
27812
|
-
|
|
27812
|
+
type: 'Requested';
|
|
27813
27813
|
value: {
|
|
27814
27814
|
maybeTicket?: [AccountId32, FrameSupportTokensFungibleHoldConsideration] | undefined;
|
|
27815
27815
|
count: number;
|
|
@@ -27974,24 +27974,24 @@ export type PalletBountiesBounty = {
|
|
|
27974
27974
|
status: PalletBountiesBountyStatus;
|
|
27975
27975
|
};
|
|
27976
27976
|
export type PalletBountiesBountyStatus = {
|
|
27977
|
-
|
|
27977
|
+
type: 'Proposed';
|
|
27978
27978
|
} | {
|
|
27979
|
-
|
|
27979
|
+
type: 'Approved';
|
|
27980
27980
|
} | {
|
|
27981
|
-
|
|
27981
|
+
type: 'Funded';
|
|
27982
27982
|
} | {
|
|
27983
|
-
|
|
27983
|
+
type: 'CuratorProposed';
|
|
27984
27984
|
value: {
|
|
27985
27985
|
curator: AccountId32;
|
|
27986
27986
|
};
|
|
27987
27987
|
} | {
|
|
27988
|
-
|
|
27988
|
+
type: 'Active';
|
|
27989
27989
|
value: {
|
|
27990
27990
|
curator: AccountId32;
|
|
27991
27991
|
updateDue: number;
|
|
27992
27992
|
};
|
|
27993
27993
|
} | {
|
|
27994
|
-
|
|
27994
|
+
type: 'PendingPayout';
|
|
27995
27995
|
value: {
|
|
27996
27996
|
curator: AccountId32;
|
|
27997
27997
|
beneficiary: AccountId32;
|
|
@@ -28111,16 +28111,16 @@ export type PalletAssetsAssetAccount = {
|
|
|
28111
28111
|
};
|
|
28112
28112
|
export type PalletAssetsAccountStatus = 'Liquid' | 'Frozen' | 'Blocked';
|
|
28113
28113
|
export type PalletAssetsExistenceReason = {
|
|
28114
|
-
|
|
28114
|
+
type: 'Consumer';
|
|
28115
28115
|
} | {
|
|
28116
|
-
|
|
28116
|
+
type: 'Sufficient';
|
|
28117
28117
|
} | {
|
|
28118
|
-
|
|
28118
|
+
type: 'DepositHeld';
|
|
28119
28119
|
value: bigint;
|
|
28120
28120
|
} | {
|
|
28121
|
-
|
|
28121
|
+
type: 'DepositRefunded';
|
|
28122
28122
|
} | {
|
|
28123
|
-
|
|
28123
|
+
type: 'DepositFrom';
|
|
28124
28124
|
value: [AccountId32, bigint];
|
|
28125
28125
|
};
|
|
28126
28126
|
export type PalletAssetsApproval = {
|
|
@@ -28735,12 +28735,12 @@ export type PalletSalaryClaimantStatus = {
|
|
|
28735
28735
|
status: PalletSalaryClaimState;
|
|
28736
28736
|
};
|
|
28737
28737
|
export type PalletSalaryClaimState = {
|
|
28738
|
-
|
|
28738
|
+
type: 'Nothing';
|
|
28739
28739
|
} | {
|
|
28740
|
-
|
|
28740
|
+
type: 'Registered';
|
|
28741
28741
|
value: bigint;
|
|
28742
28742
|
} | {
|
|
28743
|
-
|
|
28743
|
+
type: 'Attempted';
|
|
28744
28744
|
value: {
|
|
28745
28745
|
registered?: bigint | undefined;
|
|
28746
28746
|
id: [];
|
|
@@ -28927,8 +28927,8 @@ export type PalletBagsListError =
|
|
|
28927
28927
|
* A error in the list interface implementation.
|
|
28928
28928
|
**/
|
|
28929
28929
|
{
|
|
28930
|
-
|
|
28931
|
-
|
|
28930
|
+
name: 'List';
|
|
28931
|
+
data: PalletBagsListListListError;
|
|
28932
28932
|
};
|
|
28933
28933
|
export type PalletBagsListListListError = 'Duplicate' | 'NotHeavier' | 'NotInSameBag' | 'NodeNotFound';
|
|
28934
28934
|
export type PalletChildBountiesChildBounty = {
|
|
@@ -28939,19 +28939,19 @@ export type PalletChildBountiesChildBounty = {
|
|
|
28939
28939
|
status: PalletChildBountiesChildBountyStatus;
|
|
28940
28940
|
};
|
|
28941
28941
|
export type PalletChildBountiesChildBountyStatus = {
|
|
28942
|
-
|
|
28942
|
+
type: 'Added';
|
|
28943
28943
|
} | {
|
|
28944
|
-
|
|
28944
|
+
type: 'CuratorProposed';
|
|
28945
28945
|
value: {
|
|
28946
28946
|
curator: AccountId32;
|
|
28947
28947
|
};
|
|
28948
28948
|
} | {
|
|
28949
|
-
|
|
28949
|
+
type: 'Active';
|
|
28950
28950
|
value: {
|
|
28951
28951
|
curator: AccountId32;
|
|
28952
28952
|
};
|
|
28953
28953
|
} | {
|
|
28954
|
-
|
|
28954
|
+
type: 'PendingPayout';
|
|
28955
28955
|
value: {
|
|
28956
28956
|
curator: AccountId32;
|
|
28957
28957
|
beneficiary: AccountId32;
|
|
@@ -28975,22 +28975,22 @@ export type PalletChildBountiesError =
|
|
|
28975
28975
|
**/
|
|
28976
28976
|
| 'TooManyChildBounties';
|
|
28977
28977
|
export type PalletReferendaReferendumInfo = {
|
|
28978
|
-
|
|
28978
|
+
type: 'Ongoing';
|
|
28979
28979
|
value: PalletReferendaReferendumStatus;
|
|
28980
28980
|
} | {
|
|
28981
|
-
|
|
28981
|
+
type: 'Approved';
|
|
28982
28982
|
value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined];
|
|
28983
28983
|
} | {
|
|
28984
|
-
|
|
28984
|
+
type: 'Rejected';
|
|
28985
28985
|
value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined];
|
|
28986
28986
|
} | {
|
|
28987
|
-
|
|
28987
|
+
type: 'Cancelled';
|
|
28988
28988
|
value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined];
|
|
28989
28989
|
} | {
|
|
28990
|
-
|
|
28990
|
+
type: 'TimedOut';
|
|
28991
28991
|
value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined];
|
|
28992
28992
|
} | {
|
|
28993
|
-
|
|
28993
|
+
type: 'Killed';
|
|
28994
28994
|
value: number;
|
|
28995
28995
|
};
|
|
28996
28996
|
export type PalletReferendaReferendumStatus = {
|
|
@@ -29026,14 +29026,14 @@ export type PalletReferendaTrackInfo = {
|
|
|
29026
29026
|
minSupport: PalletReferendaCurve;
|
|
29027
29027
|
};
|
|
29028
29028
|
export type PalletReferendaCurve = {
|
|
29029
|
-
|
|
29029
|
+
type: 'LinearDecreasing';
|
|
29030
29030
|
value: {
|
|
29031
29031
|
length: Perbill;
|
|
29032
29032
|
floor: Perbill;
|
|
29033
29033
|
ceil: Perbill;
|
|
29034
29034
|
};
|
|
29035
29035
|
} | {
|
|
29036
|
-
|
|
29036
|
+
type: 'SteppedDecreasing';
|
|
29037
29037
|
value: {
|
|
29038
29038
|
begin: Perbill;
|
|
29039
29039
|
end: Perbill;
|
|
@@ -29041,7 +29041,7 @@ export type PalletReferendaCurve = {
|
|
|
29041
29041
|
period: Perbill;
|
|
29042
29042
|
};
|
|
29043
29043
|
} | {
|
|
29044
|
-
|
|
29044
|
+
type: 'Reciprocal';
|
|
29045
29045
|
value: {
|
|
29046
29046
|
factor: FixedI64;
|
|
29047
29047
|
xOffset: FixedI64;
|
|
@@ -29117,10 +29117,10 @@ export type PalletRemarkError =
|
|
|
29117
29117
|
**/
|
|
29118
29118
|
| 'BadContext';
|
|
29119
29119
|
export type PalletConvictionVotingVoteVoting = {
|
|
29120
|
-
|
|
29120
|
+
type: 'Casting';
|
|
29121
29121
|
value: PalletConvictionVotingVoteCasting;
|
|
29122
29122
|
} | {
|
|
29123
|
-
|
|
29123
|
+
type: 'Delegating';
|
|
29124
29124
|
value: PalletConvictionVotingVoteDelegating;
|
|
29125
29125
|
};
|
|
29126
29126
|
export type PalletConvictionVotingVoteCasting = {
|
|
@@ -29368,51 +29368,51 @@ export type PalletNominationPoolsError =
|
|
|
29368
29368
|
* A (bonded) pool id does not exist.
|
|
29369
29369
|
**/
|
|
29370
29370
|
{
|
|
29371
|
-
|
|
29371
|
+
name: 'PoolNotFound';
|
|
29372
29372
|
}
|
|
29373
29373
|
/**
|
|
29374
29374
|
* An account is not a member.
|
|
29375
29375
|
**/
|
|
29376
29376
|
| {
|
|
29377
|
-
|
|
29377
|
+
name: 'PoolMemberNotFound';
|
|
29378
29378
|
}
|
|
29379
29379
|
/**
|
|
29380
29380
|
* A reward pool does not exist. In all cases this is a system logic error.
|
|
29381
29381
|
**/
|
|
29382
29382
|
| {
|
|
29383
|
-
|
|
29383
|
+
name: 'RewardPoolNotFound';
|
|
29384
29384
|
}
|
|
29385
29385
|
/**
|
|
29386
29386
|
* A sub pool does not exist.
|
|
29387
29387
|
**/
|
|
29388
29388
|
| {
|
|
29389
|
-
|
|
29389
|
+
name: 'SubPoolsNotFound';
|
|
29390
29390
|
}
|
|
29391
29391
|
/**
|
|
29392
29392
|
* An account is already delegating in another pool. An account may only belong to one
|
|
29393
29393
|
* pool at a time.
|
|
29394
29394
|
**/
|
|
29395
29395
|
| {
|
|
29396
|
-
|
|
29396
|
+
name: 'AccountBelongsToOtherPool';
|
|
29397
29397
|
}
|
|
29398
29398
|
/**
|
|
29399
29399
|
* The member is fully unbonded (and thus cannot access the bonded and reward pool
|
|
29400
29400
|
* anymore to, for example, collect rewards).
|
|
29401
29401
|
**/
|
|
29402
29402
|
| {
|
|
29403
|
-
|
|
29403
|
+
name: 'FullyUnbonding';
|
|
29404
29404
|
}
|
|
29405
29405
|
/**
|
|
29406
29406
|
* The member cannot unbond further chunks due to reaching the limit.
|
|
29407
29407
|
**/
|
|
29408
29408
|
| {
|
|
29409
|
-
|
|
29409
|
+
name: 'MaxUnbondingLimit';
|
|
29410
29410
|
}
|
|
29411
29411
|
/**
|
|
29412
29412
|
* None of the funds can be withdrawn yet because the bonding duration has not passed.
|
|
29413
29413
|
**/
|
|
29414
29414
|
| {
|
|
29415
|
-
|
|
29415
|
+
name: 'CannotWithdrawAny';
|
|
29416
29416
|
}
|
|
29417
29417
|
/**
|
|
29418
29418
|
* The amount does not meet the minimum bond to either join or create a pool.
|
|
@@ -29422,167 +29422,167 @@ export type PalletNominationPoolsError =
|
|
|
29422
29422
|
* value below `MinJoinBond`.
|
|
29423
29423
|
**/
|
|
29424
29424
|
| {
|
|
29425
|
-
|
|
29425
|
+
name: 'MinimumBondNotMet';
|
|
29426
29426
|
}
|
|
29427
29427
|
/**
|
|
29428
29428
|
* The transaction could not be executed due to overflow risk for the pool.
|
|
29429
29429
|
**/
|
|
29430
29430
|
| {
|
|
29431
|
-
|
|
29431
|
+
name: 'OverflowRisk';
|
|
29432
29432
|
}
|
|
29433
29433
|
/**
|
|
29434
29434
|
* A pool must be in [`PoolState::Destroying`] in order for the depositor to unbond or for
|
|
29435
29435
|
* other members to be permissionlessly unbonded.
|
|
29436
29436
|
**/
|
|
29437
29437
|
| {
|
|
29438
|
-
|
|
29438
|
+
name: 'NotDestroying';
|
|
29439
29439
|
}
|
|
29440
29440
|
/**
|
|
29441
29441
|
* The caller does not have nominating permissions for the pool.
|
|
29442
29442
|
**/
|
|
29443
29443
|
| {
|
|
29444
|
-
|
|
29444
|
+
name: 'NotNominator';
|
|
29445
29445
|
}
|
|
29446
29446
|
/**
|
|
29447
29447
|
* Either a) the caller cannot make a valid kick or b) the pool is not destroying.
|
|
29448
29448
|
**/
|
|
29449
29449
|
| {
|
|
29450
|
-
|
|
29450
|
+
name: 'NotKickerOrDestroying';
|
|
29451
29451
|
}
|
|
29452
29452
|
/**
|
|
29453
29453
|
* The pool is not open to join
|
|
29454
29454
|
**/
|
|
29455
29455
|
| {
|
|
29456
|
-
|
|
29456
|
+
name: 'NotOpen';
|
|
29457
29457
|
}
|
|
29458
29458
|
/**
|
|
29459
29459
|
* The system is maxed out on pools.
|
|
29460
29460
|
**/
|
|
29461
29461
|
| {
|
|
29462
|
-
|
|
29462
|
+
name: 'MaxPools';
|
|
29463
29463
|
}
|
|
29464
29464
|
/**
|
|
29465
29465
|
* Too many members in the pool or system.
|
|
29466
29466
|
**/
|
|
29467
29467
|
| {
|
|
29468
|
-
|
|
29468
|
+
name: 'MaxPoolMembers';
|
|
29469
29469
|
}
|
|
29470
29470
|
/**
|
|
29471
29471
|
* The pools state cannot be changed.
|
|
29472
29472
|
**/
|
|
29473
29473
|
| {
|
|
29474
|
-
|
|
29474
|
+
name: 'CanNotChangeState';
|
|
29475
29475
|
}
|
|
29476
29476
|
/**
|
|
29477
29477
|
* The caller does not have adequate permissions.
|
|
29478
29478
|
**/
|
|
29479
29479
|
| {
|
|
29480
|
-
|
|
29480
|
+
name: 'DoesNotHavePermission';
|
|
29481
29481
|
}
|
|
29482
29482
|
/**
|
|
29483
29483
|
* Metadata exceeds [`Config::MaxMetadataLen`]
|
|
29484
29484
|
**/
|
|
29485
29485
|
| {
|
|
29486
|
-
|
|
29486
|
+
name: 'MetadataExceedsMaxLen';
|
|
29487
29487
|
}
|
|
29488
29488
|
/**
|
|
29489
29489
|
* Some error occurred that should never happen. This should be reported to the
|
|
29490
29490
|
* maintainers.
|
|
29491
29491
|
**/
|
|
29492
29492
|
| {
|
|
29493
|
-
|
|
29494
|
-
|
|
29493
|
+
name: 'Defensive';
|
|
29494
|
+
data: PalletNominationPoolsDefensiveError;
|
|
29495
29495
|
}
|
|
29496
29496
|
/**
|
|
29497
29497
|
* Partial unbonding now allowed permissionlessly.
|
|
29498
29498
|
**/
|
|
29499
29499
|
| {
|
|
29500
|
-
|
|
29500
|
+
name: 'PartialUnbondNotAllowedPermissionlessly';
|
|
29501
29501
|
}
|
|
29502
29502
|
/**
|
|
29503
29503
|
* The pool's max commission cannot be set higher than the existing value.
|
|
29504
29504
|
**/
|
|
29505
29505
|
| {
|
|
29506
|
-
|
|
29506
|
+
name: 'MaxCommissionRestricted';
|
|
29507
29507
|
}
|
|
29508
29508
|
/**
|
|
29509
29509
|
* The supplied commission exceeds the max allowed commission.
|
|
29510
29510
|
**/
|
|
29511
29511
|
| {
|
|
29512
|
-
|
|
29512
|
+
name: 'CommissionExceedsMaximum';
|
|
29513
29513
|
}
|
|
29514
29514
|
/**
|
|
29515
29515
|
* The supplied commission exceeds global maximum commission.
|
|
29516
29516
|
**/
|
|
29517
29517
|
| {
|
|
29518
|
-
|
|
29518
|
+
name: 'CommissionExceedsGlobalMaximum';
|
|
29519
29519
|
}
|
|
29520
29520
|
/**
|
|
29521
29521
|
* Not enough blocks have surpassed since the last commission update.
|
|
29522
29522
|
**/
|
|
29523
29523
|
| {
|
|
29524
|
-
|
|
29524
|
+
name: 'CommissionChangeThrottled';
|
|
29525
29525
|
}
|
|
29526
29526
|
/**
|
|
29527
29527
|
* The submitted changes to commission change rate are not allowed.
|
|
29528
29528
|
**/
|
|
29529
29529
|
| {
|
|
29530
|
-
|
|
29530
|
+
name: 'CommissionChangeRateNotAllowed';
|
|
29531
29531
|
}
|
|
29532
29532
|
/**
|
|
29533
29533
|
* There is no pending commission to claim.
|
|
29534
29534
|
**/
|
|
29535
29535
|
| {
|
|
29536
|
-
|
|
29536
|
+
name: 'NoPendingCommission';
|
|
29537
29537
|
}
|
|
29538
29538
|
/**
|
|
29539
29539
|
* No commission current has been set.
|
|
29540
29540
|
**/
|
|
29541
29541
|
| {
|
|
29542
|
-
|
|
29542
|
+
name: 'NoCommissionCurrentSet';
|
|
29543
29543
|
}
|
|
29544
29544
|
/**
|
|
29545
29545
|
* Pool id currently in use.
|
|
29546
29546
|
**/
|
|
29547
29547
|
| {
|
|
29548
|
-
|
|
29548
|
+
name: 'PoolIdInUse';
|
|
29549
29549
|
}
|
|
29550
29550
|
/**
|
|
29551
29551
|
* Pool id provided is not correct/usable.
|
|
29552
29552
|
**/
|
|
29553
29553
|
| {
|
|
29554
|
-
|
|
29554
|
+
name: 'InvalidPoolId';
|
|
29555
29555
|
}
|
|
29556
29556
|
/**
|
|
29557
29557
|
* Bonding extra is restricted to the exact pending reward amount.
|
|
29558
29558
|
**/
|
|
29559
29559
|
| {
|
|
29560
|
-
|
|
29560
|
+
name: 'BondExtraRestricted';
|
|
29561
29561
|
}
|
|
29562
29562
|
/**
|
|
29563
29563
|
* No imbalance in the ED deposit for the pool.
|
|
29564
29564
|
**/
|
|
29565
29565
|
| {
|
|
29566
|
-
|
|
29566
|
+
name: 'NothingToAdjust';
|
|
29567
29567
|
};
|
|
29568
29568
|
export type PalletNominationPoolsDefensiveError = 'NotEnoughSpaceInUnbondPool' | 'PoolNotFound' | 'RewardPoolNotFound' | 'SubPoolsNotFound' | 'BondedStashKilledPrematurely';
|
|
29569
29569
|
export type PalletReferendaReferendumInfoTally = {
|
|
29570
|
-
|
|
29570
|
+
type: 'Ongoing';
|
|
29571
29571
|
value: PalletReferendaReferendumStatusTally;
|
|
29572
29572
|
} | {
|
|
29573
|
-
|
|
29573
|
+
type: 'Approved';
|
|
29574
29574
|
value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined];
|
|
29575
29575
|
} | {
|
|
29576
|
-
|
|
29576
|
+
type: 'Rejected';
|
|
29577
29577
|
value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined];
|
|
29578
29578
|
} | {
|
|
29579
|
-
|
|
29579
|
+
type: 'Cancelled';
|
|
29580
29580
|
value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined];
|
|
29581
29581
|
} | {
|
|
29582
|
-
|
|
29582
|
+
type: 'TimedOut';
|
|
29583
29583
|
value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined];
|
|
29584
29584
|
} | {
|
|
29585
|
-
|
|
29585
|
+
type: 'Killed';
|
|
29586
29586
|
value: number;
|
|
29587
29587
|
};
|
|
29588
29588
|
export type PalletReferendaReferendumStatusTally = {
|
|
@@ -29935,10 +29935,10 @@ export type PalletBrokerAllowedRenewalRecord = {
|
|
|
29935
29935
|
completion: PalletBrokerCompletionStatus;
|
|
29936
29936
|
};
|
|
29937
29937
|
export type PalletBrokerCompletionStatus = {
|
|
29938
|
-
|
|
29938
|
+
type: 'Partial';
|
|
29939
29939
|
value: PalletBrokerCoreMask;
|
|
29940
29940
|
} | {
|
|
29941
|
-
|
|
29941
|
+
type: 'Complete';
|
|
29942
29942
|
value: Array<PalletBrokerScheduleItem>;
|
|
29943
29943
|
};
|
|
29944
29944
|
export type PalletBrokerRegionRecord = {
|
|
@@ -30104,42 +30104,42 @@ export type SpRuntimeBlock = {
|
|
|
30104
30104
|
export type SpRuntimeExtrinsicInclusionMode = 'AllExtrinsics' | 'OnlyInherents';
|
|
30105
30105
|
export type SpCoreOpaqueMetadata = Bytes;
|
|
30106
30106
|
export type SpRuntimeTransactionValidityTransactionValidityError = {
|
|
30107
|
-
|
|
30107
|
+
type: 'Invalid';
|
|
30108
30108
|
value: SpRuntimeTransactionValidityInvalidTransaction;
|
|
30109
30109
|
} | {
|
|
30110
|
-
|
|
30110
|
+
type: 'Unknown';
|
|
30111
30111
|
value: SpRuntimeTransactionValidityUnknownTransaction;
|
|
30112
30112
|
};
|
|
30113
30113
|
export type SpRuntimeTransactionValidityInvalidTransaction = {
|
|
30114
|
-
|
|
30114
|
+
type: 'Call';
|
|
30115
30115
|
} | {
|
|
30116
|
-
|
|
30116
|
+
type: 'Payment';
|
|
30117
30117
|
} | {
|
|
30118
|
-
|
|
30118
|
+
type: 'Future';
|
|
30119
30119
|
} | {
|
|
30120
|
-
|
|
30120
|
+
type: 'Stale';
|
|
30121
30121
|
} | {
|
|
30122
|
-
|
|
30122
|
+
type: 'BadProof';
|
|
30123
30123
|
} | {
|
|
30124
|
-
|
|
30124
|
+
type: 'AncientBirthBlock';
|
|
30125
30125
|
} | {
|
|
30126
|
-
|
|
30126
|
+
type: 'ExhaustsResources';
|
|
30127
30127
|
} | {
|
|
30128
|
-
|
|
30128
|
+
type: 'Custom';
|
|
30129
30129
|
value: number;
|
|
30130
30130
|
} | {
|
|
30131
|
-
|
|
30131
|
+
type: 'BadMandatory';
|
|
30132
30132
|
} | {
|
|
30133
|
-
|
|
30133
|
+
type: 'MandatoryValidation';
|
|
30134
30134
|
} | {
|
|
30135
|
-
|
|
30135
|
+
type: 'BadSigner';
|
|
30136
30136
|
};
|
|
30137
30137
|
export type SpRuntimeTransactionValidityUnknownTransaction = {
|
|
30138
|
-
|
|
30138
|
+
type: 'CannotLookup';
|
|
30139
30139
|
} | {
|
|
30140
|
-
|
|
30140
|
+
type: 'NoUnsignedValidator';
|
|
30141
30141
|
} | {
|
|
30142
|
-
|
|
30142
|
+
type: 'Custom';
|
|
30143
30143
|
value: number;
|
|
30144
30144
|
};
|
|
30145
30145
|
export type SpInherentsInherentData = {
|
|
@@ -30198,17 +30198,17 @@ export type PalletContractsUapiFlagsReturnFlags = {
|
|
|
30198
30198
|
bits: number;
|
|
30199
30199
|
};
|
|
30200
30200
|
export type PalletContractsPrimitivesStorageDeposit = {
|
|
30201
|
-
|
|
30201
|
+
type: 'Refund';
|
|
30202
30202
|
value: bigint;
|
|
30203
30203
|
} | {
|
|
30204
|
-
|
|
30204
|
+
type: 'Charge';
|
|
30205
30205
|
value: bigint;
|
|
30206
30206
|
};
|
|
30207
30207
|
export type PalletContractsPrimitivesCode = {
|
|
30208
|
-
|
|
30208
|
+
type: 'Upload';
|
|
30209
30209
|
value: Bytes;
|
|
30210
30210
|
} | {
|
|
30211
|
-
|
|
30211
|
+
type: 'Existing';
|
|
30212
30212
|
value: H256;
|
|
30213
30213
|
};
|
|
30214
30214
|
export type PalletContractsPrimitivesContractResultResult = {
|
|
@@ -30265,193 +30265,193 @@ export type SpMixnetMixnode = {
|
|
|
30265
30265
|
externalAddresses: Array<Bytes>;
|
|
30266
30266
|
};
|
|
30267
30267
|
export type SpMixnetMixnodesErr = {
|
|
30268
|
-
|
|
30268
|
+
type: 'InsufficientRegistrations';
|
|
30269
30269
|
value: {
|
|
30270
30270
|
num: number;
|
|
30271
30271
|
min: number;
|
|
30272
30272
|
};
|
|
30273
30273
|
};
|
|
30274
30274
|
export type KitchensinkRuntimeRuntimeError = {
|
|
30275
|
-
|
|
30276
|
-
|
|
30275
|
+
pallet: 'System';
|
|
30276
|
+
palletError: FrameSystemError;
|
|
30277
30277
|
} | {
|
|
30278
|
-
|
|
30279
|
-
|
|
30278
|
+
pallet: 'Utility';
|
|
30279
|
+
palletError: PalletUtilityError;
|
|
30280
30280
|
} | {
|
|
30281
|
-
|
|
30282
|
-
|
|
30281
|
+
pallet: 'Babe';
|
|
30282
|
+
palletError: PalletBabeError;
|
|
30283
30283
|
} | {
|
|
30284
|
-
|
|
30285
|
-
|
|
30284
|
+
pallet: 'Indices';
|
|
30285
|
+
palletError: PalletIndicesError;
|
|
30286
30286
|
} | {
|
|
30287
|
-
|
|
30288
|
-
|
|
30287
|
+
pallet: 'Balances';
|
|
30288
|
+
palletError: PalletBalancesError;
|
|
30289
30289
|
} | {
|
|
30290
|
-
|
|
30291
|
-
|
|
30290
|
+
pallet: 'ElectionProviderMultiPhase';
|
|
30291
|
+
palletError: PalletElectionProviderMultiPhaseError;
|
|
30292
30292
|
} | {
|
|
30293
|
-
|
|
30294
|
-
|
|
30293
|
+
pallet: 'Staking';
|
|
30294
|
+
palletError: PalletStakingPalletError;
|
|
30295
30295
|
} | {
|
|
30296
|
-
|
|
30297
|
-
|
|
30296
|
+
pallet: 'Session';
|
|
30297
|
+
palletError: PalletSessionError;
|
|
30298
30298
|
} | {
|
|
30299
|
-
|
|
30300
|
-
|
|
30299
|
+
pallet: 'Democracy';
|
|
30300
|
+
palletError: PalletDemocracyError;
|
|
30301
30301
|
} | {
|
|
30302
|
-
|
|
30303
|
-
|
|
30302
|
+
pallet: 'Council';
|
|
30303
|
+
palletError: PalletCollectiveError;
|
|
30304
30304
|
} | {
|
|
30305
|
-
|
|
30306
|
-
|
|
30305
|
+
pallet: 'TechnicalCommittee';
|
|
30306
|
+
palletError: PalletCollectiveError;
|
|
30307
30307
|
} | {
|
|
30308
|
-
|
|
30309
|
-
|
|
30308
|
+
pallet: 'Elections';
|
|
30309
|
+
palletError: PalletElectionsPhragmenError;
|
|
30310
30310
|
} | {
|
|
30311
|
-
|
|
30312
|
-
|
|
30311
|
+
pallet: 'TechnicalMembership';
|
|
30312
|
+
palletError: PalletMembershipError;
|
|
30313
30313
|
} | {
|
|
30314
|
-
|
|
30315
|
-
|
|
30314
|
+
pallet: 'Grandpa';
|
|
30315
|
+
palletError: PalletGrandpaError;
|
|
30316
30316
|
} | {
|
|
30317
|
-
|
|
30318
|
-
|
|
30317
|
+
pallet: 'Treasury';
|
|
30318
|
+
palletError: PalletTreasuryError;
|
|
30319
30319
|
} | {
|
|
30320
|
-
|
|
30321
|
-
|
|
30320
|
+
pallet: 'AssetRate';
|
|
30321
|
+
palletError: PalletAssetRateError;
|
|
30322
30322
|
} | {
|
|
30323
|
-
|
|
30324
|
-
|
|
30323
|
+
pallet: 'Contracts';
|
|
30324
|
+
palletError: PalletContractsError;
|
|
30325
30325
|
} | {
|
|
30326
|
-
|
|
30327
|
-
|
|
30326
|
+
pallet: 'Sudo';
|
|
30327
|
+
palletError: PalletSudoError;
|
|
30328
30328
|
} | {
|
|
30329
|
-
|
|
30330
|
-
|
|
30329
|
+
pallet: 'ImOnline';
|
|
30330
|
+
palletError: PalletImOnlineError;
|
|
30331
30331
|
} | {
|
|
30332
|
-
|
|
30333
|
-
|
|
30332
|
+
pallet: 'Identity';
|
|
30333
|
+
palletError: PalletIdentityError;
|
|
30334
30334
|
} | {
|
|
30335
|
-
|
|
30336
|
-
|
|
30335
|
+
pallet: 'Society';
|
|
30336
|
+
palletError: PalletSocietyError;
|
|
30337
30337
|
} | {
|
|
30338
|
-
|
|
30339
|
-
|
|
30338
|
+
pallet: 'Recovery';
|
|
30339
|
+
palletError: PalletRecoveryError;
|
|
30340
30340
|
} | {
|
|
30341
|
-
|
|
30342
|
-
|
|
30341
|
+
pallet: 'Vesting';
|
|
30342
|
+
palletError: PalletVestingError;
|
|
30343
30343
|
} | {
|
|
30344
|
-
|
|
30345
|
-
|
|
30344
|
+
pallet: 'Scheduler';
|
|
30345
|
+
palletError: PalletSchedulerError;
|
|
30346
30346
|
} | {
|
|
30347
|
-
|
|
30348
|
-
|
|
30347
|
+
pallet: 'Glutton';
|
|
30348
|
+
palletError: PalletGluttonError;
|
|
30349
30349
|
} | {
|
|
30350
|
-
|
|
30351
|
-
|
|
30350
|
+
pallet: 'Preimage';
|
|
30351
|
+
palletError: PalletPreimageError;
|
|
30352
30352
|
} | {
|
|
30353
|
-
|
|
30354
|
-
|
|
30353
|
+
pallet: 'Proxy';
|
|
30354
|
+
palletError: PalletProxyError;
|
|
30355
30355
|
} | {
|
|
30356
|
-
|
|
30357
|
-
|
|
30356
|
+
pallet: 'Multisig';
|
|
30357
|
+
palletError: PalletMultisigError;
|
|
30358
30358
|
} | {
|
|
30359
|
-
|
|
30360
|
-
|
|
30359
|
+
pallet: 'Bounties';
|
|
30360
|
+
palletError: PalletBountiesError;
|
|
30361
30361
|
} | {
|
|
30362
|
-
|
|
30363
|
-
|
|
30362
|
+
pallet: 'Tips';
|
|
30363
|
+
palletError: PalletTipsError;
|
|
30364
30364
|
} | {
|
|
30365
|
-
|
|
30366
|
-
|
|
30365
|
+
pallet: 'Assets';
|
|
30366
|
+
palletError: PalletAssetsError;
|
|
30367
30367
|
} | {
|
|
30368
|
-
|
|
30369
|
-
|
|
30368
|
+
pallet: 'PoolAssets';
|
|
30369
|
+
palletError: PalletAssetsError;
|
|
30370
30370
|
} | {
|
|
30371
|
-
|
|
30372
|
-
|
|
30371
|
+
pallet: 'Beefy';
|
|
30372
|
+
palletError: PalletBeefyError;
|
|
30373
30373
|
} | {
|
|
30374
|
-
|
|
30375
|
-
|
|
30374
|
+
pallet: 'Lottery';
|
|
30375
|
+
palletError: PalletLotteryError;
|
|
30376
30376
|
} | {
|
|
30377
|
-
|
|
30378
|
-
|
|
30377
|
+
pallet: 'Nis';
|
|
30378
|
+
palletError: PalletNisError;
|
|
30379
30379
|
} | {
|
|
30380
|
-
|
|
30381
|
-
|
|
30380
|
+
pallet: 'Uniques';
|
|
30381
|
+
palletError: PalletUniquesError;
|
|
30382
30382
|
} | {
|
|
30383
|
-
|
|
30384
|
-
|
|
30383
|
+
pallet: 'Nfts';
|
|
30384
|
+
palletError: PalletNftsError;
|
|
30385
30385
|
} | {
|
|
30386
|
-
|
|
30387
|
-
|
|
30386
|
+
pallet: 'NftFractionalization';
|
|
30387
|
+
palletError: PalletNftFractionalizationError;
|
|
30388
30388
|
} | {
|
|
30389
|
-
|
|
30390
|
-
|
|
30389
|
+
pallet: 'Salary';
|
|
30390
|
+
palletError: PalletSalaryError;
|
|
30391
30391
|
} | {
|
|
30392
|
-
|
|
30393
|
-
|
|
30392
|
+
pallet: 'CoreFellowship';
|
|
30393
|
+
palletError: PalletCoreFellowshipError;
|
|
30394
30394
|
} | {
|
|
30395
|
-
|
|
30396
|
-
|
|
30395
|
+
pallet: 'TransactionStorage';
|
|
30396
|
+
palletError: PalletTransactionStorageError;
|
|
30397
30397
|
} | {
|
|
30398
|
-
|
|
30399
|
-
|
|
30398
|
+
pallet: 'VoterList';
|
|
30399
|
+
palletError: PalletBagsListError;
|
|
30400
30400
|
} | {
|
|
30401
|
-
|
|
30402
|
-
|
|
30401
|
+
pallet: 'StateTrieMigration';
|
|
30402
|
+
palletError: PalletStateTrieMigrationError;
|
|
30403
30403
|
} | {
|
|
30404
|
-
|
|
30405
|
-
|
|
30404
|
+
pallet: 'ChildBounties';
|
|
30405
|
+
palletError: PalletChildBountiesError;
|
|
30406
30406
|
} | {
|
|
30407
|
-
|
|
30408
|
-
|
|
30407
|
+
pallet: 'Referenda';
|
|
30408
|
+
palletError: PalletReferendaError;
|
|
30409
30409
|
} | {
|
|
30410
|
-
|
|
30411
|
-
|
|
30410
|
+
pallet: 'Remark';
|
|
30411
|
+
palletError: PalletRemarkError;
|
|
30412
30412
|
} | {
|
|
30413
|
-
|
|
30414
|
-
|
|
30413
|
+
pallet: 'ConvictionVoting';
|
|
30414
|
+
palletError: PalletConvictionVotingError;
|
|
30415
30415
|
} | {
|
|
30416
|
-
|
|
30417
|
-
|
|
30416
|
+
pallet: 'Whitelist';
|
|
30417
|
+
palletError: PalletWhitelistError;
|
|
30418
30418
|
} | {
|
|
30419
|
-
|
|
30420
|
-
|
|
30419
|
+
pallet: 'AllianceMotion';
|
|
30420
|
+
palletError: PalletCollectiveError;
|
|
30421
30421
|
} | {
|
|
30422
|
-
|
|
30423
|
-
|
|
30422
|
+
pallet: 'Alliance';
|
|
30423
|
+
palletError: PalletAllianceError;
|
|
30424
30424
|
} | {
|
|
30425
|
-
|
|
30426
|
-
|
|
30425
|
+
pallet: 'NominationPools';
|
|
30426
|
+
palletError: PalletNominationPoolsError;
|
|
30427
30427
|
} | {
|
|
30428
|
-
|
|
30429
|
-
|
|
30428
|
+
pallet: 'RankedPolls';
|
|
30429
|
+
palletError: PalletReferendaError;
|
|
30430
30430
|
} | {
|
|
30431
|
-
|
|
30432
|
-
|
|
30431
|
+
pallet: 'RankedCollective';
|
|
30432
|
+
palletError: PalletRankedCollectiveError;
|
|
30433
30433
|
} | {
|
|
30434
|
-
|
|
30435
|
-
|
|
30434
|
+
pallet: 'AssetConversion';
|
|
30435
|
+
palletError: PalletAssetConversionError;
|
|
30436
30436
|
} | {
|
|
30437
|
-
|
|
30438
|
-
|
|
30437
|
+
pallet: 'FastUnstake';
|
|
30438
|
+
palletError: PalletFastUnstakeError;
|
|
30439
30439
|
} | {
|
|
30440
|
-
|
|
30441
|
-
|
|
30440
|
+
pallet: 'MessageQueue';
|
|
30441
|
+
palletError: PalletMessageQueueError;
|
|
30442
30442
|
} | {
|
|
30443
|
-
|
|
30444
|
-
|
|
30443
|
+
pallet: 'TxPause';
|
|
30444
|
+
palletError: PalletTxPauseError;
|
|
30445
30445
|
} | {
|
|
30446
|
-
|
|
30447
|
-
|
|
30446
|
+
pallet: 'SafeMode';
|
|
30447
|
+
palletError: PalletSafeModeError;
|
|
30448
30448
|
} | {
|
|
30449
|
-
|
|
30450
|
-
|
|
30449
|
+
pallet: 'MultiBlockMigrations';
|
|
30450
|
+
palletError: PalletMigrationsError;
|
|
30451
30451
|
} | {
|
|
30452
|
-
|
|
30453
|
-
|
|
30452
|
+
pallet: 'Broker';
|
|
30453
|
+
palletError: PalletBrokerError;
|
|
30454
30454
|
} | {
|
|
30455
|
-
|
|
30456
|
-
|
|
30455
|
+
pallet: 'TasksExample';
|
|
30456
|
+
palletError: PalletExampleTasksError;
|
|
30457
30457
|
};
|