@polymeshassociation/polymesh-sdk 24.4.0-alpha.3 → 24.4.0-alpha.5
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 +4 -3
- package/api/procedures/addInstruction.d.ts +0 -4
- package/api/procedures/addInstruction.d.ts.map +1 -1
- package/api/procedures/addInstruction.js +17 -34
- package/api/procedures/addInstruction.js.map +1 -1
- package/api/procedures/utils.d.ts +4 -0
- package/api/procedures/utils.d.ts.map +1 -1
- package/api/procedures/utils.js +18 -1
- package/api/procedures/utils.js.map +1 -1
- package/generated/types.d.ts +12 -2
- package/generated/types.d.ts.map +1 -1
- package/generated/types.js +12 -1
- package/generated/types.js.map +1 -1
- package/npm-package/polymeshassociation-polymesh-sdk-24.4.0-alpha.5.tgz +0 -0
- package/package.json +4 -4
- package/polkadot/augment-api-consts.d.ts +45 -47
- package/polkadot/augment-api-consts.d.ts.map +1 -1
- package/polkadot/augment-api-errors.d.ts +77 -0
- package/polkadot/augment-api-errors.d.ts.map +1 -1
- package/polkadot/augment-api-events.d.ts +56 -11
- package/polkadot/augment-api-events.d.ts.map +1 -1
- package/polkadot/augment-api-query.d.ts +94 -16
- package/polkadot/augment-api-query.d.ts.map +1 -1
- package/polkadot/augment-api-rpc.d.ts +19 -5
- package/polkadot/augment-api-rpc.d.ts.map +1 -1
- package/polkadot/augment-api-tx.d.ts +201 -234
- package/polkadot/augment-api-tx.d.ts.map +1 -1
- package/polkadot/augment-types.d.ts +43 -6
- package/polkadot/augment-types.d.ts.map +1 -1
- package/polkadot/lookup.d.ts +323 -229
- package/polkadot/lookup.d.ts.map +1 -1
- package/polkadot/lookup.js +341 -229
- package/polkadot/lookup.js.map +1 -1
- package/polkadot/registry.d.ts +11 -5
- package/polkadot/registry.d.ts.map +1 -1
- package/polkadot/schema.d.ts +45 -0
- package/polkadot/schema.d.ts.map +1 -1
- package/polkadot/schema.js +73 -0
- package/polkadot/schema.js.map +1 -1
- package/polkadot/settlement/definitions.d.ts +16 -0
- package/polkadot/settlement/definitions.d.ts.map +1 -1
- package/polkadot/settlement/definitions.js +24 -0
- package/polkadot/settlement/definitions.js.map +1 -1
- package/polkadot/types-lookup.d.ts +336 -239
- package/polkadot/types-lookup.d.ts.map +1 -1
- package/utils/constants.d.ts +2 -2
- package/utils/constants.d.ts.map +1 -1
- package/utils/constants.js +2 -2
- package/utils/constants.js.map +1 -1
- package/npm-package/polymeshassociation-polymesh-sdk-24.4.0-alpha.3.tgz +0 -0
|
@@ -1009,7 +1009,14 @@ declare module "./types-lookup.ts" {
|
|
|
1009
1009
|
readonly asProposalExecutionFailed: SpRuntimeDispatchError;
|
|
1010
1010
|
readonly isSchedulingFailed: boolean;
|
|
1011
1011
|
readonly asSchedulingFailed: SpRuntimeDispatchError;
|
|
1012
|
-
readonly
|
|
1012
|
+
readonly isProposalFailedToExecute: boolean;
|
|
1013
|
+
readonly asProposalFailedToExecute: ITuple<[
|
|
1014
|
+
PolymeshPrimitivesIdentityId,
|
|
1015
|
+
AccountId32,
|
|
1016
|
+
u64,
|
|
1017
|
+
SpRuntimeDispatchError
|
|
1018
|
+
]>;
|
|
1019
|
+
readonly type: 'MultiSigCreated' | 'ProposalAdded' | 'ProposalExecuted' | 'MultiSigSignerAdded' | 'MultiSigSignerAuthorized' | 'MultiSigSignerRemoved' | 'MultiSigSignaturesRequiredChanged' | 'ProposalApproved' | 'ProposalRejectionVote' | 'ProposalRejected' | 'ProposalExecutionFailed' | 'SchedulingFailed' | 'ProposalFailedToExecute';
|
|
1013
1020
|
}
|
|
1014
1021
|
/** @name PolymeshPrimitivesSecondaryKeySignatory (95) */
|
|
1015
1022
|
interface PolymeshPrimitivesSecondaryKeySignatory extends Enum {
|
|
@@ -1083,8 +1090,8 @@ declare module "./types-lookup.ts" {
|
|
|
1083
1090
|
readonly asError: Bytes;
|
|
1084
1091
|
readonly type: 'Success' | 'Error';
|
|
1085
1092
|
}
|
|
1086
|
-
/** @name
|
|
1087
|
-
interface
|
|
1093
|
+
/** @name PalletStakingPalletEvent (101) */
|
|
1094
|
+
interface PalletStakingPalletEvent extends Enum {
|
|
1088
1095
|
readonly isEraPayout: boolean;
|
|
1089
1096
|
readonly asEraPayout: ITuple<[u32, u128, u128]>;
|
|
1090
1097
|
readonly isReward: boolean;
|
|
@@ -2611,7 +2618,43 @@ declare module "./types-lookup.ts" {
|
|
|
2611
2618
|
readonly asCddStatus: ITuple<[Option<PolymeshPrimitivesIdentityId>, AccountId32, bool]>;
|
|
2612
2619
|
readonly type: 'DidStatus' | 'CddStatus';
|
|
2613
2620
|
}
|
|
2614
|
-
/** @name
|
|
2621
|
+
/** @name PalletStateTrieMigrationEvent (299) */
|
|
2622
|
+
interface PalletStateTrieMigrationEvent extends Enum {
|
|
2623
|
+
readonly isMigrated: boolean;
|
|
2624
|
+
readonly asMigrated: {
|
|
2625
|
+
readonly top: u32;
|
|
2626
|
+
readonly child: u32;
|
|
2627
|
+
readonly compute: PalletStateTrieMigrationMigrationCompute;
|
|
2628
|
+
} & Struct;
|
|
2629
|
+
readonly isSlashed: boolean;
|
|
2630
|
+
readonly asSlashed: {
|
|
2631
|
+
readonly who: AccountId32;
|
|
2632
|
+
readonly amount: u128;
|
|
2633
|
+
} & Struct;
|
|
2634
|
+
readonly isAutoMigrationFinished: boolean;
|
|
2635
|
+
readonly isHalted: boolean;
|
|
2636
|
+
readonly asHalted: {
|
|
2637
|
+
readonly error: PalletStateTrieMigrationError;
|
|
2638
|
+
} & Struct;
|
|
2639
|
+
readonly type: 'Migrated' | 'Slashed' | 'AutoMigrationFinished' | 'Halted';
|
|
2640
|
+
}
|
|
2641
|
+
/** @name PalletStateTrieMigrationMigrationCompute (300) */
|
|
2642
|
+
interface PalletStateTrieMigrationMigrationCompute extends Enum {
|
|
2643
|
+
readonly isSigned: boolean;
|
|
2644
|
+
readonly isAuto: boolean;
|
|
2645
|
+
readonly type: 'Signed' | 'Auto';
|
|
2646
|
+
}
|
|
2647
|
+
/** @name PalletStateTrieMigrationError (301) */
|
|
2648
|
+
interface PalletStateTrieMigrationError extends Enum {
|
|
2649
|
+
readonly isMaxSignedLimits: boolean;
|
|
2650
|
+
readonly isKeyTooLong: boolean;
|
|
2651
|
+
readonly isNotEnoughFunds: boolean;
|
|
2652
|
+
readonly isBadWitness: boolean;
|
|
2653
|
+
readonly isSignedMigrationNotAllowed: boolean;
|
|
2654
|
+
readonly isBadChildRoot: boolean;
|
|
2655
|
+
readonly type: 'MaxSignedLimits' | 'KeyTooLong' | 'NotEnoughFunds' | 'BadWitness' | 'SignedMigrationNotAllowed' | 'BadChildRoot';
|
|
2656
|
+
}
|
|
2657
|
+
/** @name FrameSystemPhase (302) */
|
|
2615
2658
|
interface FrameSystemPhase extends Enum {
|
|
2616
2659
|
readonly isApplyExtrinsic: boolean;
|
|
2617
2660
|
readonly asApplyExtrinsic: u32;
|
|
@@ -2619,12 +2662,12 @@ declare module "./types-lookup.ts" {
|
|
|
2619
2662
|
readonly isInitialization: boolean;
|
|
2620
2663
|
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
|
|
2621
2664
|
}
|
|
2622
|
-
/** @name FrameSystemLastRuntimeUpgradeInfo (
|
|
2665
|
+
/** @name FrameSystemLastRuntimeUpgradeInfo (305) */
|
|
2623
2666
|
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
|
|
2624
2667
|
readonly specVersion: Compact<u32>;
|
|
2625
2668
|
readonly specName: Text;
|
|
2626
2669
|
}
|
|
2627
|
-
/** @name FrameSystemCall (
|
|
2670
|
+
/** @name FrameSystemCall (308) */
|
|
2628
2671
|
interface FrameSystemCall extends Enum {
|
|
2629
2672
|
readonly isRemark: boolean;
|
|
2630
2673
|
readonly asRemark: {
|
|
@@ -2661,41 +2704,41 @@ declare module "./types-lookup.ts" {
|
|
|
2661
2704
|
} & Struct;
|
|
2662
2705
|
readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
|
|
2663
2706
|
}
|
|
2664
|
-
/** @name FrameSystemLimitsBlockWeights (
|
|
2707
|
+
/** @name FrameSystemLimitsBlockWeights (312) */
|
|
2665
2708
|
interface FrameSystemLimitsBlockWeights extends Struct {
|
|
2666
2709
|
readonly baseBlock: SpWeightsWeightV2Weight;
|
|
2667
2710
|
readonly maxBlock: SpWeightsWeightV2Weight;
|
|
2668
2711
|
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
|
|
2669
2712
|
}
|
|
2670
|
-
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (
|
|
2713
|
+
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (313) */
|
|
2671
2714
|
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
|
|
2672
2715
|
readonly normal: FrameSystemLimitsWeightsPerClass;
|
|
2673
2716
|
readonly operational: FrameSystemLimitsWeightsPerClass;
|
|
2674
2717
|
readonly mandatory: FrameSystemLimitsWeightsPerClass;
|
|
2675
2718
|
}
|
|
2676
|
-
/** @name FrameSystemLimitsWeightsPerClass (
|
|
2719
|
+
/** @name FrameSystemLimitsWeightsPerClass (314) */
|
|
2677
2720
|
interface FrameSystemLimitsWeightsPerClass extends Struct {
|
|
2678
2721
|
readonly baseExtrinsic: SpWeightsWeightV2Weight;
|
|
2679
2722
|
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
|
|
2680
2723
|
readonly maxTotal: Option<SpWeightsWeightV2Weight>;
|
|
2681
2724
|
readonly reserved: Option<SpWeightsWeightV2Weight>;
|
|
2682
2725
|
}
|
|
2683
|
-
/** @name FrameSystemLimitsBlockLength (
|
|
2726
|
+
/** @name FrameSystemLimitsBlockLength (316) */
|
|
2684
2727
|
interface FrameSystemLimitsBlockLength extends Struct {
|
|
2685
2728
|
readonly max: FrameSupportDispatchPerDispatchClassU32;
|
|
2686
2729
|
}
|
|
2687
|
-
/** @name FrameSupportDispatchPerDispatchClassU32 (
|
|
2730
|
+
/** @name FrameSupportDispatchPerDispatchClassU32 (317) */
|
|
2688
2731
|
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
|
|
2689
2732
|
readonly normal: u32;
|
|
2690
2733
|
readonly operational: u32;
|
|
2691
2734
|
readonly mandatory: u32;
|
|
2692
2735
|
}
|
|
2693
|
-
/** @name SpWeightsRuntimeDbWeight (
|
|
2736
|
+
/** @name SpWeightsRuntimeDbWeight (318) */
|
|
2694
2737
|
interface SpWeightsRuntimeDbWeight extends Struct {
|
|
2695
2738
|
readonly read: u64;
|
|
2696
2739
|
readonly write: u64;
|
|
2697
2740
|
}
|
|
2698
|
-
/** @name SpVersionRuntimeVersion (
|
|
2741
|
+
/** @name SpVersionRuntimeVersion (319) */
|
|
2699
2742
|
interface SpVersionRuntimeVersion extends Struct {
|
|
2700
2743
|
readonly specName: Text;
|
|
2701
2744
|
readonly implName: Text;
|
|
@@ -2706,7 +2749,7 @@ declare module "./types-lookup.ts" {
|
|
|
2706
2749
|
readonly transactionVersion: u32;
|
|
2707
2750
|
readonly stateVersion: u8;
|
|
2708
2751
|
}
|
|
2709
|
-
/** @name FrameSystemError (
|
|
2752
|
+
/** @name FrameSystemError (324) */
|
|
2710
2753
|
interface FrameSystemError extends Enum {
|
|
2711
2754
|
readonly isInvalidSpecName: boolean;
|
|
2712
2755
|
readonly isSpecVersionNeedsToIncrease: boolean;
|
|
@@ -2716,10 +2759,10 @@ declare module "./types-lookup.ts" {
|
|
|
2716
2759
|
readonly isCallFiltered: boolean;
|
|
2717
2760
|
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
|
|
2718
2761
|
}
|
|
2719
|
-
/** @name SpConsensusBabeAppPublic (
|
|
2762
|
+
/** @name SpConsensusBabeAppPublic (327) */
|
|
2720
2763
|
interface SpConsensusBabeAppPublic extends SpCoreSr25519Public {
|
|
2721
2764
|
}
|
|
2722
|
-
/** @name SpConsensusBabeDigestsNextConfigDescriptor (
|
|
2765
|
+
/** @name SpConsensusBabeDigestsNextConfigDescriptor (330) */
|
|
2723
2766
|
interface SpConsensusBabeDigestsNextConfigDescriptor extends Enum {
|
|
2724
2767
|
readonly isV1: boolean;
|
|
2725
2768
|
readonly asV1: {
|
|
@@ -2728,14 +2771,14 @@ declare module "./types-lookup.ts" {
|
|
|
2728
2771
|
} & Struct;
|
|
2729
2772
|
readonly type: 'V1';
|
|
2730
2773
|
}
|
|
2731
|
-
/** @name SpConsensusBabeAllowedSlots (
|
|
2774
|
+
/** @name SpConsensusBabeAllowedSlots (332) */
|
|
2732
2775
|
interface SpConsensusBabeAllowedSlots extends Enum {
|
|
2733
2776
|
readonly isPrimarySlots: boolean;
|
|
2734
2777
|
readonly isPrimaryAndSecondaryPlainSlots: boolean;
|
|
2735
2778
|
readonly isPrimaryAndSecondaryVRFSlots: boolean;
|
|
2736
2779
|
readonly type: 'PrimarySlots' | 'PrimaryAndSecondaryPlainSlots' | 'PrimaryAndSecondaryVRFSlots';
|
|
2737
2780
|
}
|
|
2738
|
-
/** @name SpConsensusBabeDigestsPreDigest (
|
|
2781
|
+
/** @name SpConsensusBabeDigestsPreDigest (336) */
|
|
2739
2782
|
interface SpConsensusBabeDigestsPreDigest extends Enum {
|
|
2740
2783
|
readonly isPrimary: boolean;
|
|
2741
2784
|
readonly asPrimary: SpConsensusBabeDigestsPrimaryPreDigest;
|
|
@@ -2745,31 +2788,31 @@ declare module "./types-lookup.ts" {
|
|
|
2745
2788
|
readonly asSecondaryVRF: SpConsensusBabeDigestsSecondaryVRFPreDigest;
|
|
2746
2789
|
readonly type: 'Primary' | 'SecondaryPlain' | 'SecondaryVRF';
|
|
2747
2790
|
}
|
|
2748
|
-
/** @name SpConsensusBabeDigestsPrimaryPreDigest (
|
|
2791
|
+
/** @name SpConsensusBabeDigestsPrimaryPreDigest (337) */
|
|
2749
2792
|
interface SpConsensusBabeDigestsPrimaryPreDigest extends Struct {
|
|
2750
2793
|
readonly authorityIndex: u32;
|
|
2751
2794
|
readonly slot: u64;
|
|
2752
2795
|
readonly vrfOutput: U8aFixed;
|
|
2753
2796
|
readonly vrfProof: U8aFixed;
|
|
2754
2797
|
}
|
|
2755
|
-
/** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (
|
|
2798
|
+
/** @name SpConsensusBabeDigestsSecondaryPlainPreDigest (338) */
|
|
2756
2799
|
interface SpConsensusBabeDigestsSecondaryPlainPreDigest extends Struct {
|
|
2757
2800
|
readonly authorityIndex: u32;
|
|
2758
2801
|
readonly slot: u64;
|
|
2759
2802
|
}
|
|
2760
|
-
/** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (
|
|
2803
|
+
/** @name SpConsensusBabeDigestsSecondaryVRFPreDigest (339) */
|
|
2761
2804
|
interface SpConsensusBabeDigestsSecondaryVRFPreDigest extends Struct {
|
|
2762
2805
|
readonly authorityIndex: u32;
|
|
2763
2806
|
readonly slot: u64;
|
|
2764
2807
|
readonly vrfOutput: U8aFixed;
|
|
2765
2808
|
readonly vrfProof: U8aFixed;
|
|
2766
2809
|
}
|
|
2767
|
-
/** @name SpConsensusBabeBabeEpochConfiguration (
|
|
2810
|
+
/** @name SpConsensusBabeBabeEpochConfiguration (340) */
|
|
2768
2811
|
interface SpConsensusBabeBabeEpochConfiguration extends Struct {
|
|
2769
2812
|
readonly c: ITuple<[u64, u64]>;
|
|
2770
2813
|
readonly allowedSlots: SpConsensusBabeAllowedSlots;
|
|
2771
2814
|
}
|
|
2772
|
-
/** @name PalletBabeCall (
|
|
2815
|
+
/** @name PalletBabeCall (344) */
|
|
2773
2816
|
interface PalletBabeCall extends Enum {
|
|
2774
2817
|
readonly isReportEquivocation: boolean;
|
|
2775
2818
|
readonly asReportEquivocation: {
|
|
@@ -2787,14 +2830,14 @@ declare module "./types-lookup.ts" {
|
|
|
2787
2830
|
} & Struct;
|
|
2788
2831
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'PlanConfigChange';
|
|
2789
2832
|
}
|
|
2790
|
-
/** @name SpConsensusSlotsEquivocationProof (
|
|
2833
|
+
/** @name SpConsensusSlotsEquivocationProof (345) */
|
|
2791
2834
|
interface SpConsensusSlotsEquivocationProof extends Struct {
|
|
2792
2835
|
readonly offender: SpConsensusBabeAppPublic;
|
|
2793
2836
|
readonly slot: u64;
|
|
2794
2837
|
readonly firstHeader: SpRuntimeHeader;
|
|
2795
2838
|
readonly secondHeader: SpRuntimeHeader;
|
|
2796
2839
|
}
|
|
2797
|
-
/** @name SpRuntimeHeader (
|
|
2840
|
+
/** @name SpRuntimeHeader (346) */
|
|
2798
2841
|
interface SpRuntimeHeader extends Struct {
|
|
2799
2842
|
readonly parentHash: H256;
|
|
2800
2843
|
readonly number: Compact<u32>;
|
|
@@ -2802,15 +2845,15 @@ declare module "./types-lookup.ts" {
|
|
|
2802
2845
|
readonly extrinsicsRoot: H256;
|
|
2803
2846
|
readonly digest: SpRuntimeDigest;
|
|
2804
2847
|
}
|
|
2805
|
-
/** @name SpRuntimeBlakeTwo256 (
|
|
2848
|
+
/** @name SpRuntimeBlakeTwo256 (347) */
|
|
2806
2849
|
type SpRuntimeBlakeTwo256 = Null;
|
|
2807
|
-
/** @name SpSessionMembershipProof (
|
|
2850
|
+
/** @name SpSessionMembershipProof (348) */
|
|
2808
2851
|
interface SpSessionMembershipProof extends Struct {
|
|
2809
2852
|
readonly session: u32;
|
|
2810
2853
|
readonly trieNodes: Vec<Bytes>;
|
|
2811
2854
|
readonly validatorCount: u32;
|
|
2812
2855
|
}
|
|
2813
|
-
/** @name PalletBabeError (
|
|
2856
|
+
/** @name PalletBabeError (349) */
|
|
2814
2857
|
interface PalletBabeError extends Enum {
|
|
2815
2858
|
readonly isInvalidEquivocationProof: boolean;
|
|
2816
2859
|
readonly isInvalidKeyOwnershipProof: boolean;
|
|
@@ -2818,7 +2861,7 @@ declare module "./types-lookup.ts" {
|
|
|
2818
2861
|
readonly isInvalidConfiguration: boolean;
|
|
2819
2862
|
readonly type: 'InvalidEquivocationProof' | 'InvalidKeyOwnershipProof' | 'DuplicateOffenceReport' | 'InvalidConfiguration';
|
|
2820
2863
|
}
|
|
2821
|
-
/** @name PalletTimestampCall (
|
|
2864
|
+
/** @name PalletTimestampCall (350) */
|
|
2822
2865
|
interface PalletTimestampCall extends Enum {
|
|
2823
2866
|
readonly isSet: boolean;
|
|
2824
2867
|
readonly asSet: {
|
|
@@ -2826,7 +2869,7 @@ declare module "./types-lookup.ts" {
|
|
|
2826
2869
|
} & Struct;
|
|
2827
2870
|
readonly type: 'Set';
|
|
2828
2871
|
}
|
|
2829
|
-
/** @name PalletIndicesCall (
|
|
2872
|
+
/** @name PalletIndicesCall (352) */
|
|
2830
2873
|
interface PalletIndicesCall extends Enum {
|
|
2831
2874
|
readonly isClaim: boolean;
|
|
2832
2875
|
readonly asClaim: {
|
|
@@ -2853,7 +2896,7 @@ declare module "./types-lookup.ts" {
|
|
|
2853
2896
|
} & Struct;
|
|
2854
2897
|
readonly type: 'Claim' | 'Transfer' | 'Free' | 'ForceTransfer' | 'Freeze';
|
|
2855
2898
|
}
|
|
2856
|
-
/** @name PalletIndicesError (
|
|
2899
|
+
/** @name PalletIndicesError (354) */
|
|
2857
2900
|
interface PalletIndicesError extends Enum {
|
|
2858
2901
|
readonly isNotAssigned: boolean;
|
|
2859
2902
|
readonly isNotOwner: boolean;
|
|
@@ -2862,20 +2905,20 @@ declare module "./types-lookup.ts" {
|
|
|
2862
2905
|
readonly isPermanent: boolean;
|
|
2863
2906
|
readonly type: 'NotAssigned' | 'NotOwner' | 'InUse' | 'NotTransfer' | 'Permanent';
|
|
2864
2907
|
}
|
|
2865
|
-
/** @name PalletBalancesBalanceLock (
|
|
2908
|
+
/** @name PalletBalancesBalanceLock (356) */
|
|
2866
2909
|
interface PalletBalancesBalanceLock extends Struct {
|
|
2867
2910
|
readonly id: U8aFixed;
|
|
2868
2911
|
readonly amount: u128;
|
|
2869
2912
|
readonly reasons: PolymeshCommonUtilitiesBalancesReasons;
|
|
2870
2913
|
}
|
|
2871
|
-
/** @name PolymeshCommonUtilitiesBalancesReasons (
|
|
2914
|
+
/** @name PolymeshCommonUtilitiesBalancesReasons (357) */
|
|
2872
2915
|
interface PolymeshCommonUtilitiesBalancesReasons extends Enum {
|
|
2873
2916
|
readonly isFee: boolean;
|
|
2874
2917
|
readonly isMisc: boolean;
|
|
2875
2918
|
readonly isAll: boolean;
|
|
2876
2919
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
2877
2920
|
}
|
|
2878
|
-
/** @name PalletBalancesCall (
|
|
2921
|
+
/** @name PalletBalancesCall (358) */
|
|
2879
2922
|
interface PalletBalancesCall extends Enum {
|
|
2880
2923
|
readonly isTransfer: boolean;
|
|
2881
2924
|
readonly asTransfer: {
|
|
@@ -2910,7 +2953,7 @@ declare module "./types-lookup.ts" {
|
|
|
2910
2953
|
} & Struct;
|
|
2911
2954
|
readonly type: 'Transfer' | 'TransferWithMemo' | 'DepositBlockRewardReserveBalance' | 'SetBalance' | 'ForceTransfer' | 'BurnAccountBalance';
|
|
2912
2955
|
}
|
|
2913
|
-
/** @name PalletBalancesError (
|
|
2956
|
+
/** @name PalletBalancesError (359) */
|
|
2914
2957
|
interface PalletBalancesError extends Enum {
|
|
2915
2958
|
readonly isLiquidityRestrictions: boolean;
|
|
2916
2959
|
readonly isOverflow: boolean;
|
|
@@ -2919,34 +2962,34 @@ declare module "./types-lookup.ts" {
|
|
|
2919
2962
|
readonly isReceiverCddMissing: boolean;
|
|
2920
2963
|
readonly type: 'LiquidityRestrictions' | 'Overflow' | 'InsufficientBalance' | 'ExistentialDeposit' | 'ReceiverCddMissing';
|
|
2921
2964
|
}
|
|
2922
|
-
/** @name PalletTransactionPaymentReleases (
|
|
2965
|
+
/** @name PalletTransactionPaymentReleases (361) */
|
|
2923
2966
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
2924
2967
|
readonly isV1Ancient: boolean;
|
|
2925
2968
|
readonly isV2: boolean;
|
|
2926
2969
|
readonly type: 'V1Ancient' | 'V2';
|
|
2927
2970
|
}
|
|
2928
|
-
/** @name SpWeightsWeightToFeeCoefficient (
|
|
2971
|
+
/** @name SpWeightsWeightToFeeCoefficient (363) */
|
|
2929
2972
|
interface SpWeightsWeightToFeeCoefficient extends Struct {
|
|
2930
2973
|
readonly coeffInteger: u128;
|
|
2931
2974
|
readonly coeffFrac: Perbill;
|
|
2932
2975
|
readonly negative: bool;
|
|
2933
2976
|
readonly degree: u8;
|
|
2934
2977
|
}
|
|
2935
|
-
/** @name PolymeshPrimitivesIdentityDidRecord (
|
|
2978
|
+
/** @name PolymeshPrimitivesIdentityDidRecord (364) */
|
|
2936
2979
|
interface PolymeshPrimitivesIdentityDidRecord extends Struct {
|
|
2937
2980
|
readonly primaryKey: Option<AccountId32>;
|
|
2938
2981
|
}
|
|
2939
|
-
/** @name PalletIdentityClaim1stKey (
|
|
2982
|
+
/** @name PalletIdentityClaim1stKey (366) */
|
|
2940
2983
|
interface PalletIdentityClaim1stKey extends Struct {
|
|
2941
2984
|
readonly target: PolymeshPrimitivesIdentityId;
|
|
2942
2985
|
readonly claimType: PolymeshPrimitivesIdentityClaimClaimType;
|
|
2943
2986
|
}
|
|
2944
|
-
/** @name PalletIdentityClaim2ndKey (
|
|
2987
|
+
/** @name PalletIdentityClaim2ndKey (367) */
|
|
2945
2988
|
interface PalletIdentityClaim2ndKey extends Struct {
|
|
2946
2989
|
readonly issuer: PolymeshPrimitivesIdentityId;
|
|
2947
2990
|
readonly scope: Option<PolymeshPrimitivesIdentityClaimScope>;
|
|
2948
2991
|
}
|
|
2949
|
-
/** @name PolymeshPrimitivesSecondaryKeyKeyRecord (
|
|
2992
|
+
/** @name PolymeshPrimitivesSecondaryKeyKeyRecord (368) */
|
|
2950
2993
|
interface PolymeshPrimitivesSecondaryKeyKeyRecord extends Enum {
|
|
2951
2994
|
readonly isPrimaryKey: boolean;
|
|
2952
2995
|
readonly asPrimaryKey: PolymeshPrimitivesIdentityId;
|
|
@@ -2959,7 +3002,7 @@ declare module "./types-lookup.ts" {
|
|
|
2959
3002
|
readonly asMultiSigSignerKey: AccountId32;
|
|
2960
3003
|
readonly type: 'PrimaryKey' | 'SecondaryKey' | 'MultiSigSignerKey';
|
|
2961
3004
|
}
|
|
2962
|
-
/** @name PolymeshPrimitivesAuthorization (
|
|
3005
|
+
/** @name PolymeshPrimitivesAuthorization (371) */
|
|
2963
3006
|
interface PolymeshPrimitivesAuthorization extends Struct {
|
|
2964
3007
|
readonly authorizationData: PolymeshPrimitivesAuthorizationAuthorizationData;
|
|
2965
3008
|
readonly authorizedBy: PolymeshPrimitivesIdentityId;
|
|
@@ -2967,7 +3010,7 @@ declare module "./types-lookup.ts" {
|
|
|
2967
3010
|
readonly authId: u64;
|
|
2968
3011
|
readonly count: u32;
|
|
2969
3012
|
}
|
|
2970
|
-
/** @name PalletIdentityCall (
|
|
3013
|
+
/** @name PalletIdentityCall (375) */
|
|
2971
3014
|
interface PalletIdentityCall extends Enum {
|
|
2972
3015
|
readonly isCddRegisterDid: boolean;
|
|
2973
3016
|
readonly asCddRegisterDid: {
|
|
@@ -3077,17 +3120,17 @@ declare module "./types-lookup.ts" {
|
|
|
3077
3120
|
} & Struct;
|
|
3078
3121
|
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';
|
|
3079
3122
|
}
|
|
3080
|
-
/** @name PolymeshCommonUtilitiesIdentitySecondaryKeyWithAuth (
|
|
3123
|
+
/** @name PolymeshCommonUtilitiesIdentitySecondaryKeyWithAuth (377) */
|
|
3081
3124
|
interface PolymeshCommonUtilitiesIdentitySecondaryKeyWithAuth extends Struct {
|
|
3082
3125
|
readonly secondaryKey: PolymeshPrimitivesSecondaryKey;
|
|
3083
3126
|
readonly authSignature: H512;
|
|
3084
3127
|
}
|
|
3085
|
-
/** @name PolymeshCommonUtilitiesIdentityCreateChildIdentityWithAuth (
|
|
3128
|
+
/** @name PolymeshCommonUtilitiesIdentityCreateChildIdentityWithAuth (380) */
|
|
3086
3129
|
interface PolymeshCommonUtilitiesIdentityCreateChildIdentityWithAuth extends Struct {
|
|
3087
3130
|
readonly key: AccountId32;
|
|
3088
3131
|
readonly authSignature: H512;
|
|
3089
3132
|
}
|
|
3090
|
-
/** @name PalletIdentityError (
|
|
3133
|
+
/** @name PalletIdentityError (381) */
|
|
3091
3134
|
interface PalletIdentityError extends Enum {
|
|
3092
3135
|
readonly isAlreadyLinked: boolean;
|
|
3093
3136
|
readonly isMissingCurrentIdentity: boolean;
|
|
@@ -3122,15 +3165,16 @@ declare module "./types-lookup.ts" {
|
|
|
3122
3165
|
readonly isNotParentOrChildIdentity: boolean;
|
|
3123
3166
|
readonly isDuplicateKey: boolean;
|
|
3124
3167
|
readonly isExceptNotAllowedForExtrinsics: boolean;
|
|
3125
|
-
readonly
|
|
3168
|
+
readonly isExceededNumberOfGivenAuths: boolean;
|
|
3169
|
+
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' | 'ExceededNumberOfGivenAuths';
|
|
3126
3170
|
}
|
|
3127
|
-
/** @name PolymeshCommonUtilitiesGroupInactiveMember (
|
|
3171
|
+
/** @name PolymeshCommonUtilitiesGroupInactiveMember (383) */
|
|
3128
3172
|
interface PolymeshCommonUtilitiesGroupInactiveMember extends Struct {
|
|
3129
3173
|
readonly id: PolymeshPrimitivesIdentityId;
|
|
3130
3174
|
readonly deactivatedAt: u64;
|
|
3131
3175
|
readonly expiry: Option<u64>;
|
|
3132
3176
|
}
|
|
3133
|
-
/** @name PalletGroupCall (
|
|
3177
|
+
/** @name PalletGroupCall (384) */
|
|
3134
3178
|
interface PalletGroupCall extends Enum {
|
|
3135
3179
|
readonly isSetActiveMembersLimit: boolean;
|
|
3136
3180
|
readonly asSetActiveMembersLimit: {
|
|
@@ -3162,7 +3206,7 @@ declare module "./types-lookup.ts" {
|
|
|
3162
3206
|
readonly isAbdicateMembership: boolean;
|
|
3163
3207
|
readonly type: 'SetActiveMembersLimit' | 'DisableMember' | 'AddMember' | 'RemoveMember' | 'SwapMember' | 'ResetMembers' | 'AbdicateMembership';
|
|
3164
3208
|
}
|
|
3165
|
-
/** @name PalletGroupError (
|
|
3209
|
+
/** @name PalletGroupError (385) */
|
|
3166
3210
|
interface PalletGroupError extends Enum {
|
|
3167
3211
|
readonly isOnlyPrimaryKeyAllowed: boolean;
|
|
3168
3212
|
readonly isDuplicateMember: boolean;
|
|
@@ -3173,7 +3217,7 @@ declare module "./types-lookup.ts" {
|
|
|
3173
3217
|
readonly isActiveMembersLimitOverflow: boolean;
|
|
3174
3218
|
readonly type: 'OnlyPrimaryKeyAllowed' | 'DuplicateMember' | 'NoSuchMember' | 'LastMemberCannotQuit' | 'MissingCurrentIdentity' | 'ActiveMembersLimitExceeded' | 'ActiveMembersLimitOverflow';
|
|
3175
3219
|
}
|
|
3176
|
-
/** @name PalletCommitteeCall (
|
|
3220
|
+
/** @name PalletCommitteeCall (387) */
|
|
3177
3221
|
interface PalletCommitteeCall extends Enum {
|
|
3178
3222
|
readonly isSetVoteThreshold: boolean;
|
|
3179
3223
|
readonly asSetVoteThreshold: {
|
|
@@ -3201,7 +3245,7 @@ declare module "./types-lookup.ts" {
|
|
|
3201
3245
|
} & Struct;
|
|
3202
3246
|
readonly type: 'SetVoteThreshold' | 'SetReleaseCoordinator' | 'SetExpiresAfter' | 'VoteOrPropose' | 'Vote';
|
|
3203
3247
|
}
|
|
3204
|
-
/** @name PalletMultisigCall (
|
|
3248
|
+
/** @name PalletMultisigCall (393) */
|
|
3205
3249
|
interface PalletMultisigCall extends Enum {
|
|
3206
3250
|
readonly isCreateMultisig: boolean;
|
|
3207
3251
|
readonly asCreateMultisig: {
|
|
@@ -3313,7 +3357,7 @@ declare module "./types-lookup.ts" {
|
|
|
3313
3357
|
} & Struct;
|
|
3314
3358
|
readonly type: 'CreateMultisig' | 'CreateOrApproveProposalAsIdentity' | 'CreateOrApproveProposalAsKey' | 'CreateProposalAsIdentity' | 'CreateProposalAsKey' | 'ApproveAsIdentity' | 'ApproveAsKey' | 'RejectAsIdentity' | 'RejectAsKey' | 'AcceptMultisigSignerAsIdentity' | 'AcceptMultisigSignerAsKey' | 'AddMultisigSigner' | 'RemoveMultisigSigner' | 'AddMultisigSignersViaCreator' | 'RemoveMultisigSignersViaCreator' | 'ChangeSigsRequired' | 'MakeMultisigSecondary' | 'MakeMultisigPrimary' | 'ExecuteScheduledProposal' | 'ChangeSigsRequiredViaCreator' | 'RemoveCreatorControls';
|
|
3315
3359
|
}
|
|
3316
|
-
/** @name PalletBridgeCall (
|
|
3360
|
+
/** @name PalletBridgeCall (394) */
|
|
3317
3361
|
interface PalletBridgeCall extends Enum {
|
|
3318
3362
|
readonly isChangeController: boolean;
|
|
3319
3363
|
readonly asChangeController: {
|
|
@@ -3380,8 +3424,8 @@ declare module "./types-lookup.ts" {
|
|
|
3380
3424
|
} & Struct;
|
|
3381
3425
|
readonly type: 'ChangeController' | 'ChangeAdmin' | 'ChangeTimelock' | 'Freeze' | 'Unfreeze' | 'ChangeBridgeLimit' | 'ChangeBridgeExempted' | 'ForceHandleBridgeTx' | 'BatchProposeBridgeTx' | 'ProposeBridgeTx' | 'HandleBridgeTx' | 'FreezeTxs' | 'UnfreezeTxs' | 'HandleScheduledBridgeTx' | 'AddFreezeAdmin' | 'RemoveFreezeAdmin' | 'RemoveTxs';
|
|
3382
3426
|
}
|
|
3383
|
-
/** @name
|
|
3384
|
-
interface
|
|
3427
|
+
/** @name PalletStakingPalletCall (398) */
|
|
3428
|
+
interface PalletStakingPalletCall extends Enum {
|
|
3385
3429
|
readonly isBond: boolean;
|
|
3386
3430
|
readonly asBond: {
|
|
3387
3431
|
readonly controller: MultiAddress;
|
|
@@ -3523,7 +3567,7 @@ declare module "./types-lookup.ts" {
|
|
|
3523
3567
|
} & Struct;
|
|
3524
3568
|
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';
|
|
3525
3569
|
}
|
|
3526
|
-
/** @name PalletStakingRewardDestination (
|
|
3570
|
+
/** @name PalletStakingRewardDestination (399) */
|
|
3527
3571
|
interface PalletStakingRewardDestination extends Enum {
|
|
3528
3572
|
readonly isStaked: boolean;
|
|
3529
3573
|
readonly isStash: boolean;
|
|
@@ -3532,12 +3576,12 @@ declare module "./types-lookup.ts" {
|
|
|
3532
3576
|
readonly asAccount: AccountId32;
|
|
3533
3577
|
readonly type: 'Staked' | 'Stash' | 'Controller' | 'Account';
|
|
3534
3578
|
}
|
|
3535
|
-
/** @name PalletStakingValidatorPrefs (
|
|
3579
|
+
/** @name PalletStakingValidatorPrefs (400) */
|
|
3536
3580
|
interface PalletStakingValidatorPrefs extends Struct {
|
|
3537
3581
|
readonly commission: Compact<Perbill>;
|
|
3538
3582
|
readonly blocked: bool;
|
|
3539
3583
|
}
|
|
3540
|
-
/** @name PalletStakingCompactAssignments (
|
|
3584
|
+
/** @name PalletStakingCompactAssignments (406) */
|
|
3541
3585
|
interface PalletStakingCompactAssignments extends Struct {
|
|
3542
3586
|
readonly votes1: Vec<ITuple<[Compact<u32>, Compact<u16>]>>;
|
|
3543
3587
|
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<PerU16>]>, Compact<u16>]>>;
|
|
@@ -3556,18 +3600,18 @@ declare module "./types-lookup.ts" {
|
|
|
3556
3600
|
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
|
3557
3601
|
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
|
3558
3602
|
}
|
|
3559
|
-
/** @name SpNposElectionsElectionScore (
|
|
3603
|
+
/** @name SpNposElectionsElectionScore (457) */
|
|
3560
3604
|
interface SpNposElectionsElectionScore extends Struct {
|
|
3561
3605
|
readonly minimalStake: u128;
|
|
3562
3606
|
readonly sumStake: u128;
|
|
3563
3607
|
readonly sumStakeSquared: u128;
|
|
3564
3608
|
}
|
|
3565
|
-
/** @name PalletStakingElectionSize (
|
|
3609
|
+
/** @name PalletStakingElectionSize (458) */
|
|
3566
3610
|
interface PalletStakingElectionSize extends Struct {
|
|
3567
3611
|
readonly validators: Compact<u16>;
|
|
3568
3612
|
readonly nominators: Compact<u32>;
|
|
3569
3613
|
}
|
|
3570
|
-
/** @name PalletSessionCall (
|
|
3614
|
+
/** @name PalletSessionCall (459) */
|
|
3571
3615
|
interface PalletSessionCall extends Enum {
|
|
3572
3616
|
readonly isSetKeys: boolean;
|
|
3573
3617
|
readonly asSetKeys: {
|
|
@@ -3577,17 +3621,17 @@ declare module "./types-lookup.ts" {
|
|
|
3577
3621
|
readonly isPurgeKeys: boolean;
|
|
3578
3622
|
readonly type: 'SetKeys' | 'PurgeKeys';
|
|
3579
3623
|
}
|
|
3580
|
-
/** @name PolymeshRuntimeDevelopRuntimeSessionKeys (
|
|
3624
|
+
/** @name PolymeshRuntimeDevelopRuntimeSessionKeys (460) */
|
|
3581
3625
|
interface PolymeshRuntimeDevelopRuntimeSessionKeys extends Struct {
|
|
3582
3626
|
readonly grandpa: SpConsensusGrandpaAppPublic;
|
|
3583
3627
|
readonly babe: SpConsensusBabeAppPublic;
|
|
3584
3628
|
readonly imOnline: PalletImOnlineSr25519AppSr25519Public;
|
|
3585
3629
|
readonly authorityDiscovery: SpAuthorityDiscoveryAppPublic;
|
|
3586
3630
|
}
|
|
3587
|
-
/** @name SpAuthorityDiscoveryAppPublic (
|
|
3631
|
+
/** @name SpAuthorityDiscoveryAppPublic (461) */
|
|
3588
3632
|
interface SpAuthorityDiscoveryAppPublic extends SpCoreSr25519Public {
|
|
3589
3633
|
}
|
|
3590
|
-
/** @name PalletGrandpaCall (
|
|
3634
|
+
/** @name PalletGrandpaCall (462) */
|
|
3591
3635
|
interface PalletGrandpaCall extends Enum {
|
|
3592
3636
|
readonly isReportEquivocation: boolean;
|
|
3593
3637
|
readonly asReportEquivocation: {
|
|
@@ -3606,12 +3650,12 @@ declare module "./types-lookup.ts" {
|
|
|
3606
3650
|
} & Struct;
|
|
3607
3651
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
3608
3652
|
}
|
|
3609
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
3653
|
+
/** @name SpConsensusGrandpaEquivocationProof (463) */
|
|
3610
3654
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
3611
3655
|
readonly setId: u64;
|
|
3612
3656
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
3613
3657
|
}
|
|
3614
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
3658
|
+
/** @name SpConsensusGrandpaEquivocation (464) */
|
|
3615
3659
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
3616
3660
|
readonly isPrevote: boolean;
|
|
3617
3661
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -3619,37 +3663,37 @@ declare module "./types-lookup.ts" {
|
|
|
3619
3663
|
readonly asPrecommit: FinalityGrandpaEquivocationPrecommit;
|
|
3620
3664
|
readonly type: 'Prevote' | 'Precommit';
|
|
3621
3665
|
}
|
|
3622
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
3666
|
+
/** @name FinalityGrandpaEquivocationPrevote (465) */
|
|
3623
3667
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
3624
3668
|
readonly roundNumber: u64;
|
|
3625
3669
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
3626
3670
|
readonly first: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
3627
3671
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
3628
3672
|
}
|
|
3629
|
-
/** @name FinalityGrandpaPrevote (
|
|
3673
|
+
/** @name FinalityGrandpaPrevote (466) */
|
|
3630
3674
|
interface FinalityGrandpaPrevote extends Struct {
|
|
3631
3675
|
readonly targetHash: H256;
|
|
3632
3676
|
readonly targetNumber: u32;
|
|
3633
3677
|
}
|
|
3634
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
3678
|
+
/** @name SpConsensusGrandpaAppSignature (467) */
|
|
3635
3679
|
interface SpConsensusGrandpaAppSignature extends SpCoreEd25519Signature {
|
|
3636
3680
|
}
|
|
3637
|
-
/** @name SpCoreEd25519Signature (
|
|
3681
|
+
/** @name SpCoreEd25519Signature (468) */
|
|
3638
3682
|
interface SpCoreEd25519Signature extends U8aFixed {
|
|
3639
3683
|
}
|
|
3640
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
3684
|
+
/** @name FinalityGrandpaEquivocationPrecommit (470) */
|
|
3641
3685
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
3642
3686
|
readonly roundNumber: u64;
|
|
3643
3687
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
3644
3688
|
readonly first: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
3645
3689
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
3646
3690
|
}
|
|
3647
|
-
/** @name FinalityGrandpaPrecommit (
|
|
3691
|
+
/** @name FinalityGrandpaPrecommit (471) */
|
|
3648
3692
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
3649
3693
|
readonly targetHash: H256;
|
|
3650
3694
|
readonly targetNumber: u32;
|
|
3651
3695
|
}
|
|
3652
|
-
/** @name PalletImOnlineCall (
|
|
3696
|
+
/** @name PalletImOnlineCall (473) */
|
|
3653
3697
|
interface PalletImOnlineCall extends Enum {
|
|
3654
3698
|
readonly isHeartbeat: boolean;
|
|
3655
3699
|
readonly asHeartbeat: {
|
|
@@ -3658,7 +3702,7 @@ declare module "./types-lookup.ts" {
|
|
|
3658
3702
|
} & Struct;
|
|
3659
3703
|
readonly type: 'Heartbeat';
|
|
3660
3704
|
}
|
|
3661
|
-
/** @name PalletImOnlineHeartbeat (
|
|
3705
|
+
/** @name PalletImOnlineHeartbeat (474) */
|
|
3662
3706
|
interface PalletImOnlineHeartbeat extends Struct {
|
|
3663
3707
|
readonly blockNumber: u32;
|
|
3664
3708
|
readonly networkState: SpCoreOffchainOpaqueNetworkState;
|
|
@@ -3666,18 +3710,18 @@ declare module "./types-lookup.ts" {
|
|
|
3666
3710
|
readonly authorityIndex: u32;
|
|
3667
3711
|
readonly validatorsLen: u32;
|
|
3668
3712
|
}
|
|
3669
|
-
/** @name SpCoreOffchainOpaqueNetworkState (
|
|
3713
|
+
/** @name SpCoreOffchainOpaqueNetworkState (475) */
|
|
3670
3714
|
interface SpCoreOffchainOpaqueNetworkState extends Struct {
|
|
3671
3715
|
readonly peerId: OpaquePeerId;
|
|
3672
3716
|
readonly externalAddresses: Vec<OpaqueMultiaddr>;
|
|
3673
3717
|
}
|
|
3674
|
-
/** @name PalletImOnlineSr25519AppSr25519Signature (
|
|
3718
|
+
/** @name PalletImOnlineSr25519AppSr25519Signature (479) */
|
|
3675
3719
|
interface PalletImOnlineSr25519AppSr25519Signature extends SpCoreSr25519Signature {
|
|
3676
3720
|
}
|
|
3677
|
-
/** @name SpCoreSr25519Signature (
|
|
3721
|
+
/** @name SpCoreSr25519Signature (480) */
|
|
3678
3722
|
interface SpCoreSr25519Signature extends U8aFixed {
|
|
3679
3723
|
}
|
|
3680
|
-
/** @name PalletSudoCall (
|
|
3724
|
+
/** @name PalletSudoCall (481) */
|
|
3681
3725
|
interface PalletSudoCall extends Enum {
|
|
3682
3726
|
readonly isSudo: boolean;
|
|
3683
3727
|
readonly asSudo: {
|
|
@@ -3699,7 +3743,7 @@ declare module "./types-lookup.ts" {
|
|
|
3699
3743
|
} & Struct;
|
|
3700
3744
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
|
|
3701
3745
|
}
|
|
3702
|
-
/** @name PalletAssetCall (
|
|
3746
|
+
/** @name PalletAssetCall (482) */
|
|
3703
3747
|
interface PalletAssetCall extends Enum {
|
|
3704
3748
|
readonly isRegisterTicker: boolean;
|
|
3705
3749
|
readonly asRegisterTicker: {
|
|
@@ -3768,7 +3812,7 @@ declare module "./types-lookup.ts" {
|
|
|
3768
3812
|
readonly isUpdateIdentifiers: boolean;
|
|
3769
3813
|
readonly asUpdateIdentifiers: {
|
|
3770
3814
|
readonly ticker: PolymeshPrimitivesTicker;
|
|
3771
|
-
readonly
|
|
3815
|
+
readonly assetIdentifiers: Vec<PolymeshPrimitivesAssetIdentifier>;
|
|
3772
3816
|
} & Struct;
|
|
3773
3817
|
readonly isControllerTransfer: boolean;
|
|
3774
3818
|
readonly asControllerTransfer: {
|
|
@@ -3870,7 +3914,7 @@ declare module "./types-lookup.ts" {
|
|
|
3870
3914
|
} & Struct;
|
|
3871
3915
|
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' | 'AddMandatoryMediators' | 'RemoveMandatoryMediators';
|
|
3872
3916
|
}
|
|
3873
|
-
/** @name PalletCorporateActionsDistributionCall (
|
|
3917
|
+
/** @name PalletCorporateActionsDistributionCall (485) */
|
|
3874
3918
|
interface PalletCorporateActionsDistributionCall extends Enum {
|
|
3875
3919
|
readonly isDistribute: boolean;
|
|
3876
3920
|
readonly asDistribute: {
|
|
@@ -3901,7 +3945,7 @@ declare module "./types-lookup.ts" {
|
|
|
3901
3945
|
} & Struct;
|
|
3902
3946
|
readonly type: 'Distribute' | 'Claim' | 'PushBenefit' | 'Reclaim' | 'RemoveDistribution';
|
|
3903
3947
|
}
|
|
3904
|
-
/** @name PalletAssetCheckpointCall (
|
|
3948
|
+
/** @name PalletAssetCheckpointCall (487) */
|
|
3905
3949
|
interface PalletAssetCheckpointCall extends Enum {
|
|
3906
3950
|
readonly isCreateCheckpoint: boolean;
|
|
3907
3951
|
readonly asCreateCheckpoint: {
|
|
@@ -3923,7 +3967,7 @@ declare module "./types-lookup.ts" {
|
|
|
3923
3967
|
} & Struct;
|
|
3924
3968
|
readonly type: 'CreateCheckpoint' | 'SetSchedulesMaxComplexity' | 'CreateSchedule' | 'RemoveSchedule';
|
|
3925
3969
|
}
|
|
3926
|
-
/** @name PalletComplianceManagerCall (
|
|
3970
|
+
/** @name PalletComplianceManagerCall (488) */
|
|
3927
3971
|
interface PalletComplianceManagerCall extends Enum {
|
|
3928
3972
|
readonly isAddComplianceRequirement: boolean;
|
|
3929
3973
|
readonly asAddComplianceRequirement: {
|
|
@@ -3970,7 +4014,7 @@ declare module "./types-lookup.ts" {
|
|
|
3970
4014
|
} & Struct;
|
|
3971
4015
|
readonly type: 'AddComplianceRequirement' | 'RemoveComplianceRequirement' | 'ReplaceAssetCompliance' | 'ResetAssetCompliance' | 'PauseAssetCompliance' | 'ResumeAssetCompliance' | 'AddDefaultTrustedClaimIssuer' | 'RemoveDefaultTrustedClaimIssuer' | 'ChangeComplianceRequirement';
|
|
3972
4016
|
}
|
|
3973
|
-
/** @name PalletCorporateActionsCall (
|
|
4017
|
+
/** @name PalletCorporateActionsCall (489) */
|
|
3974
4018
|
interface PalletCorporateActionsCall extends Enum {
|
|
3975
4019
|
readonly isSetMaxDetailsLength: boolean;
|
|
3976
4020
|
readonly asSetMaxDetailsLength: {
|
|
@@ -4029,7 +4073,7 @@ declare module "./types-lookup.ts" {
|
|
|
4029
4073
|
} & Struct;
|
|
4030
4074
|
readonly type: 'SetMaxDetailsLength' | 'SetDefaultTargets' | 'SetDefaultWithholdingTax' | 'SetDidWithholdingTax' | 'InitiateCorporateAction' | 'LinkCaDoc' | 'RemoveCa' | 'ChangeRecordDate' | 'InitiateCorporateActionAndDistribute';
|
|
4031
4075
|
}
|
|
4032
|
-
/** @name PalletCorporateActionsRecordDateSpec (
|
|
4076
|
+
/** @name PalletCorporateActionsRecordDateSpec (491) */
|
|
4033
4077
|
interface PalletCorporateActionsRecordDateSpec extends Enum {
|
|
4034
4078
|
readonly isScheduled: boolean;
|
|
4035
4079
|
readonly asScheduled: u64;
|
|
@@ -4039,7 +4083,7 @@ declare module "./types-lookup.ts" {
|
|
|
4039
4083
|
readonly asExisting: u64;
|
|
4040
4084
|
readonly type: 'Scheduled' | 'ExistingSchedule' | 'Existing';
|
|
4041
4085
|
}
|
|
4042
|
-
/** @name PalletCorporateActionsInitiateCorporateActionArgs (
|
|
4086
|
+
/** @name PalletCorporateActionsInitiateCorporateActionArgs (494) */
|
|
4043
4087
|
interface PalletCorporateActionsInitiateCorporateActionArgs extends Struct {
|
|
4044
4088
|
readonly ticker: PolymeshPrimitivesTicker;
|
|
4045
4089
|
readonly kind: PalletCorporateActionsCaKind;
|
|
@@ -4050,7 +4094,7 @@ declare module "./types-lookup.ts" {
|
|
|
4050
4094
|
readonly defaultWithholdingTax: Option<Permill>;
|
|
4051
4095
|
readonly withholdingTax: Option<Vec<ITuple<[PolymeshPrimitivesIdentityId, Permill]>>>;
|
|
4052
4096
|
}
|
|
4053
|
-
/** @name PalletCorporateActionsBallotCall (
|
|
4097
|
+
/** @name PalletCorporateActionsBallotCall (495) */
|
|
4054
4098
|
interface PalletCorporateActionsBallotCall extends Enum {
|
|
4055
4099
|
readonly isAttachBallot: boolean;
|
|
4056
4100
|
readonly asAttachBallot: {
|
|
@@ -4085,7 +4129,7 @@ declare module "./types-lookup.ts" {
|
|
|
4085
4129
|
} & Struct;
|
|
4086
4130
|
readonly type: 'AttachBallot' | 'Vote' | 'ChangeEnd' | 'ChangeMeta' | 'ChangeRcv' | 'RemoveBallot';
|
|
4087
4131
|
}
|
|
4088
|
-
/** @name PalletPipsCall (
|
|
4132
|
+
/** @name PalletPipsCall (496) */
|
|
4089
4133
|
interface PalletPipsCall extends Enum {
|
|
4090
4134
|
readonly isSetPruneHistoricalPips: boolean;
|
|
4091
4135
|
readonly asSetPruneHistoricalPips: {
|
|
@@ -4158,14 +4202,14 @@ declare module "./types-lookup.ts" {
|
|
|
4158
4202
|
} & Struct;
|
|
4159
4203
|
readonly type: 'SetPruneHistoricalPips' | 'SetMinProposalDeposit' | 'SetDefaultEnactmentPeriod' | 'SetPendingPipExpiry' | 'SetMaxPipSkipCount' | 'SetActivePipLimit' | 'Propose' | 'Vote' | 'ApproveCommitteeProposal' | 'RejectProposal' | 'PruneProposal' | 'RescheduleExecution' | 'ClearSnapshot' | 'Snapshot' | 'EnactSnapshotResults' | 'ExecuteScheduledPip' | 'ExpireScheduledPip';
|
|
4160
4204
|
}
|
|
4161
|
-
/** @name PalletPipsSnapshotResult (
|
|
4205
|
+
/** @name PalletPipsSnapshotResult (499) */
|
|
4162
4206
|
interface PalletPipsSnapshotResult extends Enum {
|
|
4163
4207
|
readonly isApprove: boolean;
|
|
4164
4208
|
readonly isReject: boolean;
|
|
4165
4209
|
readonly isSkip: boolean;
|
|
4166
4210
|
readonly type: 'Approve' | 'Reject' | 'Skip';
|
|
4167
4211
|
}
|
|
4168
|
-
/** @name PalletPortfolioCall (
|
|
4212
|
+
/** @name PalletPortfolioCall (500) */
|
|
4169
4213
|
interface PalletPortfolioCall extends Enum {
|
|
4170
4214
|
readonly isCreatePortfolio: boolean;
|
|
4171
4215
|
readonly asCreatePortfolio: {
|
|
@@ -4219,12 +4263,12 @@ declare module "./types-lookup.ts" {
|
|
|
4219
4263
|
} & Struct;
|
|
4220
4264
|
readonly type: 'CreatePortfolio' | 'DeletePortfolio' | 'RenamePortfolio' | 'QuitPortfolioCustody' | 'AcceptPortfolioCustody' | 'MovePortfolioFunds' | 'PreApprovePortfolio' | 'RemovePortfolioPreApproval' | 'AllowIdentityToCreatePortfolios' | 'RevokeCreatePortfoliosPermission' | 'CreateCustodyPortfolio';
|
|
4221
4265
|
}
|
|
4222
|
-
/** @name PolymeshPrimitivesPortfolioFund (
|
|
4266
|
+
/** @name PolymeshPrimitivesPortfolioFund (502) */
|
|
4223
4267
|
interface PolymeshPrimitivesPortfolioFund extends Struct {
|
|
4224
4268
|
readonly description: PolymeshPrimitivesPortfolioFundDescription;
|
|
4225
4269
|
readonly memo: Option<PolymeshPrimitivesMemo>;
|
|
4226
4270
|
}
|
|
4227
|
-
/** @name PalletProtocolFeeCall (
|
|
4271
|
+
/** @name PalletProtocolFeeCall (503) */
|
|
4228
4272
|
interface PalletProtocolFeeCall extends Enum {
|
|
4229
4273
|
readonly isChangeCoefficient: boolean;
|
|
4230
4274
|
readonly asChangeCoefficient: {
|
|
@@ -4237,7 +4281,7 @@ declare module "./types-lookup.ts" {
|
|
|
4237
4281
|
} & Struct;
|
|
4238
4282
|
readonly type: 'ChangeCoefficient' | 'ChangeBaseFee';
|
|
4239
4283
|
}
|
|
4240
|
-
/** @name PolymeshCommonUtilitiesProtocolFeeProtocolOp (
|
|
4284
|
+
/** @name PolymeshCommonUtilitiesProtocolFeeProtocolOp (504) */
|
|
4241
4285
|
interface PolymeshCommonUtilitiesProtocolFeeProtocolOp extends Enum {
|
|
4242
4286
|
readonly isAssetRegisterTicker: boolean;
|
|
4243
4287
|
readonly isAssetIssue: boolean;
|
|
@@ -4257,7 +4301,7 @@ declare module "./types-lookup.ts" {
|
|
|
4257
4301
|
readonly isIdentityCreateChildIdentity: boolean;
|
|
4258
4302
|
readonly type: 'AssetRegisterTicker' | 'AssetIssue' | 'AssetAddDocuments' | 'AssetCreateAsset' | 'CheckpointCreateSchedule' | 'ComplianceManagerAddComplianceRequirement' | 'IdentityCddRegisterDid' | 'IdentityAddClaim' | 'IdentityAddSecondaryKeysWithAuthorization' | 'PipsPropose' | 'ContractsPutCode' | 'CorporateBallotAttachBallot' | 'CapitalDistributionDistribute' | 'NftCreateCollection' | 'NftMint' | 'IdentityCreateChildIdentity';
|
|
4259
4303
|
}
|
|
4260
|
-
/** @name PalletSchedulerCall (
|
|
4304
|
+
/** @name PalletSchedulerCall (505) */
|
|
4261
4305
|
interface PalletSchedulerCall extends Enum {
|
|
4262
4306
|
readonly isSchedule: boolean;
|
|
4263
4307
|
readonly asSchedule: {
|
|
@@ -4300,7 +4344,7 @@ declare module "./types-lookup.ts" {
|
|
|
4300
4344
|
} & Struct;
|
|
4301
4345
|
readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter';
|
|
4302
4346
|
}
|
|
4303
|
-
/** @name PalletSettlementCall (
|
|
4347
|
+
/** @name PalletSettlementCall (507) */
|
|
4304
4348
|
interface PalletSettlementCall extends Enum {
|
|
4305
4349
|
readonly isCreateVenue: boolean;
|
|
4306
4350
|
readonly asCreateVenue: {
|
|
@@ -4455,7 +4499,7 @@ declare module "./types-lookup.ts" {
|
|
|
4455
4499
|
} & Struct;
|
|
4456
4500
|
readonly type: 'CreateVenue' | 'UpdateVenueDetails' | 'UpdateVenueType' | 'AffirmWithReceipts' | 'SetVenueFiltering' | 'AllowVenues' | 'DisallowVenues' | 'UpdateVenueSigners' | 'ExecuteManualInstruction' | 'AddInstruction' | 'AddAndAffirmInstruction' | 'AffirmInstruction' | 'WithdrawAffirmation' | 'RejectInstruction' | 'ExecuteScheduledInstruction' | 'AffirmWithReceiptsWithCount' | 'AffirmInstructionWithCount' | 'RejectInstructionWithCount' | 'WithdrawAffirmationWithCount' | 'AddInstructionWithMediators' | 'AddAndAffirmWithMediators' | 'AffirmInstructionAsMediator' | 'WithdrawAffirmationAsMediator' | 'RejectInstructionAsMediator';
|
|
4457
4501
|
}
|
|
4458
|
-
/** @name PolymeshPrimitivesSettlementReceiptDetails (
|
|
4502
|
+
/** @name PolymeshPrimitivesSettlementReceiptDetails (509) */
|
|
4459
4503
|
interface PolymeshPrimitivesSettlementReceiptDetails extends Struct {
|
|
4460
4504
|
readonly uid: u64;
|
|
4461
4505
|
readonly instructionId: u64;
|
|
@@ -4464,7 +4508,7 @@ declare module "./types-lookup.ts" {
|
|
|
4464
4508
|
readonly signature: SpRuntimeMultiSignature;
|
|
4465
4509
|
readonly metadata: Option<PolymeshPrimitivesSettlementReceiptMetadata>;
|
|
4466
4510
|
}
|
|
4467
|
-
/** @name SpRuntimeMultiSignature (
|
|
4511
|
+
/** @name SpRuntimeMultiSignature (510) */
|
|
4468
4512
|
interface SpRuntimeMultiSignature extends Enum {
|
|
4469
4513
|
readonly isEd25519: boolean;
|
|
4470
4514
|
readonly asEd25519: SpCoreEd25519Signature;
|
|
@@ -4474,22 +4518,22 @@ declare module "./types-lookup.ts" {
|
|
|
4474
4518
|
readonly asEcdsa: SpCoreEcdsaSignature;
|
|
4475
4519
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
|
|
4476
4520
|
}
|
|
4477
|
-
/** @name SpCoreEcdsaSignature (
|
|
4521
|
+
/** @name SpCoreEcdsaSignature (511) */
|
|
4478
4522
|
interface SpCoreEcdsaSignature extends U8aFixed {
|
|
4479
4523
|
}
|
|
4480
|
-
/** @name PolymeshPrimitivesSettlementAffirmationCount (
|
|
4524
|
+
/** @name PolymeshPrimitivesSettlementAffirmationCount (514) */
|
|
4481
4525
|
interface PolymeshPrimitivesSettlementAffirmationCount extends Struct {
|
|
4482
4526
|
readonly senderAssetCount: PolymeshPrimitivesSettlementAssetCount;
|
|
4483
4527
|
readonly receiverAssetCount: PolymeshPrimitivesSettlementAssetCount;
|
|
4484
4528
|
readonly offchainCount: u32;
|
|
4485
4529
|
}
|
|
4486
|
-
/** @name PolymeshPrimitivesSettlementAssetCount (
|
|
4530
|
+
/** @name PolymeshPrimitivesSettlementAssetCount (515) */
|
|
4487
4531
|
interface PolymeshPrimitivesSettlementAssetCount extends Struct {
|
|
4488
4532
|
readonly fungible: u32;
|
|
4489
4533
|
readonly nonFungible: u32;
|
|
4490
4534
|
readonly offChain: u32;
|
|
4491
4535
|
}
|
|
4492
|
-
/** @name PalletStatisticsCall (
|
|
4536
|
+
/** @name PalletStatisticsCall (518) */
|
|
4493
4537
|
interface PalletStatisticsCall extends Enum {
|
|
4494
4538
|
readonly isSetActiveAssetStats: boolean;
|
|
4495
4539
|
readonly asSetActiveAssetStats: {
|
|
@@ -4515,7 +4559,7 @@ declare module "./types-lookup.ts" {
|
|
|
4515
4559
|
} & Struct;
|
|
4516
4560
|
readonly type: 'SetActiveAssetStats' | 'BatchUpdateAssetStats' | 'SetAssetTransferCompliance' | 'SetEntitiesExempt';
|
|
4517
4561
|
}
|
|
4518
|
-
/** @name PalletStoCall (
|
|
4562
|
+
/** @name PalletStoCall (522) */
|
|
4519
4563
|
interface PalletStoCall extends Enum {
|
|
4520
4564
|
readonly isCreateFundraiser: boolean;
|
|
4521
4565
|
readonly asCreateFundraiser: {
|
|
@@ -4564,12 +4608,12 @@ declare module "./types-lookup.ts" {
|
|
|
4564
4608
|
} & Struct;
|
|
4565
4609
|
readonly type: 'CreateFundraiser' | 'Invest' | 'FreezeFundraiser' | 'UnfreezeFundraiser' | 'ModifyFundraiserWindow' | 'Stop';
|
|
4566
4610
|
}
|
|
4567
|
-
/** @name PalletStoPriceTier (
|
|
4611
|
+
/** @name PalletStoPriceTier (524) */
|
|
4568
4612
|
interface PalletStoPriceTier extends Struct {
|
|
4569
4613
|
readonly total: u128;
|
|
4570
4614
|
readonly price: u128;
|
|
4571
4615
|
}
|
|
4572
|
-
/** @name PalletTreasuryCall (
|
|
4616
|
+
/** @name PalletTreasuryCall (526) */
|
|
4573
4617
|
interface PalletTreasuryCall extends Enum {
|
|
4574
4618
|
readonly isDisbursement: boolean;
|
|
4575
4619
|
readonly asDisbursement: {
|
|
@@ -4581,12 +4625,12 @@ declare module "./types-lookup.ts" {
|
|
|
4581
4625
|
} & Struct;
|
|
4582
4626
|
readonly type: 'Disbursement' | 'Reimbursement';
|
|
4583
4627
|
}
|
|
4584
|
-
/** @name PolymeshPrimitivesBeneficiary (
|
|
4628
|
+
/** @name PolymeshPrimitivesBeneficiary (528) */
|
|
4585
4629
|
interface PolymeshPrimitivesBeneficiary extends Struct {
|
|
4586
4630
|
readonly id: PolymeshPrimitivesIdentityId;
|
|
4587
4631
|
readonly amount: u128;
|
|
4588
4632
|
}
|
|
4589
|
-
/** @name PalletUtilityCall (
|
|
4633
|
+
/** @name PalletUtilityCall (529) */
|
|
4590
4634
|
interface PalletUtilityCall extends Enum {
|
|
4591
4635
|
readonly isBatch: boolean;
|
|
4592
4636
|
readonly asBatch: {
|
|
@@ -4635,12 +4679,12 @@ declare module "./types-lookup.ts" {
|
|
|
4635
4679
|
} & Struct;
|
|
4636
4680
|
readonly type: 'Batch' | 'RelayTx' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight' | 'BatchOld' | 'BatchAtomic' | 'BatchOptimistic' | 'AsDerivative';
|
|
4637
4681
|
}
|
|
4638
|
-
/** @name PalletUtilityUniqueCall (
|
|
4682
|
+
/** @name PalletUtilityUniqueCall (531) */
|
|
4639
4683
|
interface PalletUtilityUniqueCall extends Struct {
|
|
4640
4684
|
readonly nonce: u64;
|
|
4641
4685
|
readonly call: Call;
|
|
4642
4686
|
}
|
|
4643
|
-
/** @name PolymeshRuntimeDevelopRuntimeOriginCaller (
|
|
4687
|
+
/** @name PolymeshRuntimeDevelopRuntimeOriginCaller (532) */
|
|
4644
4688
|
interface PolymeshRuntimeDevelopRuntimeOriginCaller extends Enum {
|
|
4645
4689
|
readonly isSystem: boolean;
|
|
4646
4690
|
readonly asSystem: FrameSupportDispatchRawOrigin;
|
|
@@ -4653,7 +4697,7 @@ declare module "./types-lookup.ts" {
|
|
|
4653
4697
|
readonly asUpgradeCommittee: PalletCommitteeRawOriginInstance4;
|
|
4654
4698
|
readonly type: 'System' | 'Void' | 'PolymeshCommittee' | 'TechnicalCommittee' | 'UpgradeCommittee';
|
|
4655
4699
|
}
|
|
4656
|
-
/** @name FrameSupportDispatchRawOrigin (
|
|
4700
|
+
/** @name FrameSupportDispatchRawOrigin (533) */
|
|
4657
4701
|
interface FrameSupportDispatchRawOrigin extends Enum {
|
|
4658
4702
|
readonly isRoot: boolean;
|
|
4659
4703
|
readonly isSigned: boolean;
|
|
@@ -4661,26 +4705,26 @@ declare module "./types-lookup.ts" {
|
|
|
4661
4705
|
readonly isNone: boolean;
|
|
4662
4706
|
readonly type: 'Root' | 'Signed' | 'None';
|
|
4663
4707
|
}
|
|
4664
|
-
/** @name PalletCommitteeRawOriginInstance1 (
|
|
4708
|
+
/** @name PalletCommitteeRawOriginInstance1 (534) */
|
|
4665
4709
|
interface PalletCommitteeRawOriginInstance1 extends Enum {
|
|
4666
4710
|
readonly isEndorsed: boolean;
|
|
4667
4711
|
readonly type: 'Endorsed';
|
|
4668
4712
|
}
|
|
4669
|
-
/** @name PalletCommitteeRawOriginInstance3 (
|
|
4713
|
+
/** @name PalletCommitteeRawOriginInstance3 (535) */
|
|
4670
4714
|
interface PalletCommitteeRawOriginInstance3 extends Enum {
|
|
4671
4715
|
readonly isEndorsed: boolean;
|
|
4672
4716
|
readonly type: 'Endorsed';
|
|
4673
4717
|
}
|
|
4674
|
-
/** @name PalletCommitteeRawOriginInstance4 (
|
|
4718
|
+
/** @name PalletCommitteeRawOriginInstance4 (536) */
|
|
4675
4719
|
interface PalletCommitteeRawOriginInstance4 extends Enum {
|
|
4676
4720
|
readonly isEndorsed: boolean;
|
|
4677
4721
|
readonly type: 'Endorsed';
|
|
4678
4722
|
}
|
|
4679
|
-
/** @name SpCoreVoid (
|
|
4723
|
+
/** @name SpCoreVoid (537) */
|
|
4680
4724
|
type SpCoreVoid = Null;
|
|
4681
|
-
/** @name PalletBaseCall (
|
|
4725
|
+
/** @name PalletBaseCall (538) */
|
|
4682
4726
|
type PalletBaseCall = Null;
|
|
4683
|
-
/** @name PalletExternalAgentsCall (
|
|
4727
|
+
/** @name PalletExternalAgentsCall (539) */
|
|
4684
4728
|
interface PalletExternalAgentsCall extends Enum {
|
|
4685
4729
|
readonly isCreateGroup: boolean;
|
|
4686
4730
|
readonly asCreateGroup: {
|
|
@@ -4727,7 +4771,7 @@ declare module "./types-lookup.ts" {
|
|
|
4727
4771
|
} & Struct;
|
|
4728
4772
|
readonly type: 'CreateGroup' | 'SetGroupPermissions' | 'RemoveAgent' | 'Abdicate' | 'ChangeGroup' | 'AcceptBecomeAgent' | 'CreateGroupAndAddAuth' | 'CreateAndChangeCustomGroup';
|
|
4729
4773
|
}
|
|
4730
|
-
/** @name PalletRelayerCall (
|
|
4774
|
+
/** @name PalletRelayerCall (540) */
|
|
4731
4775
|
interface PalletRelayerCall extends Enum {
|
|
4732
4776
|
readonly isSetPayingKey: boolean;
|
|
4733
4777
|
readonly asSetPayingKey: {
|
|
@@ -4760,7 +4804,7 @@ declare module "./types-lookup.ts" {
|
|
|
4760
4804
|
} & Struct;
|
|
4761
4805
|
readonly type: 'SetPayingKey' | 'AcceptPayingKey' | 'RemovePayingKey' | 'UpdatePolyxLimit' | 'IncreasePolyxLimit' | 'DecreasePolyxLimit';
|
|
4762
4806
|
}
|
|
4763
|
-
/** @name PalletContractsCall (
|
|
4807
|
+
/** @name PalletContractsCall (541) */
|
|
4764
4808
|
interface PalletContractsCall extends Enum {
|
|
4765
4809
|
readonly isCallOldWeight: boolean;
|
|
4766
4810
|
readonly asCallOldWeight: {
|
|
@@ -4831,13 +4875,13 @@ declare module "./types-lookup.ts" {
|
|
|
4831
4875
|
} & Struct;
|
|
4832
4876
|
readonly type: 'CallOldWeight' | 'InstantiateWithCodeOldWeight' | 'InstantiateOldWeight' | 'UploadCode' | 'RemoveCode' | 'SetCode' | 'Call' | 'InstantiateWithCode' | 'Instantiate';
|
|
4833
4877
|
}
|
|
4834
|
-
/** @name PalletContractsWasmDeterminism (
|
|
4878
|
+
/** @name PalletContractsWasmDeterminism (545) */
|
|
4835
4879
|
interface PalletContractsWasmDeterminism extends Enum {
|
|
4836
4880
|
readonly isDeterministic: boolean;
|
|
4837
4881
|
readonly isAllowIndeterminism: boolean;
|
|
4838
4882
|
readonly type: 'Deterministic' | 'AllowIndeterminism';
|
|
4839
4883
|
}
|
|
4840
|
-
/** @name PolymeshContractsCall (
|
|
4884
|
+
/** @name PolymeshContractsCall (546) */
|
|
4841
4885
|
interface PolymeshContractsCall extends Enum {
|
|
4842
4886
|
readonly isInstantiateWithCodePerms: boolean;
|
|
4843
4887
|
readonly asInstantiateWithCodePerms: {
|
|
@@ -4888,16 +4932,16 @@ declare module "./types-lookup.ts" {
|
|
|
4888
4932
|
} & Struct;
|
|
4889
4933
|
readonly type: 'InstantiateWithCodePerms' | 'InstantiateWithHashPerms' | 'UpdateCallRuntimeWhitelist' | 'InstantiateWithCodeAsPrimaryKey' | 'InstantiateWithHashAsPrimaryKey' | 'UpgradeApi';
|
|
4890
4934
|
}
|
|
4891
|
-
/** @name PolymeshContractsNextUpgrade (
|
|
4935
|
+
/** @name PolymeshContractsNextUpgrade (549) */
|
|
4892
4936
|
interface PolymeshContractsNextUpgrade extends Struct {
|
|
4893
4937
|
readonly chainVersion: PolymeshContractsChainVersion;
|
|
4894
4938
|
readonly apiHash: PolymeshContractsApiCodeHash;
|
|
4895
4939
|
}
|
|
4896
|
-
/** @name PolymeshContractsApiCodeHash (
|
|
4940
|
+
/** @name PolymeshContractsApiCodeHash (550) */
|
|
4897
4941
|
interface PolymeshContractsApiCodeHash extends Struct {
|
|
4898
4942
|
readonly hash_: H256;
|
|
4899
4943
|
}
|
|
4900
|
-
/** @name PalletPreimageCall (
|
|
4944
|
+
/** @name PalletPreimageCall (551) */
|
|
4901
4945
|
interface PalletPreimageCall extends Enum {
|
|
4902
4946
|
readonly isNotePreimage: boolean;
|
|
4903
4947
|
readonly asNotePreimage: {
|
|
@@ -4917,7 +4961,7 @@ declare module "./types-lookup.ts" {
|
|
|
4917
4961
|
} & Struct;
|
|
4918
4962
|
readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage';
|
|
4919
4963
|
}
|
|
4920
|
-
/** @name PalletNftCall (
|
|
4964
|
+
/** @name PalletNftCall (552) */
|
|
4921
4965
|
interface PalletNftCall extends Enum {
|
|
4922
4966
|
readonly isCreateNftCollection: boolean;
|
|
4923
4967
|
readonly asCreateNftCollection: {
|
|
@@ -4946,15 +4990,15 @@ declare module "./types-lookup.ts" {
|
|
|
4946
4990
|
} & Struct;
|
|
4947
4991
|
readonly type: 'CreateNftCollection' | 'IssueNft' | 'RedeemNft' | 'ControllerTransfer';
|
|
4948
4992
|
}
|
|
4949
|
-
/** @name PolymeshPrimitivesNftNftCollectionKeys (
|
|
4993
|
+
/** @name PolymeshPrimitivesNftNftCollectionKeys (554) */
|
|
4950
4994
|
interface PolymeshPrimitivesNftNftCollectionKeys extends Vec<PolymeshPrimitivesAssetMetadataAssetMetadataKey> {
|
|
4951
4995
|
}
|
|
4952
|
-
/** @name PolymeshPrimitivesNftNftMetadataAttribute (
|
|
4996
|
+
/** @name PolymeshPrimitivesNftNftMetadataAttribute (557) */
|
|
4953
4997
|
interface PolymeshPrimitivesNftNftMetadataAttribute extends Struct {
|
|
4954
4998
|
readonly key: PolymeshPrimitivesAssetMetadataAssetMetadataKey;
|
|
4955
4999
|
readonly value: Bytes;
|
|
4956
5000
|
}
|
|
4957
|
-
/** @name PalletTestUtilsCall (
|
|
5001
|
+
/** @name PalletTestUtilsCall (558) */
|
|
4958
5002
|
interface PalletTestUtilsCall extends Enum {
|
|
4959
5003
|
readonly isRegisterDid: boolean;
|
|
4960
5004
|
readonly asRegisterDid: {
|
|
@@ -4971,14 +5015,69 @@ declare module "./types-lookup.ts" {
|
|
|
4971
5015
|
} & Struct;
|
|
4972
5016
|
readonly type: 'RegisterDid' | 'MockCddRegisterDid' | 'GetMyDid' | 'GetCddOf';
|
|
4973
5017
|
}
|
|
4974
|
-
/** @name
|
|
5018
|
+
/** @name PalletStateTrieMigrationCall (559) */
|
|
5019
|
+
interface PalletStateTrieMigrationCall extends Enum {
|
|
5020
|
+
readonly isControlAutoMigration: boolean;
|
|
5021
|
+
readonly asControlAutoMigration: {
|
|
5022
|
+
readonly maybeConfig: Option<PalletStateTrieMigrationMigrationLimits>;
|
|
5023
|
+
} & Struct;
|
|
5024
|
+
readonly isContinueMigrate: boolean;
|
|
5025
|
+
readonly asContinueMigrate: {
|
|
5026
|
+
readonly limits: PalletStateTrieMigrationMigrationLimits;
|
|
5027
|
+
readonly realSizeUpper: u32;
|
|
5028
|
+
readonly witnessTask: PalletStateTrieMigrationMigrationTask;
|
|
5029
|
+
} & Struct;
|
|
5030
|
+
readonly isMigrateCustomTop: boolean;
|
|
5031
|
+
readonly asMigrateCustomTop: {
|
|
5032
|
+
readonly keys_: Vec<Bytes>;
|
|
5033
|
+
readonly witnessSize: u32;
|
|
5034
|
+
} & Struct;
|
|
5035
|
+
readonly isMigrateCustomChild: boolean;
|
|
5036
|
+
readonly asMigrateCustomChild: {
|
|
5037
|
+
readonly root: Bytes;
|
|
5038
|
+
readonly childKeys: Vec<Bytes>;
|
|
5039
|
+
readonly totalSize: u32;
|
|
5040
|
+
} & Struct;
|
|
5041
|
+
readonly isSetSignedMaxLimits: boolean;
|
|
5042
|
+
readonly asSetSignedMaxLimits: {
|
|
5043
|
+
readonly limits: PalletStateTrieMigrationMigrationLimits;
|
|
5044
|
+
} & Struct;
|
|
5045
|
+
readonly isForceSetProgress: boolean;
|
|
5046
|
+
readonly asForceSetProgress: {
|
|
5047
|
+
readonly progressTop: PalletStateTrieMigrationProgress;
|
|
5048
|
+
readonly progressChild: PalletStateTrieMigrationProgress;
|
|
5049
|
+
} & Struct;
|
|
5050
|
+
readonly type: 'ControlAutoMigration' | 'ContinueMigrate' | 'MigrateCustomTop' | 'MigrateCustomChild' | 'SetSignedMaxLimits' | 'ForceSetProgress';
|
|
5051
|
+
}
|
|
5052
|
+
/** @name PalletStateTrieMigrationMigrationLimits (561) */
|
|
5053
|
+
interface PalletStateTrieMigrationMigrationLimits extends Struct {
|
|
5054
|
+
readonly size_: u32;
|
|
5055
|
+
readonly item: u32;
|
|
5056
|
+
}
|
|
5057
|
+
/** @name PalletStateTrieMigrationMigrationTask (562) */
|
|
5058
|
+
interface PalletStateTrieMigrationMigrationTask extends Struct {
|
|
5059
|
+
readonly progressTop: PalletStateTrieMigrationProgress;
|
|
5060
|
+
readonly progressChild: PalletStateTrieMigrationProgress;
|
|
5061
|
+
readonly size_: u32;
|
|
5062
|
+
readonly topItems: u32;
|
|
5063
|
+
readonly childItems: u32;
|
|
5064
|
+
}
|
|
5065
|
+
/** @name PalletStateTrieMigrationProgress (563) */
|
|
5066
|
+
interface PalletStateTrieMigrationProgress extends Enum {
|
|
5067
|
+
readonly isToStart: boolean;
|
|
5068
|
+
readonly isLastKey: boolean;
|
|
5069
|
+
readonly asLastKey: Bytes;
|
|
5070
|
+
readonly isComplete: boolean;
|
|
5071
|
+
readonly type: 'ToStart' | 'LastKey' | 'Complete';
|
|
5072
|
+
}
|
|
5073
|
+
/** @name PalletCommitteePolymeshVotes (565) */
|
|
4975
5074
|
interface PalletCommitteePolymeshVotes extends Struct {
|
|
4976
5075
|
readonly index: u32;
|
|
4977
5076
|
readonly ayes: Vec<PolymeshPrimitivesIdentityId>;
|
|
4978
5077
|
readonly nays: Vec<PolymeshPrimitivesIdentityId>;
|
|
4979
5078
|
readonly expiry: PolymeshCommonUtilitiesMaybeBlock;
|
|
4980
5079
|
}
|
|
4981
|
-
/** @name PalletCommitteeError (
|
|
5080
|
+
/** @name PalletCommitteeError (567) */
|
|
4982
5081
|
interface PalletCommitteeError extends Enum {
|
|
4983
5082
|
readonly isDuplicateVote: boolean;
|
|
4984
5083
|
readonly isNotAMember: boolean;
|
|
@@ -4991,7 +5090,7 @@ declare module "./types-lookup.ts" {
|
|
|
4991
5090
|
readonly isProposalsLimitReached: boolean;
|
|
4992
5091
|
readonly type: 'DuplicateVote' | 'NotAMember' | 'NoSuchProposal' | 'ProposalExpired' | 'DuplicateProposal' | 'MismatchedVotingIndex' | 'InvalidProportion' | 'FirstVoteReject' | 'ProposalsLimitReached';
|
|
4993
5092
|
}
|
|
4994
|
-
/** @name PolymeshPrimitivesMultisigProposalDetails (
|
|
5093
|
+
/** @name PolymeshPrimitivesMultisigProposalDetails (577) */
|
|
4995
5094
|
interface PolymeshPrimitivesMultisigProposalDetails extends Struct {
|
|
4996
5095
|
readonly approvals: u64;
|
|
4997
5096
|
readonly rejections: u64;
|
|
@@ -4999,7 +5098,7 @@ declare module "./types-lookup.ts" {
|
|
|
4999
5098
|
readonly expiry: Option<u64>;
|
|
5000
5099
|
readonly autoClose: bool;
|
|
5001
5100
|
}
|
|
5002
|
-
/** @name PolymeshPrimitivesMultisigProposalStatus (
|
|
5101
|
+
/** @name PolymeshPrimitivesMultisigProposalStatus (578) */
|
|
5003
5102
|
interface PolymeshPrimitivesMultisigProposalStatus extends Enum {
|
|
5004
5103
|
readonly isInvalid: boolean;
|
|
5005
5104
|
readonly isActiveOrExpired: boolean;
|
|
@@ -5008,7 +5107,7 @@ declare module "./types-lookup.ts" {
|
|
|
5008
5107
|
readonly isRejected: boolean;
|
|
5009
5108
|
readonly type: 'Invalid' | 'ActiveOrExpired' | 'ExecutionSuccessful' | 'ExecutionFailed' | 'Rejected';
|
|
5010
5109
|
}
|
|
5011
|
-
/** @name PalletMultisigError (
|
|
5110
|
+
/** @name PalletMultisigError (580) */
|
|
5012
5111
|
interface PalletMultisigError extends Enum {
|
|
5013
5112
|
readonly isCddMissing: boolean;
|
|
5014
5113
|
readonly isProposalMissing: boolean;
|
|
@@ -5038,14 +5137,14 @@ declare module "./types-lookup.ts" {
|
|
|
5038
5137
|
readonly isCreatorControlsHaveBeenRemoved: boolean;
|
|
5039
5138
|
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';
|
|
5040
5139
|
}
|
|
5041
|
-
/** @name PalletBridgeBridgeTxDetail (
|
|
5140
|
+
/** @name PalletBridgeBridgeTxDetail (582) */
|
|
5042
5141
|
interface PalletBridgeBridgeTxDetail extends Struct {
|
|
5043
5142
|
readonly amount: u128;
|
|
5044
5143
|
readonly status: PalletBridgeBridgeTxStatus;
|
|
5045
5144
|
readonly executionBlock: u32;
|
|
5046
5145
|
readonly txHash: H256;
|
|
5047
5146
|
}
|
|
5048
|
-
/** @name PalletBridgeBridgeTxStatus (
|
|
5147
|
+
/** @name PalletBridgeBridgeTxStatus (583) */
|
|
5049
5148
|
interface PalletBridgeBridgeTxStatus extends Enum {
|
|
5050
5149
|
readonly isAbsent: boolean;
|
|
5051
5150
|
readonly isPending: boolean;
|
|
@@ -5055,7 +5154,7 @@ declare module "./types-lookup.ts" {
|
|
|
5055
5154
|
readonly isHandled: boolean;
|
|
5056
5155
|
readonly type: 'Absent' | 'Pending' | 'Frozen' | 'Timelocked' | 'Handled';
|
|
5057
5156
|
}
|
|
5058
|
-
/** @name PalletBridgeError (
|
|
5157
|
+
/** @name PalletBridgeError (586) */
|
|
5059
5158
|
interface PalletBridgeError extends Enum {
|
|
5060
5159
|
readonly isControllerNotSet: boolean;
|
|
5061
5160
|
readonly isBadCaller: boolean;
|
|
@@ -5072,7 +5171,7 @@ declare module "./types-lookup.ts" {
|
|
|
5072
5171
|
readonly isTimelockedTx: boolean;
|
|
5073
5172
|
readonly type: 'ControllerNotSet' | 'BadCaller' | 'BadAdmin' | 'NoValidCdd' | 'ProposalAlreadyHandled' | 'Unauthorized' | 'Frozen' | 'NotFrozen' | 'FrozenTx' | 'BridgeLimitReached' | 'Overflow' | 'DivisionByZero' | 'TimelockedTx';
|
|
5074
5173
|
}
|
|
5075
|
-
/** @name PalletStakingStakingLedger (
|
|
5174
|
+
/** @name PalletStakingStakingLedger (587) */
|
|
5076
5175
|
interface PalletStakingStakingLedger extends Struct {
|
|
5077
5176
|
readonly stash: AccountId32;
|
|
5078
5177
|
readonly total: Compact<u128>;
|
|
@@ -5080,28 +5179,28 @@ declare module "./types-lookup.ts" {
|
|
|
5080
5179
|
readonly unlocking: Vec<PalletStakingUnlockChunk>;
|
|
5081
5180
|
readonly claimedRewards: Vec<u32>;
|
|
5082
5181
|
}
|
|
5083
|
-
/** @name PalletStakingUnlockChunk (
|
|
5182
|
+
/** @name PalletStakingUnlockChunk (589) */
|
|
5084
5183
|
interface PalletStakingUnlockChunk extends Struct {
|
|
5085
5184
|
readonly value: Compact<u128>;
|
|
5086
5185
|
readonly era: Compact<u32>;
|
|
5087
5186
|
}
|
|
5088
|
-
/** @name PalletStakingNominations (
|
|
5187
|
+
/** @name PalletStakingNominations (590) */
|
|
5089
5188
|
interface PalletStakingNominations extends Struct {
|
|
5090
5189
|
readonly targets: Vec<AccountId32>;
|
|
5091
5190
|
readonly submittedIn: u32;
|
|
5092
5191
|
readonly suppressed: bool;
|
|
5093
5192
|
}
|
|
5094
|
-
/** @name PalletStakingActiveEraInfo (
|
|
5193
|
+
/** @name PalletStakingActiveEraInfo (592) */
|
|
5095
5194
|
interface PalletStakingActiveEraInfo extends Struct {
|
|
5096
5195
|
readonly index: u32;
|
|
5097
5196
|
readonly start: Option<u64>;
|
|
5098
5197
|
}
|
|
5099
|
-
/** @name PalletStakingEraRewardPoints (
|
|
5198
|
+
/** @name PalletStakingEraRewardPoints (594) */
|
|
5100
5199
|
interface PalletStakingEraRewardPoints extends Struct {
|
|
5101
5200
|
readonly total: u32;
|
|
5102
5201
|
readonly individual: BTreeMap<AccountId32, u32>;
|
|
5103
5202
|
}
|
|
5104
|
-
/** @name PalletStakingForcing (
|
|
5203
|
+
/** @name PalletStakingForcing (597) */
|
|
5105
5204
|
interface PalletStakingForcing extends Enum {
|
|
5106
5205
|
readonly isNotForcing: boolean;
|
|
5107
5206
|
readonly isForceNew: boolean;
|
|
@@ -5109,7 +5208,7 @@ declare module "./types-lookup.ts" {
|
|
|
5109
5208
|
readonly isForceAlways: boolean;
|
|
5110
5209
|
readonly type: 'NotForcing' | 'ForceNew' | 'ForceNone' | 'ForceAlways';
|
|
5111
5210
|
}
|
|
5112
|
-
/** @name PalletStakingUnappliedSlash (
|
|
5211
|
+
/** @name PalletStakingUnappliedSlash (599) */
|
|
5113
5212
|
interface PalletStakingUnappliedSlash extends Struct {
|
|
5114
5213
|
readonly validator: AccountId32;
|
|
5115
5214
|
readonly own: u128;
|
|
@@ -5117,50 +5216,38 @@ declare module "./types-lookup.ts" {
|
|
|
5117
5216
|
readonly reporters: Vec<AccountId32>;
|
|
5118
5217
|
readonly payout: u128;
|
|
5119
5218
|
}
|
|
5120
|
-
/** @name PalletStakingSlashingSlashingSpans (
|
|
5219
|
+
/** @name PalletStakingSlashingSlashingSpans (603) */
|
|
5121
5220
|
interface PalletStakingSlashingSlashingSpans extends Struct {
|
|
5122
5221
|
readonly spanIndex: u32;
|
|
5123
5222
|
readonly lastStart: u32;
|
|
5124
5223
|
readonly lastNonzeroSlash: u32;
|
|
5125
5224
|
readonly prior: Vec<u32>;
|
|
5126
5225
|
}
|
|
5127
|
-
/** @name PalletStakingSlashingSpanRecord (
|
|
5226
|
+
/** @name PalletStakingSlashingSpanRecord (604) */
|
|
5128
5227
|
interface PalletStakingSlashingSpanRecord extends Struct {
|
|
5129
5228
|
readonly slashed: u128;
|
|
5130
5229
|
readonly paidOut: u128;
|
|
5131
5230
|
}
|
|
5132
|
-
/** @name PalletStakingElectionResult (
|
|
5231
|
+
/** @name PalletStakingElectionResult (607) */
|
|
5133
5232
|
interface PalletStakingElectionResult extends Struct {
|
|
5134
5233
|
readonly electedStashes: Vec<AccountId32>;
|
|
5135
5234
|
readonly exposures: Vec<ITuple<[AccountId32, PalletStakingExposure]>>;
|
|
5136
5235
|
readonly compute: PalletStakingElectionCompute;
|
|
5137
5236
|
}
|
|
5138
|
-
/** @name PalletStakingElectionStatus (
|
|
5237
|
+
/** @name PalletStakingElectionStatus (608) */
|
|
5139
5238
|
interface PalletStakingElectionStatus extends Enum {
|
|
5140
5239
|
readonly isClosed: boolean;
|
|
5141
5240
|
readonly isOpen: boolean;
|
|
5142
5241
|
readonly asOpen: u32;
|
|
5143
5242
|
readonly type: 'Closed' | 'Open';
|
|
5144
5243
|
}
|
|
5145
|
-
/** @name PalletStakingPermissionedIdentityPrefs (
|
|
5244
|
+
/** @name PalletStakingPermissionedIdentityPrefs (609) */
|
|
5146
5245
|
interface PalletStakingPermissionedIdentityPrefs extends Struct {
|
|
5147
5246
|
readonly intendedCount: u32;
|
|
5148
5247
|
readonly runningCount: u32;
|
|
5149
5248
|
}
|
|
5150
|
-
/** @name
|
|
5151
|
-
interface
|
|
5152
|
-
readonly isV100Ancient: boolean;
|
|
5153
|
-
readonly isV200: boolean;
|
|
5154
|
-
readonly isV300: boolean;
|
|
5155
|
-
readonly isV400: boolean;
|
|
5156
|
-
readonly isV500: boolean;
|
|
5157
|
-
readonly isV600: boolean;
|
|
5158
|
-
readonly isV601: boolean;
|
|
5159
|
-
readonly isV700: boolean;
|
|
5160
|
-
readonly type: 'V100Ancient' | 'V200' | 'V300' | 'V400' | 'V500' | 'V600' | 'V601' | 'V700';
|
|
5161
|
-
}
|
|
5162
|
-
/** @name PalletStakingError (602) */
|
|
5163
|
-
interface PalletStakingError extends Enum {
|
|
5249
|
+
/** @name PalletStakingPalletError (611) */
|
|
5250
|
+
interface PalletStakingPalletError extends Enum {
|
|
5164
5251
|
readonly isNotController: boolean;
|
|
5165
5252
|
readonly isNotStash: boolean;
|
|
5166
5253
|
readonly isAlreadyBonded: boolean;
|
|
@@ -5204,17 +5291,19 @@ declare module "./types-lookup.ts" {
|
|
|
5204
5291
|
readonly isTooManyTargets: boolean;
|
|
5205
5292
|
readonly isBadTarget: boolean;
|
|
5206
5293
|
readonly isInvalidValidatorUnbondAmount: boolean;
|
|
5207
|
-
readonly
|
|
5294
|
+
readonly isBoundNotMet: boolean;
|
|
5295
|
+
readonly isTooManyNominators: boolean;
|
|
5296
|
+
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' | 'BoundNotMet' | 'TooManyNominators';
|
|
5208
5297
|
}
|
|
5209
|
-
/** @name SpStakingOffenceOffenceDetails (
|
|
5298
|
+
/** @name SpStakingOffenceOffenceDetails (612) */
|
|
5210
5299
|
interface SpStakingOffenceOffenceDetails extends Struct {
|
|
5211
5300
|
readonly offender: ITuple<[AccountId32, PalletStakingExposure]>;
|
|
5212
5301
|
readonly reporters: Vec<AccountId32>;
|
|
5213
5302
|
}
|
|
5214
|
-
/** @name SpCoreCryptoKeyTypeId (
|
|
5303
|
+
/** @name SpCoreCryptoKeyTypeId (617) */
|
|
5215
5304
|
interface SpCoreCryptoKeyTypeId extends U8aFixed {
|
|
5216
5305
|
}
|
|
5217
|
-
/** @name PalletSessionError (
|
|
5306
|
+
/** @name PalletSessionError (618) */
|
|
5218
5307
|
interface PalletSessionError extends Enum {
|
|
5219
5308
|
readonly isInvalidProof: boolean;
|
|
5220
5309
|
readonly isNoAssociatedValidatorId: boolean;
|
|
@@ -5223,7 +5312,7 @@ declare module "./types-lookup.ts" {
|
|
|
5223
5312
|
readonly isNoAccount: boolean;
|
|
5224
5313
|
readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
|
|
5225
5314
|
}
|
|
5226
|
-
/** @name PalletGrandpaStoredState (
|
|
5315
|
+
/** @name PalletGrandpaStoredState (619) */
|
|
5227
5316
|
interface PalletGrandpaStoredState extends Enum {
|
|
5228
5317
|
readonly isLive: boolean;
|
|
5229
5318
|
readonly isPendingPause: boolean;
|
|
@@ -5239,14 +5328,14 @@ declare module "./types-lookup.ts" {
|
|
|
5239
5328
|
} & Struct;
|
|
5240
5329
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
5241
5330
|
}
|
|
5242
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
5331
|
+
/** @name PalletGrandpaStoredPendingChange (620) */
|
|
5243
5332
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
5244
5333
|
readonly scheduledAt: u32;
|
|
5245
5334
|
readonly delay: u32;
|
|
5246
5335
|
readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
|
|
5247
5336
|
readonly forced: Option<u32>;
|
|
5248
5337
|
}
|
|
5249
|
-
/** @name PalletGrandpaError (
|
|
5338
|
+
/** @name PalletGrandpaError (622) */
|
|
5250
5339
|
interface PalletGrandpaError extends Enum {
|
|
5251
5340
|
readonly isPauseFailed: boolean;
|
|
5252
5341
|
readonly isResumeFailed: boolean;
|
|
@@ -5257,47 +5346,47 @@ declare module "./types-lookup.ts" {
|
|
|
5257
5346
|
readonly isDuplicateOffenceReport: boolean;
|
|
5258
5347
|
readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
|
|
5259
5348
|
}
|
|
5260
|
-
/** @name PalletImOnlineBoundedOpaqueNetworkState (
|
|
5349
|
+
/** @name PalletImOnlineBoundedOpaqueNetworkState (626) */
|
|
5261
5350
|
interface PalletImOnlineBoundedOpaqueNetworkState extends Struct {
|
|
5262
5351
|
readonly peerId: Bytes;
|
|
5263
5352
|
readonly externalAddresses: Vec<Bytes>;
|
|
5264
5353
|
}
|
|
5265
|
-
/** @name PalletImOnlineError (
|
|
5354
|
+
/** @name PalletImOnlineError (630) */
|
|
5266
5355
|
interface PalletImOnlineError extends Enum {
|
|
5267
5356
|
readonly isInvalidKey: boolean;
|
|
5268
5357
|
readonly isDuplicatedHeartbeat: boolean;
|
|
5269
5358
|
readonly type: 'InvalidKey' | 'DuplicatedHeartbeat';
|
|
5270
5359
|
}
|
|
5271
|
-
/** @name PalletSudoError (
|
|
5360
|
+
/** @name PalletSudoError (632) */
|
|
5272
5361
|
interface PalletSudoError extends Enum {
|
|
5273
5362
|
readonly isRequireSudo: boolean;
|
|
5274
5363
|
readonly type: 'RequireSudo';
|
|
5275
5364
|
}
|
|
5276
|
-
/** @name PalletAssetTickerRegistration (
|
|
5365
|
+
/** @name PalletAssetTickerRegistration (633) */
|
|
5277
5366
|
interface PalletAssetTickerRegistration extends Struct {
|
|
5278
5367
|
readonly owner: PolymeshPrimitivesIdentityId;
|
|
5279
5368
|
readonly expiry: Option<u64>;
|
|
5280
5369
|
}
|
|
5281
|
-
/** @name PalletAssetTickerRegistrationConfig (
|
|
5370
|
+
/** @name PalletAssetTickerRegistrationConfig (634) */
|
|
5282
5371
|
interface PalletAssetTickerRegistrationConfig extends Struct {
|
|
5283
5372
|
readonly maxTickerLength: u8;
|
|
5284
5373
|
readonly registrationLength: Option<u64>;
|
|
5285
5374
|
}
|
|
5286
|
-
/** @name PalletAssetSecurityToken (
|
|
5375
|
+
/** @name PalletAssetSecurityToken (635) */
|
|
5287
5376
|
interface PalletAssetSecurityToken extends Struct {
|
|
5288
5377
|
readonly totalSupply: u128;
|
|
5289
5378
|
readonly ownerDid: PolymeshPrimitivesIdentityId;
|
|
5290
5379
|
readonly divisible: bool;
|
|
5291
5380
|
readonly assetType: PolymeshPrimitivesAssetAssetType;
|
|
5292
5381
|
}
|
|
5293
|
-
/** @name PalletAssetAssetOwnershipRelation (
|
|
5382
|
+
/** @name PalletAssetAssetOwnershipRelation (639) */
|
|
5294
5383
|
interface PalletAssetAssetOwnershipRelation extends Enum {
|
|
5295
5384
|
readonly isNotOwned: boolean;
|
|
5296
5385
|
readonly isTickerOwned: boolean;
|
|
5297
5386
|
readonly isAssetOwned: boolean;
|
|
5298
5387
|
readonly type: 'NotOwned' | 'TickerOwned' | 'AssetOwned';
|
|
5299
5388
|
}
|
|
5300
|
-
/** @name PalletAssetError (
|
|
5389
|
+
/** @name PalletAssetError (645) */
|
|
5301
5390
|
interface PalletAssetError extends Enum {
|
|
5302
5391
|
readonly isUnauthorized: boolean;
|
|
5303
5392
|
readonly isAssetAlreadyCreated: boolean;
|
|
@@ -5338,9 +5427,13 @@ declare module "./types-lookup.ts" {
|
|
|
5338
5427
|
readonly isAssetMetadataValueIsEmpty: boolean;
|
|
5339
5428
|
readonly isNumberOfAssetMediatorsExceeded: boolean;
|
|
5340
5429
|
readonly isInvalidTickerCharacter: boolean;
|
|
5341
|
-
readonly
|
|
5430
|
+
readonly isInvalidTransferFrozenAsset: boolean;
|
|
5431
|
+
readonly isInvalidTransferComplianceFailure: boolean;
|
|
5432
|
+
readonly isInvalidTransferInvalidReceiverCDD: boolean;
|
|
5433
|
+
readonly isInvalidTransferInvalidSenderCDD: boolean;
|
|
5434
|
+
readonly type: 'Unauthorized' | 'AssetAlreadyCreated' | 'TickerTooLong' | 'TickerNotAlphanumeric' | 'TickerAlreadyRegistered' | 'TotalSupplyAboveLimit' | 'NoSuchAsset' | 'AlreadyFrozen' | 'NotAnOwner' | 'BalanceOverflow' | 'TotalSupplyOverflow' | 'InvalidGranularity' | 'NotFrozen' | 'InvalidTransfer' | 'InsufficientBalance' | 'AssetAlreadyDivisible' | 'InvalidEthereumSignature' | 'TickerRegistrationExpired' | 'SenderSameAsReceiver' | 'NoSuchDoc' | 'MaxLengthOfAssetNameExceeded' | 'FundingRoundNameMaxLengthExceeded' | 'InvalidAssetIdentifier' | 'InvestorUniquenessClaimNotAllowed' | 'InvalidCustomAssetTypeId' | 'AssetMetadataNameMaxLengthExceeded' | 'AssetMetadataValueMaxLengthExceeded' | 'AssetMetadataTypeDefMaxLengthExceeded' | 'AssetMetadataKeyIsMissing' | 'AssetMetadataValueIsLocked' | 'AssetMetadataLocalKeyAlreadyExists' | 'AssetMetadataGlobalKeyAlreadyExists' | 'TickerFirstByteNotValid' | 'UnexpectedNonFungibleToken' | 'IncompatibleAssetTypeUpdate' | 'AssetMetadataKeyBelongsToNFTCollection' | 'AssetMetadataValueIsEmpty' | 'NumberOfAssetMediatorsExceeded' | 'InvalidTickerCharacter' | 'InvalidTransferFrozenAsset' | 'InvalidTransferComplianceFailure' | 'InvalidTransferInvalidReceiverCDD' | 'InvalidTransferInvalidSenderCDD';
|
|
5342
5435
|
}
|
|
5343
|
-
/** @name PalletCorporateActionsDistributionError (
|
|
5436
|
+
/** @name PalletCorporateActionsDistributionError (648) */
|
|
5344
5437
|
interface PalletCorporateActionsDistributionError extends Enum {
|
|
5345
5438
|
readonly isCaNotBenefit: boolean;
|
|
5346
5439
|
readonly isAlreadyExists: boolean;
|
|
@@ -5359,13 +5452,13 @@ declare module "./types-lookup.ts" {
|
|
|
5359
5452
|
readonly isDistributionPerShareIsZero: boolean;
|
|
5360
5453
|
readonly type: 'CaNotBenefit' | 'AlreadyExists' | 'ExpiryBeforePayment' | 'HolderAlreadyPaid' | 'NoSuchDistribution' | 'CannotClaimBeforeStart' | 'CannotClaimAfterExpiry' | 'BalancePerShareProductOverflowed' | 'NotDistributionCreator' | 'AlreadyReclaimed' | 'NotExpired' | 'DistributionStarted' | 'InsufficientRemainingAmount' | 'DistributionAmountIsZero' | 'DistributionPerShareIsZero';
|
|
5361
5454
|
}
|
|
5362
|
-
/** @name PolymeshCommonUtilitiesCheckpointNextCheckpoints (
|
|
5455
|
+
/** @name PolymeshCommonUtilitiesCheckpointNextCheckpoints (652) */
|
|
5363
5456
|
interface PolymeshCommonUtilitiesCheckpointNextCheckpoints extends Struct {
|
|
5364
5457
|
readonly nextAt: u64;
|
|
5365
5458
|
readonly totalPending: u64;
|
|
5366
5459
|
readonly schedules: BTreeMap<u64, u64>;
|
|
5367
5460
|
}
|
|
5368
|
-
/** @name PalletAssetCheckpointError (
|
|
5461
|
+
/** @name PalletAssetCheckpointError (658) */
|
|
5369
5462
|
interface PalletAssetCheckpointError extends Enum {
|
|
5370
5463
|
readonly isNoSuchSchedule: boolean;
|
|
5371
5464
|
readonly isScheduleNotRemovable: boolean;
|
|
@@ -5375,12 +5468,12 @@ declare module "./types-lookup.ts" {
|
|
|
5375
5468
|
readonly isScheduleHasExpiredCheckpoints: boolean;
|
|
5376
5469
|
readonly type: 'NoSuchSchedule' | 'ScheduleNotRemovable' | 'SchedulesOverMaxComplexity' | 'ScheduleIsEmpty' | 'ScheduleFinished' | 'ScheduleHasExpiredCheckpoints';
|
|
5377
5470
|
}
|
|
5378
|
-
/** @name PolymeshPrimitivesComplianceManagerAssetCompliance (
|
|
5471
|
+
/** @name PolymeshPrimitivesComplianceManagerAssetCompliance (659) */
|
|
5379
5472
|
interface PolymeshPrimitivesComplianceManagerAssetCompliance extends Struct {
|
|
5380
5473
|
readonly paused: bool;
|
|
5381
5474
|
readonly requirements: Vec<PolymeshPrimitivesComplianceManagerComplianceRequirement>;
|
|
5382
5475
|
}
|
|
5383
|
-
/** @name PalletComplianceManagerError (
|
|
5476
|
+
/** @name PalletComplianceManagerError (661) */
|
|
5384
5477
|
interface PalletComplianceManagerError extends Enum {
|
|
5385
5478
|
readonly isUnauthorized: boolean;
|
|
5386
5479
|
readonly isDidNotExist: boolean;
|
|
@@ -5391,7 +5484,7 @@ declare module "./types-lookup.ts" {
|
|
|
5391
5484
|
readonly isWeightLimitExceeded: boolean;
|
|
5392
5485
|
readonly type: 'Unauthorized' | 'DidNotExist' | 'InvalidComplianceRequirementId' | 'IncorrectOperationOnTrustedIssuer' | 'DuplicateComplianceRequirements' | 'ComplianceRequirementTooComplex' | 'WeightLimitExceeded';
|
|
5393
5486
|
}
|
|
5394
|
-
/** @name PalletCorporateActionsError (
|
|
5487
|
+
/** @name PalletCorporateActionsError (664) */
|
|
5395
5488
|
interface PalletCorporateActionsError extends Enum {
|
|
5396
5489
|
readonly isDetailsTooLong: boolean;
|
|
5397
5490
|
readonly isDuplicateDidTax: boolean;
|
|
@@ -5406,7 +5499,7 @@ declare module "./types-lookup.ts" {
|
|
|
5406
5499
|
readonly isNotTargetedByCA: boolean;
|
|
5407
5500
|
readonly type: 'DetailsTooLong' | 'DuplicateDidTax' | 'TooManyDidTaxes' | 'TooManyTargetIds' | 'NoSuchCheckpointId' | 'NoSuchCA' | 'NoRecordDate' | 'RecordDateAfterStart' | 'DeclDateAfterRecordDate' | 'DeclDateInFuture' | 'NotTargetedByCA';
|
|
5408
5501
|
}
|
|
5409
|
-
/** @name PalletCorporateActionsBallotError (
|
|
5502
|
+
/** @name PalletCorporateActionsBallotError (666) */
|
|
5410
5503
|
interface PalletCorporateActionsBallotError extends Enum {
|
|
5411
5504
|
readonly isCaNotNotice: boolean;
|
|
5412
5505
|
readonly isAlreadyExists: boolean;
|
|
@@ -5424,12 +5517,12 @@ declare module "./types-lookup.ts" {
|
|
|
5424
5517
|
readonly isRcvNotAllowed: boolean;
|
|
5425
5518
|
readonly type: 'CaNotNotice' | 'AlreadyExists' | 'NoSuchBallot' | 'StartAfterEnd' | 'NowAfterEnd' | 'NumberOfChoicesOverflow' | 'VotingAlreadyStarted' | 'VotingNotStarted' | 'VotingAlreadyEnded' | 'WrongVoteCount' | 'InsufficientVotes' | 'NoSuchRCVFallback' | 'RcvSelfCycle' | 'RcvNotAllowed';
|
|
5426
5519
|
}
|
|
5427
|
-
/** @name PalletPermissionsError (
|
|
5520
|
+
/** @name PalletPermissionsError (667) */
|
|
5428
5521
|
interface PalletPermissionsError extends Enum {
|
|
5429
5522
|
readonly isUnauthorizedCaller: boolean;
|
|
5430
5523
|
readonly type: 'UnauthorizedCaller';
|
|
5431
5524
|
}
|
|
5432
|
-
/** @name PalletPipsPipsMetadata (
|
|
5525
|
+
/** @name PalletPipsPipsMetadata (668) */
|
|
5433
5526
|
interface PalletPipsPipsMetadata extends Struct {
|
|
5434
5527
|
readonly id: u32;
|
|
5435
5528
|
readonly url: Option<Bytes>;
|
|
@@ -5438,34 +5531,34 @@ declare module "./types-lookup.ts" {
|
|
|
5438
5531
|
readonly transactionVersion: u32;
|
|
5439
5532
|
readonly expiry: PolymeshCommonUtilitiesMaybeBlock;
|
|
5440
5533
|
}
|
|
5441
|
-
/** @name PalletPipsDepositInfo (
|
|
5534
|
+
/** @name PalletPipsDepositInfo (670) */
|
|
5442
5535
|
interface PalletPipsDepositInfo extends Struct {
|
|
5443
5536
|
readonly owner: AccountId32;
|
|
5444
5537
|
readonly amount: u128;
|
|
5445
5538
|
}
|
|
5446
|
-
/** @name PalletPipsPip (
|
|
5539
|
+
/** @name PalletPipsPip (671) */
|
|
5447
5540
|
interface PalletPipsPip extends Struct {
|
|
5448
5541
|
readonly id: u32;
|
|
5449
5542
|
readonly proposal: Call;
|
|
5450
5543
|
readonly proposer: PalletPipsProposer;
|
|
5451
5544
|
}
|
|
5452
|
-
/** @name PalletPipsVotingResult (
|
|
5545
|
+
/** @name PalletPipsVotingResult (672) */
|
|
5453
5546
|
interface PalletPipsVotingResult extends Struct {
|
|
5454
5547
|
readonly ayesCount: u32;
|
|
5455
5548
|
readonly ayesStake: u128;
|
|
5456
5549
|
readonly naysCount: u32;
|
|
5457
5550
|
readonly naysStake: u128;
|
|
5458
5551
|
}
|
|
5459
|
-
/** @name PalletPipsVote (
|
|
5552
|
+
/** @name PalletPipsVote (673) */
|
|
5460
5553
|
interface PalletPipsVote extends ITuple<[bool, u128]> {
|
|
5461
5554
|
}
|
|
5462
|
-
/** @name PalletPipsSnapshotMetadata (
|
|
5555
|
+
/** @name PalletPipsSnapshotMetadata (674) */
|
|
5463
5556
|
interface PalletPipsSnapshotMetadata extends Struct {
|
|
5464
5557
|
readonly createdAt: u32;
|
|
5465
5558
|
readonly madeBy: AccountId32;
|
|
5466
5559
|
readonly id: u32;
|
|
5467
5560
|
}
|
|
5468
|
-
/** @name PalletPipsError (
|
|
5561
|
+
/** @name PalletPipsError (676) */
|
|
5469
5562
|
interface PalletPipsError extends Enum {
|
|
5470
5563
|
readonly isRescheduleNotByReleaseCoordinator: boolean;
|
|
5471
5564
|
readonly isNotFromCommunity: boolean;
|
|
@@ -5487,7 +5580,7 @@ declare module "./types-lookup.ts" {
|
|
|
5487
5580
|
readonly isProposalNotInScheduledState: boolean;
|
|
5488
5581
|
readonly type: 'RescheduleNotByReleaseCoordinator' | 'NotFromCommunity' | 'NotByCommittee' | 'TooManyActivePips' | 'IncorrectDeposit' | 'InsufficientDeposit' | 'NoSuchProposal' | 'NotACommitteeMember' | 'InvalidFutureBlockNumber' | 'NumberOfVotesExceeded' | 'StakeAmountOfVotesExceeded' | 'MissingCurrentIdentity' | 'IncorrectProposalState' | 'CannotSkipPip' | 'SnapshotResultTooLarge' | 'SnapshotIdMismatch' | 'ScheduledProposalDoesntExist' | 'ProposalNotInScheduledState';
|
|
5489
5582
|
}
|
|
5490
|
-
/** @name PalletPortfolioError (
|
|
5583
|
+
/** @name PalletPortfolioError (684) */
|
|
5491
5584
|
interface PalletPortfolioError extends Enum {
|
|
5492
5585
|
readonly isPortfolioDoesNotExist: boolean;
|
|
5493
5586
|
readonly isInsufficientPortfolioBalance: boolean;
|
|
@@ -5506,16 +5599,17 @@ declare module "./types-lookup.ts" {
|
|
|
5506
5599
|
readonly isInvalidTransferNFTIsLocked: boolean;
|
|
5507
5600
|
readonly isEmptyTransfer: boolean;
|
|
5508
5601
|
readonly isMissingOwnersPermission: boolean;
|
|
5509
|
-
readonly
|
|
5602
|
+
readonly isInvalidTransferSenderIdMatchesReceiverId: boolean;
|
|
5603
|
+
readonly type: 'PortfolioDoesNotExist' | 'InsufficientPortfolioBalance' | 'DestinationIsSamePortfolio' | 'PortfolioNameAlreadyInUse' | 'SecondaryKeyNotAuthorizedForPortfolio' | 'UnauthorizedCustodian' | 'InsufficientTokensLocked' | 'PortfolioNotEmpty' | 'DifferentIdentityPortfolios' | 'NoDuplicateAssetsAllowed' | 'NftNotFoundInPortfolio' | 'NftAlreadyLocked' | 'NftNotLocked' | 'InvalidTransferNFTNotOwned' | 'InvalidTransferNFTIsLocked' | 'EmptyTransfer' | 'MissingOwnersPermission' | 'InvalidTransferSenderIdMatchesReceiverId';
|
|
5510
5604
|
}
|
|
5511
|
-
/** @name PalletProtocolFeeError (
|
|
5605
|
+
/** @name PalletProtocolFeeError (685) */
|
|
5512
5606
|
interface PalletProtocolFeeError extends Enum {
|
|
5513
5607
|
readonly isInsufficientAccountBalance: boolean;
|
|
5514
5608
|
readonly isUnHandledImbalances: boolean;
|
|
5515
5609
|
readonly isInsufficientSubsidyBalance: boolean;
|
|
5516
5610
|
readonly type: 'InsufficientAccountBalance' | 'UnHandledImbalances' | 'InsufficientSubsidyBalance';
|
|
5517
5611
|
}
|
|
5518
|
-
/** @name PalletSchedulerScheduled (
|
|
5612
|
+
/** @name PalletSchedulerScheduled (688) */
|
|
5519
5613
|
interface PalletSchedulerScheduled extends Struct {
|
|
5520
5614
|
readonly maybeId: Option<U8aFixed>;
|
|
5521
5615
|
readonly priority: u8;
|
|
@@ -5523,7 +5617,7 @@ declare module "./types-lookup.ts" {
|
|
|
5523
5617
|
readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
|
|
5524
5618
|
readonly origin: PolymeshRuntimeDevelopRuntimeOriginCaller;
|
|
5525
5619
|
}
|
|
5526
|
-
/** @name FrameSupportPreimagesBounded (
|
|
5620
|
+
/** @name FrameSupportPreimagesBounded (689) */
|
|
5527
5621
|
interface FrameSupportPreimagesBounded extends Enum {
|
|
5528
5622
|
readonly isLegacy: boolean;
|
|
5529
5623
|
readonly asLegacy: {
|
|
@@ -5538,7 +5632,7 @@ declare module "./types-lookup.ts" {
|
|
|
5538
5632
|
} & Struct;
|
|
5539
5633
|
readonly type: 'Legacy' | 'Inline' | 'Lookup';
|
|
5540
5634
|
}
|
|
5541
|
-
/** @name PalletSchedulerError (
|
|
5635
|
+
/** @name PalletSchedulerError (692) */
|
|
5542
5636
|
interface PalletSchedulerError extends Enum {
|
|
5543
5637
|
readonly isFailedToSchedule: boolean;
|
|
5544
5638
|
readonly isNotFound: boolean;
|
|
@@ -5547,12 +5641,12 @@ declare module "./types-lookup.ts" {
|
|
|
5547
5641
|
readonly isNamed: boolean;
|
|
5548
5642
|
readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange' | 'Named';
|
|
5549
5643
|
}
|
|
5550
|
-
/** @name PolymeshPrimitivesSettlementVenue (
|
|
5644
|
+
/** @name PolymeshPrimitivesSettlementVenue (693) */
|
|
5551
5645
|
interface PolymeshPrimitivesSettlementVenue extends Struct {
|
|
5552
5646
|
readonly creator: PolymeshPrimitivesIdentityId;
|
|
5553
5647
|
readonly venueType: PolymeshPrimitivesSettlementVenueType;
|
|
5554
5648
|
}
|
|
5555
|
-
/** @name PolymeshPrimitivesSettlementInstruction (
|
|
5649
|
+
/** @name PolymeshPrimitivesSettlementInstruction (697) */
|
|
5556
5650
|
interface PolymeshPrimitivesSettlementInstruction extends Struct {
|
|
5557
5651
|
readonly instructionId: u64;
|
|
5558
5652
|
readonly venueId: u64;
|
|
@@ -5561,7 +5655,7 @@ declare module "./types-lookup.ts" {
|
|
|
5561
5655
|
readonly tradeDate: Option<u64>;
|
|
5562
5656
|
readonly valueDate: Option<u64>;
|
|
5563
5657
|
}
|
|
5564
|
-
/** @name PolymeshPrimitivesSettlementLegStatus (
|
|
5658
|
+
/** @name PolymeshPrimitivesSettlementLegStatus (699) */
|
|
5565
5659
|
interface PolymeshPrimitivesSettlementLegStatus extends Enum {
|
|
5566
5660
|
readonly isPendingTokenLock: boolean;
|
|
5567
5661
|
readonly isExecutionPending: boolean;
|
|
@@ -5569,14 +5663,14 @@ declare module "./types-lookup.ts" {
|
|
|
5569
5663
|
readonly asExecutionToBeSkipped: ITuple<[AccountId32, u64]>;
|
|
5570
5664
|
readonly type: 'PendingTokenLock' | 'ExecutionPending' | 'ExecutionToBeSkipped';
|
|
5571
5665
|
}
|
|
5572
|
-
/** @name PolymeshPrimitivesSettlementAffirmationStatus (
|
|
5666
|
+
/** @name PolymeshPrimitivesSettlementAffirmationStatus (701) */
|
|
5573
5667
|
interface PolymeshPrimitivesSettlementAffirmationStatus extends Enum {
|
|
5574
5668
|
readonly isUnknown: boolean;
|
|
5575
5669
|
readonly isPending: boolean;
|
|
5576
5670
|
readonly isAffirmed: boolean;
|
|
5577
5671
|
readonly type: 'Unknown' | 'Pending' | 'Affirmed';
|
|
5578
5672
|
}
|
|
5579
|
-
/** @name PolymeshPrimitivesSettlementInstructionStatus (
|
|
5673
|
+
/** @name PolymeshPrimitivesSettlementInstructionStatus (705) */
|
|
5580
5674
|
interface PolymeshPrimitivesSettlementInstructionStatus extends Enum {
|
|
5581
5675
|
readonly isUnknown: boolean;
|
|
5582
5676
|
readonly isPending: boolean;
|
|
@@ -5587,7 +5681,7 @@ declare module "./types-lookup.ts" {
|
|
|
5587
5681
|
readonly asRejected: u32;
|
|
5588
5682
|
readonly type: 'Unknown' | 'Pending' | 'Failed' | 'Success' | 'Rejected';
|
|
5589
5683
|
}
|
|
5590
|
-
/** @name PolymeshPrimitivesSettlementMediatorAffirmationStatus (
|
|
5684
|
+
/** @name PolymeshPrimitivesSettlementMediatorAffirmationStatus (707) */
|
|
5591
5685
|
interface PolymeshPrimitivesSettlementMediatorAffirmationStatus extends Enum {
|
|
5592
5686
|
readonly isUnknown: boolean;
|
|
5593
5687
|
readonly isPending: boolean;
|
|
@@ -5597,7 +5691,7 @@ declare module "./types-lookup.ts" {
|
|
|
5597
5691
|
} & Struct;
|
|
5598
5692
|
readonly type: 'Unknown' | 'Pending' | 'Affirmed';
|
|
5599
5693
|
}
|
|
5600
|
-
/** @name PalletSettlementError (
|
|
5694
|
+
/** @name PalletSettlementError (708) */
|
|
5601
5695
|
interface PalletSettlementError extends Enum {
|
|
5602
5696
|
readonly isInvalidVenue: boolean;
|
|
5603
5697
|
readonly isUnauthorized: boolean;
|
|
@@ -5644,17 +5738,17 @@ declare module "./types-lookup.ts" {
|
|
|
5644
5738
|
readonly isMediatorAffirmationExpired: boolean;
|
|
5645
5739
|
readonly type: 'InvalidVenue' | 'Unauthorized' | 'InstructionNotAffirmed' | 'UnauthorizedSigner' | 'ReceiptAlreadyClaimed' | 'UnauthorizedVenue' | 'InstructionDatesInvalid' | 'InstructionSettleBlockPassed' | 'InvalidSignature' | 'SameSenderReceiver' | 'SettleOnPastBlock' | 'UnexpectedAffirmationStatus' | 'FailedToSchedule' | 'UnknownInstruction' | 'SignerAlreadyExists' | 'SignerDoesNotExist' | 'ZeroAmount' | 'InstructionSettleBlockNotReached' | 'CallerIsNotAParty' | 'MaxNumberOfNFTsExceeded' | 'NumberOfTransferredNFTsUnderestimated' | 'ReceiptForInvalidLegType' | 'WeightLimitExceeded' | 'MaxNumberOfFungibleAssetsExceeded' | 'MaxNumberOfOffChainAssetsExceeded' | 'NumberOfFungibleTransfersUnderestimated' | 'UnexpectedOFFChainAsset' | 'OffChainAssetCantBeLocked' | 'NumberOfOffChainTransfersUnderestimated' | 'LegNotFound' | 'InputWeightIsLessThanMinimum' | 'MaxNumberOfReceiptsExceeded' | 'NotAllAffirmationsHaveBeenReceived' | 'InvalidInstructionStatusForExecution' | 'FailedToReleaseLockOrTransferAssets' | 'DuplicateReceiptUid' | 'ReceiptInstructionIdMissmatch' | 'MultipleReceiptsForOneLeg' | 'UnexpectedLegStatus' | 'NumberOfVenueSignersExceeded' | 'CallerIsNotAMediator' | 'InvalidExpiryDate' | 'MediatorAffirmationExpired';
|
|
5646
5740
|
}
|
|
5647
|
-
/** @name PolymeshPrimitivesStatisticsStat1stKey (
|
|
5741
|
+
/** @name PolymeshPrimitivesStatisticsStat1stKey (711) */
|
|
5648
5742
|
interface PolymeshPrimitivesStatisticsStat1stKey extends Struct {
|
|
5649
5743
|
readonly asset: PolymeshPrimitivesStatisticsAssetScope;
|
|
5650
5744
|
readonly statType: PolymeshPrimitivesStatisticsStatType;
|
|
5651
5745
|
}
|
|
5652
|
-
/** @name PolymeshPrimitivesTransferComplianceAssetTransferCompliance (
|
|
5746
|
+
/** @name PolymeshPrimitivesTransferComplianceAssetTransferCompliance (712) */
|
|
5653
5747
|
interface PolymeshPrimitivesTransferComplianceAssetTransferCompliance extends Struct {
|
|
5654
5748
|
readonly paused: bool;
|
|
5655
5749
|
readonly requirements: BTreeSet<PolymeshPrimitivesTransferComplianceTransferCondition>;
|
|
5656
5750
|
}
|
|
5657
|
-
/** @name PalletStatisticsError (
|
|
5751
|
+
/** @name PalletStatisticsError (716) */
|
|
5658
5752
|
interface PalletStatisticsError extends Enum {
|
|
5659
5753
|
readonly isInvalidTransfer: boolean;
|
|
5660
5754
|
readonly isStatTypeMissing: boolean;
|
|
@@ -5665,7 +5759,7 @@ declare module "./types-lookup.ts" {
|
|
|
5665
5759
|
readonly isWeightLimitExceeded: boolean;
|
|
5666
5760
|
readonly type: 'InvalidTransfer' | 'StatTypeMissing' | 'StatTypeNeededByTransferCondition' | 'CannotRemoveStatTypeInUse' | 'StatTypeLimitReached' | 'TransferConditionLimitReached' | 'WeightLimitExceeded';
|
|
5667
5761
|
}
|
|
5668
|
-
/** @name PalletStoError (
|
|
5762
|
+
/** @name PalletStoError (718) */
|
|
5669
5763
|
interface PalletStoError extends Enum {
|
|
5670
5764
|
readonly isUnauthorized: boolean;
|
|
5671
5765
|
readonly isOverflow: boolean;
|
|
@@ -5681,13 +5775,13 @@ declare module "./types-lookup.ts" {
|
|
|
5681
5775
|
readonly isInvestmentAmountTooLow: boolean;
|
|
5682
5776
|
readonly type: 'Unauthorized' | 'Overflow' | 'InsufficientTokensRemaining' | 'FundraiserNotFound' | 'FundraiserNotLive' | 'FundraiserClosed' | 'FundraiserExpired' | 'InvalidVenue' | 'InvalidPriceTiers' | 'InvalidOfferingWindow' | 'MaxPriceExceeded' | 'InvestmentAmountTooLow';
|
|
5683
5777
|
}
|
|
5684
|
-
/** @name PalletTreasuryError (
|
|
5778
|
+
/** @name PalletTreasuryError (719) */
|
|
5685
5779
|
interface PalletTreasuryError extends Enum {
|
|
5686
5780
|
readonly isInsufficientBalance: boolean;
|
|
5687
5781
|
readonly isInvalidIdentity: boolean;
|
|
5688
5782
|
readonly type: 'InsufficientBalance' | 'InvalidIdentity';
|
|
5689
5783
|
}
|
|
5690
|
-
/** @name PalletUtilityError (
|
|
5784
|
+
/** @name PalletUtilityError (720) */
|
|
5691
5785
|
interface PalletUtilityError extends Enum {
|
|
5692
5786
|
readonly isTooManyCalls: boolean;
|
|
5693
5787
|
readonly isInvalidSignature: boolean;
|
|
@@ -5696,13 +5790,13 @@ declare module "./types-lookup.ts" {
|
|
|
5696
5790
|
readonly isUnableToDeriveAccountId: boolean;
|
|
5697
5791
|
readonly type: 'TooManyCalls' | 'InvalidSignature' | 'TargetCddMissing' | 'InvalidNonce' | 'UnableToDeriveAccountId';
|
|
5698
5792
|
}
|
|
5699
|
-
/** @name PalletBaseError (
|
|
5793
|
+
/** @name PalletBaseError (721) */
|
|
5700
5794
|
interface PalletBaseError extends Enum {
|
|
5701
5795
|
readonly isTooLong: boolean;
|
|
5702
5796
|
readonly isCounterOverflow: boolean;
|
|
5703
5797
|
readonly type: 'TooLong' | 'CounterOverflow';
|
|
5704
5798
|
}
|
|
5705
|
-
/** @name PalletExternalAgentsError (
|
|
5799
|
+
/** @name PalletExternalAgentsError (723) */
|
|
5706
5800
|
interface PalletExternalAgentsError extends Enum {
|
|
5707
5801
|
readonly isNoSuchAG: boolean;
|
|
5708
5802
|
readonly isUnauthorizedAgent: boolean;
|
|
@@ -5712,12 +5806,12 @@ declare module "./types-lookup.ts" {
|
|
|
5712
5806
|
readonly isSecondaryKeyNotAuthorizedForAsset: boolean;
|
|
5713
5807
|
readonly type: 'NoSuchAG' | 'UnauthorizedAgent' | 'AlreadyAnAgent' | 'NotAnAgent' | 'RemovingLastFullAgent' | 'SecondaryKeyNotAuthorizedForAsset';
|
|
5714
5808
|
}
|
|
5715
|
-
/** @name PalletRelayerSubsidy (
|
|
5809
|
+
/** @name PalletRelayerSubsidy (724) */
|
|
5716
5810
|
interface PalletRelayerSubsidy extends Struct {
|
|
5717
5811
|
readonly payingKey: AccountId32;
|
|
5718
5812
|
readonly remaining: u128;
|
|
5719
5813
|
}
|
|
5720
|
-
/** @name PalletRelayerError (
|
|
5814
|
+
/** @name PalletRelayerError (725) */
|
|
5721
5815
|
interface PalletRelayerError extends Enum {
|
|
5722
5816
|
readonly isUserKeyCddMissing: boolean;
|
|
5723
5817
|
readonly isPayingKeyCddMissing: boolean;
|
|
@@ -5728,7 +5822,7 @@ declare module "./types-lookup.ts" {
|
|
|
5728
5822
|
readonly isOverflow: boolean;
|
|
5729
5823
|
readonly type: 'UserKeyCddMissing' | 'PayingKeyCddMissing' | 'NoPayingKey' | 'NotPayingKey' | 'NotAuthorizedForPayingKey' | 'NotAuthorizedForUserKey' | 'Overflow';
|
|
5730
5824
|
}
|
|
5731
|
-
/** @name PalletContractsWasmPrefabWasmModule (
|
|
5825
|
+
/** @name PalletContractsWasmPrefabWasmModule (727) */
|
|
5732
5826
|
interface PalletContractsWasmPrefabWasmModule extends Struct {
|
|
5733
5827
|
readonly instructionWeightsVersion: Compact<u32>;
|
|
5734
5828
|
readonly initial: Compact<u32>;
|
|
@@ -5736,13 +5830,13 @@ declare module "./types-lookup.ts" {
|
|
|
5736
5830
|
readonly code: Bytes;
|
|
5737
5831
|
readonly determinism: PalletContractsWasmDeterminism;
|
|
5738
5832
|
}
|
|
5739
|
-
/** @name PalletContractsWasmOwnerInfo (
|
|
5833
|
+
/** @name PalletContractsWasmOwnerInfo (729) */
|
|
5740
5834
|
interface PalletContractsWasmOwnerInfo extends Struct {
|
|
5741
5835
|
readonly owner: AccountId32;
|
|
5742
5836
|
readonly deposit: Compact<u128>;
|
|
5743
5837
|
readonly refcount: Compact<u64>;
|
|
5744
5838
|
}
|
|
5745
|
-
/** @name PalletContractsStorageContractInfo (
|
|
5839
|
+
/** @name PalletContractsStorageContractInfo (730) */
|
|
5746
5840
|
interface PalletContractsStorageContractInfo extends Struct {
|
|
5747
5841
|
readonly trieId: Bytes;
|
|
5748
5842
|
readonly depositAccount: AccountId32;
|
|
@@ -5753,17 +5847,17 @@ declare module "./types-lookup.ts" {
|
|
|
5753
5847
|
readonly storageItemDeposit: u128;
|
|
5754
5848
|
readonly storageBaseDeposit: u128;
|
|
5755
5849
|
}
|
|
5756
|
-
/** @name PalletContractsStorageDeletedContract (
|
|
5850
|
+
/** @name PalletContractsStorageDeletedContract (733) */
|
|
5757
5851
|
interface PalletContractsStorageDeletedContract extends Struct {
|
|
5758
5852
|
readonly trieId: Bytes;
|
|
5759
5853
|
}
|
|
5760
|
-
/** @name PalletContractsSchedule (
|
|
5854
|
+
/** @name PalletContractsSchedule (735) */
|
|
5761
5855
|
interface PalletContractsSchedule extends Struct {
|
|
5762
5856
|
readonly limits: PalletContractsScheduleLimits;
|
|
5763
5857
|
readonly instructionWeights: PalletContractsScheduleInstructionWeights;
|
|
5764
5858
|
readonly hostFnWeights: PalletContractsScheduleHostFnWeights;
|
|
5765
5859
|
}
|
|
5766
|
-
/** @name PalletContractsScheduleLimits (
|
|
5860
|
+
/** @name PalletContractsScheduleLimits (736) */
|
|
5767
5861
|
interface PalletContractsScheduleLimits extends Struct {
|
|
5768
5862
|
readonly eventTopics: u32;
|
|
5769
5863
|
readonly globals: u32;
|
|
@@ -5775,7 +5869,7 @@ declare module "./types-lookup.ts" {
|
|
|
5775
5869
|
readonly subjectLen: u32;
|
|
5776
5870
|
readonly payloadLen: u32;
|
|
5777
5871
|
}
|
|
5778
|
-
/** @name PalletContractsScheduleInstructionWeights (
|
|
5872
|
+
/** @name PalletContractsScheduleInstructionWeights (737) */
|
|
5779
5873
|
interface PalletContractsScheduleInstructionWeights extends Struct {
|
|
5780
5874
|
readonly version: u32;
|
|
5781
5875
|
readonly fallback: u32;
|
|
@@ -5832,7 +5926,7 @@ declare module "./types-lookup.ts" {
|
|
|
5832
5926
|
readonly i64rotl: u32;
|
|
5833
5927
|
readonly i64rotr: u32;
|
|
5834
5928
|
}
|
|
5835
|
-
/** @name PalletContractsScheduleHostFnWeights (
|
|
5929
|
+
/** @name PalletContractsScheduleHostFnWeights (738) */
|
|
5836
5930
|
interface PalletContractsScheduleHostFnWeights extends Struct {
|
|
5837
5931
|
readonly caller: SpWeightsWeightV2Weight;
|
|
5838
5932
|
readonly isContract: SpWeightsWeightV2Weight;
|
|
@@ -5894,7 +5988,7 @@ declare module "./types-lookup.ts" {
|
|
|
5894
5988
|
readonly accountReentranceCount: SpWeightsWeightV2Weight;
|
|
5895
5989
|
readonly instantiationNonce: SpWeightsWeightV2Weight;
|
|
5896
5990
|
}
|
|
5897
|
-
/** @name PalletContractsError (
|
|
5991
|
+
/** @name PalletContractsError (739) */
|
|
5898
5992
|
interface PalletContractsError extends Enum {
|
|
5899
5993
|
readonly isInvalidScheduleVersion: boolean;
|
|
5900
5994
|
readonly isInvalidCallFlags: boolean;
|
|
@@ -5926,7 +6020,7 @@ declare module "./types-lookup.ts" {
|
|
|
5926
6020
|
readonly isIndeterministic: boolean;
|
|
5927
6021
|
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';
|
|
5928
6022
|
}
|
|
5929
|
-
/** @name PolymeshContractsError (
|
|
6023
|
+
/** @name PolymeshContractsError (741) */
|
|
5930
6024
|
interface PolymeshContractsError extends Enum {
|
|
5931
6025
|
readonly isInvalidFuncId: boolean;
|
|
5932
6026
|
readonly isInvalidRuntimeCall: boolean;
|
|
@@ -5942,7 +6036,7 @@ declare module "./types-lookup.ts" {
|
|
|
5942
6036
|
readonly isNoUpgradesSupported: boolean;
|
|
5943
6037
|
readonly type: 'InvalidFuncId' | 'InvalidRuntimeCall' | 'ReadStorageFailed' | 'DataLeftAfterDecoding' | 'InLenTooLarge' | 'OutLenTooLarge' | 'InstantiatorWithNoIdentity' | 'RuntimeCallDenied' | 'CallerNotAPrimaryKey' | 'MissingKeyPermissions' | 'InvalidChainVersion' | 'NoUpgradesSupported';
|
|
5944
6038
|
}
|
|
5945
|
-
/** @name PalletPreimageRequestStatus (
|
|
6039
|
+
/** @name PalletPreimageRequestStatus (742) */
|
|
5946
6040
|
interface PalletPreimageRequestStatus extends Enum {
|
|
5947
6041
|
readonly isUnrequested: boolean;
|
|
5948
6042
|
readonly asUnrequested: {
|
|
@@ -5957,7 +6051,7 @@ declare module "./types-lookup.ts" {
|
|
|
5957
6051
|
} & Struct;
|
|
5958
6052
|
readonly type: 'Unrequested' | 'Requested';
|
|
5959
6053
|
}
|
|
5960
|
-
/** @name PalletPreimageError (
|
|
6054
|
+
/** @name PalletPreimageError (746) */
|
|
5961
6055
|
interface PalletPreimageError extends Enum {
|
|
5962
6056
|
readonly isTooBig: boolean;
|
|
5963
6057
|
readonly isAlreadyNoted: boolean;
|
|
@@ -5967,12 +6061,12 @@ declare module "./types-lookup.ts" {
|
|
|
5967
6061
|
readonly isNotRequested: boolean;
|
|
5968
6062
|
readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested';
|
|
5969
6063
|
}
|
|
5970
|
-
/** @name PolymeshPrimitivesNftNftCollection (
|
|
6064
|
+
/** @name PolymeshPrimitivesNftNftCollection (747) */
|
|
5971
6065
|
interface PolymeshPrimitivesNftNftCollection extends Struct {
|
|
5972
6066
|
readonly id: u64;
|
|
5973
6067
|
readonly ticker: PolymeshPrimitivesTicker;
|
|
5974
6068
|
}
|
|
5975
|
-
/** @name PalletNftError (
|
|
6069
|
+
/** @name PalletNftError (752) */
|
|
5976
6070
|
interface PalletNftError extends Enum {
|
|
5977
6071
|
readonly isBalanceOverflow: boolean;
|
|
5978
6072
|
readonly isBalanceUnderflow: boolean;
|
|
@@ -5997,30 +6091,33 @@ declare module "./types-lookup.ts" {
|
|
|
5997
6091
|
readonly isSupplyOverflow: boolean;
|
|
5998
6092
|
readonly isSupplyUnderflow: boolean;
|
|
5999
6093
|
readonly isInvalidNFTTransferNFTIsLocked: boolean;
|
|
6000
|
-
readonly
|
|
6094
|
+
readonly isInvalidNFTTransferSenderIdMatchesReceiverId: boolean;
|
|
6095
|
+
readonly isInvalidNFTTransferInvalidReceiverCDD: boolean;
|
|
6096
|
+
readonly isInvalidNFTTransferInvalidSenderCDD: boolean;
|
|
6097
|
+
readonly type: 'BalanceOverflow' | 'BalanceUnderflow' | 'CollectionAlredyRegistered' | 'CollectionNotFound' | 'DuplicateMetadataKey' | 'DuplicatedNFTId' | 'InvalidAssetType' | 'InvalidMetadataAttribute' | 'InvalidNFTTransferCollectionNotFound' | 'InvalidNFTTransferSamePortfolio' | 'InvalidNFTTransferNFTNotOwned' | 'InvalidNFTTransferCountOverflow' | 'InvalidNFTTransferComplianceFailure' | 'InvalidNFTTransferFrozenAsset' | 'InvalidNFTTransferInsufficientCount' | 'MaxNumberOfKeysExceeded' | 'MaxNumberOfNFTsPerLegExceeded' | 'NftNotFound' | 'UnregisteredMetadataKey' | 'ZeroCount' | 'SupplyOverflow' | 'SupplyUnderflow' | 'InvalidNFTTransferNFTIsLocked' | 'InvalidNFTTransferSenderIdMatchesReceiverId' | 'InvalidNFTTransferInvalidReceiverCDD' | 'InvalidNFTTransferInvalidSenderCDD';
|
|
6001
6098
|
}
|
|
6002
|
-
/** @name PalletTestUtilsError (
|
|
6099
|
+
/** @name PalletTestUtilsError (753) */
|
|
6003
6100
|
type PalletTestUtilsError = Null;
|
|
6004
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
6101
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (756) */
|
|
6005
6102
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
6006
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
6103
|
+
/** @name FrameSystemExtensionsCheckTxVersion (757) */
|
|
6007
6104
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
6008
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
6105
|
+
/** @name FrameSystemExtensionsCheckGenesis (758) */
|
|
6009
6106
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
6010
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
6107
|
+
/** @name FrameSystemExtensionsCheckNonce (761) */
|
|
6011
6108
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
|
|
6012
6109
|
}
|
|
6013
|
-
/** @name PolymeshExtensionsCheckWeight (
|
|
6110
|
+
/** @name PolymeshExtensionsCheckWeight (762) */
|
|
6014
6111
|
interface PolymeshExtensionsCheckWeight extends FrameSystemExtensionsCheckWeight {
|
|
6015
6112
|
}
|
|
6016
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
6113
|
+
/** @name FrameSystemExtensionsCheckWeight (763) */
|
|
6017
6114
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
6018
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
6115
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (764) */
|
|
6019
6116
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
|
|
6020
6117
|
}
|
|
6021
|
-
/** @name PalletPermissionsStoreCallMetadata (
|
|
6118
|
+
/** @name PalletPermissionsStoreCallMetadata (765) */
|
|
6022
6119
|
type PalletPermissionsStoreCallMetadata = Null;
|
|
6023
|
-
/** @name PolymeshRuntimeDevelopRuntime (
|
|
6120
|
+
/** @name PolymeshRuntimeDevelopRuntime (766) */
|
|
6024
6121
|
type PolymeshRuntimeDevelopRuntime = Null;
|
|
6025
6122
|
}
|
|
6026
6123
|
//# sourceMappingURL=types-lookup.d.ts.map
|