@polymeshassociation/polymesh-sdk 23.0.0-alpha.9 → 23.0.0-beta.1
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 +74 -1
- package/README.md +49 -7
- package/api/client/Assets.d.ts +10 -2
- package/api/client/Assets.d.ts.map +1 -1
- package/api/client/Assets.js +27 -9
- package/api/client/Assets.js.map +1 -1
- package/api/client/Claims.d.ts +13 -1
- package/api/client/Claims.d.ts.map +1 -1
- package/api/client/Claims.js +32 -2
- package/api/client/Claims.js.map +1 -1
- package/api/client/Network.d.ts +1 -1
- package/api/client/Network.d.ts.map +1 -1
- package/api/client/Network.js.map +1 -1
- package/api/entities/Account/MultiSig/index.d.ts.map +1 -1
- package/api/entities/Account/MultiSig/index.js +2 -5
- package/api/entities/Account/MultiSig/index.js.map +1 -1
- package/api/entities/Account/index.d.ts.map +1 -1
- package/api/entities/Account/index.js +1 -1
- package/api/entities/Account/index.js.map +1 -1
- package/api/entities/Account/types.d.ts +1 -1
- package/api/entities/Asset/Base/Settlements/index.d.ts +85 -0
- package/api/entities/Asset/Base/Settlements/index.d.ts.map +1 -0
- package/api/entities/Asset/Base/Settlements/index.js +141 -0
- package/api/entities/Asset/Base/Settlements/index.js.map +1 -0
- package/api/entities/Asset/Fungible/index.d.ts +2 -2
- package/api/entities/Asset/Fungible/index.d.ts.map +1 -1
- package/api/entities/Asset/Fungible/index.js +2 -2
- package/api/entities/Asset/Fungible/index.js.map +1 -1
- package/api/entities/Asset/NonFungible/Nft.d.ts +76 -5
- package/api/entities/Asset/NonFungible/Nft.d.ts.map +1 -1
- package/api/entities/Asset/NonFungible/Nft.js +162 -6
- package/api/entities/Asset/NonFungible/Nft.js.map +1 -1
- package/api/entities/Asset/NonFungible/NftCollection.d.ts +30 -16
- package/api/entities/Asset/NonFungible/NftCollection.d.ts.map +1 -1
- package/api/entities/Asset/NonFungible/NftCollection.js +72 -27
- package/api/entities/Asset/NonFungible/NftCollection.js.map +1 -1
- package/api/entities/Asset/types.d.ts +23 -3
- package/api/entities/Asset/types.d.ts.map +1 -1
- package/api/entities/Asset/types.js.map +1 -1
- package/api/entities/Identity/AssetPermissions.d.ts +3 -3
- package/api/entities/Identity/AssetPermissions.d.ts.map +1 -1
- package/api/entities/Identity/AssetPermissions.js.map +1 -1
- package/api/entities/Identity/index.d.ts +17 -2
- package/api/entities/Identity/index.d.ts.map +1 -1
- package/api/entities/Identity/index.js +37 -0
- package/api/entities/Identity/index.js.map +1 -1
- package/api/entities/Instruction/index.d.ts.map +1 -1
- package/api/entities/Instruction/index.js +29 -20
- package/api/entities/Instruction/index.js.map +1 -1
- package/api/entities/Instruction/types.d.ts +10 -3
- package/api/entities/Instruction/types.d.ts.map +1 -1
- package/api/entities/Instruction/types.js.map +1 -1
- package/api/entities/MetadataEntry/index.d.ts +2 -2
- package/api/entities/MetadataEntry/index.d.ts.map +1 -1
- package/api/entities/MetadataEntry/index.js +1 -1
- package/api/entities/MetadataEntry/index.js.map +1 -1
- package/api/entities/MultiSigProposal/index.d.ts +36 -2
- package/api/entities/MultiSigProposal/index.d.ts.map +1 -1
- package/api/entities/MultiSigProposal/index.js +91 -10
- package/api/entities/MultiSigProposal/index.js.map +1 -1
- package/api/entities/MultiSigProposal/types.d.ts +15 -2
- package/api/entities/MultiSigProposal/types.d.ts.map +1 -1
- package/api/entities/MultiSigProposal/types.js +6 -1
- package/api/entities/MultiSigProposal/types.js.map +1 -1
- package/api/entities/Portfolio/index.d.ts +12 -4
- package/api/entities/Portfolio/index.d.ts.map +1 -1
- package/api/entities/Portfolio/index.js +66 -6
- package/api/entities/Portfolio/index.js.map +1 -1
- package/api/entities/Portfolio/types.d.ts +20 -5
- package/api/entities/Portfolio/types.d.ts.map +1 -1
- package/api/entities/Venue/types.d.ts +1 -1
- package/api/entities/common/namespaces/Authorizations.d.ts +2 -1
- package/api/entities/common/namespaces/Authorizations.d.ts.map +1 -1
- package/api/entities/common/namespaces/Authorizations.js.map +1 -1
- package/api/entities/types.d.ts +3 -1
- package/api/entities/types.d.ts.map +1 -1
- package/api/entities/types.js.map +1 -1
- package/api/procedures/addInstruction.d.ts.map +1 -1
- package/api/procedures/addInstruction.js +76 -17
- package/api/procedures/addInstruction.js.map +1 -1
- package/api/procedures/createNftCollection.d.ts.map +1 -1
- package/api/procedures/createNftCollection.js +1 -1
- package/api/procedures/createNftCollection.js.map +1 -1
- package/api/procedures/evaluateMultiSigProposal.d.ts +19 -0
- package/api/procedures/evaluateMultiSigProposal.d.ts.map +1 -0
- package/api/procedures/evaluateMultiSigProposal.js +92 -0
- package/api/procedures/evaluateMultiSigProposal.js.map +1 -0
- package/api/procedures/issueNft.js +1 -1
- package/api/procedures/issueNft.js.map +1 -1
- package/api/procedures/modifyClaims.d.ts.map +1 -1
- package/api/procedures/modifyClaims.js +7 -21
- package/api/procedures/modifyClaims.js.map +1 -1
- package/api/procedures/moveFunds.d.ts.map +1 -1
- package/api/procedures/moveFunds.js +82 -16
- package/api/procedures/moveFunds.js.map +1 -1
- package/api/procedures/redeemNft.d.ts +31 -0
- package/api/procedures/redeemNft.d.ts.map +1 -0
- package/api/procedures/redeemNft.js +87 -0
- package/api/procedures/redeemNft.js.map +1 -0
- package/api/procedures/setPermissionGroup.js +1 -1
- package/api/procedures/setPermissionGroup.js.map +1 -1
- package/api/procedures/types.d.ts +26 -9
- package/api/procedures/types.d.ts.map +1 -1
- package/api/procedures/types.js.map +1 -1
- package/api/procedures/waivePermissions.js +1 -1
- package/api/procedures/waivePermissions.js.map +1 -1
- package/base/Context.d.ts.map +1 -1
- package/base/Context.js +24 -24
- package/base/Context.js.map +1 -1
- package/generated/types.d.ts +5 -1
- package/generated/types.d.ts.map +1 -1
- package/generated/types.js +4 -0
- package/generated/types.js.map +1 -1
- package/internal.d.ts +2 -0
- package/internal.d.ts.map +1 -1
- package/internal.js +7 -3
- package/internal.js.map +1 -1
- package/middleware/queries.d.ts +19 -2
- package/middleware/queries.d.ts.map +1 -1
- package/middleware/queries.js +103 -6
- package/middleware/queries.js.map +1 -1
- package/middleware/types.d.ts +68950 -15292
- package/middleware/types.d.ts.map +1 -1
- package/middleware/types.js +36222 -999
- package/middleware/types.js.map +1 -1
- package/middleware/typesV1.d.ts +1 -1
- package/middleware/typesV1.d.ts.map +1 -1
- package/npm-package/polymeshassociation-polymesh-sdk-23.0.0-beta.1.tgz +0 -0
- package/package.json +2 -2
- package/polkadot/augment-api-errors.d.ts +4 -18
- package/polkadot/augment-api-errors.d.ts.map +1 -1
- package/polkadot/augment-api-events.d.ts +0 -6
- package/polkadot/augment-api-events.d.ts.map +1 -1
- package/polkadot/augment-api-query.d.ts +33 -26
- package/polkadot/augment-api-query.d.ts.map +1 -1
- package/polkadot/augment-api-tx.d.ts +123 -51
- package/polkadot/augment-api-tx.d.ts.map +1 -1
- package/polkadot/lookup.d.ts +246 -248
- package/polkadot/lookup.d.ts.map +1 -1
- package/polkadot/lookup.js +248 -253
- package/polkadot/lookup.js.map +1 -1
- package/polkadot/registry.d.ts +3 -5
- package/polkadot/registry.d.ts.map +1 -1
- package/polkadot/types-lookup.d.ts +251 -248
- package/polkadot/types-lookup.d.ts.map +1 -1
- package/types/index.d.ts +44 -7
- package/types/index.d.ts.map +1 -1
- package/types/index.js +18 -2
- package/types/index.js.map +1 -1
- package/types/internal.d.ts +1 -1
- package/utils/constants.d.ts +17 -1
- package/utils/constants.d.ts.map +1 -1
- package/utils/constants.js +18 -2
- package/utils/constants.js.map +1 -1
- package/utils/conversion.d.ts +34 -13
- package/utils/conversion.d.ts.map +1 -1
- package/utils/conversion.js +437 -364
- package/utils/conversion.js.map +1 -1
- package/utils/internal.d.ts +20 -3
- package/utils/internal.d.ts.map +1 -1
- package/utils/internal.js +119 -42
- package/utils/internal.js.map +1 -1
- package/utils/typeguards.d.ts +26 -2
- package/utils/typeguards.d.ts.map +1 -1
- package/utils/typeguards.js +39 -2
- package/utils/typeguards.js.map +1 -1
- package/api/entities/Asset/Fungible/Settlements/index.d.ts +0 -29
- package/api/entities/Asset/Fungible/Settlements/index.d.ts.map +0 -1
- package/api/entities/Asset/Fungible/Settlements/index.js +0 -70
- package/api/entities/Asset/Fungible/Settlements/index.js.map +0 -1
- package/middleware/enums.d.ts +0 -3
- package/middleware/enums.d.ts.map +0 -1
- package/middleware/enums.js +0 -38
- package/middleware/enums.js.map +0 -1
- package/npm-package/polymeshassociation-polymesh-sdk-23.0.0-alpha.9.tgz +0 -0
|
@@ -2453,13 +2453,7 @@ declare module "./types-lookup.ts" {
|
|
|
2453
2453
|
]>;
|
|
2454
2454
|
readonly type: 'AuthorizedPayingKey' | 'AcceptedPayingKey' | 'RemovedPayingKey' | 'UpdatedPolyxLimit';
|
|
2455
2455
|
}
|
|
2456
|
-
/** @name
|
|
2457
|
-
interface PalletRewardsRawEvent extends Enum {
|
|
2458
|
-
readonly isItnRewardClaimed: boolean;
|
|
2459
|
-
readonly asItnRewardClaimed: ITuple<[AccountId32, u128]>;
|
|
2460
|
-
readonly type: 'ItnRewardClaimed';
|
|
2461
|
-
}
|
|
2462
|
-
/** @name PalletContractsEvent (290) */
|
|
2456
|
+
/** @name PalletContractsEvent (289) */
|
|
2463
2457
|
interface PalletContractsEvent extends Enum {
|
|
2464
2458
|
readonly isInstantiated: boolean;
|
|
2465
2459
|
readonly asInstantiated: {
|
|
@@ -2502,9 +2496,9 @@ declare module "./types-lookup.ts" {
|
|
|
2502
2496
|
} & Struct;
|
|
2503
2497
|
readonly type: 'Instantiated' | 'Terminated' | 'CodeStored' | 'ContractEmitted' | 'CodeRemoved' | 'ContractCodeUpdated' | 'Called' | 'DelegateCalled';
|
|
2504
2498
|
}
|
|
2505
|
-
/** @name PolymeshContractsEvent (
|
|
2499
|
+
/** @name PolymeshContractsEvent (290) */
|
|
2506
2500
|
type PolymeshContractsEvent = Null;
|
|
2507
|
-
/** @name PalletPreimageEvent (
|
|
2501
|
+
/** @name PalletPreimageEvent (291) */
|
|
2508
2502
|
interface PalletPreimageEvent extends Enum {
|
|
2509
2503
|
readonly isNoted: boolean;
|
|
2510
2504
|
readonly asNoted: {
|
|
@@ -2520,7 +2514,7 @@ declare module "./types-lookup.ts" {
|
|
|
2520
2514
|
} & Struct;
|
|
2521
2515
|
readonly type: 'Noted' | 'Requested' | 'Cleared';
|
|
2522
2516
|
}
|
|
2523
|
-
/** @name PolymeshCommonUtilitiesNftEvent (
|
|
2517
|
+
/** @name PolymeshCommonUtilitiesNftEvent (292) */
|
|
2524
2518
|
interface PolymeshCommonUtilitiesNftEvent extends Enum {
|
|
2525
2519
|
readonly isNftCollectionCreated: boolean;
|
|
2526
2520
|
readonly asNftCollectionCreated: ITuple<[
|
|
@@ -2538,7 +2532,7 @@ declare module "./types-lookup.ts" {
|
|
|
2538
2532
|
]>;
|
|
2539
2533
|
readonly type: 'NftCollectionCreated' | 'NftPortfolioUpdated';
|
|
2540
2534
|
}
|
|
2541
|
-
/** @name PalletTestUtilsRawEvent (
|
|
2535
|
+
/** @name PalletTestUtilsRawEvent (294) */
|
|
2542
2536
|
interface PalletTestUtilsRawEvent extends Enum {
|
|
2543
2537
|
readonly isDidStatus: boolean;
|
|
2544
2538
|
readonly asDidStatus: ITuple<[PolymeshPrimitivesIdentityId, AccountId32]>;
|
|
@@ -2546,7 +2540,7 @@ declare module "./types-lookup.ts" {
|
|
|
2546
2540
|
readonly asCddStatus: ITuple<[Option<PolymeshPrimitivesIdentityId>, AccountId32, bool]>;
|
|
2547
2541
|
readonly type: 'DidStatus' | 'CddStatus';
|
|
2548
2542
|
}
|
|
2549
|
-
/** @name FrameSystemPhase (
|
|
2543
|
+
/** @name FrameSystemPhase (295) */
|
|
2550
2544
|
interface FrameSystemPhase extends Enum {
|
|
2551
2545
|
readonly isApplyExtrinsic: boolean;
|
|
2552
2546
|
readonly asApplyExtrinsic: u32;
|
|
@@ -2554,12 +2548,12 @@ declare module "./types-lookup.ts" {
|
|
|
2554
2548
|
readonly isInitialization: boolean;
|
|
2555
2549
|
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
|
|
2556
2550
|
}
|
|
2557
|
-
/** @name FrameSystemLastRuntimeUpgradeInfo (
|
|
2551
|
+
/** @name FrameSystemLastRuntimeUpgradeInfo (298) */
|
|
2558
2552
|
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
|
|
2559
2553
|
readonly specVersion: Compact<u32>;
|
|
2560
2554
|
readonly specName: Text;
|
|
2561
2555
|
}
|
|
2562
|
-
/** @name FrameSystemCall (
|
|
2556
|
+
/** @name FrameSystemCall (301) */
|
|
2563
2557
|
interface FrameSystemCall extends Enum {
|
|
2564
2558
|
readonly isRemark: boolean;
|
|
2565
2559
|
readonly asRemark: {
|
|
@@ -2596,41 +2590,41 @@ declare module "./types-lookup.ts" {
|
|
|
2596
2590
|
} & Struct;
|
|
2597
2591
|
readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
|
|
2598
2592
|
}
|
|
2599
|
-
/** @name FrameSystemLimitsBlockWeights (
|
|
2593
|
+
/** @name FrameSystemLimitsBlockWeights (305) */
|
|
2600
2594
|
interface FrameSystemLimitsBlockWeights extends Struct {
|
|
2601
2595
|
readonly baseBlock: SpWeightsWeightV2Weight;
|
|
2602
2596
|
readonly maxBlock: SpWeightsWeightV2Weight;
|
|
2603
2597
|
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
|
|
2604
2598
|
}
|
|
2605
|
-
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (
|
|
2599
|
+
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (306) */
|
|
2606
2600
|
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
|
|
2607
2601
|
readonly normal: FrameSystemLimitsWeightsPerClass;
|
|
2608
2602
|
readonly operational: FrameSystemLimitsWeightsPerClass;
|
|
2609
2603
|
readonly mandatory: FrameSystemLimitsWeightsPerClass;
|
|
2610
2604
|
}
|
|
2611
|
-
/** @name FrameSystemLimitsWeightsPerClass (
|
|
2605
|
+
/** @name FrameSystemLimitsWeightsPerClass (307) */
|
|
2612
2606
|
interface FrameSystemLimitsWeightsPerClass extends Struct {
|
|
2613
2607
|
readonly baseExtrinsic: SpWeightsWeightV2Weight;
|
|
2614
2608
|
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
|
|
2615
2609
|
readonly maxTotal: Option<SpWeightsWeightV2Weight>;
|
|
2616
2610
|
readonly reserved: Option<SpWeightsWeightV2Weight>;
|
|
2617
2611
|
}
|
|
2618
|
-
/** @name FrameSystemLimitsBlockLength (
|
|
2612
|
+
/** @name FrameSystemLimitsBlockLength (309) */
|
|
2619
2613
|
interface FrameSystemLimitsBlockLength extends Struct {
|
|
2620
2614
|
readonly max: FrameSupportDispatchPerDispatchClassU32;
|
|
2621
2615
|
}
|
|
2622
|
-
/** @name FrameSupportDispatchPerDispatchClassU32 (
|
|
2616
|
+
/** @name FrameSupportDispatchPerDispatchClassU32 (310) */
|
|
2623
2617
|
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
|
|
2624
2618
|
readonly normal: u32;
|
|
2625
2619
|
readonly operational: u32;
|
|
2626
2620
|
readonly mandatory: u32;
|
|
2627
2621
|
}
|
|
2628
|
-
/** @name SpWeightsRuntimeDbWeight (
|
|
2622
|
+
/** @name SpWeightsRuntimeDbWeight (311) */
|
|
2629
2623
|
interface SpWeightsRuntimeDbWeight extends Struct {
|
|
2630
2624
|
readonly read: u64;
|
|
2631
2625
|
readonly write: u64;
|
|
2632
2626
|
}
|
|
2633
|
-
/** @name SpVersionRuntimeVersion (
|
|
2627
|
+
/** @name SpVersionRuntimeVersion (312) */
|
|
2634
2628
|
interface SpVersionRuntimeVersion extends Struct {
|
|
2635
2629
|
readonly specName: Text;
|
|
2636
2630
|
readonly implName: Text;
|
|
@@ -2641,7 +2635,7 @@ declare module "./types-lookup.ts" {
|
|
|
2641
2635
|
readonly transactionVersion: u32;
|
|
2642
2636
|
readonly stateVersion: u8;
|
|
2643
2637
|
}
|
|
2644
|
-
/** @name FrameSystemError (
|
|
2638
|
+
/** @name FrameSystemError (317) */
|
|
2645
2639
|
interface FrameSystemError extends Enum {
|
|
2646
2640
|
readonly isInvalidSpecName: boolean;
|
|
2647
2641
|
readonly isSpecVersionNeedsToIncrease: boolean;
|
|
@@ -2651,10 +2645,10 @@ declare module "./types-lookup.ts" {
|
|
|
2651
2645
|
readonly isCallFiltered: boolean;
|
|
2652
2646
|
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
|
|
2653
2647
|
}
|
|
2654
|
-
/** @name SpConsensusBabeAppPublic (
|
|
2648
|
+
/** @name SpConsensusBabeAppPublic (320) */
|
|
2655
2649
|
interface SpConsensusBabeAppPublic extends SpCoreSr25519Public {
|
|
2656
2650
|
}
|
|
2657
|
-
/** @name SpConsensusBabeDigestsNextConfigDescriptor (
|
|
2651
|
+
/** @name SpConsensusBabeDigestsNextConfigDescriptor (323) */
|
|
2658
2652
|
interface SpConsensusBabeDigestsNextConfigDescriptor extends Enum {
|
|
2659
2653
|
readonly isV1: boolean;
|
|
2660
2654
|
readonly asV1: {
|
|
@@ -2663,14 +2657,14 @@ declare module "./types-lookup.ts" {
|
|
|
2663
2657
|
} & Struct;
|
|
2664
2658
|
readonly type: 'V1';
|
|
2665
2659
|
}
|
|
2666
|
-
/** @name SpConsensusBabeAllowedSlots (
|
|
2660
|
+
/** @name SpConsensusBabeAllowedSlots (325) */
|
|
2667
2661
|
interface SpConsensusBabeAllowedSlots extends Enum {
|
|
2668
2662
|
readonly isPrimarySlots: boolean;
|
|
2669
2663
|
readonly isPrimaryAndSecondaryPlainSlots: boolean;
|
|
2670
2664
|
readonly isPrimaryAndSecondaryVRFSlots: boolean;
|
|
2671
2665
|
readonly type: 'PrimarySlots' | 'PrimaryAndSecondaryPlainSlots' | 'PrimaryAndSecondaryVRFSlots';
|
|
2672
2666
|
}
|
|
2673
|
-
/** @name SpConsensusBabeDigestsPreDigest (
|
|
2667
|
+
/** @name SpConsensusBabeDigestsPreDigest (329) */
|
|
2674
2668
|
interface SpConsensusBabeDigestsPreDigest extends Enum {
|
|
2675
2669
|
readonly isPrimary: boolean;
|
|
2676
2670
|
readonly asPrimary: SpConsensusBabeDigestsPrimaryPreDigest;
|
|
@@ -2680,31 +2674,31 @@ declare module "./types-lookup.ts" {
|
|
|
2680
2674
|
readonly asSecondaryVRF: SpConsensusBabeDigestsSecondaryVRFPreDigest;
|
|
2681
2675
|
readonly type: 'Primary' | 'SecondaryPlain' | 'SecondaryVRF';
|
|
2682
2676
|
}
|
|
2683
|
-
/** @name SpConsensusBabeDigestsPrimaryPreDigest (
|
|
2677
|
+
/** @name SpConsensusBabeDigestsPrimaryPreDigest (330) */
|
|
2684
2678
|
interface SpConsensusBabeDigestsPrimaryPreDigest extends Struct {
|
|
2685
2679
|
readonly authorityIndex: u32;
|
|
2686
2680
|
readonly slot: u64;
|
|
2687
2681
|
readonly vrfOutput: U8aFixed;
|
|
2688
2682
|
readonly vrfProof: U8aFixed;
|
|
2689
2683
|
}
|
|
2690
|
-
/** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (
|
|
2684
|
+
/** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (331) */
|
|
2691
2685
|
interface SpConsensusBabeDigestsSecondaryPlainPreDigest extends Struct {
|
|
2692
2686
|
readonly authorityIndex: u32;
|
|
2693
2687
|
readonly slot: u64;
|
|
2694
2688
|
}
|
|
2695
|
-
/** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (
|
|
2689
|
+
/** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (332) */
|
|
2696
2690
|
interface SpConsensusBabeDigestsSecondaryVRFPreDigest extends Struct {
|
|
2697
2691
|
readonly authorityIndex: u32;
|
|
2698
2692
|
readonly slot: u64;
|
|
2699
2693
|
readonly vrfOutput: U8aFixed;
|
|
2700
2694
|
readonly vrfProof: U8aFixed;
|
|
2701
2695
|
}
|
|
2702
|
-
/** @name SpConsensusBabeBabeEpochConfiguration (
|
|
2696
|
+
/** @name SpConsensusBabeBabeEpochConfiguration (333) */
|
|
2703
2697
|
interface SpConsensusBabeBabeEpochConfiguration extends Struct {
|
|
2704
2698
|
readonly c: ITuple<[u64, u64]>;
|
|
2705
2699
|
readonly allowedSlots: SpConsensusBabeAllowedSlots;
|
|
2706
2700
|
}
|
|
2707
|
-
/** @name PalletBabeCall (
|
|
2701
|
+
/** @name PalletBabeCall (337) */
|
|
2708
2702
|
interface PalletBabeCall extends Enum {
|
|
2709
2703
|
readonly isReportEquivocation: boolean;
|
|
2710
2704
|
readonly asReportEquivocation: {
|
|
@@ -2722,14 +2716,14 @@ declare module "./types-lookup.ts" {
|
|
|
2722
2716
|
} & Struct;
|
|
2723
2717
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'PlanConfigChange';
|
|
2724
2718
|
}
|
|
2725
|
-
/** @name SpConsensusSlotsEquivocationProof (
|
|
2719
|
+
/** @name SpConsensusSlotsEquivocationProof (338) */
|
|
2726
2720
|
interface SpConsensusSlotsEquivocationProof extends Struct {
|
|
2727
2721
|
readonly offender: SpConsensusBabeAppPublic;
|
|
2728
2722
|
readonly slot: u64;
|
|
2729
2723
|
readonly firstHeader: SpRuntimeHeader;
|
|
2730
2724
|
readonly secondHeader: SpRuntimeHeader;
|
|
2731
2725
|
}
|
|
2732
|
-
/** @name SpRuntimeHeader (
|
|
2726
|
+
/** @name SpRuntimeHeader (339) */
|
|
2733
2727
|
interface SpRuntimeHeader extends Struct {
|
|
2734
2728
|
readonly parentHash: H256;
|
|
2735
2729
|
readonly number: Compact<u32>;
|
|
@@ -2737,15 +2731,15 @@ declare module "./types-lookup.ts" {
|
|
|
2737
2731
|
readonly extrinsicsRoot: H256;
|
|
2738
2732
|
readonly digest: SpRuntimeDigest;
|
|
2739
2733
|
}
|
|
2740
|
-
/** @name SpRuntimeBlakeTwo256 (
|
|
2734
|
+
/** @name SpRuntimeBlakeTwo256 (340) */
|
|
2741
2735
|
type SpRuntimeBlakeTwo256 = Null;
|
|
2742
|
-
/** @name SpSessionMembershipProof (
|
|
2736
|
+
/** @name SpSessionMembershipProof (341) */
|
|
2743
2737
|
interface SpSessionMembershipProof extends Struct {
|
|
2744
2738
|
readonly session: u32;
|
|
2745
2739
|
readonly trieNodes: Vec<Bytes>;
|
|
2746
2740
|
readonly validatorCount: u32;
|
|
2747
2741
|
}
|
|
2748
|
-
/** @name PalletBabeError (
|
|
2742
|
+
/** @name PalletBabeError (342) */
|
|
2749
2743
|
interface PalletBabeError extends Enum {
|
|
2750
2744
|
readonly isInvalidEquivocationProof: boolean;
|
|
2751
2745
|
readonly isInvalidKeyOwnershipProof: boolean;
|
|
@@ -2753,7 +2747,7 @@ declare module "./types-lookup.ts" {
|
|
|
2753
2747
|
readonly isInvalidConfiguration: boolean;
|
|
2754
2748
|
readonly type: 'InvalidEquivocationProof' | 'InvalidKeyOwnershipProof' | 'DuplicateOffenceReport' | 'InvalidConfiguration';
|
|
2755
2749
|
}
|
|
2756
|
-
/** @name PalletTimestampCall (
|
|
2750
|
+
/** @name PalletTimestampCall (343) */
|
|
2757
2751
|
interface PalletTimestampCall extends Enum {
|
|
2758
2752
|
readonly isSet: boolean;
|
|
2759
2753
|
readonly asSet: {
|
|
@@ -2761,7 +2755,7 @@ declare module "./types-lookup.ts" {
|
|
|
2761
2755
|
} & Struct;
|
|
2762
2756
|
readonly type: 'Set';
|
|
2763
2757
|
}
|
|
2764
|
-
/** @name PalletIndicesCall (
|
|
2758
|
+
/** @name PalletIndicesCall (345) */
|
|
2765
2759
|
interface PalletIndicesCall extends Enum {
|
|
2766
2760
|
readonly isClaim: boolean;
|
|
2767
2761
|
readonly asClaim: {
|
|
@@ -2788,7 +2782,7 @@ declare module "./types-lookup.ts" {
|
|
|
2788
2782
|
} & Struct;
|
|
2789
2783
|
readonly type: 'Claim' | 'Transfer' | 'Free' | 'ForceTransfer' | 'Freeze';
|
|
2790
2784
|
}
|
|
2791
|
-
/** @name PalletIndicesError (
|
|
2785
|
+
/** @name PalletIndicesError (347) */
|
|
2792
2786
|
interface PalletIndicesError extends Enum {
|
|
2793
2787
|
readonly isNotAssigned: boolean;
|
|
2794
2788
|
readonly isNotOwner: boolean;
|
|
@@ -2797,20 +2791,20 @@ declare module "./types-lookup.ts" {
|
|
|
2797
2791
|
readonly isPermanent: boolean;
|
|
2798
2792
|
readonly type: 'NotAssigned' | 'NotOwner' | 'InUse' | 'NotTransfer' | 'Permanent';
|
|
2799
2793
|
}
|
|
2800
|
-
/** @name PalletBalancesBalanceLock (
|
|
2794
|
+
/** @name PalletBalancesBalanceLock (349) */
|
|
2801
2795
|
interface PalletBalancesBalanceLock extends Struct {
|
|
2802
2796
|
readonly id: U8aFixed;
|
|
2803
2797
|
readonly amount: u128;
|
|
2804
2798
|
readonly reasons: PolymeshCommonUtilitiesBalancesReasons;
|
|
2805
2799
|
}
|
|
2806
|
-
/** @name PolymeshCommonUtilitiesBalancesReasons (
|
|
2800
|
+
/** @name PolymeshCommonUtilitiesBalancesReasons (350) */
|
|
2807
2801
|
interface PolymeshCommonUtilitiesBalancesReasons extends Enum {
|
|
2808
2802
|
readonly isFee: boolean;
|
|
2809
2803
|
readonly isMisc: boolean;
|
|
2810
2804
|
readonly isAll: boolean;
|
|
2811
2805
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
2812
2806
|
}
|
|
2813
|
-
/** @name PalletBalancesCall (
|
|
2807
|
+
/** @name PalletBalancesCall (351) */
|
|
2814
2808
|
interface PalletBalancesCall extends Enum {
|
|
2815
2809
|
readonly isTransfer: boolean;
|
|
2816
2810
|
readonly asTransfer: {
|
|
@@ -2845,7 +2839,7 @@ declare module "./types-lookup.ts" {
|
|
|
2845
2839
|
} & Struct;
|
|
2846
2840
|
readonly type: 'Transfer' | 'TransferWithMemo' | 'DepositBlockRewardReserveBalance' | 'SetBalance' | 'ForceTransfer' | 'BurnAccountBalance';
|
|
2847
2841
|
}
|
|
2848
|
-
/** @name PalletBalancesError (
|
|
2842
|
+
/** @name PalletBalancesError (352) */
|
|
2849
2843
|
interface PalletBalancesError extends Enum {
|
|
2850
2844
|
readonly isLiquidityRestrictions: boolean;
|
|
2851
2845
|
readonly isOverflow: boolean;
|
|
@@ -2854,34 +2848,34 @@ declare module "./types-lookup.ts" {
|
|
|
2854
2848
|
readonly isReceiverCddMissing: boolean;
|
|
2855
2849
|
readonly type: 'LiquidityRestrictions' | 'Overflow' | 'InsufficientBalance' | 'ExistentialDeposit' | 'ReceiverCddMissing';
|
|
2856
2850
|
}
|
|
2857
|
-
/** @name PalletTransactionPaymentReleases (
|
|
2851
|
+
/** @name PalletTransactionPaymentReleases (354) */
|
|
2858
2852
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
2859
2853
|
readonly isV1Ancient: boolean;
|
|
2860
2854
|
readonly isV2: boolean;
|
|
2861
2855
|
readonly type: 'V1Ancient' | 'V2';
|
|
2862
2856
|
}
|
|
2863
|
-
/** @name SpWeightsWeightToFeeCoefficient (
|
|
2857
|
+
/** @name SpWeightsWeightToFeeCoefficient (356) */
|
|
2864
2858
|
interface SpWeightsWeightToFeeCoefficient extends Struct {
|
|
2865
2859
|
readonly coeffInteger: u128;
|
|
2866
2860
|
readonly coeffFrac: Perbill;
|
|
2867
2861
|
readonly negative: bool;
|
|
2868
2862
|
readonly degree: u8;
|
|
2869
2863
|
}
|
|
2870
|
-
/** @name PolymeshPrimitivesIdentityDidRecord (
|
|
2864
|
+
/** @name PolymeshPrimitivesIdentityDidRecord (357) */
|
|
2871
2865
|
interface PolymeshPrimitivesIdentityDidRecord extends Struct {
|
|
2872
2866
|
readonly primaryKey: Option<AccountId32>;
|
|
2873
2867
|
}
|
|
2874
|
-
/** @name PalletIdentityClaim1stKey (
|
|
2868
|
+
/** @name PalletIdentityClaim1stKey (359) */
|
|
2875
2869
|
interface PalletIdentityClaim1stKey extends Struct {
|
|
2876
2870
|
readonly target: PolymeshPrimitivesIdentityId;
|
|
2877
2871
|
readonly claimType: PolymeshPrimitivesIdentityClaimClaimType;
|
|
2878
2872
|
}
|
|
2879
|
-
/** @name PalletIdentityClaim2ndKey (
|
|
2873
|
+
/** @name PalletIdentityClaim2ndKey (360) */
|
|
2880
2874
|
interface PalletIdentityClaim2ndKey extends Struct {
|
|
2881
2875
|
readonly issuer: PolymeshPrimitivesIdentityId;
|
|
2882
2876
|
readonly scope: Option<PolymeshPrimitivesIdentityClaimScope>;
|
|
2883
2877
|
}
|
|
2884
|
-
/** @name PolymeshPrimitivesSecondaryKeyKeyRecord (
|
|
2878
|
+
/** @name PolymeshPrimitivesSecondaryKeyKeyRecord (361) */
|
|
2885
2879
|
interface PolymeshPrimitivesSecondaryKeyKeyRecord extends Enum {
|
|
2886
2880
|
readonly isPrimaryKey: boolean;
|
|
2887
2881
|
readonly asPrimaryKey: PolymeshPrimitivesIdentityId;
|
|
@@ -2894,7 +2888,7 @@ declare module "./types-lookup.ts" {
|
|
|
2894
2888
|
readonly asMultiSigSignerKey: AccountId32;
|
|
2895
2889
|
readonly type: 'PrimaryKey' | 'SecondaryKey' | 'MultiSigSignerKey';
|
|
2896
2890
|
}
|
|
2897
|
-
/** @name PolymeshPrimitivesAuthorization (
|
|
2891
|
+
/** @name PolymeshPrimitivesAuthorization (364) */
|
|
2898
2892
|
interface PolymeshPrimitivesAuthorization extends Struct {
|
|
2899
2893
|
readonly authorizationData: PolymeshPrimitivesAuthorizationAuthorizationData;
|
|
2900
2894
|
readonly authorizedBy: PolymeshPrimitivesIdentityId;
|
|
@@ -2902,7 +2896,7 @@ declare module "./types-lookup.ts" {
|
|
|
2902
2896
|
readonly authId: u64;
|
|
2903
2897
|
readonly count: u32;
|
|
2904
2898
|
}
|
|
2905
|
-
/** @name PalletIdentityCall (
|
|
2899
|
+
/** @name PalletIdentityCall (367) */
|
|
2906
2900
|
interface PalletIdentityCall extends Enum {
|
|
2907
2901
|
readonly isCddRegisterDid: boolean;
|
|
2908
2902
|
readonly asCddRegisterDid: {
|
|
@@ -3012,17 +3006,17 @@ declare module "./types-lookup.ts" {
|
|
|
3012
3006
|
} & Struct;
|
|
3013
3007
|
readonly type: 'CddRegisterDid' | 'InvalidateCddClaims' | 'AcceptPrimaryKey' | 'ChangeCddRequirementForMkRotation' | 'JoinIdentityAsKey' | 'LeaveIdentityAsKey' | 'AddClaim' | 'RevokeClaim' | 'FreezeSecondaryKeys' | 'UnfreezeSecondaryKeys' | 'AddAuthorization' | 'RemoveAuthorization' | 'GcAddCddClaim' | 'GcRevokeCddClaim' | 'RevokeClaimByIndex' | 'RotatePrimaryKeyToSecondary' | 'AddSecondaryKeysWithAuthorization' | 'SetSecondaryKeyPermissions' | 'RemoveSecondaryKeys' | 'RegisterCustomClaimType' | 'CddRegisterDidWithCdd' | 'CreateChildIdentity' | 'CreateChildIdentities' | 'UnlinkChildIdentity';
|
|
3014
3008
|
}
|
|
3015
|
-
/** @name PolymeshCommonUtilitiesIdentitySecondaryKeyWithAuth (
|
|
3009
|
+
/** @name PolymeshCommonUtilitiesIdentitySecondaryKeyWithAuth (369) */
|
|
3016
3010
|
interface PolymeshCommonUtilitiesIdentitySecondaryKeyWithAuth extends Struct {
|
|
3017
3011
|
readonly secondaryKey: PolymeshPrimitivesSecondaryKey;
|
|
3018
3012
|
readonly authSignature: H512;
|
|
3019
3013
|
}
|
|
3020
|
-
/** @name PolymeshCommonUtilitiesIdentityCreateChildIdentityWithAuth (
|
|
3014
|
+
/** @name PolymeshCommonUtilitiesIdentityCreateChildIdentityWithAuth (372) */
|
|
3021
3015
|
interface PolymeshCommonUtilitiesIdentityCreateChildIdentityWithAuth extends Struct {
|
|
3022
3016
|
readonly key: AccountId32;
|
|
3023
3017
|
readonly authSignature: H512;
|
|
3024
3018
|
}
|
|
3025
|
-
/** @name PalletIdentityError (
|
|
3019
|
+
/** @name PalletIdentityError (373) */
|
|
3026
3020
|
interface PalletIdentityError extends Enum {
|
|
3027
3021
|
readonly isAlreadyLinked: boolean;
|
|
3028
3022
|
readonly isMissingCurrentIdentity: boolean;
|
|
@@ -3059,13 +3053,13 @@ declare module "./types-lookup.ts" {
|
|
|
3059
3053
|
readonly isExceptNotAllowedForExtrinsics: boolean;
|
|
3060
3054
|
readonly type: 'AlreadyLinked' | 'MissingCurrentIdentity' | 'Unauthorized' | 'InvalidAccountKey' | 'UnAuthorizedCddProvider' | 'InvalidAuthorizationFromOwner' | 'InvalidAuthorizationFromCddProvider' | 'NotCddProviderAttestation' | 'AuthorizationsNotForSameDids' | 'DidMustAlreadyExist' | 'AuthorizationExpired' | 'TargetHasNoCdd' | 'AuthorizationHasBeenRevoked' | 'InvalidAuthorizationSignature' | 'KeyNotAllowed' | 'NotPrimaryKey' | 'DidDoesNotExist' | 'DidAlreadyExists' | 'SecondaryKeysContainPrimaryKey' | 'FailedToChargeFee' | 'NotASigner' | 'CannotDecodeSignerAccountId' | 'MultiSigHasBalance' | 'AccountKeyIsBeingUsed' | 'CustomScopeTooLong' | 'CustomClaimTypeAlreadyExists' | 'CustomClaimTypeDoesNotExist' | 'ClaimDoesNotExist' | 'IsChildIdentity' | 'NoParentIdentity' | 'NotParentOrChildIdentity' | 'DuplicateKey' | 'ExceptNotAllowedForExtrinsics';
|
|
3061
3055
|
}
|
|
3062
|
-
/** @name PolymeshCommonUtilitiesGroupInactiveMember (
|
|
3056
|
+
/** @name PolymeshCommonUtilitiesGroupInactiveMember (375) */
|
|
3063
3057
|
interface PolymeshCommonUtilitiesGroupInactiveMember extends Struct {
|
|
3064
3058
|
readonly id: PolymeshPrimitivesIdentityId;
|
|
3065
3059
|
readonly deactivatedAt: u64;
|
|
3066
3060
|
readonly expiry: Option<u64>;
|
|
3067
3061
|
}
|
|
3068
|
-
/** @name PalletGroupCall (
|
|
3062
|
+
/** @name PalletGroupCall (376) */
|
|
3069
3063
|
interface PalletGroupCall extends Enum {
|
|
3070
3064
|
readonly isSetActiveMembersLimit: boolean;
|
|
3071
3065
|
readonly asSetActiveMembersLimit: {
|
|
@@ -3097,7 +3091,7 @@ declare module "./types-lookup.ts" {
|
|
|
3097
3091
|
readonly isAbdicateMembership: boolean;
|
|
3098
3092
|
readonly type: 'SetActiveMembersLimit' | 'DisableMember' | 'AddMember' | 'RemoveMember' | 'SwapMember' | 'ResetMembers' | 'AbdicateMembership';
|
|
3099
3093
|
}
|
|
3100
|
-
/** @name PalletGroupError (
|
|
3094
|
+
/** @name PalletGroupError (377) */
|
|
3101
3095
|
interface PalletGroupError extends Enum {
|
|
3102
3096
|
readonly isOnlyPrimaryKeyAllowed: boolean;
|
|
3103
3097
|
readonly isDuplicateMember: boolean;
|
|
@@ -3108,7 +3102,7 @@ declare module "./types-lookup.ts" {
|
|
|
3108
3102
|
readonly isActiveMembersLimitOverflow: boolean;
|
|
3109
3103
|
readonly type: 'OnlyPrimaryKeyAllowed' | 'DuplicateMember' | 'NoSuchMember' | 'LastMemberCannotQuit' | 'MissingCurrentIdentity' | 'ActiveMembersLimitExceeded' | 'ActiveMembersLimitOverflow';
|
|
3110
3104
|
}
|
|
3111
|
-
/** @name PalletCommitteeCall (
|
|
3105
|
+
/** @name PalletCommitteeCall (379) */
|
|
3112
3106
|
interface PalletCommitteeCall extends Enum {
|
|
3113
3107
|
readonly isSetVoteThreshold: boolean;
|
|
3114
3108
|
readonly asSetVoteThreshold: {
|
|
@@ -3136,7 +3130,7 @@ declare module "./types-lookup.ts" {
|
|
|
3136
3130
|
} & Struct;
|
|
3137
3131
|
readonly type: 'SetVoteThreshold' | 'SetReleaseCoordinator' | 'SetExpiresAfter' | 'VoteOrPropose' | 'Vote';
|
|
3138
3132
|
}
|
|
3139
|
-
/** @name PalletMultisigCall (
|
|
3133
|
+
/** @name PalletMultisigCall (385) */
|
|
3140
3134
|
interface PalletMultisigCall extends Enum {
|
|
3141
3135
|
readonly isCreateMultisig: boolean;
|
|
3142
3136
|
readonly asCreateMultisig: {
|
|
@@ -3248,7 +3242,7 @@ declare module "./types-lookup.ts" {
|
|
|
3248
3242
|
} & Struct;
|
|
3249
3243
|
readonly type: 'CreateMultisig' | 'CreateOrApproveProposalAsIdentity' | 'CreateOrApproveProposalAsKey' | 'CreateProposalAsIdentity' | 'CreateProposalAsKey' | 'ApproveAsIdentity' | 'ApproveAsKey' | 'RejectAsIdentity' | 'RejectAsKey' | 'AcceptMultisigSignerAsIdentity' | 'AcceptMultisigSignerAsKey' | 'AddMultisigSigner' | 'RemoveMultisigSigner' | 'AddMultisigSignersViaCreator' | 'RemoveMultisigSignersViaCreator' | 'ChangeSigsRequired' | 'MakeMultisigSecondary' | 'MakeMultisigPrimary' | 'ExecuteScheduledProposal' | 'ChangeSigsRequiredViaCreator' | 'RemoveCreatorControls';
|
|
3250
3244
|
}
|
|
3251
|
-
/** @name PalletBridgeCall (
|
|
3245
|
+
/** @name PalletBridgeCall (386) */
|
|
3252
3246
|
interface PalletBridgeCall extends Enum {
|
|
3253
3247
|
readonly isChangeController: boolean;
|
|
3254
3248
|
readonly asChangeController: {
|
|
@@ -3315,7 +3309,7 @@ declare module "./types-lookup.ts" {
|
|
|
3315
3309
|
} & Struct;
|
|
3316
3310
|
readonly type: 'ChangeController' | 'ChangeAdmin' | 'ChangeTimelock' | 'Freeze' | 'Unfreeze' | 'ChangeBridgeLimit' | 'ChangeBridgeExempted' | 'ForceHandleBridgeTx' | 'BatchProposeBridgeTx' | 'ProposeBridgeTx' | 'HandleBridgeTx' | 'FreezeTxs' | 'UnfreezeTxs' | 'HandleScheduledBridgeTx' | 'AddFreezeAdmin' | 'RemoveFreezeAdmin' | 'RemoveTxs';
|
|
3317
3311
|
}
|
|
3318
|
-
/** @name PalletStakingCall (
|
|
3312
|
+
/** @name PalletStakingCall (390) */
|
|
3319
3313
|
interface PalletStakingCall extends Enum {
|
|
3320
3314
|
readonly isBond: boolean;
|
|
3321
3315
|
readonly asBond: {
|
|
@@ -3458,7 +3452,7 @@ declare module "./types-lookup.ts" {
|
|
|
3458
3452
|
} & Struct;
|
|
3459
3453
|
readonly type: 'Bond' | 'BondExtra' | 'Unbond' | 'WithdrawUnbonded' | 'Validate' | 'Nominate' | 'Chill' | 'SetPayee' | 'SetController' | 'SetValidatorCount' | 'IncreaseValidatorCount' | 'ScaleValidatorCount' | 'AddPermissionedValidator' | 'RemovePermissionedValidator' | 'ValidateCddExpiryNominators' | 'SetCommissionCap' | 'SetMinBondThreshold' | 'ForceNoEras' | 'ForceNewEra' | 'SetInvulnerables' | 'ForceUnstake' | 'ForceNewEraAlways' | 'CancelDeferredSlash' | 'PayoutStakers' | 'Rebond' | 'SetHistoryDepth' | 'ReapStash' | 'SubmitElectionSolution' | 'SubmitElectionSolutionUnsigned' | 'PayoutStakersBySystem' | 'ChangeSlashingAllowedFor' | 'UpdatePermissionedValidatorIntendedCount' | 'ChillFromGovernance';
|
|
3460
3454
|
}
|
|
3461
|
-
/** @name PalletStakingRewardDestination (
|
|
3455
|
+
/** @name PalletStakingRewardDestination (391) */
|
|
3462
3456
|
interface PalletStakingRewardDestination extends Enum {
|
|
3463
3457
|
readonly isStaked: boolean;
|
|
3464
3458
|
readonly isStash: boolean;
|
|
@@ -3467,12 +3461,12 @@ declare module "./types-lookup.ts" {
|
|
|
3467
3461
|
readonly asAccount: AccountId32;
|
|
3468
3462
|
readonly type: 'Staked' | 'Stash' | 'Controller' | 'Account';
|
|
3469
3463
|
}
|
|
3470
|
-
/** @name PalletStakingValidatorPrefs (
|
|
3464
|
+
/** @name PalletStakingValidatorPrefs (392) */
|
|
3471
3465
|
interface PalletStakingValidatorPrefs extends Struct {
|
|
3472
3466
|
readonly commission: Compact<Perbill>;
|
|
3473
3467
|
readonly blocked: bool;
|
|
3474
3468
|
}
|
|
3475
|
-
/** @name PalletStakingCompactAssignments (
|
|
3469
|
+
/** @name PalletStakingCompactAssignments (398) */
|
|
3476
3470
|
interface PalletStakingCompactAssignments extends Struct {
|
|
3477
3471
|
readonly votes1: Vec<ITuple<[Compact<u32>, Compact<u16>]>>;
|
|
3478
3472
|
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<PerU16>]>, Compact<u16>]>>;
|
|
@@ -3491,18 +3485,18 @@ declare module "./types-lookup.ts" {
|
|
|
3491
3485
|
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
|
3492
3486
|
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
|
3493
3487
|
}
|
|
3494
|
-
/** @name SpNposElectionsElectionScore (
|
|
3488
|
+
/** @name SpNposElectionsElectionScore (449) */
|
|
3495
3489
|
interface SpNposElectionsElectionScore extends Struct {
|
|
3496
3490
|
readonly minimalStake: u128;
|
|
3497
3491
|
readonly sumStake: u128;
|
|
3498
3492
|
readonly sumStakeSquared: u128;
|
|
3499
3493
|
}
|
|
3500
|
-
/** @name PalletStakingElectionSize (
|
|
3494
|
+
/** @name PalletStakingElectionSize (450) */
|
|
3501
3495
|
interface PalletStakingElectionSize extends Struct {
|
|
3502
3496
|
readonly validators: Compact<u16>;
|
|
3503
3497
|
readonly nominators: Compact<u32>;
|
|
3504
3498
|
}
|
|
3505
|
-
/** @name PalletSessionCall (
|
|
3499
|
+
/** @name PalletSessionCall (451) */
|
|
3506
3500
|
interface PalletSessionCall extends Enum {
|
|
3507
3501
|
readonly isSetKeys: boolean;
|
|
3508
3502
|
readonly asSetKeys: {
|
|
@@ -3512,17 +3506,17 @@ declare module "./types-lookup.ts" {
|
|
|
3512
3506
|
readonly isPurgeKeys: boolean;
|
|
3513
3507
|
readonly type: 'SetKeys' | 'PurgeKeys';
|
|
3514
3508
|
}
|
|
3515
|
-
/** @name PolymeshRuntimeDevelopRuntimeSessionKeys (
|
|
3509
|
+
/** @name PolymeshRuntimeDevelopRuntimeSessionKeys (452) */
|
|
3516
3510
|
interface PolymeshRuntimeDevelopRuntimeSessionKeys extends Struct {
|
|
3517
3511
|
readonly grandpa: SpConsensusGrandpaAppPublic;
|
|
3518
3512
|
readonly babe: SpConsensusBabeAppPublic;
|
|
3519
3513
|
readonly imOnline: PalletImOnlineSr25519AppSr25519Public;
|
|
3520
3514
|
readonly authorityDiscovery: SpAuthorityDiscoveryAppPublic;
|
|
3521
3515
|
}
|
|
3522
|
-
/** @name SpAuthorityDiscoveryAppPublic (
|
|
3516
|
+
/** @name SpAuthorityDiscoveryAppPublic (453) */
|
|
3523
3517
|
interface SpAuthorityDiscoveryAppPublic extends SpCoreSr25519Public {
|
|
3524
3518
|
}
|
|
3525
|
-
/** @name PalletGrandpaCall (
|
|
3519
|
+
/** @name PalletGrandpaCall (454) */
|
|
3526
3520
|
interface PalletGrandpaCall extends Enum {
|
|
3527
3521
|
readonly isReportEquivocation: boolean;
|
|
3528
3522
|
readonly asReportEquivocation: {
|
|
@@ -3541,12 +3535,12 @@ declare module "./types-lookup.ts" {
|
|
|
3541
3535
|
} & Struct;
|
|
3542
3536
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
3543
3537
|
}
|
|
3544
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
3538
|
+
/** @name SpConsensusGrandpaEquivocationProof (455) */
|
|
3545
3539
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
3546
3540
|
readonly setId: u64;
|
|
3547
3541
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
3548
3542
|
}
|
|
3549
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
3543
|
+
/** @name SpConsensusGrandpaEquivocation (456) */
|
|
3550
3544
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
3551
3545
|
readonly isPrevote: boolean;
|
|
3552
3546
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -3554,37 +3548,37 @@ declare module "./types-lookup.ts" {
|
|
|
3554
3548
|
readonly asPrecommit: FinalityGrandpaEquivocationPrecommit;
|
|
3555
3549
|
readonly type: 'Prevote' | 'Precommit';
|
|
3556
3550
|
}
|
|
3557
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
3551
|
+
/** @name FinalityGrandpaEquivocationPrevote (457) */
|
|
3558
3552
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
3559
3553
|
readonly roundNumber: u64;
|
|
3560
3554
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
3561
3555
|
readonly first: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
3562
3556
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
3563
3557
|
}
|
|
3564
|
-
/** @name FinalityGrandpaPrevote (
|
|
3558
|
+
/** @name FinalityGrandpaPrevote (458) */
|
|
3565
3559
|
interface FinalityGrandpaPrevote extends Struct {
|
|
3566
3560
|
readonly targetHash: H256;
|
|
3567
3561
|
readonly targetNumber: u32;
|
|
3568
3562
|
}
|
|
3569
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
3563
|
+
/** @name SpConsensusGrandpaAppSignature (459) */
|
|
3570
3564
|
interface SpConsensusGrandpaAppSignature extends SpCoreEd25519Signature {
|
|
3571
3565
|
}
|
|
3572
|
-
/** @name SpCoreEd25519Signature (
|
|
3566
|
+
/** @name SpCoreEd25519Signature (460) */
|
|
3573
3567
|
interface SpCoreEd25519Signature extends U8aFixed {
|
|
3574
3568
|
}
|
|
3575
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
3569
|
+
/** @name FinalityGrandpaEquivocationPrecommit (462) */
|
|
3576
3570
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
3577
3571
|
readonly roundNumber: u64;
|
|
3578
3572
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
3579
3573
|
readonly first: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
3580
3574
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
3581
3575
|
}
|
|
3582
|
-
/** @name FinalityGrandpaPrecommit (
|
|
3576
|
+
/** @name FinalityGrandpaPrecommit (463) */
|
|
3583
3577
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
3584
3578
|
readonly targetHash: H256;
|
|
3585
3579
|
readonly targetNumber: u32;
|
|
3586
3580
|
}
|
|
3587
|
-
/** @name PalletImOnlineCall (
|
|
3581
|
+
/** @name PalletImOnlineCall (465) */
|
|
3588
3582
|
interface PalletImOnlineCall extends Enum {
|
|
3589
3583
|
readonly isHeartbeat: boolean;
|
|
3590
3584
|
readonly asHeartbeat: {
|
|
@@ -3593,7 +3587,7 @@ declare module "./types-lookup.ts" {
|
|
|
3593
3587
|
} & Struct;
|
|
3594
3588
|
readonly type: 'Heartbeat';
|
|
3595
3589
|
}
|
|
3596
|
-
/** @name PalletImOnlineHeartbeat (
|
|
3590
|
+
/** @name PalletImOnlineHeartbeat (466) */
|
|
3597
3591
|
interface PalletImOnlineHeartbeat extends Struct {
|
|
3598
3592
|
readonly blockNumber: u32;
|
|
3599
3593
|
readonly networkState: SpCoreOffchainOpaqueNetworkState;
|
|
@@ -3601,18 +3595,18 @@ declare module "./types-lookup.ts" {
|
|
|
3601
3595
|
readonly authorityIndex: u32;
|
|
3602
3596
|
readonly validatorsLen: u32;
|
|
3603
3597
|
}
|
|
3604
|
-
/** @name SpCoreOffchainOpaqueNetworkState (
|
|
3598
|
+
/** @name SpCoreOffchainOpaqueNetworkState (467) */
|
|
3605
3599
|
interface SpCoreOffchainOpaqueNetworkState extends Struct {
|
|
3606
3600
|
readonly peerId: OpaquePeerId;
|
|
3607
3601
|
readonly externalAddresses: Vec<OpaqueMultiaddr>;
|
|
3608
3602
|
}
|
|
3609
|
-
/** @name PalletImOnlineSr25519AppSr25519Signature (
|
|
3603
|
+
/** @name PalletImOnlineSr25519AppSr25519Signature (471) */
|
|
3610
3604
|
interface PalletImOnlineSr25519AppSr25519Signature extends SpCoreSr25519Signature {
|
|
3611
3605
|
}
|
|
3612
|
-
/** @name SpCoreSr25519Signature (
|
|
3606
|
+
/** @name SpCoreSr25519Signature (472) */
|
|
3613
3607
|
interface SpCoreSr25519Signature extends U8aFixed {
|
|
3614
3608
|
}
|
|
3615
|
-
/** @name PalletSudoCall (
|
|
3609
|
+
/** @name PalletSudoCall (473) */
|
|
3616
3610
|
interface PalletSudoCall extends Enum {
|
|
3617
3611
|
readonly isSudo: boolean;
|
|
3618
3612
|
readonly asSudo: {
|
|
@@ -3634,7 +3628,7 @@ declare module "./types-lookup.ts" {
|
|
|
3634
3628
|
} & Struct;
|
|
3635
3629
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
|
|
3636
3630
|
}
|
|
3637
|
-
/** @name PalletAssetCall (
|
|
3631
|
+
/** @name PalletAssetCall (474) */
|
|
3638
3632
|
interface PalletAssetCall extends Enum {
|
|
3639
3633
|
readonly isRegisterTicker: boolean;
|
|
3640
3634
|
readonly asRegisterTicker: {
|
|
@@ -3795,7 +3789,7 @@ declare module "./types-lookup.ts" {
|
|
|
3795
3789
|
} & Struct;
|
|
3796
3790
|
readonly type: 'RegisterTicker' | 'AcceptTickerTransfer' | 'AcceptAssetOwnershipTransfer' | 'CreateAsset' | 'Freeze' | 'Unfreeze' | 'RenameAsset' | 'Issue' | 'Redeem' | 'MakeDivisible' | 'AddDocuments' | 'RemoveDocuments' | 'SetFundingRound' | 'UpdateIdentifiers' | 'ControllerTransfer' | 'RegisterCustomAssetType' | 'CreateAssetWithCustomType' | 'SetAssetMetadata' | 'SetAssetMetadataDetails' | 'RegisterAndSetLocalAssetMetadata' | 'RegisterAssetMetadataLocalType' | 'RegisterAssetMetadataGlobalType' | 'RedeemFromPortfolio' | 'UpdateAssetType' | 'RemoveLocalMetadataKey' | 'RemoveMetadataValue' | 'ExemptTickerAffirmation' | 'RemoveTickerAffirmationExemption' | 'PreApproveTicker' | 'RemoveTickerPreApproval';
|
|
3797
3791
|
}
|
|
3798
|
-
/** @name PalletCorporateActionsDistributionCall (
|
|
3792
|
+
/** @name PalletCorporateActionsDistributionCall (476) */
|
|
3799
3793
|
interface PalletCorporateActionsDistributionCall extends Enum {
|
|
3800
3794
|
readonly isDistribute: boolean;
|
|
3801
3795
|
readonly asDistribute: {
|
|
@@ -3826,7 +3820,7 @@ declare module "./types-lookup.ts" {
|
|
|
3826
3820
|
} & Struct;
|
|
3827
3821
|
readonly type: 'Distribute' | 'Claim' | 'PushBenefit' | 'Reclaim' | 'RemoveDistribution';
|
|
3828
3822
|
}
|
|
3829
|
-
/** @name PalletAssetCheckpointCall (
|
|
3823
|
+
/** @name PalletAssetCheckpointCall (478) */
|
|
3830
3824
|
interface PalletAssetCheckpointCall extends Enum {
|
|
3831
3825
|
readonly isCreateCheckpoint: boolean;
|
|
3832
3826
|
readonly asCreateCheckpoint: {
|
|
@@ -3848,7 +3842,7 @@ declare module "./types-lookup.ts" {
|
|
|
3848
3842
|
} & Struct;
|
|
3849
3843
|
readonly type: 'CreateCheckpoint' | 'SetSchedulesMaxComplexity' | 'CreateSchedule' | 'RemoveSchedule';
|
|
3850
3844
|
}
|
|
3851
|
-
/** @name PalletComplianceManagerCall (
|
|
3845
|
+
/** @name PalletComplianceManagerCall (479) */
|
|
3852
3846
|
interface PalletComplianceManagerCall extends Enum {
|
|
3853
3847
|
readonly isAddComplianceRequirement: boolean;
|
|
3854
3848
|
readonly asAddComplianceRequirement: {
|
|
@@ -3895,7 +3889,7 @@ declare module "./types-lookup.ts" {
|
|
|
3895
3889
|
} & Struct;
|
|
3896
3890
|
readonly type: 'AddComplianceRequirement' | 'RemoveComplianceRequirement' | 'ReplaceAssetCompliance' | 'ResetAssetCompliance' | 'PauseAssetCompliance' | 'ResumeAssetCompliance' | 'AddDefaultTrustedClaimIssuer' | 'RemoveDefaultTrustedClaimIssuer' | 'ChangeComplianceRequirement';
|
|
3897
3891
|
}
|
|
3898
|
-
/** @name PalletCorporateActionsCall (
|
|
3892
|
+
/** @name PalletCorporateActionsCall (480) */
|
|
3899
3893
|
interface PalletCorporateActionsCall extends Enum {
|
|
3900
3894
|
readonly isSetMaxDetailsLength: boolean;
|
|
3901
3895
|
readonly asSetMaxDetailsLength: {
|
|
@@ -3954,7 +3948,7 @@ declare module "./types-lookup.ts" {
|
|
|
3954
3948
|
} & Struct;
|
|
3955
3949
|
readonly type: 'SetMaxDetailsLength' | 'SetDefaultTargets' | 'SetDefaultWithholdingTax' | 'SetDidWithholdingTax' | 'InitiateCorporateAction' | 'LinkCaDoc' | 'RemoveCa' | 'ChangeRecordDate' | 'InitiateCorporateActionAndDistribute';
|
|
3956
3950
|
}
|
|
3957
|
-
/** @name PalletCorporateActionsRecordDateSpec (
|
|
3951
|
+
/** @name PalletCorporateActionsRecordDateSpec (482) */
|
|
3958
3952
|
interface PalletCorporateActionsRecordDateSpec extends Enum {
|
|
3959
3953
|
readonly isScheduled: boolean;
|
|
3960
3954
|
readonly asScheduled: u64;
|
|
@@ -3964,7 +3958,7 @@ declare module "./types-lookup.ts" {
|
|
|
3964
3958
|
readonly asExisting: u64;
|
|
3965
3959
|
readonly type: 'Scheduled' | 'ExistingSchedule' | 'Existing';
|
|
3966
3960
|
}
|
|
3967
|
-
/** @name PalletCorporateActionsInitiateCorporateActionArgs (
|
|
3961
|
+
/** @name PalletCorporateActionsInitiateCorporateActionArgs (485) */
|
|
3968
3962
|
interface PalletCorporateActionsInitiateCorporateActionArgs extends Struct {
|
|
3969
3963
|
readonly ticker: PolymeshPrimitivesTicker;
|
|
3970
3964
|
readonly kind: PalletCorporateActionsCaKind;
|
|
@@ -3975,7 +3969,7 @@ declare module "./types-lookup.ts" {
|
|
|
3975
3969
|
readonly defaultWithholdingTax: Option<Permill>;
|
|
3976
3970
|
readonly withholdingTax: Option<Vec<ITuple<[PolymeshPrimitivesIdentityId, Permill]>>>;
|
|
3977
3971
|
}
|
|
3978
|
-
/** @name PalletCorporateActionsBallotCall (
|
|
3972
|
+
/** @name PalletCorporateActionsBallotCall (486) */
|
|
3979
3973
|
interface PalletCorporateActionsBallotCall extends Enum {
|
|
3980
3974
|
readonly isAttachBallot: boolean;
|
|
3981
3975
|
readonly asAttachBallot: {
|
|
@@ -4010,7 +4004,7 @@ declare module "./types-lookup.ts" {
|
|
|
4010
4004
|
} & Struct;
|
|
4011
4005
|
readonly type: 'AttachBallot' | 'Vote' | 'ChangeEnd' | 'ChangeMeta' | 'ChangeRcv' | 'RemoveBallot';
|
|
4012
4006
|
}
|
|
4013
|
-
/** @name PalletPipsCall (
|
|
4007
|
+
/** @name PalletPipsCall (487) */
|
|
4014
4008
|
interface PalletPipsCall extends Enum {
|
|
4015
4009
|
readonly isSetPruneHistoricalPips: boolean;
|
|
4016
4010
|
readonly asSetPruneHistoricalPips: {
|
|
@@ -4083,14 +4077,14 @@ declare module "./types-lookup.ts" {
|
|
|
4083
4077
|
} & Struct;
|
|
4084
4078
|
readonly type: 'SetPruneHistoricalPips' | 'SetMinProposalDeposit' | 'SetDefaultEnactmentPeriod' | 'SetPendingPipExpiry' | 'SetMaxPipSkipCount' | 'SetActivePipLimit' | 'Propose' | 'Vote' | 'ApproveCommitteeProposal' | 'RejectProposal' | 'PruneProposal' | 'RescheduleExecution' | 'ClearSnapshot' | 'Snapshot' | 'EnactSnapshotResults' | 'ExecuteScheduledPip' | 'ExpireScheduledPip';
|
|
4085
4079
|
}
|
|
4086
|
-
/** @name PalletPipsSnapshotResult (
|
|
4080
|
+
/** @name PalletPipsSnapshotResult (490) */
|
|
4087
4081
|
interface PalletPipsSnapshotResult extends Enum {
|
|
4088
4082
|
readonly isApprove: boolean;
|
|
4089
4083
|
readonly isReject: boolean;
|
|
4090
4084
|
readonly isSkip: boolean;
|
|
4091
4085
|
readonly type: 'Approve' | 'Reject' | 'Skip';
|
|
4092
4086
|
}
|
|
4093
|
-
/** @name PalletPortfolioCall (
|
|
4087
|
+
/** @name PalletPortfolioCall (491) */
|
|
4094
4088
|
interface PalletPortfolioCall extends Enum {
|
|
4095
4089
|
readonly isCreatePortfolio: boolean;
|
|
4096
4090
|
readonly asCreatePortfolio: {
|
|
@@ -4131,12 +4125,12 @@ declare module "./types-lookup.ts" {
|
|
|
4131
4125
|
} & Struct;
|
|
4132
4126
|
readonly type: 'CreatePortfolio' | 'DeletePortfolio' | 'RenamePortfolio' | 'QuitPortfolioCustody' | 'AcceptPortfolioCustody' | 'MovePortfolioFunds' | 'PreApprovePortfolio' | 'RemovePortfolioPreApproval';
|
|
4133
4127
|
}
|
|
4134
|
-
/** @name PolymeshPrimitivesPortfolioFund (
|
|
4128
|
+
/** @name PolymeshPrimitivesPortfolioFund (493) */
|
|
4135
4129
|
interface PolymeshPrimitivesPortfolioFund extends Struct {
|
|
4136
4130
|
readonly description: PolymeshPrimitivesPortfolioFundDescription;
|
|
4137
4131
|
readonly memo: Option<PolymeshPrimitivesMemo>;
|
|
4138
4132
|
}
|
|
4139
|
-
/** @name PalletProtocolFeeCall (
|
|
4133
|
+
/** @name PalletProtocolFeeCall (494) */
|
|
4140
4134
|
interface PalletProtocolFeeCall extends Enum {
|
|
4141
4135
|
readonly isChangeCoefficient: boolean;
|
|
4142
4136
|
readonly asChangeCoefficient: {
|
|
@@ -4149,7 +4143,7 @@ declare module "./types-lookup.ts" {
|
|
|
4149
4143
|
} & Struct;
|
|
4150
4144
|
readonly type: 'ChangeCoefficient' | 'ChangeBaseFee';
|
|
4151
4145
|
}
|
|
4152
|
-
/** @name PolymeshCommonUtilitiesProtocolFeeProtocolOp (
|
|
4146
|
+
/** @name PolymeshCommonUtilitiesProtocolFeeProtocolOp (495) */
|
|
4153
4147
|
interface PolymeshCommonUtilitiesProtocolFeeProtocolOp extends Enum {
|
|
4154
4148
|
readonly isAssetRegisterTicker: boolean;
|
|
4155
4149
|
readonly isAssetIssue: boolean;
|
|
@@ -4166,9 +4160,10 @@ declare module "./types-lookup.ts" {
|
|
|
4166
4160
|
readonly isCapitalDistributionDistribute: boolean;
|
|
4167
4161
|
readonly isNftCreateCollection: boolean;
|
|
4168
4162
|
readonly isNftMint: boolean;
|
|
4169
|
-
readonly
|
|
4163
|
+
readonly isIdentityCreateChildIdentity: boolean;
|
|
4164
|
+
readonly type: 'AssetRegisterTicker' | 'AssetIssue' | 'AssetAddDocuments' | 'AssetCreateAsset' | 'CheckpointCreateSchedule' | 'ComplianceManagerAddComplianceRequirement' | 'IdentityCddRegisterDid' | 'IdentityAddClaim' | 'IdentityAddSecondaryKeysWithAuthorization' | 'PipsPropose' | 'ContractsPutCode' | 'CorporateBallotAttachBallot' | 'CapitalDistributionDistribute' | 'NftCreateCollection' | 'NftMint' | 'IdentityCreateChildIdentity';
|
|
4170
4165
|
}
|
|
4171
|
-
/** @name PalletSchedulerCall (
|
|
4166
|
+
/** @name PalletSchedulerCall (496) */
|
|
4172
4167
|
interface PalletSchedulerCall extends Enum {
|
|
4173
4168
|
readonly isSchedule: boolean;
|
|
4174
4169
|
readonly asSchedule: {
|
|
@@ -4211,7 +4206,7 @@ declare module "./types-lookup.ts" {
|
|
|
4211
4206
|
} & Struct;
|
|
4212
4207
|
readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter';
|
|
4213
4208
|
}
|
|
4214
|
-
/** @name PalletSettlementCall (
|
|
4209
|
+
/** @name PalletSettlementCall (498) */
|
|
4215
4210
|
interface PalletSettlementCall extends Enum {
|
|
4216
4211
|
readonly isCreateVenue: boolean;
|
|
4217
4212
|
readonly asCreateVenue: {
|
|
@@ -4304,9 +4299,34 @@ declare module "./types-lookup.ts" {
|
|
|
4304
4299
|
readonly id: u64;
|
|
4305
4300
|
readonly weightLimit: SpWeightsWeightV2Weight;
|
|
4306
4301
|
} & Struct;
|
|
4307
|
-
readonly
|
|
4302
|
+
readonly isAffirmWithReceiptsWithCount: boolean;
|
|
4303
|
+
readonly asAffirmWithReceiptsWithCount: {
|
|
4304
|
+
readonly id: u64;
|
|
4305
|
+
readonly receiptDetails: Vec<PolymeshPrimitivesSettlementReceiptDetails>;
|
|
4306
|
+
readonly portfolios: Vec<PolymeshPrimitivesIdentityIdPortfolioId>;
|
|
4307
|
+
readonly numberOfAssets: Option<PolymeshPrimitivesSettlementAffirmationCount>;
|
|
4308
|
+
} & Struct;
|
|
4309
|
+
readonly isAffirmInstructionWithCount: boolean;
|
|
4310
|
+
readonly asAffirmInstructionWithCount: {
|
|
4311
|
+
readonly id: u64;
|
|
4312
|
+
readonly portfolios: Vec<PolymeshPrimitivesIdentityIdPortfolioId>;
|
|
4313
|
+
readonly numberOfAssets: Option<PolymeshPrimitivesSettlementAffirmationCount>;
|
|
4314
|
+
} & Struct;
|
|
4315
|
+
readonly isRejectInstructionWithCount: boolean;
|
|
4316
|
+
readonly asRejectInstructionWithCount: {
|
|
4317
|
+
readonly id: u64;
|
|
4318
|
+
readonly portfolio: PolymeshPrimitivesIdentityIdPortfolioId;
|
|
4319
|
+
readonly numberOfAssets: Option<PolymeshPrimitivesSettlementAssetCount>;
|
|
4320
|
+
} & Struct;
|
|
4321
|
+
readonly isWithdrawAffirmationWithCount: boolean;
|
|
4322
|
+
readonly asWithdrawAffirmationWithCount: {
|
|
4323
|
+
readonly id: u64;
|
|
4324
|
+
readonly portfolios: Vec<PolymeshPrimitivesIdentityIdPortfolioId>;
|
|
4325
|
+
readonly numberOfAssets: Option<PolymeshPrimitivesSettlementAffirmationCount>;
|
|
4326
|
+
} & Struct;
|
|
4327
|
+
readonly type: 'CreateVenue' | 'UpdateVenueDetails' | 'UpdateVenueType' | 'AffirmWithReceipts' | 'SetVenueFiltering' | 'AllowVenues' | 'DisallowVenues' | 'UpdateVenueSigners' | 'ExecuteManualInstruction' | 'AddInstruction' | 'AddAndAffirmInstruction' | 'AffirmInstruction' | 'WithdrawAffirmation' | 'RejectInstruction' | 'ExecuteScheduledInstruction' | 'AffirmWithReceiptsWithCount' | 'AffirmInstructionWithCount' | 'RejectInstructionWithCount' | 'WithdrawAffirmationWithCount';
|
|
4308
4328
|
}
|
|
4309
|
-
/** @name PolymeshPrimitivesSettlementReceiptDetails (
|
|
4329
|
+
/** @name PolymeshPrimitivesSettlementReceiptDetails (500) */
|
|
4310
4330
|
interface PolymeshPrimitivesSettlementReceiptDetails extends Struct {
|
|
4311
4331
|
readonly uid: u64;
|
|
4312
4332
|
readonly instructionId: u64;
|
|
@@ -4315,7 +4335,7 @@ declare module "./types-lookup.ts" {
|
|
|
4315
4335
|
readonly signature: SpRuntimeMultiSignature;
|
|
4316
4336
|
readonly metadata: Option<PolymeshPrimitivesSettlementReceiptMetadata>;
|
|
4317
4337
|
}
|
|
4318
|
-
/** @name SpRuntimeMultiSignature (
|
|
4338
|
+
/** @name SpRuntimeMultiSignature (501) */
|
|
4319
4339
|
interface SpRuntimeMultiSignature extends Enum {
|
|
4320
4340
|
readonly isEd25519: boolean;
|
|
4321
4341
|
readonly asEd25519: SpCoreEd25519Signature;
|
|
@@ -4325,10 +4345,22 @@ declare module "./types-lookup.ts" {
|
|
|
4325
4345
|
readonly asEcdsa: SpCoreEcdsaSignature;
|
|
4326
4346
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
|
|
4327
4347
|
}
|
|
4328
|
-
/** @name SpCoreEcdsaSignature (
|
|
4348
|
+
/** @name SpCoreEcdsaSignature (502) */
|
|
4329
4349
|
interface SpCoreEcdsaSignature extends U8aFixed {
|
|
4330
4350
|
}
|
|
4331
|
-
/** @name
|
|
4351
|
+
/** @name PolymeshPrimitivesSettlementAffirmationCount (505) */
|
|
4352
|
+
interface PolymeshPrimitivesSettlementAffirmationCount extends Struct {
|
|
4353
|
+
readonly senderAssetCount: PolymeshPrimitivesSettlementAssetCount;
|
|
4354
|
+
readonly receiverAssetCount: PolymeshPrimitivesSettlementAssetCount;
|
|
4355
|
+
readonly offchainCount: u32;
|
|
4356
|
+
}
|
|
4357
|
+
/** @name PolymeshPrimitivesSettlementAssetCount (506) */
|
|
4358
|
+
interface PolymeshPrimitivesSettlementAssetCount extends Struct {
|
|
4359
|
+
readonly fungible: u32;
|
|
4360
|
+
readonly nonFungible: u32;
|
|
4361
|
+
readonly offChain: u32;
|
|
4362
|
+
}
|
|
4363
|
+
/** @name PalletStatisticsCall (508) */
|
|
4332
4364
|
interface PalletStatisticsCall extends Enum {
|
|
4333
4365
|
readonly isSetActiveAssetStats: boolean;
|
|
4334
4366
|
readonly asSetActiveAssetStats: {
|
|
@@ -4354,7 +4386,7 @@ declare module "./types-lookup.ts" {
|
|
|
4354
4386
|
} & Struct;
|
|
4355
4387
|
readonly type: 'SetActiveAssetStats' | 'BatchUpdateAssetStats' | 'SetAssetTransferCompliance' | 'SetEntitiesExempt';
|
|
4356
4388
|
}
|
|
4357
|
-
/** @name PalletStoCall (
|
|
4389
|
+
/** @name PalletStoCall (513) */
|
|
4358
4390
|
interface PalletStoCall extends Enum {
|
|
4359
4391
|
readonly isCreateFundraiser: boolean;
|
|
4360
4392
|
readonly asCreateFundraiser: {
|
|
@@ -4403,12 +4435,12 @@ declare module "./types-lookup.ts" {
|
|
|
4403
4435
|
} & Struct;
|
|
4404
4436
|
readonly type: 'CreateFundraiser' | 'Invest' | 'FreezeFundraiser' | 'UnfreezeFundraiser' | 'ModifyFundraiserWindow' | 'Stop';
|
|
4405
4437
|
}
|
|
4406
|
-
/** @name PalletStoPriceTier (
|
|
4438
|
+
/** @name PalletStoPriceTier (515) */
|
|
4407
4439
|
interface PalletStoPriceTier extends Struct {
|
|
4408
4440
|
readonly total: u128;
|
|
4409
4441
|
readonly price: u128;
|
|
4410
4442
|
}
|
|
4411
|
-
/** @name PalletTreasuryCall (
|
|
4443
|
+
/** @name PalletTreasuryCall (517) */
|
|
4412
4444
|
interface PalletTreasuryCall extends Enum {
|
|
4413
4445
|
readonly isDisbursement: boolean;
|
|
4414
4446
|
readonly asDisbursement: {
|
|
@@ -4420,12 +4452,12 @@ declare module "./types-lookup.ts" {
|
|
|
4420
4452
|
} & Struct;
|
|
4421
4453
|
readonly type: 'Disbursement' | 'Reimbursement';
|
|
4422
4454
|
}
|
|
4423
|
-
/** @name PolymeshPrimitivesBeneficiary (
|
|
4455
|
+
/** @name PolymeshPrimitivesBeneficiary (519) */
|
|
4424
4456
|
interface PolymeshPrimitivesBeneficiary extends Struct {
|
|
4425
4457
|
readonly id: PolymeshPrimitivesIdentityId;
|
|
4426
4458
|
readonly amount: u128;
|
|
4427
4459
|
}
|
|
4428
|
-
/** @name PalletUtilityCall (
|
|
4460
|
+
/** @name PalletUtilityCall (520) */
|
|
4429
4461
|
interface PalletUtilityCall extends Enum {
|
|
4430
4462
|
readonly isBatch: boolean;
|
|
4431
4463
|
readonly asBatch: {
|
|
@@ -4469,12 +4501,12 @@ declare module "./types-lookup.ts" {
|
|
|
4469
4501
|
} & Struct;
|
|
4470
4502
|
readonly type: 'Batch' | 'RelayTx' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight' | 'BatchOld' | 'BatchAtomic' | 'BatchOptimistic';
|
|
4471
4503
|
}
|
|
4472
|
-
/** @name PalletUtilityUniqueCall (
|
|
4504
|
+
/** @name PalletUtilityUniqueCall (522) */
|
|
4473
4505
|
interface PalletUtilityUniqueCall extends Struct {
|
|
4474
4506
|
readonly nonce: u64;
|
|
4475
4507
|
readonly call: Call;
|
|
4476
4508
|
}
|
|
4477
|
-
/** @name PolymeshRuntimeDevelopRuntimeOriginCaller (
|
|
4509
|
+
/** @name PolymeshRuntimeDevelopRuntimeOriginCaller (523) */
|
|
4478
4510
|
interface PolymeshRuntimeDevelopRuntimeOriginCaller extends Enum {
|
|
4479
4511
|
readonly isSystem: boolean;
|
|
4480
4512
|
readonly asSystem: FrameSupportDispatchRawOrigin;
|
|
@@ -4487,7 +4519,7 @@ declare module "./types-lookup.ts" {
|
|
|
4487
4519
|
readonly asUpgradeCommittee: PalletCommitteeRawOriginInstance4;
|
|
4488
4520
|
readonly type: 'System' | 'Void' | 'PolymeshCommittee' | 'TechnicalCommittee' | 'UpgradeCommittee';
|
|
4489
4521
|
}
|
|
4490
|
-
/** @name FrameSupportDispatchRawOrigin (
|
|
4522
|
+
/** @name FrameSupportDispatchRawOrigin (524) */
|
|
4491
4523
|
interface FrameSupportDispatchRawOrigin extends Enum {
|
|
4492
4524
|
readonly isRoot: boolean;
|
|
4493
4525
|
readonly isSigned: boolean;
|
|
@@ -4495,26 +4527,26 @@ declare module "./types-lookup.ts" {
|
|
|
4495
4527
|
readonly isNone: boolean;
|
|
4496
4528
|
readonly type: 'Root' | 'Signed' | 'None';
|
|
4497
4529
|
}
|
|
4498
|
-
/** @name PalletCommitteeRawOriginInstance1 (
|
|
4530
|
+
/** @name PalletCommitteeRawOriginInstance1 (525) */
|
|
4499
4531
|
interface PalletCommitteeRawOriginInstance1 extends Enum {
|
|
4500
4532
|
readonly isEndorsed: boolean;
|
|
4501
4533
|
readonly type: 'Endorsed';
|
|
4502
4534
|
}
|
|
4503
|
-
/** @name PalletCommitteeRawOriginInstance3 (
|
|
4535
|
+
/** @name PalletCommitteeRawOriginInstance3 (526) */
|
|
4504
4536
|
interface PalletCommitteeRawOriginInstance3 extends Enum {
|
|
4505
4537
|
readonly isEndorsed: boolean;
|
|
4506
4538
|
readonly type: 'Endorsed';
|
|
4507
4539
|
}
|
|
4508
|
-
/** @name PalletCommitteeRawOriginInstance4 (
|
|
4540
|
+
/** @name PalletCommitteeRawOriginInstance4 (527) */
|
|
4509
4541
|
interface PalletCommitteeRawOriginInstance4 extends Enum {
|
|
4510
4542
|
readonly isEndorsed: boolean;
|
|
4511
4543
|
readonly type: 'Endorsed';
|
|
4512
4544
|
}
|
|
4513
|
-
/** @name SpCoreVoid (
|
|
4545
|
+
/** @name SpCoreVoid (528) */
|
|
4514
4546
|
type SpCoreVoid = Null;
|
|
4515
|
-
/** @name PalletBaseCall (
|
|
4547
|
+
/** @name PalletBaseCall (529) */
|
|
4516
4548
|
type PalletBaseCall = Null;
|
|
4517
|
-
/** @name PalletExternalAgentsCall (
|
|
4549
|
+
/** @name PalletExternalAgentsCall (530) */
|
|
4518
4550
|
interface PalletExternalAgentsCall extends Enum {
|
|
4519
4551
|
readonly isCreateGroup: boolean;
|
|
4520
4552
|
readonly asCreateGroup: {
|
|
@@ -4561,7 +4593,7 @@ declare module "./types-lookup.ts" {
|
|
|
4561
4593
|
} & Struct;
|
|
4562
4594
|
readonly type: 'CreateGroup' | 'SetGroupPermissions' | 'RemoveAgent' | 'Abdicate' | 'ChangeGroup' | 'AcceptBecomeAgent' | 'CreateGroupAndAddAuth' | 'CreateAndChangeCustomGroup';
|
|
4563
4595
|
}
|
|
4564
|
-
/** @name PalletRelayerCall (
|
|
4596
|
+
/** @name PalletRelayerCall (531) */
|
|
4565
4597
|
interface PalletRelayerCall extends Enum {
|
|
4566
4598
|
readonly isSetPayingKey: boolean;
|
|
4567
4599
|
readonly asSetPayingKey: {
|
|
@@ -4594,29 +4626,7 @@ declare module "./types-lookup.ts" {
|
|
|
4594
4626
|
} & Struct;
|
|
4595
4627
|
readonly type: 'SetPayingKey' | 'AcceptPayingKey' | 'RemovePayingKey' | 'UpdatePolyxLimit' | 'IncreasePolyxLimit' | 'DecreasePolyxLimit';
|
|
4596
4628
|
}
|
|
4597
|
-
/** @name
|
|
4598
|
-
interface PalletRewardsCall extends Enum {
|
|
4599
|
-
readonly isClaimItnReward: boolean;
|
|
4600
|
-
readonly asClaimItnReward: {
|
|
4601
|
-
readonly rewardAddress: AccountId32;
|
|
4602
|
-
readonly itnAddress: AccountId32;
|
|
4603
|
-
readonly signature: SpRuntimeMultiSignature;
|
|
4604
|
-
} & Struct;
|
|
4605
|
-
readonly isSetItnRewardStatus: boolean;
|
|
4606
|
-
readonly asSetItnRewardStatus: {
|
|
4607
|
-
readonly itnAddress: AccountId32;
|
|
4608
|
-
readonly status: PalletRewardsItnRewardStatus;
|
|
4609
|
-
} & Struct;
|
|
4610
|
-
readonly type: 'ClaimItnReward' | 'SetItnRewardStatus';
|
|
4611
|
-
}
|
|
4612
|
-
/** @name PalletRewardsItnRewardStatus (530) */
|
|
4613
|
-
interface PalletRewardsItnRewardStatus extends Enum {
|
|
4614
|
-
readonly isUnclaimed: boolean;
|
|
4615
|
-
readonly asUnclaimed: u128;
|
|
4616
|
-
readonly isClaimed: boolean;
|
|
4617
|
-
readonly type: 'Unclaimed' | 'Claimed';
|
|
4618
|
-
}
|
|
4619
|
-
/** @name PalletContractsCall (531) */
|
|
4629
|
+
/** @name PalletContractsCall (532) */
|
|
4620
4630
|
interface PalletContractsCall extends Enum {
|
|
4621
4631
|
readonly isCallOldWeight: boolean;
|
|
4622
4632
|
readonly asCallOldWeight: {
|
|
@@ -4687,13 +4697,13 @@ declare module "./types-lookup.ts" {
|
|
|
4687
4697
|
} & Struct;
|
|
4688
4698
|
readonly type: 'CallOldWeight' | 'InstantiateWithCodeOldWeight' | 'InstantiateOldWeight' | 'UploadCode' | 'RemoveCode' | 'SetCode' | 'Call' | 'InstantiateWithCode' | 'Instantiate';
|
|
4689
4699
|
}
|
|
4690
|
-
/** @name PalletContractsWasmDeterminism (
|
|
4700
|
+
/** @name PalletContractsWasmDeterminism (536) */
|
|
4691
4701
|
interface PalletContractsWasmDeterminism extends Enum {
|
|
4692
4702
|
readonly isDeterministic: boolean;
|
|
4693
4703
|
readonly isAllowIndeterminism: boolean;
|
|
4694
4704
|
readonly type: 'Deterministic' | 'AllowIndeterminism';
|
|
4695
4705
|
}
|
|
4696
|
-
/** @name PolymeshContractsCall (
|
|
4706
|
+
/** @name PolymeshContractsCall (537) */
|
|
4697
4707
|
interface PolymeshContractsCall extends Enum {
|
|
4698
4708
|
readonly isInstantiateWithCodePerms: boolean;
|
|
4699
4709
|
readonly asInstantiateWithCodePerms: {
|
|
@@ -4721,10 +4731,10 @@ declare module "./types-lookup.ts" {
|
|
|
4721
4731
|
} & Struct;
|
|
4722
4732
|
readonly type: 'InstantiateWithCodePerms' | 'InstantiateWithHashPerms' | 'UpdateCallRuntimeWhitelist';
|
|
4723
4733
|
}
|
|
4724
|
-
/** @name PolymeshContractsChainExtensionExtrinsicId (
|
|
4734
|
+
/** @name PolymeshContractsChainExtensionExtrinsicId (540) */
|
|
4725
4735
|
interface PolymeshContractsChainExtensionExtrinsicId extends ITuple<[u8, u8]> {
|
|
4726
4736
|
}
|
|
4727
|
-
/** @name PalletPreimageCall (
|
|
4737
|
+
/** @name PalletPreimageCall (541) */
|
|
4728
4738
|
interface PalletPreimageCall extends Enum {
|
|
4729
4739
|
readonly isNotePreimage: boolean;
|
|
4730
4740
|
readonly asNotePreimage: {
|
|
@@ -4744,7 +4754,7 @@ declare module "./types-lookup.ts" {
|
|
|
4744
4754
|
} & Struct;
|
|
4745
4755
|
readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage';
|
|
4746
4756
|
}
|
|
4747
|
-
/** @name PalletNftCall (
|
|
4757
|
+
/** @name PalletNftCall (542) */
|
|
4748
4758
|
interface PalletNftCall extends Enum {
|
|
4749
4759
|
readonly isCreateNftCollection: boolean;
|
|
4750
4760
|
readonly asCreateNftCollection: {
|
|
@@ -4766,15 +4776,15 @@ declare module "./types-lookup.ts" {
|
|
|
4766
4776
|
} & Struct;
|
|
4767
4777
|
readonly type: 'CreateNftCollection' | 'IssueNft' | 'RedeemNft';
|
|
4768
4778
|
}
|
|
4769
|
-
/** @name PolymeshPrimitivesNftNftCollectionKeys (
|
|
4779
|
+
/** @name PolymeshPrimitivesNftNftCollectionKeys (544) */
|
|
4770
4780
|
interface PolymeshPrimitivesNftNftCollectionKeys extends Vec<PolymeshPrimitivesAssetMetadataAssetMetadataKey> {
|
|
4771
4781
|
}
|
|
4772
|
-
/** @name PolymeshPrimitivesNftNftMetadataAttribute (
|
|
4782
|
+
/** @name PolymeshPrimitivesNftNftMetadataAttribute (547) */
|
|
4773
4783
|
interface PolymeshPrimitivesNftNftMetadataAttribute extends Struct {
|
|
4774
4784
|
readonly key: PolymeshPrimitivesAssetMetadataAssetMetadataKey;
|
|
4775
4785
|
readonly value: Bytes;
|
|
4776
4786
|
}
|
|
4777
|
-
/** @name PalletTestUtilsCall (
|
|
4787
|
+
/** @name PalletTestUtilsCall (548) */
|
|
4778
4788
|
interface PalletTestUtilsCall extends Enum {
|
|
4779
4789
|
readonly isRegisterDid: boolean;
|
|
4780
4790
|
readonly asRegisterDid: {
|
|
@@ -4791,14 +4801,14 @@ declare module "./types-lookup.ts" {
|
|
|
4791
4801
|
} & Struct;
|
|
4792
4802
|
readonly type: 'RegisterDid' | 'MockCddRegisterDid' | 'GetMyDid' | 'GetCddOf';
|
|
4793
4803
|
}
|
|
4794
|
-
/** @name PalletCommitteePolymeshVotes (
|
|
4804
|
+
/** @name PalletCommitteePolymeshVotes (549) */
|
|
4795
4805
|
interface PalletCommitteePolymeshVotes extends Struct {
|
|
4796
4806
|
readonly index: u32;
|
|
4797
4807
|
readonly ayes: Vec<PolymeshPrimitivesIdentityId>;
|
|
4798
4808
|
readonly nays: Vec<PolymeshPrimitivesIdentityId>;
|
|
4799
4809
|
readonly expiry: PolymeshCommonUtilitiesMaybeBlock;
|
|
4800
4810
|
}
|
|
4801
|
-
/** @name PalletCommitteeError (
|
|
4811
|
+
/** @name PalletCommitteeError (551) */
|
|
4802
4812
|
interface PalletCommitteeError extends Enum {
|
|
4803
4813
|
readonly isDuplicateVote: boolean;
|
|
4804
4814
|
readonly isNotAMember: boolean;
|
|
@@ -4811,7 +4821,7 @@ declare module "./types-lookup.ts" {
|
|
|
4811
4821
|
readonly isProposalsLimitReached: boolean;
|
|
4812
4822
|
readonly type: 'DuplicateVote' | 'NotAMember' | 'NoSuchProposal' | 'ProposalExpired' | 'DuplicateProposal' | 'MismatchedVotingIndex' | 'InvalidProportion' | 'FirstVoteReject' | 'ProposalsLimitReached';
|
|
4813
4823
|
}
|
|
4814
|
-
/** @name PolymeshPrimitivesMultisigProposalDetails (
|
|
4824
|
+
/** @name PolymeshPrimitivesMultisigProposalDetails (561) */
|
|
4815
4825
|
interface PolymeshPrimitivesMultisigProposalDetails extends Struct {
|
|
4816
4826
|
readonly approvals: u64;
|
|
4817
4827
|
readonly rejections: u64;
|
|
@@ -4819,7 +4829,7 @@ declare module "./types-lookup.ts" {
|
|
|
4819
4829
|
readonly expiry: Option<u64>;
|
|
4820
4830
|
readonly autoClose: bool;
|
|
4821
4831
|
}
|
|
4822
|
-
/** @name PolymeshPrimitivesMultisigProposalStatus (
|
|
4832
|
+
/** @name PolymeshPrimitivesMultisigProposalStatus (562) */
|
|
4823
4833
|
interface PolymeshPrimitivesMultisigProposalStatus extends Enum {
|
|
4824
4834
|
readonly isInvalid: boolean;
|
|
4825
4835
|
readonly isActiveOrExpired: boolean;
|
|
@@ -4828,7 +4838,7 @@ declare module "./types-lookup.ts" {
|
|
|
4828
4838
|
readonly isRejected: boolean;
|
|
4829
4839
|
readonly type: 'Invalid' | 'ActiveOrExpired' | 'ExecutionSuccessful' | 'ExecutionFailed' | 'Rejected';
|
|
4830
4840
|
}
|
|
4831
|
-
/** @name PalletMultisigError (
|
|
4841
|
+
/** @name PalletMultisigError (564) */
|
|
4832
4842
|
interface PalletMultisigError extends Enum {
|
|
4833
4843
|
readonly isCddMissing: boolean;
|
|
4834
4844
|
readonly isProposalMissing: boolean;
|
|
@@ -4858,14 +4868,14 @@ declare module "./types-lookup.ts" {
|
|
|
4858
4868
|
readonly isCreatorControlsHaveBeenRemoved: boolean;
|
|
4859
4869
|
readonly type: 'CddMissing' | 'ProposalMissing' | 'DecodingError' | 'NoSigners' | 'RequiredSignaturesOutOfBounds' | 'NotASigner' | 'NoSuchMultisig' | 'NotEnoughSigners' | 'NonceOverflow' | 'AlreadyVoted' | 'AlreadyASigner' | 'FailedToChargeFee' | 'IdentityNotCreator' | 'ChangeNotAllowed' | 'SignerAlreadyLinkedToMultisig' | 'SignerAlreadyLinkedToIdentity' | 'MultisigNotAllowedToLinkToItself' | 'MissingCurrentIdentity' | 'NotPrimaryKey' | 'ProposalAlreadyRejected' | 'ProposalExpired' | 'ProposalAlreadyExecuted' | 'MultisigMissingIdentity' | 'FailedToSchedule' | 'TooManySigners' | 'CreatorControlsHaveBeenRemoved';
|
|
4860
4870
|
}
|
|
4861
|
-
/** @name PalletBridgeBridgeTxDetail (
|
|
4871
|
+
/** @name PalletBridgeBridgeTxDetail (566) */
|
|
4862
4872
|
interface PalletBridgeBridgeTxDetail extends Struct {
|
|
4863
4873
|
readonly amount: u128;
|
|
4864
4874
|
readonly status: PalletBridgeBridgeTxStatus;
|
|
4865
4875
|
readonly executionBlock: u32;
|
|
4866
4876
|
readonly txHash: H256;
|
|
4867
4877
|
}
|
|
4868
|
-
/** @name PalletBridgeBridgeTxStatus (
|
|
4878
|
+
/** @name PalletBridgeBridgeTxStatus (567) */
|
|
4869
4879
|
interface PalletBridgeBridgeTxStatus extends Enum {
|
|
4870
4880
|
readonly isAbsent: boolean;
|
|
4871
4881
|
readonly isPending: boolean;
|
|
@@ -4875,7 +4885,7 @@ declare module "./types-lookup.ts" {
|
|
|
4875
4885
|
readonly isHandled: boolean;
|
|
4876
4886
|
readonly type: 'Absent' | 'Pending' | 'Frozen' | 'Timelocked' | 'Handled';
|
|
4877
4887
|
}
|
|
4878
|
-
/** @name PalletBridgeError (
|
|
4888
|
+
/** @name PalletBridgeError (570) */
|
|
4879
4889
|
interface PalletBridgeError extends Enum {
|
|
4880
4890
|
readonly isControllerNotSet: boolean;
|
|
4881
4891
|
readonly isBadCaller: boolean;
|
|
@@ -4892,7 +4902,7 @@ declare module "./types-lookup.ts" {
|
|
|
4892
4902
|
readonly isTimelockedTx: boolean;
|
|
4893
4903
|
readonly type: 'ControllerNotSet' | 'BadCaller' | 'BadAdmin' | 'NoValidCdd' | 'ProposalAlreadyHandled' | 'Unauthorized' | 'Frozen' | 'NotFrozen' | 'FrozenTx' | 'BridgeLimitReached' | 'Overflow' | 'DivisionByZero' | 'TimelockedTx';
|
|
4894
4904
|
}
|
|
4895
|
-
/** @name PalletStakingStakingLedger (
|
|
4905
|
+
/** @name PalletStakingStakingLedger (571) */
|
|
4896
4906
|
interface PalletStakingStakingLedger extends Struct {
|
|
4897
4907
|
readonly stash: AccountId32;
|
|
4898
4908
|
readonly total: Compact<u128>;
|
|
@@ -4900,28 +4910,28 @@ declare module "./types-lookup.ts" {
|
|
|
4900
4910
|
readonly unlocking: Vec<PalletStakingUnlockChunk>;
|
|
4901
4911
|
readonly claimedRewards: Vec<u32>;
|
|
4902
4912
|
}
|
|
4903
|
-
/** @name PalletStakingUnlockChunk (
|
|
4913
|
+
/** @name PalletStakingUnlockChunk (573) */
|
|
4904
4914
|
interface PalletStakingUnlockChunk extends Struct {
|
|
4905
4915
|
readonly value: Compact<u128>;
|
|
4906
4916
|
readonly era: Compact<u32>;
|
|
4907
4917
|
}
|
|
4908
|
-
/** @name PalletStakingNominations (
|
|
4918
|
+
/** @name PalletStakingNominations (574) */
|
|
4909
4919
|
interface PalletStakingNominations extends Struct {
|
|
4910
4920
|
readonly targets: Vec<AccountId32>;
|
|
4911
4921
|
readonly submittedIn: u32;
|
|
4912
4922
|
readonly suppressed: bool;
|
|
4913
4923
|
}
|
|
4914
|
-
/** @name PalletStakingActiveEraInfo (
|
|
4924
|
+
/** @name PalletStakingActiveEraInfo (575) */
|
|
4915
4925
|
interface PalletStakingActiveEraInfo extends Struct {
|
|
4916
4926
|
readonly index: u32;
|
|
4917
4927
|
readonly start: Option<u64>;
|
|
4918
4928
|
}
|
|
4919
|
-
/** @name PalletStakingEraRewardPoints (
|
|
4929
|
+
/** @name PalletStakingEraRewardPoints (577) */
|
|
4920
4930
|
interface PalletStakingEraRewardPoints extends Struct {
|
|
4921
4931
|
readonly total: u32;
|
|
4922
4932
|
readonly individual: BTreeMap<AccountId32, u32>;
|
|
4923
4933
|
}
|
|
4924
|
-
/** @name PalletStakingForcing (
|
|
4934
|
+
/** @name PalletStakingForcing (580) */
|
|
4925
4935
|
interface PalletStakingForcing extends Enum {
|
|
4926
4936
|
readonly isNotForcing: boolean;
|
|
4927
4937
|
readonly isForceNew: boolean;
|
|
@@ -4929,7 +4939,7 @@ declare module "./types-lookup.ts" {
|
|
|
4929
4939
|
readonly isForceAlways: boolean;
|
|
4930
4940
|
readonly type: 'NotForcing' | 'ForceNew' | 'ForceNone' | 'ForceAlways';
|
|
4931
4941
|
}
|
|
4932
|
-
/** @name PalletStakingUnappliedSlash (
|
|
4942
|
+
/** @name PalletStakingUnappliedSlash (582) */
|
|
4933
4943
|
interface PalletStakingUnappliedSlash extends Struct {
|
|
4934
4944
|
readonly validator: AccountId32;
|
|
4935
4945
|
readonly own: u128;
|
|
@@ -4937,37 +4947,37 @@ declare module "./types-lookup.ts" {
|
|
|
4937
4947
|
readonly reporters: Vec<AccountId32>;
|
|
4938
4948
|
readonly payout: u128;
|
|
4939
4949
|
}
|
|
4940
|
-
/** @name PalletStakingSlashingSlashingSpans (
|
|
4950
|
+
/** @name PalletStakingSlashingSlashingSpans (586) */
|
|
4941
4951
|
interface PalletStakingSlashingSlashingSpans extends Struct {
|
|
4942
4952
|
readonly spanIndex: u32;
|
|
4943
4953
|
readonly lastStart: u32;
|
|
4944
4954
|
readonly lastNonzeroSlash: u32;
|
|
4945
4955
|
readonly prior: Vec<u32>;
|
|
4946
4956
|
}
|
|
4947
|
-
/** @name PalletStakingSlashingSpanRecord (
|
|
4957
|
+
/** @name PalletStakingSlashingSpanRecord (587) */
|
|
4948
4958
|
interface PalletStakingSlashingSpanRecord extends Struct {
|
|
4949
4959
|
readonly slashed: u128;
|
|
4950
4960
|
readonly paidOut: u128;
|
|
4951
4961
|
}
|
|
4952
|
-
/** @name PalletStakingElectionResult (
|
|
4962
|
+
/** @name PalletStakingElectionResult (590) */
|
|
4953
4963
|
interface PalletStakingElectionResult extends Struct {
|
|
4954
4964
|
readonly electedStashes: Vec<AccountId32>;
|
|
4955
4965
|
readonly exposures: Vec<ITuple<[AccountId32, PalletStakingExposure]>>;
|
|
4956
4966
|
readonly compute: PalletStakingElectionCompute;
|
|
4957
4967
|
}
|
|
4958
|
-
/** @name PalletStakingElectionStatus (
|
|
4968
|
+
/** @name PalletStakingElectionStatus (591) */
|
|
4959
4969
|
interface PalletStakingElectionStatus extends Enum {
|
|
4960
4970
|
readonly isClosed: boolean;
|
|
4961
4971
|
readonly isOpen: boolean;
|
|
4962
4972
|
readonly asOpen: u32;
|
|
4963
4973
|
readonly type: 'Closed' | 'Open';
|
|
4964
4974
|
}
|
|
4965
|
-
/** @name PalletStakingPermissionedIdentityPrefs (
|
|
4975
|
+
/** @name PalletStakingPermissionedIdentityPrefs (592) */
|
|
4966
4976
|
interface PalletStakingPermissionedIdentityPrefs extends Struct {
|
|
4967
4977
|
readonly intendedCount: u32;
|
|
4968
4978
|
readonly runningCount: u32;
|
|
4969
4979
|
}
|
|
4970
|
-
/** @name PalletStakingReleases (
|
|
4980
|
+
/** @name PalletStakingReleases (593) */
|
|
4971
4981
|
interface PalletStakingReleases extends Enum {
|
|
4972
4982
|
readonly isV100Ancient: boolean;
|
|
4973
4983
|
readonly isV200: boolean;
|
|
@@ -4979,7 +4989,7 @@ declare module "./types-lookup.ts" {
|
|
|
4979
4989
|
readonly isV700: boolean;
|
|
4980
4990
|
readonly type: 'V100Ancient' | 'V200' | 'V300' | 'V400' | 'V500' | 'V600' | 'V601' | 'V700';
|
|
4981
4991
|
}
|
|
4982
|
-
/** @name PalletStakingError (
|
|
4992
|
+
/** @name PalletStakingError (595) */
|
|
4983
4993
|
interface PalletStakingError extends Enum {
|
|
4984
4994
|
readonly isNotController: boolean;
|
|
4985
4995
|
readonly isNotStash: boolean;
|
|
@@ -5026,15 +5036,15 @@ declare module "./types-lookup.ts" {
|
|
|
5026
5036
|
readonly isInvalidValidatorUnbondAmount: boolean;
|
|
5027
5037
|
readonly type: 'NotController' | 'NotStash' | 'AlreadyBonded' | 'AlreadyPaired' | 'EmptyTargets' | 'InvalidSlashIndex' | 'InsufficientValue' | 'NoMoreChunks' | 'NoUnlockChunk' | 'FundedTarget' | 'InvalidEraToReward' | 'NotSortedAndUnique' | 'AlreadyClaimed' | 'OffchainElectionEarlySubmission' | 'OffchainElectionWeakSubmission' | 'SnapshotUnavailable' | 'OffchainElectionBogusWinnerCount' | 'OffchainElectionBogusWinner' | 'OffchainElectionBogusCompact' | 'OffchainElectionBogusNominator' | 'OffchainElectionBogusNomination' | 'OffchainElectionSlashedNomination' | 'OffchainElectionBogusSelfVote' | 'OffchainElectionBogusEdge' | 'OffchainElectionBogusScore' | 'OffchainElectionBogusElectionSize' | 'CallNotAllowed' | 'IncorrectSlashingSpans' | 'AlreadyExists' | 'NotExists' | 'NoChange' | 'InvalidValidatorIdentity' | 'InvalidValidatorCommission' | 'StashIdentityDoesNotExist' | 'StashIdentityNotPermissioned' | 'StashIdentityNotCDDed' | 'HitIntendedValidatorCount' | 'IntendedCountIsExceedingConsensusLimit' | 'BondTooSmall' | 'BadState' | 'TooManyTargets' | 'BadTarget' | 'InvalidValidatorUnbondAmount';
|
|
5028
5038
|
}
|
|
5029
|
-
/** @name SpStakingOffenceOffenceDetails (
|
|
5039
|
+
/** @name SpStakingOffenceOffenceDetails (596) */
|
|
5030
5040
|
interface SpStakingOffenceOffenceDetails extends Struct {
|
|
5031
5041
|
readonly offender: ITuple<[AccountId32, PalletStakingExposure]>;
|
|
5032
5042
|
readonly reporters: Vec<AccountId32>;
|
|
5033
5043
|
}
|
|
5034
|
-
/** @name SpCoreCryptoKeyTypeId (
|
|
5044
|
+
/** @name SpCoreCryptoKeyTypeId (601) */
|
|
5035
5045
|
interface SpCoreCryptoKeyTypeId extends U8aFixed {
|
|
5036
5046
|
}
|
|
5037
|
-
/** @name PalletSessionError (
|
|
5047
|
+
/** @name PalletSessionError (602) */
|
|
5038
5048
|
interface PalletSessionError extends Enum {
|
|
5039
5049
|
readonly isInvalidProof: boolean;
|
|
5040
5050
|
readonly isNoAssociatedValidatorId: boolean;
|
|
@@ -5043,7 +5053,7 @@ declare module "./types-lookup.ts" {
|
|
|
5043
5053
|
readonly isNoAccount: boolean;
|
|
5044
5054
|
readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
|
|
5045
5055
|
}
|
|
5046
|
-
/** @name PalletGrandpaStoredState (
|
|
5056
|
+
/** @name PalletGrandpaStoredState (603) */
|
|
5047
5057
|
interface PalletGrandpaStoredState extends Enum {
|
|
5048
5058
|
readonly isLive: boolean;
|
|
5049
5059
|
readonly isPendingPause: boolean;
|
|
@@ -5059,14 +5069,14 @@ declare module "./types-lookup.ts" {
|
|
|
5059
5069
|
} & Struct;
|
|
5060
5070
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
5061
5071
|
}
|
|
5062
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
5072
|
+
/** @name PalletGrandpaStoredPendingChange (604) */
|
|
5063
5073
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
5064
5074
|
readonly scheduledAt: u32;
|
|
5065
5075
|
readonly delay: u32;
|
|
5066
5076
|
readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
|
|
5067
5077
|
readonly forced: Option<u32>;
|
|
5068
5078
|
}
|
|
5069
|
-
/** @name PalletGrandpaError (
|
|
5079
|
+
/** @name PalletGrandpaError (606) */
|
|
5070
5080
|
interface PalletGrandpaError extends Enum {
|
|
5071
5081
|
readonly isPauseFailed: boolean;
|
|
5072
5082
|
readonly isResumeFailed: boolean;
|
|
@@ -5077,47 +5087,47 @@ declare module "./types-lookup.ts" {
|
|
|
5077
5087
|
readonly isDuplicateOffenceReport: boolean;
|
|
5078
5088
|
readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
|
|
5079
5089
|
}
|
|
5080
|
-
/** @name PalletImOnlineBoundedOpaqueNetworkState (
|
|
5090
|
+
/** @name PalletImOnlineBoundedOpaqueNetworkState (610) */
|
|
5081
5091
|
interface PalletImOnlineBoundedOpaqueNetworkState extends Struct {
|
|
5082
5092
|
readonly peerId: Bytes;
|
|
5083
5093
|
readonly externalAddresses: Vec<Bytes>;
|
|
5084
5094
|
}
|
|
5085
|
-
/** @name PalletImOnlineError (
|
|
5095
|
+
/** @name PalletImOnlineError (614) */
|
|
5086
5096
|
interface PalletImOnlineError extends Enum {
|
|
5087
5097
|
readonly isInvalidKey: boolean;
|
|
5088
5098
|
readonly isDuplicatedHeartbeat: boolean;
|
|
5089
5099
|
readonly type: 'InvalidKey' | 'DuplicatedHeartbeat';
|
|
5090
5100
|
}
|
|
5091
|
-
/** @name PalletSudoError (
|
|
5101
|
+
/** @name PalletSudoError (616) */
|
|
5092
5102
|
interface PalletSudoError extends Enum {
|
|
5093
5103
|
readonly isRequireSudo: boolean;
|
|
5094
5104
|
readonly type: 'RequireSudo';
|
|
5095
5105
|
}
|
|
5096
|
-
/** @name PalletAssetTickerRegistration (
|
|
5106
|
+
/** @name PalletAssetTickerRegistration (617) */
|
|
5097
5107
|
interface PalletAssetTickerRegistration extends Struct {
|
|
5098
5108
|
readonly owner: PolymeshPrimitivesIdentityId;
|
|
5099
5109
|
readonly expiry: Option<u64>;
|
|
5100
5110
|
}
|
|
5101
|
-
/** @name PalletAssetTickerRegistrationConfig (
|
|
5111
|
+
/** @name PalletAssetTickerRegistrationConfig (618) */
|
|
5102
5112
|
interface PalletAssetTickerRegistrationConfig extends Struct {
|
|
5103
5113
|
readonly maxTickerLength: u8;
|
|
5104
5114
|
readonly registrationLength: Option<u64>;
|
|
5105
5115
|
}
|
|
5106
|
-
/** @name PalletAssetSecurityToken (
|
|
5116
|
+
/** @name PalletAssetSecurityToken (619) */
|
|
5107
5117
|
interface PalletAssetSecurityToken extends Struct {
|
|
5108
5118
|
readonly totalSupply: u128;
|
|
5109
5119
|
readonly ownerDid: PolymeshPrimitivesIdentityId;
|
|
5110
5120
|
readonly divisible: bool;
|
|
5111
5121
|
readonly assetType: PolymeshPrimitivesAssetAssetType;
|
|
5112
5122
|
}
|
|
5113
|
-
/** @name PalletAssetAssetOwnershipRelation (
|
|
5123
|
+
/** @name PalletAssetAssetOwnershipRelation (623) */
|
|
5114
5124
|
interface PalletAssetAssetOwnershipRelation extends Enum {
|
|
5115
5125
|
readonly isNotOwned: boolean;
|
|
5116
5126
|
readonly isTickerOwned: boolean;
|
|
5117
5127
|
readonly isAssetOwned: boolean;
|
|
5118
5128
|
readonly type: 'NotOwned' | 'TickerOwned' | 'AssetOwned';
|
|
5119
5129
|
}
|
|
5120
|
-
/** @name PalletAssetError (
|
|
5130
|
+
/** @name PalletAssetError (629) */
|
|
5121
5131
|
interface PalletAssetError extends Enum {
|
|
5122
5132
|
readonly isUnauthorized: boolean;
|
|
5123
5133
|
readonly isAssetAlreadyCreated: boolean;
|
|
@@ -5158,7 +5168,7 @@ declare module "./types-lookup.ts" {
|
|
|
5158
5168
|
readonly isAssetMetadataValueIsEmpty: boolean;
|
|
5159
5169
|
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';
|
|
5160
5170
|
}
|
|
5161
|
-
/** @name PalletCorporateActionsDistributionError (
|
|
5171
|
+
/** @name PalletCorporateActionsDistributionError (632) */
|
|
5162
5172
|
interface PalletCorporateActionsDistributionError extends Enum {
|
|
5163
5173
|
readonly isCaNotBenefit: boolean;
|
|
5164
5174
|
readonly isAlreadyExists: boolean;
|
|
@@ -5177,13 +5187,13 @@ declare module "./types-lookup.ts" {
|
|
|
5177
5187
|
readonly isDistributionPerShareIsZero: boolean;
|
|
5178
5188
|
readonly type: 'CaNotBenefit' | 'AlreadyExists' | 'ExpiryBeforePayment' | 'HolderAlreadyPaid' | 'NoSuchDistribution' | 'CannotClaimBeforeStart' | 'CannotClaimAfterExpiry' | 'BalancePerShareProductOverflowed' | 'NotDistributionCreator' | 'AlreadyReclaimed' | 'NotExpired' | 'DistributionStarted' | 'InsufficientRemainingAmount' | 'DistributionAmountIsZero' | 'DistributionPerShareIsZero';
|
|
5179
5189
|
}
|
|
5180
|
-
/** @name PolymeshCommonUtilitiesCheckpointNextCheckpoints (
|
|
5190
|
+
/** @name PolymeshCommonUtilitiesCheckpointNextCheckpoints (636) */
|
|
5181
5191
|
interface PolymeshCommonUtilitiesCheckpointNextCheckpoints extends Struct {
|
|
5182
5192
|
readonly nextAt: u64;
|
|
5183
5193
|
readonly totalPending: u64;
|
|
5184
5194
|
readonly schedules: BTreeMap<u64, u64>;
|
|
5185
5195
|
}
|
|
5186
|
-
/** @name PalletAssetCheckpointError (
|
|
5196
|
+
/** @name PalletAssetCheckpointError (642) */
|
|
5187
5197
|
interface PalletAssetCheckpointError extends Enum {
|
|
5188
5198
|
readonly isNoSuchSchedule: boolean;
|
|
5189
5199
|
readonly isScheduleNotRemovable: boolean;
|
|
@@ -5193,12 +5203,12 @@ declare module "./types-lookup.ts" {
|
|
|
5193
5203
|
readonly isScheduleHasExpiredCheckpoints: boolean;
|
|
5194
5204
|
readonly type: 'NoSuchSchedule' | 'ScheduleNotRemovable' | 'SchedulesOverMaxComplexity' | 'ScheduleIsEmpty' | 'ScheduleFinished' | 'ScheduleHasExpiredCheckpoints';
|
|
5195
5205
|
}
|
|
5196
|
-
/** @name PolymeshPrimitivesComplianceManagerAssetCompliance (
|
|
5206
|
+
/** @name PolymeshPrimitivesComplianceManagerAssetCompliance (643) */
|
|
5197
5207
|
interface PolymeshPrimitivesComplianceManagerAssetCompliance extends Struct {
|
|
5198
5208
|
readonly paused: bool;
|
|
5199
5209
|
readonly requirements: Vec<PolymeshPrimitivesComplianceManagerComplianceRequirement>;
|
|
5200
5210
|
}
|
|
5201
|
-
/** @name PalletComplianceManagerError (
|
|
5211
|
+
/** @name PalletComplianceManagerError (645) */
|
|
5202
5212
|
interface PalletComplianceManagerError extends Enum {
|
|
5203
5213
|
readonly isUnauthorized: boolean;
|
|
5204
5214
|
readonly isDidNotExist: boolean;
|
|
@@ -5209,7 +5219,7 @@ declare module "./types-lookup.ts" {
|
|
|
5209
5219
|
readonly isWeightLimitExceeded: boolean;
|
|
5210
5220
|
readonly type: 'Unauthorized' | 'DidNotExist' | 'InvalidComplianceRequirementId' | 'IncorrectOperationOnTrustedIssuer' | 'DuplicateComplianceRequirements' | 'ComplianceRequirementTooComplex' | 'WeightLimitExceeded';
|
|
5211
5221
|
}
|
|
5212
|
-
/** @name PalletCorporateActionsError (
|
|
5222
|
+
/** @name PalletCorporateActionsError (648) */
|
|
5213
5223
|
interface PalletCorporateActionsError extends Enum {
|
|
5214
5224
|
readonly isDetailsTooLong: boolean;
|
|
5215
5225
|
readonly isDuplicateDidTax: boolean;
|
|
@@ -5224,7 +5234,7 @@ declare module "./types-lookup.ts" {
|
|
|
5224
5234
|
readonly isNotTargetedByCA: boolean;
|
|
5225
5235
|
readonly type: 'DetailsTooLong' | 'DuplicateDidTax' | 'TooManyDidTaxes' | 'TooManyTargetIds' | 'NoSuchCheckpointId' | 'NoSuchCA' | 'NoRecordDate' | 'RecordDateAfterStart' | 'DeclDateAfterRecordDate' | 'DeclDateInFuture' | 'NotTargetedByCA';
|
|
5226
5236
|
}
|
|
5227
|
-
/** @name PalletCorporateActionsBallotError (
|
|
5237
|
+
/** @name PalletCorporateActionsBallotError (650) */
|
|
5228
5238
|
interface PalletCorporateActionsBallotError extends Enum {
|
|
5229
5239
|
readonly isCaNotNotice: boolean;
|
|
5230
5240
|
readonly isAlreadyExists: boolean;
|
|
@@ -5242,12 +5252,12 @@ declare module "./types-lookup.ts" {
|
|
|
5242
5252
|
readonly isRcvNotAllowed: boolean;
|
|
5243
5253
|
readonly type: 'CaNotNotice' | 'AlreadyExists' | 'NoSuchBallot' | 'StartAfterEnd' | 'NowAfterEnd' | 'NumberOfChoicesOverflow' | 'VotingAlreadyStarted' | 'VotingNotStarted' | 'VotingAlreadyEnded' | 'WrongVoteCount' | 'InsufficientVotes' | 'NoSuchRCVFallback' | 'RcvSelfCycle' | 'RcvNotAllowed';
|
|
5244
5254
|
}
|
|
5245
|
-
/** @name PalletPermissionsError (
|
|
5255
|
+
/** @name PalletPermissionsError (651) */
|
|
5246
5256
|
interface PalletPermissionsError extends Enum {
|
|
5247
5257
|
readonly isUnauthorizedCaller: boolean;
|
|
5248
5258
|
readonly type: 'UnauthorizedCaller';
|
|
5249
5259
|
}
|
|
5250
|
-
/** @name PalletPipsPipsMetadata (
|
|
5260
|
+
/** @name PalletPipsPipsMetadata (652) */
|
|
5251
5261
|
interface PalletPipsPipsMetadata extends Struct {
|
|
5252
5262
|
readonly id: u32;
|
|
5253
5263
|
readonly url: Option<Bytes>;
|
|
@@ -5256,34 +5266,34 @@ declare module "./types-lookup.ts" {
|
|
|
5256
5266
|
readonly transactionVersion: u32;
|
|
5257
5267
|
readonly expiry: PolymeshCommonUtilitiesMaybeBlock;
|
|
5258
5268
|
}
|
|
5259
|
-
/** @name PalletPipsDepositInfo (
|
|
5269
|
+
/** @name PalletPipsDepositInfo (654) */
|
|
5260
5270
|
interface PalletPipsDepositInfo extends Struct {
|
|
5261
5271
|
readonly owner: AccountId32;
|
|
5262
5272
|
readonly amount: u128;
|
|
5263
5273
|
}
|
|
5264
|
-
/** @name PalletPipsPip (
|
|
5274
|
+
/** @name PalletPipsPip (655) */
|
|
5265
5275
|
interface PalletPipsPip extends Struct {
|
|
5266
5276
|
readonly id: u32;
|
|
5267
5277
|
readonly proposal: Call;
|
|
5268
5278
|
readonly proposer: PalletPipsProposer;
|
|
5269
5279
|
}
|
|
5270
|
-
/** @name PalletPipsVotingResult (
|
|
5280
|
+
/** @name PalletPipsVotingResult (656) */
|
|
5271
5281
|
interface PalletPipsVotingResult extends Struct {
|
|
5272
5282
|
readonly ayesCount: u32;
|
|
5273
5283
|
readonly ayesStake: u128;
|
|
5274
5284
|
readonly naysCount: u32;
|
|
5275
5285
|
readonly naysStake: u128;
|
|
5276
5286
|
}
|
|
5277
|
-
/** @name PalletPipsVote (
|
|
5287
|
+
/** @name PalletPipsVote (657) */
|
|
5278
5288
|
interface PalletPipsVote extends ITuple<[bool, u128]> {
|
|
5279
5289
|
}
|
|
5280
|
-
/** @name PalletPipsSnapshotMetadata (
|
|
5290
|
+
/** @name PalletPipsSnapshotMetadata (658) */
|
|
5281
5291
|
interface PalletPipsSnapshotMetadata extends Struct {
|
|
5282
5292
|
readonly createdAt: u32;
|
|
5283
5293
|
readonly madeBy: AccountId32;
|
|
5284
5294
|
readonly id: u32;
|
|
5285
5295
|
}
|
|
5286
|
-
/** @name PalletPipsError (
|
|
5296
|
+
/** @name PalletPipsError (660) */
|
|
5287
5297
|
interface PalletPipsError extends Enum {
|
|
5288
5298
|
readonly isRescheduleNotByReleaseCoordinator: boolean;
|
|
5289
5299
|
readonly isNotFromCommunity: boolean;
|
|
@@ -5305,7 +5315,7 @@ declare module "./types-lookup.ts" {
|
|
|
5305
5315
|
readonly isProposalNotInScheduledState: boolean;
|
|
5306
5316
|
readonly type: 'RescheduleNotByReleaseCoordinator' | 'NotFromCommunity' | 'NotByCommittee' | 'TooManyActivePips' | 'IncorrectDeposit' | 'InsufficientDeposit' | 'NoSuchProposal' | 'NotACommitteeMember' | 'InvalidFutureBlockNumber' | 'NumberOfVotesExceeded' | 'StakeAmountOfVotesExceeded' | 'MissingCurrentIdentity' | 'IncorrectProposalState' | 'CannotSkipPip' | 'SnapshotResultTooLarge' | 'SnapshotIdMismatch' | 'ScheduledProposalDoesntExist' | 'ProposalNotInScheduledState';
|
|
5307
5317
|
}
|
|
5308
|
-
/** @name PalletPortfolioError (
|
|
5318
|
+
/** @name PalletPortfolioError (668) */
|
|
5309
5319
|
interface PalletPortfolioError extends Enum {
|
|
5310
5320
|
readonly isPortfolioDoesNotExist: boolean;
|
|
5311
5321
|
readonly isInsufficientPortfolioBalance: boolean;
|
|
@@ -5325,14 +5335,14 @@ declare module "./types-lookup.ts" {
|
|
|
5325
5335
|
readonly isEmptyTransfer: boolean;
|
|
5326
5336
|
readonly type: 'PortfolioDoesNotExist' | 'InsufficientPortfolioBalance' | 'DestinationIsSamePortfolio' | 'PortfolioNameAlreadyInUse' | 'SecondaryKeyNotAuthorizedForPortfolio' | 'UnauthorizedCustodian' | 'InsufficientTokensLocked' | 'PortfolioNotEmpty' | 'DifferentIdentityPortfolios' | 'NoDuplicateAssetsAllowed' | 'NftNotFoundInPortfolio' | 'NftAlreadyLocked' | 'NftNotLocked' | 'InvalidTransferNFTNotOwned' | 'InvalidTransferNFTIsLocked' | 'EmptyTransfer';
|
|
5327
5337
|
}
|
|
5328
|
-
/** @name PalletProtocolFeeError (
|
|
5338
|
+
/** @name PalletProtocolFeeError (669) */
|
|
5329
5339
|
interface PalletProtocolFeeError extends Enum {
|
|
5330
5340
|
readonly isInsufficientAccountBalance: boolean;
|
|
5331
5341
|
readonly isUnHandledImbalances: boolean;
|
|
5332
5342
|
readonly isInsufficientSubsidyBalance: boolean;
|
|
5333
5343
|
readonly type: 'InsufficientAccountBalance' | 'UnHandledImbalances' | 'InsufficientSubsidyBalance';
|
|
5334
5344
|
}
|
|
5335
|
-
/** @name PalletSchedulerScheduled (
|
|
5345
|
+
/** @name PalletSchedulerScheduled (672) */
|
|
5336
5346
|
interface PalletSchedulerScheduled extends Struct {
|
|
5337
5347
|
readonly maybeId: Option<U8aFixed>;
|
|
5338
5348
|
readonly priority: u8;
|
|
@@ -5340,7 +5350,7 @@ declare module "./types-lookup.ts" {
|
|
|
5340
5350
|
readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
|
|
5341
5351
|
readonly origin: PolymeshRuntimeDevelopRuntimeOriginCaller;
|
|
5342
5352
|
}
|
|
5343
|
-
/** @name FrameSupportPreimagesBounded (
|
|
5353
|
+
/** @name FrameSupportPreimagesBounded (673) */
|
|
5344
5354
|
interface FrameSupportPreimagesBounded extends Enum {
|
|
5345
5355
|
readonly isLegacy: boolean;
|
|
5346
5356
|
readonly asLegacy: {
|
|
@@ -5355,7 +5365,7 @@ declare module "./types-lookup.ts" {
|
|
|
5355
5365
|
} & Struct;
|
|
5356
5366
|
readonly type: 'Legacy' | 'Inline' | 'Lookup';
|
|
5357
5367
|
}
|
|
5358
|
-
/** @name PalletSchedulerError (
|
|
5368
|
+
/** @name PalletSchedulerError (676) */
|
|
5359
5369
|
interface PalletSchedulerError extends Enum {
|
|
5360
5370
|
readonly isFailedToSchedule: boolean;
|
|
5361
5371
|
readonly isNotFound: boolean;
|
|
@@ -5364,12 +5374,12 @@ declare module "./types-lookup.ts" {
|
|
|
5364
5374
|
readonly isNamed: boolean;
|
|
5365
5375
|
readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange' | 'Named';
|
|
5366
5376
|
}
|
|
5367
|
-
/** @name PolymeshPrimitivesSettlementVenue (
|
|
5377
|
+
/** @name PolymeshPrimitivesSettlementVenue (677) */
|
|
5368
5378
|
interface PolymeshPrimitivesSettlementVenue extends Struct {
|
|
5369
5379
|
readonly creator: PolymeshPrimitivesIdentityId;
|
|
5370
5380
|
readonly venueType: PolymeshPrimitivesSettlementVenueType;
|
|
5371
5381
|
}
|
|
5372
|
-
/** @name PolymeshPrimitivesSettlementInstruction (
|
|
5382
|
+
/** @name PolymeshPrimitivesSettlementInstruction (681) */
|
|
5373
5383
|
interface PolymeshPrimitivesSettlementInstruction extends Struct {
|
|
5374
5384
|
readonly instructionId: u64;
|
|
5375
5385
|
readonly venueId: u64;
|
|
@@ -5378,7 +5388,7 @@ declare module "./types-lookup.ts" {
|
|
|
5378
5388
|
readonly tradeDate: Option<u64>;
|
|
5379
5389
|
readonly valueDate: Option<u64>;
|
|
5380
5390
|
}
|
|
5381
|
-
/** @name PolymeshPrimitivesSettlementLegStatus (
|
|
5391
|
+
/** @name PolymeshPrimitivesSettlementLegStatus (683) */
|
|
5382
5392
|
interface PolymeshPrimitivesSettlementLegStatus extends Enum {
|
|
5383
5393
|
readonly isPendingTokenLock: boolean;
|
|
5384
5394
|
readonly isExecutionPending: boolean;
|
|
@@ -5386,14 +5396,14 @@ declare module "./types-lookup.ts" {
|
|
|
5386
5396
|
readonly asExecutionToBeSkipped: ITuple<[AccountId32, u64]>;
|
|
5387
5397
|
readonly type: 'PendingTokenLock' | 'ExecutionPending' | 'ExecutionToBeSkipped';
|
|
5388
5398
|
}
|
|
5389
|
-
/** @name PolymeshPrimitivesSettlementAffirmationStatus (
|
|
5399
|
+
/** @name PolymeshPrimitivesSettlementAffirmationStatus (685) */
|
|
5390
5400
|
interface PolymeshPrimitivesSettlementAffirmationStatus extends Enum {
|
|
5391
5401
|
readonly isUnknown: boolean;
|
|
5392
5402
|
readonly isPending: boolean;
|
|
5393
5403
|
readonly isAffirmed: boolean;
|
|
5394
5404
|
readonly type: 'Unknown' | 'Pending' | 'Affirmed';
|
|
5395
5405
|
}
|
|
5396
|
-
/** @name PolymeshPrimitivesSettlementInstructionStatus (
|
|
5406
|
+
/** @name PolymeshPrimitivesSettlementInstructionStatus (689) */
|
|
5397
5407
|
interface PolymeshPrimitivesSettlementInstructionStatus extends Enum {
|
|
5398
5408
|
readonly isUnknown: boolean;
|
|
5399
5409
|
readonly isPending: boolean;
|
|
@@ -5404,7 +5414,7 @@ declare module "./types-lookup.ts" {
|
|
|
5404
5414
|
readonly asRejected: u32;
|
|
5405
5415
|
readonly type: 'Unknown' | 'Pending' | 'Failed' | 'Success' | 'Rejected';
|
|
5406
5416
|
}
|
|
5407
|
-
/** @name PalletSettlementError (
|
|
5417
|
+
/** @name PalletSettlementError (690) */
|
|
5408
5418
|
interface PalletSettlementError extends Enum {
|
|
5409
5419
|
readonly isInvalidVenue: boolean;
|
|
5410
5420
|
readonly isUnauthorized: boolean;
|
|
@@ -5445,19 +5455,20 @@ declare module "./types-lookup.ts" {
|
|
|
5445
5455
|
readonly isReceiptInstructionIdMissmatch: boolean;
|
|
5446
5456
|
readonly isMultipleReceiptsForOneLeg: boolean;
|
|
5447
5457
|
readonly isUnexpectedLegStatus: boolean;
|
|
5448
|
-
readonly
|
|
5458
|
+
readonly isNumberOfVenueSignersExceeded: boolean;
|
|
5459
|
+
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';
|
|
5449
5460
|
}
|
|
5450
|
-
/** @name PolymeshPrimitivesStatisticsStat1stKey (
|
|
5461
|
+
/** @name PolymeshPrimitivesStatisticsStat1stKey (693) */
|
|
5451
5462
|
interface PolymeshPrimitivesStatisticsStat1stKey extends Struct {
|
|
5452
5463
|
readonly asset: PolymeshPrimitivesStatisticsAssetScope;
|
|
5453
5464
|
readonly statType: PolymeshPrimitivesStatisticsStatType;
|
|
5454
5465
|
}
|
|
5455
|
-
/** @name PolymeshPrimitivesTransferComplianceAssetTransferCompliance (
|
|
5466
|
+
/** @name PolymeshPrimitivesTransferComplianceAssetTransferCompliance (694) */
|
|
5456
5467
|
interface PolymeshPrimitivesTransferComplianceAssetTransferCompliance extends Struct {
|
|
5457
5468
|
readonly paused: bool;
|
|
5458
5469
|
readonly requirements: BTreeSet<PolymeshPrimitivesTransferComplianceTransferCondition>;
|
|
5459
5470
|
}
|
|
5460
|
-
/** @name PalletStatisticsError (
|
|
5471
|
+
/** @name PalletStatisticsError (698) */
|
|
5461
5472
|
interface PalletStatisticsError extends Enum {
|
|
5462
5473
|
readonly isInvalidTransfer: boolean;
|
|
5463
5474
|
readonly isStatTypeMissing: boolean;
|
|
@@ -5468,7 +5479,7 @@ declare module "./types-lookup.ts" {
|
|
|
5468
5479
|
readonly isWeightLimitExceeded: boolean;
|
|
5469
5480
|
readonly type: 'InvalidTransfer' | 'StatTypeMissing' | 'StatTypeNeededByTransferCondition' | 'CannotRemoveStatTypeInUse' | 'StatTypeLimitReached' | 'TransferConditionLimitReached' | 'WeightLimitExceeded';
|
|
5470
5481
|
}
|
|
5471
|
-
/** @name PalletStoError (
|
|
5482
|
+
/** @name PalletStoError (700) */
|
|
5472
5483
|
interface PalletStoError extends Enum {
|
|
5473
5484
|
readonly isUnauthorized: boolean;
|
|
5474
5485
|
readonly isOverflow: boolean;
|
|
@@ -5484,13 +5495,13 @@ declare module "./types-lookup.ts" {
|
|
|
5484
5495
|
readonly isInvestmentAmountTooLow: boolean;
|
|
5485
5496
|
readonly type: 'Unauthorized' | 'Overflow' | 'InsufficientTokensRemaining' | 'FundraiserNotFound' | 'FundraiserNotLive' | 'FundraiserClosed' | 'FundraiserExpired' | 'InvalidVenue' | 'InvalidPriceTiers' | 'InvalidOfferingWindow' | 'MaxPriceExceeded' | 'InvestmentAmountTooLow';
|
|
5486
5497
|
}
|
|
5487
|
-
/** @name PalletTreasuryError (
|
|
5498
|
+
/** @name PalletTreasuryError (701) */
|
|
5488
5499
|
interface PalletTreasuryError extends Enum {
|
|
5489
5500
|
readonly isInsufficientBalance: boolean;
|
|
5490
5501
|
readonly isInvalidIdentity: boolean;
|
|
5491
5502
|
readonly type: 'InsufficientBalance' | 'InvalidIdentity';
|
|
5492
5503
|
}
|
|
5493
|
-
/** @name PalletUtilityError (
|
|
5504
|
+
/** @name PalletUtilityError (702) */
|
|
5494
5505
|
interface PalletUtilityError extends Enum {
|
|
5495
5506
|
readonly isTooManyCalls: boolean;
|
|
5496
5507
|
readonly isInvalidSignature: boolean;
|
|
@@ -5498,13 +5509,13 @@ declare module "./types-lookup.ts" {
|
|
|
5498
5509
|
readonly isInvalidNonce: boolean;
|
|
5499
5510
|
readonly type: 'TooManyCalls' | 'InvalidSignature' | 'TargetCddMissing' | 'InvalidNonce';
|
|
5500
5511
|
}
|
|
5501
|
-
/** @name PalletBaseError (
|
|
5512
|
+
/** @name PalletBaseError (703) */
|
|
5502
5513
|
interface PalletBaseError extends Enum {
|
|
5503
5514
|
readonly isTooLong: boolean;
|
|
5504
5515
|
readonly isCounterOverflow: boolean;
|
|
5505
5516
|
readonly type: 'TooLong' | 'CounterOverflow';
|
|
5506
5517
|
}
|
|
5507
|
-
/** @name PalletExternalAgentsError (
|
|
5518
|
+
/** @name PalletExternalAgentsError (705) */
|
|
5508
5519
|
interface PalletExternalAgentsError extends Enum {
|
|
5509
5520
|
readonly isNoSuchAG: boolean;
|
|
5510
5521
|
readonly isUnauthorizedAgent: boolean;
|
|
@@ -5514,12 +5525,12 @@ declare module "./types-lookup.ts" {
|
|
|
5514
5525
|
readonly isSecondaryKeyNotAuthorizedForAsset: boolean;
|
|
5515
5526
|
readonly type: 'NoSuchAG' | 'UnauthorizedAgent' | 'AlreadyAnAgent' | 'NotAnAgent' | 'RemovingLastFullAgent' | 'SecondaryKeyNotAuthorizedForAsset';
|
|
5516
5527
|
}
|
|
5517
|
-
/** @name PalletRelayerSubsidy (
|
|
5528
|
+
/** @name PalletRelayerSubsidy (706) */
|
|
5518
5529
|
interface PalletRelayerSubsidy extends Struct {
|
|
5519
5530
|
readonly payingKey: AccountId32;
|
|
5520
5531
|
readonly remaining: u128;
|
|
5521
5532
|
}
|
|
5522
|
-
/** @name PalletRelayerError (
|
|
5533
|
+
/** @name PalletRelayerError (707) */
|
|
5523
5534
|
interface PalletRelayerError extends Enum {
|
|
5524
5535
|
readonly isUserKeyCddMissing: boolean;
|
|
5525
5536
|
readonly isPayingKeyCddMissing: boolean;
|
|
@@ -5530,14 +5541,6 @@ declare module "./types-lookup.ts" {
|
|
|
5530
5541
|
readonly isOverflow: boolean;
|
|
5531
5542
|
readonly type: 'UserKeyCddMissing' | 'PayingKeyCddMissing' | 'NoPayingKey' | 'NotPayingKey' | 'NotAuthorizedForPayingKey' | 'NotAuthorizedForUserKey' | 'Overflow';
|
|
5532
5543
|
}
|
|
5533
|
-
/** @name PalletRewardsError (707) */
|
|
5534
|
-
interface PalletRewardsError extends Enum {
|
|
5535
|
-
readonly isUnknownItnAddress: boolean;
|
|
5536
|
-
readonly isItnRewardAlreadyClaimed: boolean;
|
|
5537
|
-
readonly isInvalidSignature: boolean;
|
|
5538
|
-
readonly isUnableToCovertBalance: boolean;
|
|
5539
|
-
readonly type: 'UnknownItnAddress' | 'ItnRewardAlreadyClaimed' | 'InvalidSignature' | 'UnableToCovertBalance';
|
|
5540
|
-
}
|
|
5541
5544
|
/** @name PalletContractsWasmPrefabWasmModule (709) */
|
|
5542
5545
|
interface PalletContractsWasmPrefabWasmModule extends Struct {
|
|
5543
5546
|
readonly instructionWeightsVersion: Compact<u32>;
|
|
@@ -5736,7 +5739,7 @@ declare module "./types-lookup.ts" {
|
|
|
5736
5739
|
readonly isIndeterministic: boolean;
|
|
5737
5740
|
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';
|
|
5738
5741
|
}
|
|
5739
|
-
/** @name PolymeshContractsError (
|
|
5742
|
+
/** @name PolymeshContractsError (723) */
|
|
5740
5743
|
interface PolymeshContractsError extends Enum {
|
|
5741
5744
|
readonly isInvalidFuncId: boolean;
|
|
5742
5745
|
readonly isInvalidRuntimeCall: boolean;
|
|
@@ -5748,7 +5751,7 @@ declare module "./types-lookup.ts" {
|
|
|
5748
5751
|
readonly isRuntimeCallDenied: boolean;
|
|
5749
5752
|
readonly type: 'InvalidFuncId' | 'InvalidRuntimeCall' | 'ReadStorageFailed' | 'DataLeftAfterDecoding' | 'InLenTooLarge' | 'OutLenTooLarge' | 'InstantiatorWithNoIdentity' | 'RuntimeCallDenied';
|
|
5750
5753
|
}
|
|
5751
|
-
/** @name PalletPreimageRequestStatus (
|
|
5754
|
+
/** @name PalletPreimageRequestStatus (724) */
|
|
5752
5755
|
interface PalletPreimageRequestStatus extends Enum {
|
|
5753
5756
|
readonly isUnrequested: boolean;
|
|
5754
5757
|
readonly asUnrequested: {
|
|
@@ -5763,7 +5766,7 @@ declare module "./types-lookup.ts" {
|
|
|
5763
5766
|
} & Struct;
|
|
5764
5767
|
readonly type: 'Unrequested' | 'Requested';
|
|
5765
5768
|
}
|
|
5766
|
-
/** @name PalletPreimageError (
|
|
5769
|
+
/** @name PalletPreimageError (728) */
|
|
5767
5770
|
interface PalletPreimageError extends Enum {
|
|
5768
5771
|
readonly isTooBig: boolean;
|
|
5769
5772
|
readonly isAlreadyNoted: boolean;
|
|
@@ -5773,12 +5776,12 @@ declare module "./types-lookup.ts" {
|
|
|
5773
5776
|
readonly isNotRequested: boolean;
|
|
5774
5777
|
readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested';
|
|
5775
5778
|
}
|
|
5776
|
-
/** @name PolymeshPrimitivesNftNftCollection (
|
|
5779
|
+
/** @name PolymeshPrimitivesNftNftCollection (729) */
|
|
5777
5780
|
interface PolymeshPrimitivesNftNftCollection extends Struct {
|
|
5778
5781
|
readonly id: u64;
|
|
5779
5782
|
readonly ticker: PolymeshPrimitivesTicker;
|
|
5780
5783
|
}
|
|
5781
|
-
/** @name PalletNftError (
|
|
5784
|
+
/** @name PalletNftError (733) */
|
|
5782
5785
|
interface PalletNftError extends Enum {
|
|
5783
5786
|
readonly isBalanceOverflow: boolean;
|
|
5784
5787
|
readonly isBalanceUnderflow: boolean;
|
|
@@ -5802,28 +5805,28 @@ declare module "./types-lookup.ts" {
|
|
|
5802
5805
|
readonly isZeroCount: boolean;
|
|
5803
5806
|
readonly type: 'BalanceOverflow' | 'BalanceUnderflow' | 'CollectionAlredyRegistered' | 'CollectionNotFound' | 'DuplicateMetadataKey' | 'DuplicatedNFTId' | 'InvalidAssetType' | 'InvalidMetadataAttribute' | 'InvalidNFTTransferCollectionNotFound' | 'InvalidNFTTransferSamePortfolio' | 'InvalidNFTTransferNFTNotOwned' | 'InvalidNFTTransferCountOverflow' | 'InvalidNFTTransferComplianceFailure' | 'InvalidNFTTransferFrozenAsset' | 'InvalidNFTTransferInsufficientCount' | 'MaxNumberOfKeysExceeded' | 'MaxNumberOfNFTsPerLegExceeded' | 'NftNotFound' | 'UnregisteredMetadataKey' | 'ZeroCount';
|
|
5804
5807
|
}
|
|
5805
|
-
/** @name PalletTestUtilsError (
|
|
5808
|
+
/** @name PalletTestUtilsError (734) */
|
|
5806
5809
|
type PalletTestUtilsError = Null;
|
|
5807
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
5810
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (737) */
|
|
5808
5811
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
5809
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
5812
|
+
/** @name FrameSystemExtensionsCheckTxVersion (738) */
|
|
5810
5813
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
5811
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
5814
|
+
/** @name FrameSystemExtensionsCheckGenesis (739) */
|
|
5812
5815
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
5813
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
5816
|
+
/** @name FrameSystemExtensionsCheckNonce (742) */
|
|
5814
5817
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
|
|
5815
5818
|
}
|
|
5816
|
-
/** @name PolymeshExtensionsCheckWeight (
|
|
5819
|
+
/** @name PolymeshExtensionsCheckWeight (743) */
|
|
5817
5820
|
interface PolymeshExtensionsCheckWeight extends FrameSystemExtensionsCheckWeight {
|
|
5818
5821
|
}
|
|
5819
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
5822
|
+
/** @name FrameSystemExtensionsCheckWeight (744) */
|
|
5820
5823
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
5821
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
5824
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (745) */
|
|
5822
5825
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
|
|
5823
5826
|
}
|
|
5824
|
-
/** @name PalletPermissionsStoreCallMetadata (
|
|
5827
|
+
/** @name PalletPermissionsStoreCallMetadata (746) */
|
|
5825
5828
|
type PalletPermissionsStoreCallMetadata = Null;
|
|
5826
|
-
/** @name PolymeshRuntimeDevelopRuntime (
|
|
5829
|
+
/** @name PolymeshRuntimeDevelopRuntime (747) */
|
|
5827
5830
|
type PolymeshRuntimeDevelopRuntime = Null;
|
|
5828
5831
|
}
|
|
5829
5832
|
//# sourceMappingURL=types-lookup.d.ts.map
|