@polymeshassociation/polymesh-sdk 26.0.0-beta.2 → 26.0.0-beta.3
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/CHANGELOG.md +7 -2
- package/api/entities/Asset/types.d.ts +9 -1
- package/api/entities/Asset/types.d.ts.map +1 -1
- package/api/entities/Asset/types.js +8 -0
- package/api/entities/Asset/types.js.map +1 -1
- package/api/procedures/addInstruction.d.ts.map +1 -1
- package/api/procedures/addInstruction.js +5 -1
- package/api/procedures/addInstruction.js.map +1 -1
- package/api/procedures/modifyInstructionAffirmation.d.ts.map +1 -1
- package/api/procedures/modifyInstructionAffirmation.js +10 -2
- package/api/procedures/modifyInstructionAffirmation.js.map +1 -1
- package/base/Context.d.ts +1 -0
- package/base/Context.d.ts.map +1 -1
- package/base/Context.js +4 -3
- package/base/Context.js.map +1 -1
- package/npm-package/polymeshassociation-polymesh-sdk-26.0.0-beta.3.tgz +0 -0
- package/package.json +1 -1
- package/polkadot/augment-api-consts.d.ts +1 -0
- package/polkadot/augment-api-consts.d.ts.map +1 -1
- package/polkadot/augment-api-query.d.ts +1 -2
- package/polkadot/augment-api-query.d.ts.map +1 -1
- package/polkadot/augment-api-tx.d.ts +16 -40
- package/polkadot/augment-api-tx.d.ts.map +1 -1
- package/polkadot/lookup.d.ts +128 -128
- package/polkadot/lookup.js +136 -136
- package/polkadot/lookup.js.map +1 -1
- package/polkadot/types-lookup.d.ts +136 -136
- package/polkadot/types-lookup.d.ts.map +1 -1
- package/utils/constants.d.ts +1 -0
- package/utils/constants.d.ts.map +1 -1
- package/utils/constants.js +3 -1
- package/utils/constants.js.map +1 -1
- package/utils/conversion.d.ts +4 -0
- package/utils/conversion.d.ts.map +1 -1
- package/utils/conversion.js +13 -3
- package/utils/conversion.js.map +1 -1
- package/npm-package/polymeshassociation-polymesh-sdk-26.0.0-beta.2.tgz +0 -0
|
@@ -4295,7 +4295,7 @@ declare module "./types-lookup.ts" {
|
|
|
4295
4295
|
readonly asAffirmWithReceipts: {
|
|
4296
4296
|
readonly id: u64;
|
|
4297
4297
|
readonly receiptDetails: Vec<PolymeshPrimitivesSettlementReceiptDetails>;
|
|
4298
|
-
readonly portfolios:
|
|
4298
|
+
readonly portfolios: BTreeSet<PolymeshPrimitivesIdentityIdPortfolioId>;
|
|
4299
4299
|
} & Struct;
|
|
4300
4300
|
readonly isSetVenueFiltering: boolean;
|
|
4301
4301
|
readonly asSetVenueFiltering: {
|
|
@@ -4343,18 +4343,18 @@ declare module "./types-lookup.ts" {
|
|
|
4343
4343
|
readonly tradeDate: Option<u64>;
|
|
4344
4344
|
readonly valueDate: Option<u64>;
|
|
4345
4345
|
readonly legs: Vec<PolymeshPrimitivesSettlementLeg>;
|
|
4346
|
-
readonly portfolios:
|
|
4346
|
+
readonly portfolios: BTreeSet<PolymeshPrimitivesIdentityIdPortfolioId>;
|
|
4347
4347
|
readonly instructionMemo: Option<PolymeshPrimitivesMemo>;
|
|
4348
4348
|
} & Struct;
|
|
4349
4349
|
readonly isAffirmInstruction: boolean;
|
|
4350
4350
|
readonly asAffirmInstruction: {
|
|
4351
4351
|
readonly id: u64;
|
|
4352
|
-
readonly portfolios:
|
|
4352
|
+
readonly portfolios: BTreeSet<PolymeshPrimitivesIdentityIdPortfolioId>;
|
|
4353
4353
|
} & Struct;
|
|
4354
4354
|
readonly isWithdrawAffirmation: boolean;
|
|
4355
4355
|
readonly asWithdrawAffirmation: {
|
|
4356
4356
|
readonly id: u64;
|
|
4357
|
-
readonly portfolios:
|
|
4357
|
+
readonly portfolios: BTreeSet<PolymeshPrimitivesIdentityIdPortfolioId>;
|
|
4358
4358
|
} & Struct;
|
|
4359
4359
|
readonly isRejectInstruction: boolean;
|
|
4360
4360
|
readonly asRejectInstruction: {
|
|
@@ -4370,13 +4370,13 @@ declare module "./types-lookup.ts" {
|
|
|
4370
4370
|
readonly asAffirmWithReceiptsWithCount: {
|
|
4371
4371
|
readonly id: u64;
|
|
4372
4372
|
readonly receiptDetails: Vec<PolymeshPrimitivesSettlementReceiptDetails>;
|
|
4373
|
-
readonly portfolios:
|
|
4373
|
+
readonly portfolios: BTreeSet<PolymeshPrimitivesIdentityIdPortfolioId>;
|
|
4374
4374
|
readonly numberOfAssets: Option<PolymeshPrimitivesSettlementAffirmationCount>;
|
|
4375
4375
|
} & Struct;
|
|
4376
4376
|
readonly isAffirmInstructionWithCount: boolean;
|
|
4377
4377
|
readonly asAffirmInstructionWithCount: {
|
|
4378
4378
|
readonly id: u64;
|
|
4379
|
-
readonly portfolios:
|
|
4379
|
+
readonly portfolios: BTreeSet<PolymeshPrimitivesIdentityIdPortfolioId>;
|
|
4380
4380
|
readonly numberOfAssets: Option<PolymeshPrimitivesSettlementAffirmationCount>;
|
|
4381
4381
|
} & Struct;
|
|
4382
4382
|
readonly isRejectInstructionWithCount: boolean;
|
|
@@ -4388,7 +4388,7 @@ declare module "./types-lookup.ts" {
|
|
|
4388
4388
|
readonly isWithdrawAffirmationWithCount: boolean;
|
|
4389
4389
|
readonly asWithdrawAffirmationWithCount: {
|
|
4390
4390
|
readonly id: u64;
|
|
4391
|
-
readonly portfolios:
|
|
4391
|
+
readonly portfolios: BTreeSet<PolymeshPrimitivesIdentityIdPortfolioId>;
|
|
4392
4392
|
readonly numberOfAssets: Option<PolymeshPrimitivesSettlementAffirmationCount>;
|
|
4393
4393
|
} & Struct;
|
|
4394
4394
|
readonly isAddInstructionWithMediators: boolean;
|
|
@@ -4408,7 +4408,7 @@ declare module "./types-lookup.ts" {
|
|
|
4408
4408
|
readonly tradeDate: Option<u64>;
|
|
4409
4409
|
readonly valueDate: Option<u64>;
|
|
4410
4410
|
readonly legs: Vec<PolymeshPrimitivesSettlementLeg>;
|
|
4411
|
-
readonly portfolios:
|
|
4411
|
+
readonly portfolios: BTreeSet<PolymeshPrimitivesIdentityIdPortfolioId>;
|
|
4412
4412
|
readonly instructionMemo: Option<PolymeshPrimitivesMemo>;
|
|
4413
4413
|
readonly mediators: BTreeSet<PolymeshPrimitivesIdentityId>;
|
|
4414
4414
|
} & Struct;
|
|
@@ -4450,19 +4450,19 @@ declare module "./types-lookup.ts" {
|
|
|
4450
4450
|
/** @name SpCoreEcdsaSignature (455) */
|
|
4451
4451
|
interface SpCoreEcdsaSignature extends U8aFixed {
|
|
4452
4452
|
}
|
|
4453
|
-
/** @name PolymeshPrimitivesSettlementAffirmationCount (
|
|
4453
|
+
/** @name PolymeshPrimitivesSettlementAffirmationCount (459) */
|
|
4454
4454
|
interface PolymeshPrimitivesSettlementAffirmationCount extends Struct {
|
|
4455
4455
|
readonly senderAssetCount: PolymeshPrimitivesSettlementAssetCount;
|
|
4456
4456
|
readonly receiverAssetCount: PolymeshPrimitivesSettlementAssetCount;
|
|
4457
4457
|
readonly offchainCount: u32;
|
|
4458
4458
|
}
|
|
4459
|
-
/** @name PolymeshPrimitivesSettlementAssetCount (
|
|
4459
|
+
/** @name PolymeshPrimitivesSettlementAssetCount (460) */
|
|
4460
4460
|
interface PolymeshPrimitivesSettlementAssetCount extends Struct {
|
|
4461
4461
|
readonly fungible: u32;
|
|
4462
4462
|
readonly nonFungible: u32;
|
|
4463
4463
|
readonly offChain: u32;
|
|
4464
4464
|
}
|
|
4465
|
-
/** @name PalletStatisticsCall (
|
|
4465
|
+
/** @name PalletStatisticsCall (463) */
|
|
4466
4466
|
interface PalletStatisticsCall extends Enum {
|
|
4467
4467
|
readonly isSetActiveAssetStats: boolean;
|
|
4468
4468
|
readonly asSetActiveAssetStats: {
|
|
@@ -4488,7 +4488,7 @@ declare module "./types-lookup.ts" {
|
|
|
4488
4488
|
} & Struct;
|
|
4489
4489
|
readonly type: 'SetActiveAssetStats' | 'BatchUpdateAssetStats' | 'SetAssetTransferCompliance' | 'SetEntitiesExempt';
|
|
4490
4490
|
}
|
|
4491
|
-
/** @name PalletStoCall (
|
|
4491
|
+
/** @name PalletStoCall (467) */
|
|
4492
4492
|
interface PalletStoCall extends Enum {
|
|
4493
4493
|
readonly isCreateFundraiser: boolean;
|
|
4494
4494
|
readonly asCreateFundraiser: {
|
|
@@ -4537,12 +4537,12 @@ declare module "./types-lookup.ts" {
|
|
|
4537
4537
|
} & Struct;
|
|
4538
4538
|
readonly type: 'CreateFundraiser' | 'Invest' | 'FreezeFundraiser' | 'UnfreezeFundraiser' | 'ModifyFundraiserWindow' | 'Stop';
|
|
4539
4539
|
}
|
|
4540
|
-
/** @name PalletStoPriceTier (
|
|
4540
|
+
/** @name PalletStoPriceTier (469) */
|
|
4541
4541
|
interface PalletStoPriceTier extends Struct {
|
|
4542
4542
|
readonly total: u128;
|
|
4543
4543
|
readonly price: u128;
|
|
4544
4544
|
}
|
|
4545
|
-
/** @name PalletTreasuryCall (
|
|
4545
|
+
/** @name PalletTreasuryCall (471) */
|
|
4546
4546
|
interface PalletTreasuryCall extends Enum {
|
|
4547
4547
|
readonly isDisbursement: boolean;
|
|
4548
4548
|
readonly asDisbursement: {
|
|
@@ -4554,12 +4554,12 @@ declare module "./types-lookup.ts" {
|
|
|
4554
4554
|
} & Struct;
|
|
4555
4555
|
readonly type: 'Disbursement' | 'Reimbursement';
|
|
4556
4556
|
}
|
|
4557
|
-
/** @name PolymeshPrimitivesBeneficiary (
|
|
4557
|
+
/** @name PolymeshPrimitivesBeneficiary (473) */
|
|
4558
4558
|
interface PolymeshPrimitivesBeneficiary extends Struct {
|
|
4559
4559
|
readonly id: PolymeshPrimitivesIdentityId;
|
|
4560
4560
|
readonly amount: u128;
|
|
4561
4561
|
}
|
|
4562
|
-
/** @name PalletUtilityCall (
|
|
4562
|
+
/** @name PalletUtilityCall (474) */
|
|
4563
4563
|
interface PalletUtilityCall extends Enum {
|
|
4564
4564
|
readonly isBatch: boolean;
|
|
4565
4565
|
readonly asBatch: {
|
|
@@ -4596,12 +4596,12 @@ declare module "./types-lookup.ts" {
|
|
|
4596
4596
|
} & Struct;
|
|
4597
4597
|
readonly type: 'Batch' | 'RelayTx' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight' | 'AsDerivative';
|
|
4598
4598
|
}
|
|
4599
|
-
/** @name PalletUtilityUniqueCall (
|
|
4599
|
+
/** @name PalletUtilityUniqueCall (476) */
|
|
4600
4600
|
interface PalletUtilityUniqueCall extends Struct {
|
|
4601
4601
|
readonly nonce: u64;
|
|
4602
4602
|
readonly call: Call;
|
|
4603
4603
|
}
|
|
4604
|
-
/** @name PolymeshRuntimeDevelopRuntimeOriginCaller (
|
|
4604
|
+
/** @name PolymeshRuntimeDevelopRuntimeOriginCaller (477) */
|
|
4605
4605
|
interface PolymeshRuntimeDevelopRuntimeOriginCaller extends Enum {
|
|
4606
4606
|
readonly isSystem: boolean;
|
|
4607
4607
|
readonly asSystem: FrameSupportDispatchRawOrigin;
|
|
@@ -4614,7 +4614,7 @@ declare module "./types-lookup.ts" {
|
|
|
4614
4614
|
readonly asUpgradeCommittee: PalletCommitteeRawOriginInstance4;
|
|
4615
4615
|
readonly type: 'System' | 'Void' | 'PolymeshCommittee' | 'TechnicalCommittee' | 'UpgradeCommittee';
|
|
4616
4616
|
}
|
|
4617
|
-
/** @name FrameSupportDispatchRawOrigin (
|
|
4617
|
+
/** @name FrameSupportDispatchRawOrigin (478) */
|
|
4618
4618
|
interface FrameSupportDispatchRawOrigin extends Enum {
|
|
4619
4619
|
readonly isRoot: boolean;
|
|
4620
4620
|
readonly isSigned: boolean;
|
|
@@ -4622,26 +4622,26 @@ declare module "./types-lookup.ts" {
|
|
|
4622
4622
|
readonly isNone: boolean;
|
|
4623
4623
|
readonly type: 'Root' | 'Signed' | 'None';
|
|
4624
4624
|
}
|
|
4625
|
-
/** @name PalletCommitteeRawOriginInstance1 (
|
|
4625
|
+
/** @name PalletCommitteeRawOriginInstance1 (479) */
|
|
4626
4626
|
interface PalletCommitteeRawOriginInstance1 extends Enum {
|
|
4627
4627
|
readonly isEndorsed: boolean;
|
|
4628
4628
|
readonly type: 'Endorsed';
|
|
4629
4629
|
}
|
|
4630
|
-
/** @name PalletCommitteeRawOriginInstance3 (
|
|
4630
|
+
/** @name PalletCommitteeRawOriginInstance3 (480) */
|
|
4631
4631
|
interface PalletCommitteeRawOriginInstance3 extends Enum {
|
|
4632
4632
|
readonly isEndorsed: boolean;
|
|
4633
4633
|
readonly type: 'Endorsed';
|
|
4634
4634
|
}
|
|
4635
|
-
/** @name PalletCommitteeRawOriginInstance4 (
|
|
4635
|
+
/** @name PalletCommitteeRawOriginInstance4 (481) */
|
|
4636
4636
|
interface PalletCommitteeRawOriginInstance4 extends Enum {
|
|
4637
4637
|
readonly isEndorsed: boolean;
|
|
4638
4638
|
readonly type: 'Endorsed';
|
|
4639
4639
|
}
|
|
4640
|
-
/** @name SpCoreVoid (
|
|
4640
|
+
/** @name SpCoreVoid (482) */
|
|
4641
4641
|
type SpCoreVoid = Null;
|
|
4642
|
-
/** @name PalletBaseCall (
|
|
4642
|
+
/** @name PalletBaseCall (483) */
|
|
4643
4643
|
type PalletBaseCall = Null;
|
|
4644
|
-
/** @name PalletExternalAgentsCall (
|
|
4644
|
+
/** @name PalletExternalAgentsCall (484) */
|
|
4645
4645
|
interface PalletExternalAgentsCall extends Enum {
|
|
4646
4646
|
readonly isCreateGroup: boolean;
|
|
4647
4647
|
readonly asCreateGroup: {
|
|
@@ -4688,7 +4688,7 @@ declare module "./types-lookup.ts" {
|
|
|
4688
4688
|
} & Struct;
|
|
4689
4689
|
readonly type: 'CreateGroup' | 'SetGroupPermissions' | 'RemoveAgent' | 'Abdicate' | 'ChangeGroup' | 'AcceptBecomeAgent' | 'CreateGroupAndAddAuth' | 'CreateAndChangeCustomGroup';
|
|
4690
4690
|
}
|
|
4691
|
-
/** @name PalletRelayerCall (
|
|
4691
|
+
/** @name PalletRelayerCall (485) */
|
|
4692
4692
|
interface PalletRelayerCall extends Enum {
|
|
4693
4693
|
readonly isSetPayingKey: boolean;
|
|
4694
4694
|
readonly asSetPayingKey: {
|
|
@@ -4721,7 +4721,7 @@ declare module "./types-lookup.ts" {
|
|
|
4721
4721
|
} & Struct;
|
|
4722
4722
|
readonly type: 'SetPayingKey' | 'AcceptPayingKey' | 'RemovePayingKey' | 'UpdatePolyxLimit' | 'IncreasePolyxLimit' | 'DecreasePolyxLimit';
|
|
4723
4723
|
}
|
|
4724
|
-
/** @name PalletContractsCall (
|
|
4724
|
+
/** @name PalletContractsCall (486) */
|
|
4725
4725
|
interface PalletContractsCall extends Enum {
|
|
4726
4726
|
readonly isCallOldWeight: boolean;
|
|
4727
4727
|
readonly asCallOldWeight: {
|
|
@@ -4792,13 +4792,13 @@ declare module "./types-lookup.ts" {
|
|
|
4792
4792
|
} & Struct;
|
|
4793
4793
|
readonly type: 'CallOldWeight' | 'InstantiateWithCodeOldWeight' | 'InstantiateOldWeight' | 'UploadCode' | 'RemoveCode' | 'SetCode' | 'Call' | 'InstantiateWithCode' | 'Instantiate';
|
|
4794
4794
|
}
|
|
4795
|
-
/** @name PalletContractsWasmDeterminism (
|
|
4795
|
+
/** @name PalletContractsWasmDeterminism (490) */
|
|
4796
4796
|
interface PalletContractsWasmDeterminism extends Enum {
|
|
4797
4797
|
readonly isDeterministic: boolean;
|
|
4798
4798
|
readonly isAllowIndeterminism: boolean;
|
|
4799
4799
|
readonly type: 'Deterministic' | 'AllowIndeterminism';
|
|
4800
4800
|
}
|
|
4801
|
-
/** @name PolymeshContractsCall (
|
|
4801
|
+
/** @name PolymeshContractsCall (491) */
|
|
4802
4802
|
interface PolymeshContractsCall extends Enum {
|
|
4803
4803
|
readonly isInstantiateWithCodePerms: boolean;
|
|
4804
4804
|
readonly asInstantiateWithCodePerms: {
|
|
@@ -4849,16 +4849,16 @@ declare module "./types-lookup.ts" {
|
|
|
4849
4849
|
} & Struct;
|
|
4850
4850
|
readonly type: 'InstantiateWithCodePerms' | 'InstantiateWithHashPerms' | 'UpdateCallRuntimeWhitelist' | 'InstantiateWithCodeAsPrimaryKey' | 'InstantiateWithHashAsPrimaryKey' | 'UpgradeApi';
|
|
4851
4851
|
}
|
|
4852
|
-
/** @name PolymeshContractsNextUpgrade (
|
|
4852
|
+
/** @name PolymeshContractsNextUpgrade (494) */
|
|
4853
4853
|
interface PolymeshContractsNextUpgrade extends Struct {
|
|
4854
4854
|
readonly chainVersion: PolymeshContractsChainVersion;
|
|
4855
4855
|
readonly apiHash: PolymeshContractsApiCodeHash;
|
|
4856
4856
|
}
|
|
4857
|
-
/** @name PolymeshContractsApiCodeHash (
|
|
4857
|
+
/** @name PolymeshContractsApiCodeHash (495) */
|
|
4858
4858
|
interface PolymeshContractsApiCodeHash extends Struct {
|
|
4859
4859
|
readonly hash_: H256;
|
|
4860
4860
|
}
|
|
4861
|
-
/** @name PalletPreimageCall (
|
|
4861
|
+
/** @name PalletPreimageCall (496) */
|
|
4862
4862
|
interface PalletPreimageCall extends Enum {
|
|
4863
4863
|
readonly isNotePreimage: boolean;
|
|
4864
4864
|
readonly asNotePreimage: {
|
|
@@ -4878,7 +4878,7 @@ declare module "./types-lookup.ts" {
|
|
|
4878
4878
|
} & Struct;
|
|
4879
4879
|
readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage';
|
|
4880
4880
|
}
|
|
4881
|
-
/** @name PalletNftCall (
|
|
4881
|
+
/** @name PalletNftCall (497) */
|
|
4882
4882
|
interface PalletNftCall extends Enum {
|
|
4883
4883
|
readonly isCreateNftCollection: boolean;
|
|
4884
4884
|
readonly asCreateNftCollection: {
|
|
@@ -4907,15 +4907,15 @@ declare module "./types-lookup.ts" {
|
|
|
4907
4907
|
} & Struct;
|
|
4908
4908
|
readonly type: 'CreateNftCollection' | 'IssueNft' | 'RedeemNft' | 'ControllerTransfer';
|
|
4909
4909
|
}
|
|
4910
|
-
/** @name PolymeshPrimitivesNftNftCollectionKeys (
|
|
4910
|
+
/** @name PolymeshPrimitivesNftNftCollectionKeys (500) */
|
|
4911
4911
|
interface PolymeshPrimitivesNftNftCollectionKeys extends Vec<PolymeshPrimitivesAssetMetadataAssetMetadataKey> {
|
|
4912
4912
|
}
|
|
4913
|
-
/** @name PolymeshPrimitivesNftNftMetadataAttribute (
|
|
4913
|
+
/** @name PolymeshPrimitivesNftNftMetadataAttribute (503) */
|
|
4914
4914
|
interface PolymeshPrimitivesNftNftMetadataAttribute extends Struct {
|
|
4915
4915
|
readonly key: PolymeshPrimitivesAssetMetadataAssetMetadataKey;
|
|
4916
4916
|
readonly value: Bytes;
|
|
4917
4917
|
}
|
|
4918
|
-
/** @name PalletElectionProviderMultiPhaseCall (
|
|
4918
|
+
/** @name PalletElectionProviderMultiPhaseCall (505) */
|
|
4919
4919
|
interface PalletElectionProviderMultiPhaseCall extends Enum {
|
|
4920
4920
|
readonly isSubmitUnsigned: boolean;
|
|
4921
4921
|
readonly asSubmitUnsigned: {
|
|
@@ -4941,13 +4941,13 @@ declare module "./types-lookup.ts" {
|
|
|
4941
4941
|
} & Struct;
|
|
4942
4942
|
readonly type: 'SubmitUnsigned' | 'SetMinimumUntrustedScore' | 'SetEmergencyElectionResult' | 'Submit' | 'GovernanceFallback';
|
|
4943
4943
|
}
|
|
4944
|
-
/** @name PalletElectionProviderMultiPhaseRawSolution (
|
|
4944
|
+
/** @name PalletElectionProviderMultiPhaseRawSolution (506) */
|
|
4945
4945
|
interface PalletElectionProviderMultiPhaseRawSolution extends Struct {
|
|
4946
4946
|
readonly solution: PolymeshRuntimeCommonNposSolution16;
|
|
4947
4947
|
readonly score: SpNposElectionsElectionScore;
|
|
4948
4948
|
readonly round: u32;
|
|
4949
4949
|
}
|
|
4950
|
-
/** @name PolymeshRuntimeCommonNposSolution16 (
|
|
4950
|
+
/** @name PolymeshRuntimeCommonNposSolution16 (507) */
|
|
4951
4951
|
interface PolymeshRuntimeCommonNposSolution16 extends Struct {
|
|
4952
4952
|
readonly votes1: Vec<ITuple<[Compact<u32>, Compact<u16>]>>;
|
|
4953
4953
|
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<PerU16>]>, Compact<u16>]>>;
|
|
@@ -4966,17 +4966,17 @@ declare module "./types-lookup.ts" {
|
|
|
4966
4966
|
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
|
4967
4967
|
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
|
4968
4968
|
}
|
|
4969
|
-
/** @name PalletElectionProviderMultiPhaseSolutionOrSnapshotSize (
|
|
4969
|
+
/** @name PalletElectionProviderMultiPhaseSolutionOrSnapshotSize (558) */
|
|
4970
4970
|
interface PalletElectionProviderMultiPhaseSolutionOrSnapshotSize extends Struct {
|
|
4971
4971
|
readonly voters: Compact<u32>;
|
|
4972
4972
|
readonly targets: Compact<u32>;
|
|
4973
4973
|
}
|
|
4974
|
-
/** @name SpNposElectionsSupport (
|
|
4974
|
+
/** @name SpNposElectionsSupport (562) */
|
|
4975
4975
|
interface SpNposElectionsSupport extends Struct {
|
|
4976
4976
|
readonly total: u128;
|
|
4977
4977
|
readonly voters: Vec<ITuple<[AccountId32, u128]>>;
|
|
4978
4978
|
}
|
|
4979
|
-
/** @name PalletTestUtilsCall (
|
|
4979
|
+
/** @name PalletTestUtilsCall (565) */
|
|
4980
4980
|
interface PalletTestUtilsCall extends Enum {
|
|
4981
4981
|
readonly isRegisterDid: boolean;
|
|
4982
4982
|
readonly asRegisterDid: {
|
|
@@ -4993,14 +4993,14 @@ declare module "./types-lookup.ts" {
|
|
|
4993
4993
|
} & Struct;
|
|
4994
4994
|
readonly type: 'RegisterDid' | 'MockCddRegisterDid' | 'GetMyDid' | 'GetCddOf';
|
|
4995
4995
|
}
|
|
4996
|
-
/** @name PalletCommitteePolymeshVotes (
|
|
4996
|
+
/** @name PalletCommitteePolymeshVotes (566) */
|
|
4997
4997
|
interface PalletCommitteePolymeshVotes extends Struct {
|
|
4998
4998
|
readonly index: u32;
|
|
4999
4999
|
readonly ayes: Vec<PolymeshPrimitivesIdentityId>;
|
|
5000
5000
|
readonly nays: Vec<PolymeshPrimitivesIdentityId>;
|
|
5001
5001
|
readonly expiry: PolymeshCommonUtilitiesMaybeBlock;
|
|
5002
5002
|
}
|
|
5003
|
-
/** @name PalletCommitteeError (
|
|
5003
|
+
/** @name PalletCommitteeError (568) */
|
|
5004
5004
|
interface PalletCommitteeError extends Enum {
|
|
5005
5005
|
readonly isDuplicateVote: boolean;
|
|
5006
5006
|
readonly isNotAMember: boolean;
|
|
@@ -5013,12 +5013,12 @@ declare module "./types-lookup.ts" {
|
|
|
5013
5013
|
readonly isProposalsLimitReached: boolean;
|
|
5014
5014
|
readonly type: 'DuplicateVote' | 'NotAMember' | 'NoSuchProposal' | 'ProposalExpired' | 'DuplicateProposal' | 'MismatchedVotingIndex' | 'InvalidProportion' | 'FirstVoteReject' | 'ProposalsLimitReached';
|
|
5015
5015
|
}
|
|
5016
|
-
/** @name PolymeshPrimitivesMultisigProposalVoteCount (
|
|
5016
|
+
/** @name PolymeshPrimitivesMultisigProposalVoteCount (577) */
|
|
5017
5017
|
interface PolymeshPrimitivesMultisigProposalVoteCount extends Struct {
|
|
5018
5018
|
readonly approvals: u64;
|
|
5019
5019
|
readonly rejections: u64;
|
|
5020
5020
|
}
|
|
5021
|
-
/** @name PolymeshPrimitivesMultisigProposalState (
|
|
5021
|
+
/** @name PolymeshPrimitivesMultisigProposalState (578) */
|
|
5022
5022
|
interface PolymeshPrimitivesMultisigProposalState extends Enum {
|
|
5023
5023
|
readonly isActive: boolean;
|
|
5024
5024
|
readonly asActive: {
|
|
@@ -5029,7 +5029,7 @@ declare module "./types-lookup.ts" {
|
|
|
5029
5029
|
readonly isRejected: boolean;
|
|
5030
5030
|
readonly type: 'Active' | 'ExecutionSuccessful' | 'ExecutionFailed' | 'Rejected';
|
|
5031
5031
|
}
|
|
5032
|
-
/** @name PalletMultisigError (
|
|
5032
|
+
/** @name PalletMultisigError (580) */
|
|
5033
5033
|
interface PalletMultisigError extends Enum {
|
|
5034
5034
|
readonly isProposalMissing: boolean;
|
|
5035
5035
|
readonly isDecodingError: boolean;
|
|
@@ -5058,14 +5058,14 @@ declare module "./types-lookup.ts" {
|
|
|
5058
5058
|
readonly isAdminNotFound: boolean;
|
|
5059
5059
|
readonly type: 'ProposalMissing' | 'DecodingError' | 'RequiredSignersIsZero' | 'NotASigner' | 'NoSuchMultisig' | 'NotEnoughSigners' | 'NonceOverflow' | 'AlreadyVoted' | 'AlreadyASigner' | 'IdentityNotAdmin' | 'IdentityNotPayer' | 'ChangeNotAllowed' | 'SignerAlreadyLinkedToMultisig' | 'SignerAlreadyLinkedToIdentity' | 'NestingNotAllowed' | 'ProposalAlreadyRejected' | 'ProposalExpired' | 'ProposalAlreadyExecuted' | 'MaxWeightTooLow' | 'MultisigMissingIdentity' | 'TooManySigners' | 'NoPayingDid' | 'InvalidExpiryDate' | 'InvalidatedProposal' | 'AdminNotFound';
|
|
5060
5060
|
}
|
|
5061
|
-
/** @name PalletBridgeBridgeTxDetail (
|
|
5061
|
+
/** @name PalletBridgeBridgeTxDetail (582) */
|
|
5062
5062
|
interface PalletBridgeBridgeTxDetail extends Struct {
|
|
5063
5063
|
readonly amount: u128;
|
|
5064
5064
|
readonly status: PalletBridgeBridgeTxStatus;
|
|
5065
5065
|
readonly executionBlock: u32;
|
|
5066
5066
|
readonly txHash: H256;
|
|
5067
5067
|
}
|
|
5068
|
-
/** @name PalletBridgeBridgeTxStatus (
|
|
5068
|
+
/** @name PalletBridgeBridgeTxStatus (583) */
|
|
5069
5069
|
interface PalletBridgeBridgeTxStatus extends Enum {
|
|
5070
5070
|
readonly isAbsent: boolean;
|
|
5071
5071
|
readonly isPending: boolean;
|
|
@@ -5075,7 +5075,7 @@ declare module "./types-lookup.ts" {
|
|
|
5075
5075
|
readonly isHandled: boolean;
|
|
5076
5076
|
readonly type: 'Absent' | 'Pending' | 'Frozen' | 'Timelocked' | 'Handled';
|
|
5077
5077
|
}
|
|
5078
|
-
/** @name PalletStakingStakingLedger (
|
|
5078
|
+
/** @name PalletStakingStakingLedger (586) */
|
|
5079
5079
|
interface PalletStakingStakingLedger extends Struct {
|
|
5080
5080
|
readonly stash: AccountId32;
|
|
5081
5081
|
readonly total: Compact<u128>;
|
|
@@ -5083,28 +5083,28 @@ declare module "./types-lookup.ts" {
|
|
|
5083
5083
|
readonly unlocking: Vec<PalletStakingUnlockChunk>;
|
|
5084
5084
|
readonly claimedRewards: Vec<u32>;
|
|
5085
5085
|
}
|
|
5086
|
-
/** @name PalletStakingUnlockChunk (
|
|
5086
|
+
/** @name PalletStakingUnlockChunk (588) */
|
|
5087
5087
|
interface PalletStakingUnlockChunk extends Struct {
|
|
5088
5088
|
readonly value: Compact<u128>;
|
|
5089
5089
|
readonly era: Compact<u32>;
|
|
5090
5090
|
}
|
|
5091
|
-
/** @name PalletStakingNominations (
|
|
5091
|
+
/** @name PalletStakingNominations (591) */
|
|
5092
5092
|
interface PalletStakingNominations extends Struct {
|
|
5093
5093
|
readonly targets: Vec<AccountId32>;
|
|
5094
5094
|
readonly submittedIn: u32;
|
|
5095
5095
|
readonly suppressed: bool;
|
|
5096
5096
|
}
|
|
5097
|
-
/** @name PalletStakingActiveEraInfo (
|
|
5097
|
+
/** @name PalletStakingActiveEraInfo (593) */
|
|
5098
5098
|
interface PalletStakingActiveEraInfo extends Struct {
|
|
5099
5099
|
readonly index: u32;
|
|
5100
5100
|
readonly start: Option<u64>;
|
|
5101
5101
|
}
|
|
5102
|
-
/** @name PalletStakingEraRewardPoints (
|
|
5102
|
+
/** @name PalletStakingEraRewardPoints (595) */
|
|
5103
5103
|
interface PalletStakingEraRewardPoints extends Struct {
|
|
5104
5104
|
readonly total: u32;
|
|
5105
5105
|
readonly individual: BTreeMap<AccountId32, u32>;
|
|
5106
5106
|
}
|
|
5107
|
-
/** @name PalletStakingUnappliedSlash (
|
|
5107
|
+
/** @name PalletStakingUnappliedSlash (599) */
|
|
5108
5108
|
interface PalletStakingUnappliedSlash extends Struct {
|
|
5109
5109
|
readonly validator: AccountId32;
|
|
5110
5110
|
readonly own: u128;
|
|
@@ -5112,24 +5112,24 @@ declare module "./types-lookup.ts" {
|
|
|
5112
5112
|
readonly reporters: Vec<AccountId32>;
|
|
5113
5113
|
readonly payout: u128;
|
|
5114
5114
|
}
|
|
5115
|
-
/** @name PalletStakingSlashingSlashingSpans (
|
|
5115
|
+
/** @name PalletStakingSlashingSlashingSpans (601) */
|
|
5116
5116
|
interface PalletStakingSlashingSlashingSpans extends Struct {
|
|
5117
5117
|
readonly spanIndex: u32;
|
|
5118
5118
|
readonly lastStart: u32;
|
|
5119
5119
|
readonly lastNonzeroSlash: u32;
|
|
5120
5120
|
readonly prior: Vec<u32>;
|
|
5121
5121
|
}
|
|
5122
|
-
/** @name PalletStakingSlashingSpanRecord (
|
|
5122
|
+
/** @name PalletStakingSlashingSpanRecord (602) */
|
|
5123
5123
|
interface PalletStakingSlashingSpanRecord extends Struct {
|
|
5124
5124
|
readonly slashed: u128;
|
|
5125
5125
|
readonly paidOut: u128;
|
|
5126
5126
|
}
|
|
5127
|
-
/** @name PalletStakingPermissionedIdentityPrefs (
|
|
5127
|
+
/** @name PalletStakingPermissionedIdentityPrefs (605) */
|
|
5128
5128
|
interface PalletStakingPermissionedIdentityPrefs extends Struct {
|
|
5129
5129
|
readonly intendedCount: u32;
|
|
5130
5130
|
readonly runningCount: u32;
|
|
5131
5131
|
}
|
|
5132
|
-
/** @name PalletStakingPalletError (
|
|
5132
|
+
/** @name PalletStakingPalletError (607) */
|
|
5133
5133
|
interface PalletStakingPalletError extends Enum {
|
|
5134
5134
|
readonly isNotController: boolean;
|
|
5135
5135
|
readonly isNotStash: boolean;
|
|
@@ -5168,15 +5168,15 @@ declare module "./types-lookup.ts" {
|
|
|
5168
5168
|
readonly isCommissionUnchanged: boolean;
|
|
5169
5169
|
readonly type: 'NotController' | 'NotStash' | 'AlreadyBonded' | 'AlreadyPaired' | 'EmptyTargets' | 'DuplicateIndex' | 'InvalidSlashIndex' | 'InsufficientBond' | 'NoMoreChunks' | 'NoUnlockChunk' | 'FundedTarget' | 'InvalidEraToReward' | 'InvalidNumberOfNominations' | 'NotSortedAndUnique' | 'AlreadyClaimed' | 'IncorrectHistoryDepth' | 'IncorrectSlashingSpans' | 'BadState' | 'TooManyTargets' | 'BadTarget' | 'CannotChillOther' | 'TooManyNominators' | 'TooManyValidators' | 'CommissionTooLow' | 'BoundNotMet' | 'StashIdentityDoesNotExist' | 'StashIdentityNotPermissioned' | 'StashIdentityNotCDDed' | 'IdentityIsAlreadyPermissioned' | 'IdentityIsMissingCDD' | 'IntendedCountIsExceedingConsensusLimit' | 'IdentityNotFound' | 'ValidatorNotFound' | 'CommissionTooHigh' | 'CommissionUnchanged';
|
|
5170
5170
|
}
|
|
5171
|
-
/** @name SpStakingOffenceOffenceDetails (
|
|
5171
|
+
/** @name SpStakingOffenceOffenceDetails (608) */
|
|
5172
5172
|
interface SpStakingOffenceOffenceDetails extends Struct {
|
|
5173
5173
|
readonly offender: ITuple<[AccountId32, PalletStakingExposure]>;
|
|
5174
5174
|
readonly reporters: Vec<AccountId32>;
|
|
5175
5175
|
}
|
|
5176
|
-
/** @name SpCoreCryptoKeyTypeId (
|
|
5176
|
+
/** @name SpCoreCryptoKeyTypeId (613) */
|
|
5177
5177
|
interface SpCoreCryptoKeyTypeId extends U8aFixed {
|
|
5178
5178
|
}
|
|
5179
|
-
/** @name PalletSessionError (
|
|
5179
|
+
/** @name PalletSessionError (614) */
|
|
5180
5180
|
interface PalletSessionError extends Enum {
|
|
5181
5181
|
readonly isInvalidProof: boolean;
|
|
5182
5182
|
readonly isNoAssociatedValidatorId: boolean;
|
|
@@ -5185,7 +5185,7 @@ declare module "./types-lookup.ts" {
|
|
|
5185
5185
|
readonly isNoAccount: boolean;
|
|
5186
5186
|
readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
|
|
5187
5187
|
}
|
|
5188
|
-
/** @name PalletGrandpaStoredState (
|
|
5188
|
+
/** @name PalletGrandpaStoredState (615) */
|
|
5189
5189
|
interface PalletGrandpaStoredState extends Enum {
|
|
5190
5190
|
readonly isLive: boolean;
|
|
5191
5191
|
readonly isPendingPause: boolean;
|
|
@@ -5201,14 +5201,14 @@ declare module "./types-lookup.ts" {
|
|
|
5201
5201
|
} & Struct;
|
|
5202
5202
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
5203
5203
|
}
|
|
5204
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
5204
|
+
/** @name PalletGrandpaStoredPendingChange (616) */
|
|
5205
5205
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
5206
5206
|
readonly scheduledAt: u32;
|
|
5207
5207
|
readonly delay: u32;
|
|
5208
5208
|
readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
|
|
5209
5209
|
readonly forced: Option<u32>;
|
|
5210
5210
|
}
|
|
5211
|
-
/** @name PalletGrandpaError (
|
|
5211
|
+
/** @name PalletGrandpaError (618) */
|
|
5212
5212
|
interface PalletGrandpaError extends Enum {
|
|
5213
5213
|
readonly isPauseFailed: boolean;
|
|
5214
5214
|
readonly isResumeFailed: boolean;
|
|
@@ -5219,40 +5219,40 @@ declare module "./types-lookup.ts" {
|
|
|
5219
5219
|
readonly isDuplicateOffenceReport: boolean;
|
|
5220
5220
|
readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
|
|
5221
5221
|
}
|
|
5222
|
-
/** @name PalletImOnlineBoundedOpaqueNetworkState (
|
|
5222
|
+
/** @name PalletImOnlineBoundedOpaqueNetworkState (622) */
|
|
5223
5223
|
interface PalletImOnlineBoundedOpaqueNetworkState extends Struct {
|
|
5224
5224
|
readonly peerId: Bytes;
|
|
5225
5225
|
readonly externalAddresses: Vec<Bytes>;
|
|
5226
5226
|
}
|
|
5227
|
-
/** @name PalletImOnlineError (
|
|
5227
|
+
/** @name PalletImOnlineError (626) */
|
|
5228
5228
|
interface PalletImOnlineError extends Enum {
|
|
5229
5229
|
readonly isInvalidKey: boolean;
|
|
5230
5230
|
readonly isDuplicatedHeartbeat: boolean;
|
|
5231
5231
|
readonly type: 'InvalidKey' | 'DuplicatedHeartbeat';
|
|
5232
5232
|
}
|
|
5233
|
-
/** @name PalletSudoError (
|
|
5233
|
+
/** @name PalletSudoError (628) */
|
|
5234
5234
|
interface PalletSudoError extends Enum {
|
|
5235
5235
|
readonly isRequireSudo: boolean;
|
|
5236
5236
|
readonly type: 'RequireSudo';
|
|
5237
5237
|
}
|
|
5238
|
-
/** @name PalletAssetTickerRegistration (
|
|
5238
|
+
/** @name PalletAssetTickerRegistration (629) */
|
|
5239
5239
|
interface PalletAssetTickerRegistration extends Struct {
|
|
5240
5240
|
readonly owner: PolymeshPrimitivesIdentityId;
|
|
5241
5241
|
readonly expiry: Option<u64>;
|
|
5242
5242
|
}
|
|
5243
|
-
/** @name PalletAssetTickerRegistrationConfig (
|
|
5243
|
+
/** @name PalletAssetTickerRegistrationConfig (630) */
|
|
5244
5244
|
interface PalletAssetTickerRegistrationConfig extends Struct {
|
|
5245
5245
|
readonly maxTickerLength: u8;
|
|
5246
5246
|
readonly registrationLength: Option<u64>;
|
|
5247
5247
|
}
|
|
5248
|
-
/** @name PalletAssetAssetDetails (
|
|
5248
|
+
/** @name PalletAssetAssetDetails (631) */
|
|
5249
5249
|
interface PalletAssetAssetDetails extends Struct {
|
|
5250
5250
|
readonly totalSupply: u128;
|
|
5251
5251
|
readonly ownerDid: PolymeshPrimitivesIdentityId;
|
|
5252
5252
|
readonly divisible: bool;
|
|
5253
5253
|
readonly assetType: PolymeshPrimitivesAssetAssetType;
|
|
5254
5254
|
}
|
|
5255
|
-
/** @name PalletAssetError (
|
|
5255
|
+
/** @name PalletAssetError (641) */
|
|
5256
5256
|
interface PalletAssetError extends Enum {
|
|
5257
5257
|
readonly isUnauthorized: boolean;
|
|
5258
5258
|
readonly isAssetAlreadyCreated: boolean;
|
|
@@ -5305,7 +5305,7 @@ declare module "./types-lookup.ts" {
|
|
|
5305
5305
|
readonly isTickerIsNotLinkedToTheAsset: boolean;
|
|
5306
5306
|
readonly type: 'Unauthorized' | 'AssetAlreadyCreated' | 'TickerTooLong' | 'TickerNotAlphanumeric' | 'TickerAlreadyRegistered' | 'TotalSupplyAboveLimit' | 'NoSuchAsset' | 'AlreadyFrozen' | 'NotAnOwner' | 'BalanceOverflow' | 'TotalSupplyOverflow' | 'InvalidGranularity' | 'NotFrozen' | 'InvalidTransfer' | 'InsufficientBalance' | 'AssetAlreadyDivisible' | 'InvalidEthereumSignature' | 'TickerRegistrationExpired' | 'SenderSameAsReceiver' | 'NoSuchDoc' | 'MaxLengthOfAssetNameExceeded' | 'FundingRoundNameMaxLengthExceeded' | 'InvalidAssetIdentifier' | 'InvestorUniquenessClaimNotAllowed' | 'InvalidCustomAssetTypeId' | 'AssetMetadataNameMaxLengthExceeded' | 'AssetMetadataValueMaxLengthExceeded' | 'AssetMetadataTypeDefMaxLengthExceeded' | 'AssetMetadataKeyIsMissing' | 'AssetMetadataValueIsLocked' | 'AssetMetadataLocalKeyAlreadyExists' | 'AssetMetadataGlobalKeyAlreadyExists' | 'TickerFirstByteNotValid' | 'UnexpectedNonFungibleToken' | 'IncompatibleAssetTypeUpdate' | 'AssetMetadataKeyBelongsToNFTCollection' | 'AssetMetadataValueIsEmpty' | 'NumberOfAssetMediatorsExceeded' | 'InvalidTickerCharacter' | 'InvalidTransferFrozenAsset' | 'InvalidTransferComplianceFailure' | 'InvalidTransferInvalidReceiverCDD' | 'InvalidTransferInvalidSenderCDD' | 'TickerRegistrationNotFound' | 'TickerIsAlreadyLinkedToAnAsset' | 'AssetIdGenerationError' | 'TickerNotRegisteredToCaller' | 'AssetIsAlreadyLinkedToATicker' | 'TickerIsNotLinkedToTheAsset';
|
|
5307
5307
|
}
|
|
5308
|
-
/** @name PalletCorporateActionsDistributionError (
|
|
5308
|
+
/** @name PalletCorporateActionsDistributionError (644) */
|
|
5309
5309
|
interface PalletCorporateActionsDistributionError extends Enum {
|
|
5310
5310
|
readonly isCaNotBenefit: boolean;
|
|
5311
5311
|
readonly isAlreadyExists: boolean;
|
|
@@ -5324,13 +5324,13 @@ declare module "./types-lookup.ts" {
|
|
|
5324
5324
|
readonly isDistributionPerShareIsZero: boolean;
|
|
5325
5325
|
readonly type: 'CaNotBenefit' | 'AlreadyExists' | 'ExpiryBeforePayment' | 'HolderAlreadyPaid' | 'NoSuchDistribution' | 'CannotClaimBeforeStart' | 'CannotClaimAfterExpiry' | 'BalancePerShareProductOverflowed' | 'NotDistributionCreator' | 'AlreadyReclaimed' | 'NotExpired' | 'DistributionStarted' | 'InsufficientRemainingAmount' | 'DistributionAmountIsZero' | 'DistributionPerShareIsZero';
|
|
5326
5326
|
}
|
|
5327
|
-
/** @name PolymeshCommonUtilitiesCheckpointNextCheckpoints (
|
|
5327
|
+
/** @name PolymeshCommonUtilitiesCheckpointNextCheckpoints (648) */
|
|
5328
5328
|
interface PolymeshCommonUtilitiesCheckpointNextCheckpoints extends Struct {
|
|
5329
5329
|
readonly nextAt: u64;
|
|
5330
5330
|
readonly totalPending: u64;
|
|
5331
5331
|
readonly schedules: BTreeMap<u64, u64>;
|
|
5332
5332
|
}
|
|
5333
|
-
/** @name PalletAssetCheckpointError (
|
|
5333
|
+
/** @name PalletAssetCheckpointError (654) */
|
|
5334
5334
|
interface PalletAssetCheckpointError extends Enum {
|
|
5335
5335
|
readonly isNoSuchSchedule: boolean;
|
|
5336
5336
|
readonly isScheduleNotRemovable: boolean;
|
|
@@ -5340,12 +5340,12 @@ declare module "./types-lookup.ts" {
|
|
|
5340
5340
|
readonly isScheduleHasExpiredCheckpoints: boolean;
|
|
5341
5341
|
readonly type: 'NoSuchSchedule' | 'ScheduleNotRemovable' | 'SchedulesOverMaxComplexity' | 'ScheduleIsEmpty' | 'ScheduleFinished' | 'ScheduleHasExpiredCheckpoints';
|
|
5342
5342
|
}
|
|
5343
|
-
/** @name PolymeshPrimitivesComplianceManagerAssetCompliance (
|
|
5343
|
+
/** @name PolymeshPrimitivesComplianceManagerAssetCompliance (655) */
|
|
5344
5344
|
interface PolymeshPrimitivesComplianceManagerAssetCompliance extends Struct {
|
|
5345
5345
|
readonly paused: bool;
|
|
5346
5346
|
readonly requirements: Vec<PolymeshPrimitivesComplianceManagerComplianceRequirement>;
|
|
5347
5347
|
}
|
|
5348
|
-
/** @name PalletComplianceManagerError (
|
|
5348
|
+
/** @name PalletComplianceManagerError (657) */
|
|
5349
5349
|
interface PalletComplianceManagerError extends Enum {
|
|
5350
5350
|
readonly isUnauthorized: boolean;
|
|
5351
5351
|
readonly isDidNotExist: boolean;
|
|
@@ -5356,7 +5356,7 @@ declare module "./types-lookup.ts" {
|
|
|
5356
5356
|
readonly isWeightLimitExceeded: boolean;
|
|
5357
5357
|
readonly type: 'Unauthorized' | 'DidNotExist' | 'InvalidComplianceRequirementId' | 'IncorrectOperationOnTrustedIssuer' | 'DuplicateComplianceRequirements' | 'ComplianceRequirementTooComplex' | 'WeightLimitExceeded';
|
|
5358
5358
|
}
|
|
5359
|
-
/** @name PalletCorporateActionsError (
|
|
5359
|
+
/** @name PalletCorporateActionsError (660) */
|
|
5360
5360
|
interface PalletCorporateActionsError extends Enum {
|
|
5361
5361
|
readonly isDetailsTooLong: boolean;
|
|
5362
5362
|
readonly isDuplicateDidTax: boolean;
|
|
@@ -5371,7 +5371,7 @@ declare module "./types-lookup.ts" {
|
|
|
5371
5371
|
readonly isNotTargetedByCA: boolean;
|
|
5372
5372
|
readonly type: 'DetailsTooLong' | 'DuplicateDidTax' | 'TooManyDidTaxes' | 'TooManyTargetIds' | 'NoSuchCheckpointId' | 'NoSuchCA' | 'NoRecordDate' | 'RecordDateAfterStart' | 'DeclDateAfterRecordDate' | 'DeclDateInFuture' | 'NotTargetedByCA';
|
|
5373
5373
|
}
|
|
5374
|
-
/** @name PalletCorporateActionsBallotError (
|
|
5374
|
+
/** @name PalletCorporateActionsBallotError (664) */
|
|
5375
5375
|
interface PalletCorporateActionsBallotError extends Enum {
|
|
5376
5376
|
readonly isCaNotNotice: boolean;
|
|
5377
5377
|
readonly isAlreadyExists: boolean;
|
|
@@ -5389,12 +5389,12 @@ declare module "./types-lookup.ts" {
|
|
|
5389
5389
|
readonly isRcvNotAllowed: boolean;
|
|
5390
5390
|
readonly type: 'CaNotNotice' | 'AlreadyExists' | 'NoSuchBallot' | 'StartAfterEnd' | 'NowAfterEnd' | 'NumberOfChoicesOverflow' | 'VotingAlreadyStarted' | 'VotingNotStarted' | 'VotingAlreadyEnded' | 'WrongVoteCount' | 'InsufficientVotes' | 'NoSuchRCVFallback' | 'RcvSelfCycle' | 'RcvNotAllowed';
|
|
5391
5391
|
}
|
|
5392
|
-
/** @name PalletPermissionsError (
|
|
5392
|
+
/** @name PalletPermissionsError (665) */
|
|
5393
5393
|
interface PalletPermissionsError extends Enum {
|
|
5394
5394
|
readonly isUnauthorizedCaller: boolean;
|
|
5395
5395
|
readonly type: 'UnauthorizedCaller';
|
|
5396
5396
|
}
|
|
5397
|
-
/** @name PalletPipsPipsMetadata (
|
|
5397
|
+
/** @name PalletPipsPipsMetadata (666) */
|
|
5398
5398
|
interface PalletPipsPipsMetadata extends Struct {
|
|
5399
5399
|
readonly id: u32;
|
|
5400
5400
|
readonly url: Option<Bytes>;
|
|
@@ -5403,34 +5403,34 @@ declare module "./types-lookup.ts" {
|
|
|
5403
5403
|
readonly transactionVersion: u32;
|
|
5404
5404
|
readonly expiry: PolymeshCommonUtilitiesMaybeBlock;
|
|
5405
5405
|
}
|
|
5406
|
-
/** @name PalletPipsDepositInfo (
|
|
5406
|
+
/** @name PalletPipsDepositInfo (668) */
|
|
5407
5407
|
interface PalletPipsDepositInfo extends Struct {
|
|
5408
5408
|
readonly owner: AccountId32;
|
|
5409
5409
|
readonly amount: u128;
|
|
5410
5410
|
}
|
|
5411
|
-
/** @name PalletPipsPip (
|
|
5411
|
+
/** @name PalletPipsPip (669) */
|
|
5412
5412
|
interface PalletPipsPip extends Struct {
|
|
5413
5413
|
readonly id: u32;
|
|
5414
5414
|
readonly proposal: Call;
|
|
5415
5415
|
readonly proposer: PalletPipsProposer;
|
|
5416
5416
|
}
|
|
5417
|
-
/** @name PalletPipsVotingResult (
|
|
5417
|
+
/** @name PalletPipsVotingResult (670) */
|
|
5418
5418
|
interface PalletPipsVotingResult extends Struct {
|
|
5419
5419
|
readonly ayesCount: u32;
|
|
5420
5420
|
readonly ayesStake: u128;
|
|
5421
5421
|
readonly naysCount: u32;
|
|
5422
5422
|
readonly naysStake: u128;
|
|
5423
5423
|
}
|
|
5424
|
-
/** @name PalletPipsVote (
|
|
5424
|
+
/** @name PalletPipsVote (671) */
|
|
5425
5425
|
interface PalletPipsVote extends ITuple<[bool, u128]> {
|
|
5426
5426
|
}
|
|
5427
|
-
/** @name PalletPipsSnapshotMetadata (
|
|
5427
|
+
/** @name PalletPipsSnapshotMetadata (672) */
|
|
5428
5428
|
interface PalletPipsSnapshotMetadata extends Struct {
|
|
5429
5429
|
readonly createdAt: u32;
|
|
5430
5430
|
readonly madeBy: AccountId32;
|
|
5431
5431
|
readonly id: u32;
|
|
5432
5432
|
}
|
|
5433
|
-
/** @name PalletPipsError (
|
|
5433
|
+
/** @name PalletPipsError (674) */
|
|
5434
5434
|
interface PalletPipsError extends Enum {
|
|
5435
5435
|
readonly isRescheduleNotByReleaseCoordinator: boolean;
|
|
5436
5436
|
readonly isNotFromCommunity: boolean;
|
|
@@ -5452,7 +5452,7 @@ declare module "./types-lookup.ts" {
|
|
|
5452
5452
|
readonly isProposalNotInScheduledState: boolean;
|
|
5453
5453
|
readonly type: 'RescheduleNotByReleaseCoordinator' | 'NotFromCommunity' | 'NotByCommittee' | 'TooManyActivePips' | 'IncorrectDeposit' | 'InsufficientDeposit' | 'NoSuchProposal' | 'NotACommitteeMember' | 'InvalidFutureBlockNumber' | 'NumberOfVotesExceeded' | 'StakeAmountOfVotesExceeded' | 'MissingCurrentIdentity' | 'IncorrectProposalState' | 'CannotSkipPip' | 'SnapshotResultTooLarge' | 'SnapshotIdMismatch' | 'ScheduledProposalDoesntExist' | 'ProposalNotInScheduledState';
|
|
5454
5454
|
}
|
|
5455
|
-
/** @name PalletPortfolioError (
|
|
5455
|
+
/** @name PalletPortfolioError (682) */
|
|
5456
5456
|
interface PalletPortfolioError extends Enum {
|
|
5457
5457
|
readonly isPortfolioDoesNotExist: boolean;
|
|
5458
5458
|
readonly isInsufficientPortfolioBalance: boolean;
|
|
@@ -5475,14 +5475,14 @@ declare module "./types-lookup.ts" {
|
|
|
5475
5475
|
readonly isSelfAdditionNotAllowed: boolean;
|
|
5476
5476
|
readonly type: 'PortfolioDoesNotExist' | 'InsufficientPortfolioBalance' | 'DestinationIsSamePortfolio' | 'PortfolioNameAlreadyInUse' | 'SecondaryKeyNotAuthorizedForPortfolio' | 'UnauthorizedCustodian' | 'InsufficientTokensLocked' | 'PortfolioNotEmpty' | 'DifferentIdentityPortfolios' | 'NoDuplicateAssetsAllowed' | 'NftNotFoundInPortfolio' | 'NftAlreadyLocked' | 'NftNotLocked' | 'InvalidTransferNFTNotOwned' | 'InvalidTransferNFTIsLocked' | 'EmptyTransfer' | 'MissingOwnersPermission' | 'InvalidTransferSenderIdMatchesReceiverId' | 'SelfAdditionNotAllowed';
|
|
5477
5477
|
}
|
|
5478
|
-
/** @name PalletProtocolFeeError (
|
|
5478
|
+
/** @name PalletProtocolFeeError (683) */
|
|
5479
5479
|
interface PalletProtocolFeeError extends Enum {
|
|
5480
5480
|
readonly isInsufficientAccountBalance: boolean;
|
|
5481
5481
|
readonly isUnHandledImbalances: boolean;
|
|
5482
5482
|
readonly isInsufficientSubsidyBalance: boolean;
|
|
5483
5483
|
readonly type: 'InsufficientAccountBalance' | 'UnHandledImbalances' | 'InsufficientSubsidyBalance';
|
|
5484
5484
|
}
|
|
5485
|
-
/** @name PalletSchedulerScheduled (
|
|
5485
|
+
/** @name PalletSchedulerScheduled (686) */
|
|
5486
5486
|
interface PalletSchedulerScheduled extends Struct {
|
|
5487
5487
|
readonly maybeId: Option<U8aFixed>;
|
|
5488
5488
|
readonly priority: u8;
|
|
@@ -5490,7 +5490,7 @@ declare module "./types-lookup.ts" {
|
|
|
5490
5490
|
readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
|
|
5491
5491
|
readonly origin: PolymeshRuntimeDevelopRuntimeOriginCaller;
|
|
5492
5492
|
}
|
|
5493
|
-
/** @name FrameSupportPreimagesBounded (
|
|
5493
|
+
/** @name FrameSupportPreimagesBounded (687) */
|
|
5494
5494
|
interface FrameSupportPreimagesBounded extends Enum {
|
|
5495
5495
|
readonly isLegacy: boolean;
|
|
5496
5496
|
readonly asLegacy: {
|
|
@@ -5505,7 +5505,7 @@ declare module "./types-lookup.ts" {
|
|
|
5505
5505
|
} & Struct;
|
|
5506
5506
|
readonly type: 'Legacy' | 'Inline' | 'Lookup';
|
|
5507
5507
|
}
|
|
5508
|
-
/** @name PalletSchedulerError (
|
|
5508
|
+
/** @name PalletSchedulerError (690) */
|
|
5509
5509
|
interface PalletSchedulerError extends Enum {
|
|
5510
5510
|
readonly isFailedToSchedule: boolean;
|
|
5511
5511
|
readonly isNotFound: boolean;
|
|
@@ -5514,12 +5514,12 @@ declare module "./types-lookup.ts" {
|
|
|
5514
5514
|
readonly isNamed: boolean;
|
|
5515
5515
|
readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange' | 'Named';
|
|
5516
5516
|
}
|
|
5517
|
-
/** @name PolymeshPrimitivesSettlementVenue (
|
|
5517
|
+
/** @name PolymeshPrimitivesSettlementVenue (691) */
|
|
5518
5518
|
interface PolymeshPrimitivesSettlementVenue extends Struct {
|
|
5519
5519
|
readonly creator: PolymeshPrimitivesIdentityId;
|
|
5520
5520
|
readonly venueType: PolymeshPrimitivesSettlementVenueType;
|
|
5521
5521
|
}
|
|
5522
|
-
/** @name PolymeshPrimitivesSettlementInstruction (
|
|
5522
|
+
/** @name PolymeshPrimitivesSettlementInstruction (695) */
|
|
5523
5523
|
interface PolymeshPrimitivesSettlementInstruction extends Struct {
|
|
5524
5524
|
readonly instructionId: u64;
|
|
5525
5525
|
readonly venueId: Option<u64>;
|
|
@@ -5528,7 +5528,7 @@ declare module "./types-lookup.ts" {
|
|
|
5528
5528
|
readonly tradeDate: Option<u64>;
|
|
5529
5529
|
readonly valueDate: Option<u64>;
|
|
5530
5530
|
}
|
|
5531
|
-
/** @name PolymeshPrimitivesSettlementLegStatus (
|
|
5531
|
+
/** @name PolymeshPrimitivesSettlementLegStatus (697) */
|
|
5532
5532
|
interface PolymeshPrimitivesSettlementLegStatus extends Enum {
|
|
5533
5533
|
readonly isPendingTokenLock: boolean;
|
|
5534
5534
|
readonly isExecutionPending: boolean;
|
|
@@ -5536,14 +5536,14 @@ declare module "./types-lookup.ts" {
|
|
|
5536
5536
|
readonly asExecutionToBeSkipped: ITuple<[AccountId32, u64]>;
|
|
5537
5537
|
readonly type: 'PendingTokenLock' | 'ExecutionPending' | 'ExecutionToBeSkipped';
|
|
5538
5538
|
}
|
|
5539
|
-
/** @name PolymeshPrimitivesSettlementAffirmationStatus (
|
|
5539
|
+
/** @name PolymeshPrimitivesSettlementAffirmationStatus (699) */
|
|
5540
5540
|
interface PolymeshPrimitivesSettlementAffirmationStatus extends Enum {
|
|
5541
5541
|
readonly isUnknown: boolean;
|
|
5542
5542
|
readonly isPending: boolean;
|
|
5543
5543
|
readonly isAffirmed: boolean;
|
|
5544
5544
|
readonly type: 'Unknown' | 'Pending' | 'Affirmed';
|
|
5545
5545
|
}
|
|
5546
|
-
/** @name PolymeshPrimitivesSettlementInstructionStatus (
|
|
5546
|
+
/** @name PolymeshPrimitivesSettlementInstructionStatus (702) */
|
|
5547
5547
|
interface PolymeshPrimitivesSettlementInstructionStatus extends Enum {
|
|
5548
5548
|
readonly isUnknown: boolean;
|
|
5549
5549
|
readonly isPending: boolean;
|
|
@@ -5554,7 +5554,7 @@ declare module "./types-lookup.ts" {
|
|
|
5554
5554
|
readonly asRejected: u32;
|
|
5555
5555
|
readonly type: 'Unknown' | 'Pending' | 'Failed' | 'Success' | 'Rejected';
|
|
5556
5556
|
}
|
|
5557
|
-
/** @name PolymeshPrimitivesSettlementMediatorAffirmationStatus (
|
|
5557
|
+
/** @name PolymeshPrimitivesSettlementMediatorAffirmationStatus (704) */
|
|
5558
5558
|
interface PolymeshPrimitivesSettlementMediatorAffirmationStatus extends Enum {
|
|
5559
5559
|
readonly isUnknown: boolean;
|
|
5560
5560
|
readonly isPending: boolean;
|
|
@@ -5564,7 +5564,7 @@ declare module "./types-lookup.ts" {
|
|
|
5564
5564
|
} & Struct;
|
|
5565
5565
|
readonly type: 'Unknown' | 'Pending' | 'Affirmed';
|
|
5566
5566
|
}
|
|
5567
|
-
/** @name PalletSettlementError (
|
|
5567
|
+
/** @name PalletSettlementError (706) */
|
|
5568
5568
|
interface PalletSettlementError extends Enum {
|
|
5569
5569
|
readonly isInvalidVenue: boolean;
|
|
5570
5570
|
readonly isUnauthorized: boolean;
|
|
@@ -5612,17 +5612,17 @@ declare module "./types-lookup.ts" {
|
|
|
5612
5612
|
readonly isOffChainAssetsMustHaveAVenue: boolean;
|
|
5613
5613
|
readonly type: 'InvalidVenue' | 'Unauthorized' | 'InstructionNotAffirmed' | 'UnauthorizedSigner' | 'ReceiptAlreadyClaimed' | 'UnauthorizedVenue' | 'InstructionDatesInvalid' | 'InstructionSettleBlockPassed' | 'InvalidSignature' | 'SameSenderReceiver' | 'SettleOnPastBlock' | 'UnexpectedAffirmationStatus' | 'FailedToSchedule' | 'UnknownInstruction' | 'SignerAlreadyExists' | 'SignerDoesNotExist' | 'ZeroAmount' | 'InstructionSettleBlockNotReached' | 'CallerIsNotAParty' | 'MaxNumberOfNFTsExceeded' | 'NumberOfTransferredNFTsUnderestimated' | 'ReceiptForInvalidLegType' | 'WeightLimitExceeded' | 'MaxNumberOfFungibleAssetsExceeded' | 'MaxNumberOfOffChainAssetsExceeded' | 'NumberOfFungibleTransfersUnderestimated' | 'UnexpectedOFFChainAsset' | 'OffChainAssetCantBeLocked' | 'NumberOfOffChainTransfersUnderestimated' | 'LegNotFound' | 'InputWeightIsLessThanMinimum' | 'MaxNumberOfReceiptsExceeded' | 'NotAllAffirmationsHaveBeenReceived' | 'InvalidInstructionStatusForExecution' | 'FailedToReleaseLockOrTransferAssets' | 'DuplicateReceiptUid' | 'ReceiptInstructionIdMissmatch' | 'MultipleReceiptsForOneLeg' | 'UnexpectedLegStatus' | 'NumberOfVenueSignersExceeded' | 'CallerIsNotAMediator' | 'InvalidExpiryDate' | 'MediatorAffirmationExpired' | 'OffChainAssetsMustHaveAVenue';
|
|
5614
5614
|
}
|
|
5615
|
-
/** @name PolymeshPrimitivesStatisticsStat1stKey (
|
|
5615
|
+
/** @name PolymeshPrimitivesStatisticsStat1stKey (709) */
|
|
5616
5616
|
interface PolymeshPrimitivesStatisticsStat1stKey extends Struct {
|
|
5617
5617
|
readonly assetId: PolymeshPrimitivesAssetAssetId;
|
|
5618
5618
|
readonly statType: PolymeshPrimitivesStatisticsStatType;
|
|
5619
5619
|
}
|
|
5620
|
-
/** @name PolymeshPrimitivesTransferComplianceAssetTransferCompliance (
|
|
5620
|
+
/** @name PolymeshPrimitivesTransferComplianceAssetTransferCompliance (710) */
|
|
5621
5621
|
interface PolymeshPrimitivesTransferComplianceAssetTransferCompliance extends Struct {
|
|
5622
5622
|
readonly paused: bool;
|
|
5623
5623
|
readonly requirements: BTreeSet<PolymeshPrimitivesTransferComplianceTransferCondition>;
|
|
5624
5624
|
}
|
|
5625
|
-
/** @name PalletStatisticsError (
|
|
5625
|
+
/** @name PalletStatisticsError (714) */
|
|
5626
5626
|
interface PalletStatisticsError extends Enum {
|
|
5627
5627
|
readonly isInvalidTransferStatisticsFailure: boolean;
|
|
5628
5628
|
readonly isStatTypeMissing: boolean;
|
|
@@ -5633,7 +5633,7 @@ declare module "./types-lookup.ts" {
|
|
|
5633
5633
|
readonly isWeightLimitExceeded: boolean;
|
|
5634
5634
|
readonly type: 'InvalidTransferStatisticsFailure' | 'StatTypeMissing' | 'StatTypeNeededByTransferCondition' | 'CannotRemoveStatTypeInUse' | 'StatTypeLimitReached' | 'TransferConditionLimitReached' | 'WeightLimitExceeded';
|
|
5635
5635
|
}
|
|
5636
|
-
/** @name PalletStoError (
|
|
5636
|
+
/** @name PalletStoError (717) */
|
|
5637
5637
|
interface PalletStoError extends Enum {
|
|
5638
5638
|
readonly isUnauthorized: boolean;
|
|
5639
5639
|
readonly isOverflow: boolean;
|
|
@@ -5649,13 +5649,13 @@ declare module "./types-lookup.ts" {
|
|
|
5649
5649
|
readonly isInvestmentAmountTooLow: boolean;
|
|
5650
5650
|
readonly type: 'Unauthorized' | 'Overflow' | 'InsufficientTokensRemaining' | 'FundraiserNotFound' | 'FundraiserNotLive' | 'FundraiserClosed' | 'FundraiserExpired' | 'InvalidVenue' | 'InvalidPriceTiers' | 'InvalidOfferingWindow' | 'MaxPriceExceeded' | 'InvestmentAmountTooLow';
|
|
5651
5651
|
}
|
|
5652
|
-
/** @name PalletTreasuryError (
|
|
5652
|
+
/** @name PalletTreasuryError (718) */
|
|
5653
5653
|
interface PalletTreasuryError extends Enum {
|
|
5654
5654
|
readonly isInsufficientBalance: boolean;
|
|
5655
5655
|
readonly isInvalidIdentity: boolean;
|
|
5656
5656
|
readonly type: 'InsufficientBalance' | 'InvalidIdentity';
|
|
5657
5657
|
}
|
|
5658
|
-
/** @name PalletUtilityError (
|
|
5658
|
+
/** @name PalletUtilityError (719) */
|
|
5659
5659
|
interface PalletUtilityError extends Enum {
|
|
5660
5660
|
readonly isTooManyCalls: boolean;
|
|
5661
5661
|
readonly isInvalidSignature: boolean;
|
|
@@ -5664,13 +5664,13 @@ declare module "./types-lookup.ts" {
|
|
|
5664
5664
|
readonly isUnableToDeriveAccountId: boolean;
|
|
5665
5665
|
readonly type: 'TooManyCalls' | 'InvalidSignature' | 'TargetCddMissing' | 'InvalidNonce' | 'UnableToDeriveAccountId';
|
|
5666
5666
|
}
|
|
5667
|
-
/** @name PalletBaseError (
|
|
5667
|
+
/** @name PalletBaseError (720) */
|
|
5668
5668
|
interface PalletBaseError extends Enum {
|
|
5669
5669
|
readonly isTooLong: boolean;
|
|
5670
5670
|
readonly isCounterOverflow: boolean;
|
|
5671
5671
|
readonly type: 'TooLong' | 'CounterOverflow';
|
|
5672
5672
|
}
|
|
5673
|
-
/** @name PalletExternalAgentsError (
|
|
5673
|
+
/** @name PalletExternalAgentsError (723) */
|
|
5674
5674
|
interface PalletExternalAgentsError extends Enum {
|
|
5675
5675
|
readonly isNoSuchAG: boolean;
|
|
5676
5676
|
readonly isUnauthorizedAgent: boolean;
|
|
@@ -5680,12 +5680,12 @@ declare module "./types-lookup.ts" {
|
|
|
5680
5680
|
readonly isSecondaryKeyNotAuthorizedForAsset: boolean;
|
|
5681
5681
|
readonly type: 'NoSuchAG' | 'UnauthorizedAgent' | 'AlreadyAnAgent' | 'NotAnAgent' | 'RemovingLastFullAgent' | 'SecondaryKeyNotAuthorizedForAsset';
|
|
5682
5682
|
}
|
|
5683
|
-
/** @name PalletRelayerSubsidy (
|
|
5683
|
+
/** @name PalletRelayerSubsidy (724) */
|
|
5684
5684
|
interface PalletRelayerSubsidy extends Struct {
|
|
5685
5685
|
readonly payingKey: AccountId32;
|
|
5686
5686
|
readonly remaining: u128;
|
|
5687
5687
|
}
|
|
5688
|
-
/** @name PalletRelayerError (
|
|
5688
|
+
/** @name PalletRelayerError (725) */
|
|
5689
5689
|
interface PalletRelayerError extends Enum {
|
|
5690
5690
|
readonly isUserKeyCddMissing: boolean;
|
|
5691
5691
|
readonly isPayingKeyCddMissing: boolean;
|
|
@@ -5696,7 +5696,7 @@ declare module "./types-lookup.ts" {
|
|
|
5696
5696
|
readonly isOverflow: boolean;
|
|
5697
5697
|
readonly type: 'UserKeyCddMissing' | 'PayingKeyCddMissing' | 'NoPayingKey' | 'NotPayingKey' | 'NotAuthorizedForPayingKey' | 'NotAuthorizedForUserKey' | 'Overflow';
|
|
5698
5698
|
}
|
|
5699
|
-
/** @name PalletContractsWasmPrefabWasmModule (
|
|
5699
|
+
/** @name PalletContractsWasmPrefabWasmModule (727) */
|
|
5700
5700
|
interface PalletContractsWasmPrefabWasmModule extends Struct {
|
|
5701
5701
|
readonly instructionWeightsVersion: Compact<u32>;
|
|
5702
5702
|
readonly initial: Compact<u32>;
|
|
@@ -5704,13 +5704,13 @@ declare module "./types-lookup.ts" {
|
|
|
5704
5704
|
readonly code: Bytes;
|
|
5705
5705
|
readonly determinism: PalletContractsWasmDeterminism;
|
|
5706
5706
|
}
|
|
5707
|
-
/** @name PalletContractsWasmOwnerInfo (
|
|
5707
|
+
/** @name PalletContractsWasmOwnerInfo (729) */
|
|
5708
5708
|
interface PalletContractsWasmOwnerInfo extends Struct {
|
|
5709
5709
|
readonly owner: AccountId32;
|
|
5710
5710
|
readonly deposit: Compact<u128>;
|
|
5711
5711
|
readonly refcount: Compact<u64>;
|
|
5712
5712
|
}
|
|
5713
|
-
/** @name PalletContractsStorageContractInfo (
|
|
5713
|
+
/** @name PalletContractsStorageContractInfo (730) */
|
|
5714
5714
|
interface PalletContractsStorageContractInfo extends Struct {
|
|
5715
5715
|
readonly trieId: Bytes;
|
|
5716
5716
|
readonly depositAccount: AccountId32;
|
|
@@ -5721,17 +5721,17 @@ declare module "./types-lookup.ts" {
|
|
|
5721
5721
|
readonly storageItemDeposit: u128;
|
|
5722
5722
|
readonly storageBaseDeposit: u128;
|
|
5723
5723
|
}
|
|
5724
|
-
/** @name PalletContractsStorageDeletedContract (
|
|
5724
|
+
/** @name PalletContractsStorageDeletedContract (733) */
|
|
5725
5725
|
interface PalletContractsStorageDeletedContract extends Struct {
|
|
5726
5726
|
readonly trieId: Bytes;
|
|
5727
5727
|
}
|
|
5728
|
-
/** @name PalletContractsSchedule (
|
|
5728
|
+
/** @name PalletContractsSchedule (735) */
|
|
5729
5729
|
interface PalletContractsSchedule extends Struct {
|
|
5730
5730
|
readonly limits: PalletContractsScheduleLimits;
|
|
5731
5731
|
readonly instructionWeights: PalletContractsScheduleInstructionWeights;
|
|
5732
5732
|
readonly hostFnWeights: PalletContractsScheduleHostFnWeights;
|
|
5733
5733
|
}
|
|
5734
|
-
/** @name PalletContractsScheduleLimits (
|
|
5734
|
+
/** @name PalletContractsScheduleLimits (736) */
|
|
5735
5735
|
interface PalletContractsScheduleLimits extends Struct {
|
|
5736
5736
|
readonly eventTopics: u32;
|
|
5737
5737
|
readonly globals: u32;
|
|
@@ -5743,7 +5743,7 @@ declare module "./types-lookup.ts" {
|
|
|
5743
5743
|
readonly subjectLen: u32;
|
|
5744
5744
|
readonly payloadLen: u32;
|
|
5745
5745
|
}
|
|
5746
|
-
/** @name PalletContractsScheduleInstructionWeights (
|
|
5746
|
+
/** @name PalletContractsScheduleInstructionWeights (737) */
|
|
5747
5747
|
interface PalletContractsScheduleInstructionWeights extends Struct {
|
|
5748
5748
|
readonly version: u32;
|
|
5749
5749
|
readonly fallback: u32;
|
|
@@ -5800,7 +5800,7 @@ declare module "./types-lookup.ts" {
|
|
|
5800
5800
|
readonly i64rotl: u32;
|
|
5801
5801
|
readonly i64rotr: u32;
|
|
5802
5802
|
}
|
|
5803
|
-
/** @name PalletContractsScheduleHostFnWeights (
|
|
5803
|
+
/** @name PalletContractsScheduleHostFnWeights (738) */
|
|
5804
5804
|
interface PalletContractsScheduleHostFnWeights extends Struct {
|
|
5805
5805
|
readonly caller: SpWeightsWeightV2Weight;
|
|
5806
5806
|
readonly isContract: SpWeightsWeightV2Weight;
|
|
@@ -5862,7 +5862,7 @@ declare module "./types-lookup.ts" {
|
|
|
5862
5862
|
readonly accountReentranceCount: SpWeightsWeightV2Weight;
|
|
5863
5863
|
readonly instantiationNonce: SpWeightsWeightV2Weight;
|
|
5864
5864
|
}
|
|
5865
|
-
/** @name PalletContractsError (
|
|
5865
|
+
/** @name PalletContractsError (739) */
|
|
5866
5866
|
interface PalletContractsError extends Enum {
|
|
5867
5867
|
readonly isInvalidScheduleVersion: boolean;
|
|
5868
5868
|
readonly isInvalidCallFlags: boolean;
|
|
@@ -5894,7 +5894,7 @@ declare module "./types-lookup.ts" {
|
|
|
5894
5894
|
readonly isIndeterministic: boolean;
|
|
5895
5895
|
readonly type: 'InvalidScheduleVersion' | 'InvalidCallFlags' | 'OutOfGas' | 'OutputBufferTooSmall' | 'TransferFailed' | 'MaxCallDepthReached' | 'ContractNotFound' | 'CodeTooLarge' | 'CodeNotFound' | 'OutOfBounds' | 'DecodingFailed' | 'ContractTrapped' | 'ValueTooLarge' | 'TerminatedWhileReentrant' | 'InputForwarded' | 'RandomSubjectTooLong' | 'TooManyTopics' | 'NoChainExtension' | 'DeletionQueueFull' | 'DuplicateContract' | 'TerminatedInConstructor' | 'ReentranceDenied' | 'StorageDepositNotEnoughFunds' | 'StorageDepositLimitExhausted' | 'CodeInUse' | 'ContractReverted' | 'CodeRejected' | 'Indeterministic';
|
|
5896
5896
|
}
|
|
5897
|
-
/** @name PolymeshContractsError (
|
|
5897
|
+
/** @name PolymeshContractsError (741) */
|
|
5898
5898
|
interface PolymeshContractsError extends Enum {
|
|
5899
5899
|
readonly isInvalidFuncId: boolean;
|
|
5900
5900
|
readonly isInvalidRuntimeCall: boolean;
|
|
@@ -5910,7 +5910,7 @@ declare module "./types-lookup.ts" {
|
|
|
5910
5910
|
readonly isNoUpgradesSupported: boolean;
|
|
5911
5911
|
readonly type: 'InvalidFuncId' | 'InvalidRuntimeCall' | 'ReadStorageFailed' | 'DataLeftAfterDecoding' | 'InLenTooLarge' | 'OutLenTooLarge' | 'InstantiatorWithNoIdentity' | 'RuntimeCallDenied' | 'CallerNotAPrimaryKey' | 'MissingKeyPermissions' | 'InvalidChainVersion' | 'NoUpgradesSupported';
|
|
5912
5912
|
}
|
|
5913
|
-
/** @name PalletPreimageRequestStatus (
|
|
5913
|
+
/** @name PalletPreimageRequestStatus (742) */
|
|
5914
5914
|
interface PalletPreimageRequestStatus extends Enum {
|
|
5915
5915
|
readonly isUnrequested: boolean;
|
|
5916
5916
|
readonly asUnrequested: {
|
|
@@ -5925,7 +5925,7 @@ declare module "./types-lookup.ts" {
|
|
|
5925
5925
|
} & Struct;
|
|
5926
5926
|
readonly type: 'Unrequested' | 'Requested';
|
|
5927
5927
|
}
|
|
5928
|
-
/** @name PalletPreimageError (
|
|
5928
|
+
/** @name PalletPreimageError (746) */
|
|
5929
5929
|
interface PalletPreimageError extends Enum {
|
|
5930
5930
|
readonly isTooBig: boolean;
|
|
5931
5931
|
readonly isAlreadyNoted: boolean;
|
|
@@ -5935,12 +5935,12 @@ declare module "./types-lookup.ts" {
|
|
|
5935
5935
|
readonly isNotRequested: boolean;
|
|
5936
5936
|
readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested';
|
|
5937
5937
|
}
|
|
5938
|
-
/** @name PolymeshPrimitivesNftNftCollection (
|
|
5938
|
+
/** @name PolymeshPrimitivesNftNftCollection (747) */
|
|
5939
5939
|
interface PolymeshPrimitivesNftNftCollection extends Struct {
|
|
5940
5940
|
readonly id: u64;
|
|
5941
5941
|
readonly assetId: PolymeshPrimitivesAssetAssetId;
|
|
5942
5942
|
}
|
|
5943
|
-
/** @name PalletNftError (
|
|
5943
|
+
/** @name PalletNftError (752) */
|
|
5944
5944
|
interface PalletNftError extends Enum {
|
|
5945
5945
|
readonly isBalanceOverflow: boolean;
|
|
5946
5946
|
readonly isBalanceUnderflow: boolean;
|
|
@@ -5973,25 +5973,25 @@ declare module "./types-lookup.ts" {
|
|
|
5973
5973
|
readonly isNumberOfKeysIsLessThanExpected: boolean;
|
|
5974
5974
|
readonly type: 'BalanceOverflow' | 'BalanceUnderflow' | 'CollectionAlredyRegistered' | 'CollectionNotFound' | 'DuplicateMetadataKey' | 'DuplicatedNFTId' | 'InvalidAssetType' | 'InvalidMetadataAttribute' | 'InvalidNFTTransferCollectionNotFound' | 'InvalidNFTTransferSamePortfolio' | 'InvalidNFTTransferNFTNotOwned' | 'InvalidNFTTransferCountOverflow' | 'InvalidNFTTransferComplianceFailure' | 'InvalidNFTTransferFrozenAsset' | 'InvalidNFTTransferInsufficientCount' | 'MaxNumberOfKeysExceeded' | 'MaxNumberOfNFTsPerLegExceeded' | 'NftNotFound' | 'UnregisteredMetadataKey' | 'ZeroCount' | 'SupplyOverflow' | 'SupplyUnderflow' | 'InvalidNFTTransferNFTIsLocked' | 'InvalidNFTTransferSenderIdMatchesReceiverId' | 'InvalidNFTTransferInvalidReceiverCDD' | 'InvalidNFTTransferInvalidSenderCDD' | 'InvalidAssetId' | 'NftIsLocked' | 'NumberOfKeysIsLessThanExpected';
|
|
5975
5975
|
}
|
|
5976
|
-
/** @name PalletElectionProviderMultiPhaseReadySolution (
|
|
5976
|
+
/** @name PalletElectionProviderMultiPhaseReadySolution (753) */
|
|
5977
5977
|
interface PalletElectionProviderMultiPhaseReadySolution extends Struct {
|
|
5978
5978
|
readonly supports: Vec<ITuple<[AccountId32, SpNposElectionsSupport]>>;
|
|
5979
5979
|
readonly score: SpNposElectionsElectionScore;
|
|
5980
5980
|
readonly compute: PalletElectionProviderMultiPhaseElectionCompute;
|
|
5981
5981
|
}
|
|
5982
|
-
/** @name PalletElectionProviderMultiPhaseRoundSnapshot (
|
|
5982
|
+
/** @name PalletElectionProviderMultiPhaseRoundSnapshot (755) */
|
|
5983
5983
|
interface PalletElectionProviderMultiPhaseRoundSnapshot extends Struct {
|
|
5984
5984
|
readonly voters: Vec<ITuple<[AccountId32, u64, Vec<AccountId32>]>>;
|
|
5985
5985
|
readonly targets: Vec<AccountId32>;
|
|
5986
5986
|
}
|
|
5987
|
-
/** @name PalletElectionProviderMultiPhaseSignedSignedSubmission (
|
|
5987
|
+
/** @name PalletElectionProviderMultiPhaseSignedSignedSubmission (761) */
|
|
5988
5988
|
interface PalletElectionProviderMultiPhaseSignedSignedSubmission extends Struct {
|
|
5989
5989
|
readonly who: AccountId32;
|
|
5990
5990
|
readonly deposit: u128;
|
|
5991
5991
|
readonly rawSolution: PalletElectionProviderMultiPhaseRawSolution;
|
|
5992
5992
|
readonly callFee: u128;
|
|
5993
5993
|
}
|
|
5994
|
-
/** @name PalletElectionProviderMultiPhaseError (
|
|
5994
|
+
/** @name PalletElectionProviderMultiPhaseError (762) */
|
|
5995
5995
|
interface PalletElectionProviderMultiPhaseError extends Enum {
|
|
5996
5996
|
readonly isPreDispatchEarlySubmission: boolean;
|
|
5997
5997
|
readonly isPreDispatchWrongWinnerCount: boolean;
|
|
@@ -6009,28 +6009,28 @@ declare module "./types-lookup.ts" {
|
|
|
6009
6009
|
readonly isTooManyWinners: boolean;
|
|
6010
6010
|
readonly type: 'PreDispatchEarlySubmission' | 'PreDispatchWrongWinnerCount' | 'PreDispatchWeakSubmission' | 'SignedQueueFull' | 'SignedCannotPayDeposit' | 'SignedInvalidWitness' | 'SignedTooMuchWeight' | 'OcwCallWrongEra' | 'MissingSnapshotMetadata' | 'InvalidSubmissionIndex' | 'CallNotAllowed' | 'FallbackFailed' | 'BoundNotMet' | 'TooManyWinners';
|
|
6011
6011
|
}
|
|
6012
|
-
/** @name PalletTestUtilsError (
|
|
6012
|
+
/** @name PalletTestUtilsError (763) */
|
|
6013
6013
|
type PalletTestUtilsError = Null;
|
|
6014
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
6014
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (766) */
|
|
6015
6015
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
6016
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
6016
|
+
/** @name FrameSystemExtensionsCheckTxVersion (767) */
|
|
6017
6017
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
6018
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
6018
|
+
/** @name FrameSystemExtensionsCheckGenesis (768) */
|
|
6019
6019
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
6020
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
6020
|
+
/** @name FrameSystemExtensionsCheckNonce (771) */
|
|
6021
6021
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
|
|
6022
6022
|
}
|
|
6023
|
-
/** @name PolymeshExtensionsCheckWeight (
|
|
6023
|
+
/** @name PolymeshExtensionsCheckWeight (772) */
|
|
6024
6024
|
interface PolymeshExtensionsCheckWeight extends FrameSystemExtensionsCheckWeight {
|
|
6025
6025
|
}
|
|
6026
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
6026
|
+
/** @name FrameSystemExtensionsCheckWeight (773) */
|
|
6027
6027
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
6028
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
6028
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (774) */
|
|
6029
6029
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
|
|
6030
6030
|
}
|
|
6031
|
-
/** @name PalletPermissionsStoreCallMetadata (
|
|
6031
|
+
/** @name PalletPermissionsStoreCallMetadata (775) */
|
|
6032
6032
|
type PalletPermissionsStoreCallMetadata = Null;
|
|
6033
|
-
/** @name PolymeshRuntimeDevelopRuntime (
|
|
6033
|
+
/** @name PolymeshRuntimeDevelopRuntime (776) */
|
|
6034
6034
|
type PolymeshRuntimeDevelopRuntime = Null;
|
|
6035
6035
|
}
|
|
6036
6036
|
//# sourceMappingURL=types-lookup.d.ts.map
|