@webb-tools/tangle-substrate-types 0.9.11 → 0.9.13
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/build/index.cjs +210 -157
- package/build/index.d.ts +581 -313
- package/build/index.mjs +210 -157
- package/package.json +1 -1
package/build/index.mjs
CHANGED
@@ -2113,6 +2113,9 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2113
2113
|
MinBalanceExcessAdjusted: {
|
2114
2114
|
poolId: 'u32',
|
2115
2115
|
amount: 'u128'
|
2116
|
+
},
|
2117
|
+
LastPoolIdUpdated: {
|
2118
|
+
poolId: 'u32'
|
2116
2119
|
}
|
2117
2120
|
}
|
2118
2121
|
},
|
@@ -2162,7 +2165,31 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2162
2165
|
action: 'PalletRewardsAssetAction'
|
2163
2166
|
},
|
2164
2167
|
VaultRewardConfigUpdated: {
|
2165
|
-
vaultId: 'u32'
|
2168
|
+
vaultId: 'u32',
|
2169
|
+
newConfig: 'PalletRewardsRewardConfigForAssetVault'
|
2170
|
+
},
|
2171
|
+
RewardVaultCreated: {
|
2172
|
+
vaultId: 'u32',
|
2173
|
+
newConfig: 'PalletRewardsRewardConfigForAssetVault',
|
2174
|
+
potAccount: 'AccountId32'
|
2175
|
+
},
|
2176
|
+
TotalScoreUpdated: {
|
2177
|
+
vaultId: 'u32',
|
2178
|
+
asset: 'TanglePrimitivesServicesAsset',
|
2179
|
+
totalScore: 'u128',
|
2180
|
+
lockMultiplier: 'Option<TanglePrimitivesRewardsLockMultiplier>'
|
2181
|
+
},
|
2182
|
+
TotalDepositUpdated: {
|
2183
|
+
vaultId: 'u32',
|
2184
|
+
asset: 'TanglePrimitivesServicesAsset',
|
2185
|
+
totalDeposit: 'u128'
|
2186
|
+
},
|
2187
|
+
DecayConfigUpdated: {
|
2188
|
+
startPeriod: 'u64',
|
2189
|
+
rate: 'Percent'
|
2190
|
+
},
|
2191
|
+
ApyBlocksUpdated: {
|
2192
|
+
blocks: 'u64'
|
2166
2193
|
}
|
2167
2194
|
}
|
2168
2195
|
},
|
@@ -2175,7 +2202,28 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2175
2202
|
]
|
2176
2203
|
},
|
2177
2204
|
/**
|
2178
|
-
* Lookup151:
|
2205
|
+
* Lookup151: pallet_rewards::types::RewardConfigForAssetVault<Balance>
|
2206
|
+
**/ PalletRewardsRewardConfigForAssetVault: {
|
2207
|
+
apy: 'Percent',
|
2208
|
+
incentiveCap: 'u128',
|
2209
|
+
depositCap: 'u128',
|
2210
|
+
boostMultiplier: 'Option<u32>'
|
2211
|
+
},
|
2212
|
+
/**
|
2213
|
+
* Lookup154: tangle_primitives::types::rewards::LockMultiplier
|
2214
|
+
**/ TanglePrimitivesRewardsLockMultiplier: {
|
2215
|
+
_enum: [
|
2216
|
+
'__Unused0',
|
2217
|
+
'OneMonth',
|
2218
|
+
'TwoMonths',
|
2219
|
+
'ThreeMonths',
|
2220
|
+
'__Unused4',
|
2221
|
+
'__Unused5',
|
2222
|
+
'SixMonths'
|
2223
|
+
]
|
2224
|
+
},
|
2225
|
+
/**
|
2226
|
+
* Lookup155: frame_system::Phase
|
2179
2227
|
**/ FrameSystemPhase: {
|
2180
2228
|
_enum: {
|
2181
2229
|
ApplyExtrinsic: 'u32',
|
@@ -2184,19 +2232,19 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2184
2232
|
}
|
2185
2233
|
},
|
2186
2234
|
/**
|
2187
|
-
*
|
2235
|
+
* Lookup157: frame_system::LastRuntimeUpgradeInfo
|
2188
2236
|
**/ FrameSystemLastRuntimeUpgradeInfo: {
|
2189
2237
|
specVersion: 'Compact<u32>',
|
2190
2238
|
specName: 'Text'
|
2191
2239
|
},
|
2192
2240
|
/**
|
2193
|
-
*
|
2241
|
+
* Lookup159: frame_system::CodeUpgradeAuthorization<T>
|
2194
2242
|
**/ FrameSystemCodeUpgradeAuthorization: {
|
2195
2243
|
codeHash: 'H256',
|
2196
2244
|
checkVersion: 'bool'
|
2197
2245
|
},
|
2198
2246
|
/**
|
2199
|
-
*
|
2247
|
+
* Lookup160: frame_system::pallet::Call<T>
|
2200
2248
|
**/ FrameSystemCall: {
|
2201
2249
|
_enum: {
|
2202
2250
|
remark: {
|
@@ -2240,21 +2288,21 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2240
2288
|
}
|
2241
2289
|
},
|
2242
2290
|
/**
|
2243
|
-
*
|
2291
|
+
* Lookup164: frame_system::limits::BlockWeights
|
2244
2292
|
**/ FrameSystemLimitsBlockWeights: {
|
2245
2293
|
baseBlock: 'SpWeightsWeightV2Weight',
|
2246
2294
|
maxBlock: 'SpWeightsWeightV2Weight',
|
2247
2295
|
perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
|
2248
2296
|
},
|
2249
2297
|
/**
|
2250
|
-
*
|
2298
|
+
* Lookup165: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
2251
2299
|
**/ FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
2252
2300
|
normal: 'FrameSystemLimitsWeightsPerClass',
|
2253
2301
|
operational: 'FrameSystemLimitsWeightsPerClass',
|
2254
2302
|
mandatory: 'FrameSystemLimitsWeightsPerClass'
|
2255
2303
|
},
|
2256
2304
|
/**
|
2257
|
-
*
|
2305
|
+
* Lookup166: frame_system::limits::WeightsPerClass
|
2258
2306
|
**/ FrameSystemLimitsWeightsPerClass: {
|
2259
2307
|
baseExtrinsic: 'SpWeightsWeightV2Weight',
|
2260
2308
|
maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',
|
@@ -2262,25 +2310,25 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2262
2310
|
reserved: 'Option<SpWeightsWeightV2Weight>'
|
2263
2311
|
},
|
2264
2312
|
/**
|
2265
|
-
*
|
2313
|
+
* Lookup168: frame_system::limits::BlockLength
|
2266
2314
|
**/ FrameSystemLimitsBlockLength: {
|
2267
2315
|
max: 'FrameSupportDispatchPerDispatchClassU32'
|
2268
2316
|
},
|
2269
2317
|
/**
|
2270
|
-
*
|
2318
|
+
* Lookup169: frame_support::dispatch::PerDispatchClass<T>
|
2271
2319
|
**/ FrameSupportDispatchPerDispatchClassU32: {
|
2272
2320
|
normal: 'u32',
|
2273
2321
|
operational: 'u32',
|
2274
2322
|
mandatory: 'u32'
|
2275
2323
|
},
|
2276
2324
|
/**
|
2277
|
-
*
|
2325
|
+
* Lookup170: sp_weights::RuntimeDbWeight
|
2278
2326
|
**/ SpWeightsRuntimeDbWeight: {
|
2279
2327
|
read: 'u64',
|
2280
2328
|
write: 'u64'
|
2281
2329
|
},
|
2282
2330
|
/**
|
2283
|
-
*
|
2331
|
+
* Lookup171: sp_version::RuntimeVersion
|
2284
2332
|
**/ SpVersionRuntimeVersion: {
|
2285
2333
|
specName: 'Text',
|
2286
2334
|
implName: 'Text',
|
@@ -2292,7 +2340,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2292
2340
|
stateVersion: 'u8'
|
2293
2341
|
},
|
2294
2342
|
/**
|
2295
|
-
*
|
2343
|
+
* Lookup176: frame_system::pallet::Error<T>
|
2296
2344
|
**/ FrameSystemError: {
|
2297
2345
|
_enum: [
|
2298
2346
|
'InvalidSpecName',
|
@@ -2307,7 +2355,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2307
2355
|
]
|
2308
2356
|
},
|
2309
2357
|
/**
|
2310
|
-
*
|
2358
|
+
* Lookup177: pallet_timestamp::pallet::Call<T>
|
2311
2359
|
**/ PalletTimestampCall: {
|
2312
2360
|
_enum: {
|
2313
2361
|
set: {
|
@@ -2316,7 +2364,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2316
2364
|
}
|
2317
2365
|
},
|
2318
2366
|
/**
|
2319
|
-
*
|
2367
|
+
* Lookup178: pallet_sudo::pallet::Call<T>
|
2320
2368
|
**/ PalletSudoCall: {
|
2321
2369
|
_enum: {
|
2322
2370
|
sudo: {
|
@@ -2340,7 +2388,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2340
2388
|
}
|
2341
2389
|
},
|
2342
2390
|
/**
|
2343
|
-
*
|
2391
|
+
* Lookup180: pallet_assets::pallet::Call<T, I>
|
2344
2392
|
**/ PalletAssetsCall: {
|
2345
2393
|
_enum: {
|
2346
2394
|
create: {
|
@@ -2491,7 +2539,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2491
2539
|
}
|
2492
2540
|
},
|
2493
2541
|
/**
|
2494
|
-
*
|
2542
|
+
* Lookup182: pallet_balances::pallet::Call<T, I>
|
2495
2543
|
**/ PalletBalancesCall: {
|
2496
2544
|
_enum: {
|
2497
2545
|
transfer_allow_death: {
|
@@ -2535,7 +2583,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2535
2583
|
}
|
2536
2584
|
},
|
2537
2585
|
/**
|
2538
|
-
*
|
2586
|
+
* Lookup183: pallet_balances::types::AdjustmentDirection
|
2539
2587
|
**/ PalletBalancesAdjustmentDirection: {
|
2540
2588
|
_enum: [
|
2541
2589
|
'Increase',
|
@@ -2543,7 +2591,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2543
2591
|
]
|
2544
2592
|
},
|
2545
2593
|
/**
|
2546
|
-
*
|
2594
|
+
* Lookup184: pallet_babe::pallet::Call<T>
|
2547
2595
|
**/ PalletBabeCall: {
|
2548
2596
|
_enum: {
|
2549
2597
|
report_equivocation: {
|
@@ -2560,7 +2608,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2560
2608
|
}
|
2561
2609
|
},
|
2562
2610
|
/**
|
2563
|
-
*
|
2611
|
+
* Lookup185: sp_consensus_slots::EquivocationProof<sp_runtime::generic::header::Header<Number, Hash>, sp_consensus_babe::app::Public>
|
2564
2612
|
**/ SpConsensusSlotsEquivocationProof: {
|
2565
2613
|
offender: 'SpConsensusBabeAppPublic',
|
2566
2614
|
slot: 'u64',
|
@@ -2568,7 +2616,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2568
2616
|
secondHeader: 'SpRuntimeHeader'
|
2569
2617
|
},
|
2570
2618
|
/**
|
2571
|
-
*
|
2619
|
+
* Lookup186: sp_runtime::generic::header::Header<Number, Hash>
|
2572
2620
|
**/ SpRuntimeHeader: {
|
2573
2621
|
parentHash: 'H256',
|
2574
2622
|
number: 'Compact<u64>',
|
@@ -2577,17 +2625,17 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2577
2625
|
digest: 'SpRuntimeDigest'
|
2578
2626
|
},
|
2579
2627
|
/**
|
2580
|
-
*
|
2628
|
+
* Lookup187: sp_consensus_babe::app::Public
|
2581
2629
|
**/ SpConsensusBabeAppPublic: '[u8;32]',
|
2582
2630
|
/**
|
2583
|
-
*
|
2631
|
+
* Lookup189: sp_session::MembershipProof
|
2584
2632
|
**/ SpSessionMembershipProof: {
|
2585
2633
|
session: 'u32',
|
2586
2634
|
trieNodes: 'Vec<Bytes>',
|
2587
2635
|
validatorCount: 'u32'
|
2588
2636
|
},
|
2589
2637
|
/**
|
2590
|
-
*
|
2638
|
+
* Lookup190: sp_consensus_babe::digests::NextConfigDescriptor
|
2591
2639
|
**/ SpConsensusBabeDigestsNextConfigDescriptor: {
|
2592
2640
|
_enum: {
|
2593
2641
|
__Unused0: 'Null',
|
@@ -2598,7 +2646,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2598
2646
|
}
|
2599
2647
|
},
|
2600
2648
|
/**
|
2601
|
-
*
|
2649
|
+
* Lookup192: sp_consensus_babe::AllowedSlots
|
2602
2650
|
**/ SpConsensusBabeAllowedSlots: {
|
2603
2651
|
_enum: [
|
2604
2652
|
'PrimarySlots',
|
@@ -2607,7 +2655,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2607
2655
|
]
|
2608
2656
|
},
|
2609
2657
|
/**
|
2610
|
-
*
|
2658
|
+
* Lookup193: pallet_grandpa::pallet::Call<T>
|
2611
2659
|
**/ PalletGrandpaCall: {
|
2612
2660
|
_enum: {
|
2613
2661
|
report_equivocation: {
|
@@ -2625,13 +2673,13 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2625
2673
|
}
|
2626
2674
|
},
|
2627
2675
|
/**
|
2628
|
-
*
|
2676
|
+
* Lookup194: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
2629
2677
|
**/ SpConsensusGrandpaEquivocationProof: {
|
2630
2678
|
setId: 'u64',
|
2631
2679
|
equivocation: 'SpConsensusGrandpaEquivocation'
|
2632
2680
|
},
|
2633
2681
|
/**
|
2634
|
-
*
|
2682
|
+
* Lookup195: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
2635
2683
|
**/ SpConsensusGrandpaEquivocation: {
|
2636
2684
|
_enum: {
|
2637
2685
|
Prevote: 'FinalityGrandpaEquivocationPrevote',
|
@@ -2639,7 +2687,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2639
2687
|
}
|
2640
2688
|
},
|
2641
2689
|
/**
|
2642
|
-
*
|
2690
|
+
* Lookup196: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
2643
2691
|
**/ FinalityGrandpaEquivocationPrevote: {
|
2644
2692
|
roundNumber: 'u64',
|
2645
2693
|
identity: 'SpConsensusGrandpaAppPublic',
|
@@ -2647,16 +2695,16 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2647
2695
|
second: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)'
|
2648
2696
|
},
|
2649
2697
|
/**
|
2650
|
-
*
|
2698
|
+
* Lookup197: finality_grandpa::Prevote<primitive_types::H256, N>
|
2651
2699
|
**/ FinalityGrandpaPrevote: {
|
2652
2700
|
targetHash: 'H256',
|
2653
2701
|
targetNumber: 'u64'
|
2654
2702
|
},
|
2655
2703
|
/**
|
2656
|
-
*
|
2704
|
+
* Lookup198: sp_consensus_grandpa::app::Signature
|
2657
2705
|
**/ SpConsensusGrandpaAppSignature: '[u8;64]',
|
2658
2706
|
/**
|
2659
|
-
*
|
2707
|
+
* Lookup201: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
2660
2708
|
**/ FinalityGrandpaEquivocationPrecommit: {
|
2661
2709
|
roundNumber: 'u64',
|
2662
2710
|
identity: 'SpConsensusGrandpaAppPublic',
|
@@ -2664,16 +2712,16 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2664
2712
|
second: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)'
|
2665
2713
|
},
|
2666
2714
|
/**
|
2667
|
-
*
|
2715
|
+
* Lookup202: finality_grandpa::Precommit<primitive_types::H256, N>
|
2668
2716
|
**/ FinalityGrandpaPrecommit: {
|
2669
2717
|
targetHash: 'H256',
|
2670
2718
|
targetNumber: 'u64'
|
2671
2719
|
},
|
2672
2720
|
/**
|
2673
|
-
*
|
2721
|
+
* Lookup204: sp_core::Void
|
2674
2722
|
**/ SpCoreVoid: 'Null',
|
2675
2723
|
/**
|
2676
|
-
*
|
2724
|
+
* Lookup205: pallet_indices::pallet::Call<T>
|
2677
2725
|
**/ PalletIndicesCall: {
|
2678
2726
|
_enum: {
|
2679
2727
|
claim: {
|
@@ -2703,7 +2751,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2703
2751
|
}
|
2704
2752
|
},
|
2705
2753
|
/**
|
2706
|
-
*
|
2754
|
+
* Lookup206: pallet_democracy::pallet::Call<T>
|
2707
2755
|
**/ PalletDemocracyCall: {
|
2708
2756
|
_enum: {
|
2709
2757
|
propose: {
|
@@ -2771,7 +2819,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2771
2819
|
}
|
2772
2820
|
},
|
2773
2821
|
/**
|
2774
|
-
*
|
2822
|
+
* Lookup207: frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>
|
2775
2823
|
**/ FrameSupportPreimagesBounded: {
|
2776
2824
|
_enum: {
|
2777
2825
|
Legacy: {
|
@@ -2791,10 +2839,10 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2791
2839
|
}
|
2792
2840
|
},
|
2793
2841
|
/**
|
2794
|
-
*
|
2842
|
+
* Lookup208: sp_runtime::traits::BlakeTwo256
|
2795
2843
|
**/ SpRuntimeBlakeTwo256: 'Null',
|
2796
2844
|
/**
|
2797
|
-
*
|
2845
|
+
* Lookup210: pallet_democracy::conviction::Conviction
|
2798
2846
|
**/ PalletDemocracyConviction: {
|
2799
2847
|
_enum: [
|
2800
2848
|
'None',
|
@@ -2807,7 +2855,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2807
2855
|
]
|
2808
2856
|
},
|
2809
2857
|
/**
|
2810
|
-
*
|
2858
|
+
* Lookup212: pallet_collective::pallet::Call<T, I>
|
2811
2859
|
**/ PalletCollectiveCall: {
|
2812
2860
|
_enum: {
|
2813
2861
|
set_members: {
|
@@ -2842,7 +2890,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2842
2890
|
}
|
2843
2891
|
},
|
2844
2892
|
/**
|
2845
|
-
*
|
2893
|
+
* Lookup213: pallet_vesting::pallet::Call<T>
|
2846
2894
|
**/ PalletVestingCall: {
|
2847
2895
|
_enum: {
|
2848
2896
|
vest: 'Null',
|
@@ -2869,14 +2917,14 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2869
2917
|
}
|
2870
2918
|
},
|
2871
2919
|
/**
|
2872
|
-
*
|
2920
|
+
* Lookup214: pallet_vesting::vesting_info::VestingInfo<Balance, BlockNumber>
|
2873
2921
|
**/ PalletVestingVestingInfo: {
|
2874
2922
|
locked: 'u128',
|
2875
2923
|
perBlock: 'u128',
|
2876
2924
|
startingBlock: 'u64'
|
2877
2925
|
},
|
2878
2926
|
/**
|
2879
|
-
*
|
2927
|
+
* Lookup215: pallet_elections_phragmen::pallet::Call<T>
|
2880
2928
|
**/ PalletElectionsPhragmenCall: {
|
2881
2929
|
_enum: {
|
2882
2930
|
vote: {
|
@@ -2902,7 +2950,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2902
2950
|
}
|
2903
2951
|
},
|
2904
2952
|
/**
|
2905
|
-
*
|
2953
|
+
* Lookup216: pallet_elections_phragmen::Renouncing
|
2906
2954
|
**/ PalletElectionsPhragmenRenouncing: {
|
2907
2955
|
_enum: {
|
2908
2956
|
Member: 'Null',
|
@@ -2911,7 +2959,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2911
2959
|
}
|
2912
2960
|
},
|
2913
2961
|
/**
|
2914
|
-
*
|
2962
|
+
* Lookup217: pallet_election_provider_multi_phase::pallet::Call<T>
|
2915
2963
|
**/ PalletElectionProviderMultiPhaseCall: {
|
2916
2964
|
_enum: {
|
2917
2965
|
submit_unsigned: {
|
@@ -2934,14 +2982,14 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2934
2982
|
}
|
2935
2983
|
},
|
2936
2984
|
/**
|
2937
|
-
*
|
2985
|
+
* Lookup218: pallet_election_provider_multi_phase::RawSolution<tangle_testnet_runtime::NposSolution16>
|
2938
2986
|
**/ PalletElectionProviderMultiPhaseRawSolution: {
|
2939
2987
|
solution: 'TangleTestnetRuntimeNposSolution16',
|
2940
2988
|
score: 'SpNposElectionsElectionScore',
|
2941
2989
|
round: 'u32'
|
2942
2990
|
},
|
2943
2991
|
/**
|
2944
|
-
*
|
2992
|
+
* Lookup219: tangle_testnet_runtime::NposSolution16
|
2945
2993
|
**/ TangleTestnetRuntimeNposSolution16: {
|
2946
2994
|
votes1: 'Vec<(Compact<u32>,Compact<u16>)>',
|
2947
2995
|
votes2: 'Vec<(Compact<u32>,(Compact<u16>,Compact<PerU16>),Compact<u16>)>',
|
@@ -2961,19 +3009,19 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
2961
3009
|
votes16: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);15],Compact<u16>)>'
|
2962
3010
|
},
|
2963
3011
|
/**
|
2964
|
-
*
|
3012
|
+
* Lookup270: pallet_election_provider_multi_phase::SolutionOrSnapshotSize
|
2965
3013
|
**/ PalletElectionProviderMultiPhaseSolutionOrSnapshotSize: {
|
2966
3014
|
voters: 'Compact<u32>',
|
2967
3015
|
targets: 'Compact<u32>'
|
2968
3016
|
},
|
2969
3017
|
/**
|
2970
|
-
*
|
3018
|
+
* Lookup274: sp_npos_elections::Support<sp_core::crypto::AccountId32>
|
2971
3019
|
**/ SpNposElectionsSupport: {
|
2972
3020
|
total: 'u128',
|
2973
3021
|
voters: 'Vec<(AccountId32,u128)>'
|
2974
3022
|
},
|
2975
3023
|
/**
|
2976
|
-
*
|
3024
|
+
* Lookup275: pallet_staking::pallet::pallet::Call<T>
|
2977
3025
|
**/ PalletStakingPalletCall: {
|
2978
3026
|
_enum: {
|
2979
3027
|
bond: {
|
@@ -3081,7 +3129,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3081
3129
|
}
|
3082
3130
|
},
|
3083
3131
|
/**
|
3084
|
-
*
|
3132
|
+
* Lookup278: pallet_staking::pallet::pallet::ConfigOp<T>
|
3085
3133
|
**/ PalletStakingPalletConfigOpU128: {
|
3086
3134
|
_enum: {
|
3087
3135
|
Noop: 'Null',
|
@@ -3090,7 +3138,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3090
3138
|
}
|
3091
3139
|
},
|
3092
3140
|
/**
|
3093
|
-
*
|
3141
|
+
* Lookup279: pallet_staking::pallet::pallet::ConfigOp<T>
|
3094
3142
|
**/ PalletStakingPalletConfigOpU32: {
|
3095
3143
|
_enum: {
|
3096
3144
|
Noop: 'Null',
|
@@ -3099,7 +3147,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3099
3147
|
}
|
3100
3148
|
},
|
3101
3149
|
/**
|
3102
|
-
*
|
3150
|
+
* Lookup280: pallet_staking::pallet::pallet::ConfigOp<sp_arithmetic::per_things::Percent>
|
3103
3151
|
**/ PalletStakingPalletConfigOpPercent: {
|
3104
3152
|
_enum: {
|
3105
3153
|
Noop: 'Null',
|
@@ -3108,7 +3156,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3108
3156
|
}
|
3109
3157
|
},
|
3110
3158
|
/**
|
3111
|
-
*
|
3159
|
+
* Lookup281: pallet_staking::pallet::pallet::ConfigOp<sp_arithmetic::per_things::Perbill>
|
3112
3160
|
**/ PalletStakingPalletConfigOpPerbill: {
|
3113
3161
|
_enum: {
|
3114
3162
|
Noop: 'Null',
|
@@ -3117,13 +3165,13 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3117
3165
|
}
|
3118
3166
|
},
|
3119
3167
|
/**
|
3120
|
-
*
|
3168
|
+
* Lookup286: pallet_staking::UnlockChunk<Balance>
|
3121
3169
|
**/ PalletStakingUnlockChunk: {
|
3122
3170
|
value: 'Compact<u128>',
|
3123
3171
|
era: 'Compact<u32>'
|
3124
3172
|
},
|
3125
3173
|
/**
|
3126
|
-
*
|
3174
|
+
* Lookup288: pallet_session::pallet::Call<T>
|
3127
3175
|
**/ PalletSessionCall: {
|
3128
3176
|
_enum: {
|
3129
3177
|
set_keys: {
|
@@ -3137,14 +3185,14 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3137
3185
|
}
|
3138
3186
|
},
|
3139
3187
|
/**
|
3140
|
-
*
|
3188
|
+
* Lookup289: tangle_testnet_runtime::opaque::SessionKeys
|
3141
3189
|
**/ TangleTestnetRuntimeOpaqueSessionKeys: {
|
3142
3190
|
babe: 'SpConsensusBabeAppPublic',
|
3143
3191
|
grandpa: 'SpConsensusGrandpaAppPublic',
|
3144
3192
|
imOnline: 'PalletImOnlineSr25519AppSr25519Public'
|
3145
3193
|
},
|
3146
3194
|
/**
|
3147
|
-
*
|
3195
|
+
* Lookup290: pallet_treasury::pallet::Call<T, I>
|
3148
3196
|
**/ PalletTreasuryCall: {
|
3149
3197
|
_enum: {
|
3150
3198
|
__Unused0: 'Null',
|
@@ -3175,7 +3223,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3175
3223
|
}
|
3176
3224
|
},
|
3177
3225
|
/**
|
3178
|
-
*
|
3226
|
+
* Lookup292: pallet_bounties::pallet::Call<T, I>
|
3179
3227
|
**/ PalletBountiesCall: {
|
3180
3228
|
_enum: {
|
3181
3229
|
propose_bounty: {
|
@@ -3213,7 +3261,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3213
3261
|
}
|
3214
3262
|
},
|
3215
3263
|
/**
|
3216
|
-
*
|
3264
|
+
* Lookup293: pallet_child_bounties::pallet::Call<T>
|
3217
3265
|
**/ PalletChildBountiesCall: {
|
3218
3266
|
_enum: {
|
3219
3267
|
add_child_bounty: {
|
@@ -3251,7 +3299,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3251
3299
|
}
|
3252
3300
|
},
|
3253
3301
|
/**
|
3254
|
-
*
|
3302
|
+
* Lookup294: pallet_bags_list::pallet::Call<T, I>
|
3255
3303
|
**/ PalletBagsListCall: {
|
3256
3304
|
_enum: {
|
3257
3305
|
rebag: {
|
@@ -3267,7 +3315,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3267
3315
|
}
|
3268
3316
|
},
|
3269
3317
|
/**
|
3270
|
-
*
|
3318
|
+
* Lookup295: pallet_nomination_pools::pallet::Call<T>
|
3271
3319
|
**/ PalletNominationPoolsCall: {
|
3272
3320
|
_enum: {
|
3273
3321
|
join: {
|
@@ -3376,7 +3424,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3376
3424
|
}
|
3377
3425
|
},
|
3378
3426
|
/**
|
3379
|
-
*
|
3427
|
+
* Lookup296: pallet_nomination_pools::BondExtra<Balance>
|
3380
3428
|
**/ PalletNominationPoolsBondExtra: {
|
3381
3429
|
_enum: {
|
3382
3430
|
FreeBalance: 'u128',
|
@@ -3384,7 +3432,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3384
3432
|
}
|
3385
3433
|
},
|
3386
3434
|
/**
|
3387
|
-
*
|
3435
|
+
* Lookup297: pallet_nomination_pools::ConfigOp<T>
|
3388
3436
|
**/ PalletNominationPoolsConfigOpU128: {
|
3389
3437
|
_enum: {
|
3390
3438
|
Noop: 'Null',
|
@@ -3393,7 +3441,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3393
3441
|
}
|
3394
3442
|
},
|
3395
3443
|
/**
|
3396
|
-
*
|
3444
|
+
* Lookup298: pallet_nomination_pools::ConfigOp<T>
|
3397
3445
|
**/ PalletNominationPoolsConfigOpU32: {
|
3398
3446
|
_enum: {
|
3399
3447
|
Noop: 'Null',
|
@@ -3402,7 +3450,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3402
3450
|
}
|
3403
3451
|
},
|
3404
3452
|
/**
|
3405
|
-
*
|
3453
|
+
* Lookup299: pallet_nomination_pools::ConfigOp<sp_arithmetic::per_things::Perbill>
|
3406
3454
|
**/ PalletNominationPoolsConfigOpPerbill: {
|
3407
3455
|
_enum: {
|
3408
3456
|
Noop: 'Null',
|
@@ -3411,7 +3459,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3411
3459
|
}
|
3412
3460
|
},
|
3413
3461
|
/**
|
3414
|
-
*
|
3462
|
+
* Lookup300: pallet_nomination_pools::ConfigOp<sp_core::crypto::AccountId32>
|
3415
3463
|
**/ PalletNominationPoolsConfigOpAccountId32: {
|
3416
3464
|
_enum: {
|
3417
3465
|
Noop: 'Null',
|
@@ -3420,7 +3468,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3420
3468
|
}
|
3421
3469
|
},
|
3422
3470
|
/**
|
3423
|
-
*
|
3471
|
+
* Lookup301: pallet_nomination_pools::ClaimPermission
|
3424
3472
|
**/ PalletNominationPoolsClaimPermission: {
|
3425
3473
|
_enum: [
|
3426
3474
|
'Permissioned',
|
@@ -3430,7 +3478,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3430
3478
|
]
|
3431
3479
|
},
|
3432
3480
|
/**
|
3433
|
-
*
|
3481
|
+
* Lookup302: pallet_scheduler::pallet::Call<T>
|
3434
3482
|
**/ PalletSchedulerCall: {
|
3435
3483
|
_enum: {
|
3436
3484
|
schedule: {
|
@@ -3485,7 +3533,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3485
3533
|
}
|
3486
3534
|
},
|
3487
3535
|
/**
|
3488
|
-
*
|
3536
|
+
* Lookup304: pallet_preimage::pallet::Call<T>
|
3489
3537
|
**/ PalletPreimageCall: {
|
3490
3538
|
_enum: {
|
3491
3539
|
note_preimage: {
|
@@ -3515,7 +3563,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3515
3563
|
}
|
3516
3564
|
},
|
3517
3565
|
/**
|
3518
|
-
*
|
3566
|
+
* Lookup305: pallet_tx_pause::pallet::Call<T>
|
3519
3567
|
**/ PalletTxPauseCall: {
|
3520
3568
|
_enum: {
|
3521
3569
|
pause: {
|
@@ -3527,7 +3575,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3527
3575
|
}
|
3528
3576
|
},
|
3529
3577
|
/**
|
3530
|
-
*
|
3578
|
+
* Lookup306: pallet_im_online::pallet::Call<T>
|
3531
3579
|
**/ PalletImOnlineCall: {
|
3532
3580
|
_enum: {
|
3533
3581
|
heartbeat: {
|
@@ -3537,7 +3585,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3537
3585
|
}
|
3538
3586
|
},
|
3539
3587
|
/**
|
3540
|
-
*
|
3588
|
+
* Lookup307: pallet_im_online::Heartbeat<BlockNumber>
|
3541
3589
|
**/ PalletImOnlineHeartbeat: {
|
3542
3590
|
blockNumber: 'u64',
|
3543
3591
|
sessionIndex: 'u32',
|
@@ -3545,10 +3593,10 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3545
3593
|
validatorsLen: 'u32'
|
3546
3594
|
},
|
3547
3595
|
/**
|
3548
|
-
*
|
3596
|
+
* Lookup308: pallet_im_online::sr25519::app_sr25519::Signature
|
3549
3597
|
**/ PalletImOnlineSr25519AppSr25519Signature: '[u8;64]',
|
3550
3598
|
/**
|
3551
|
-
*
|
3599
|
+
* Lookup309: pallet_identity::pallet::Call<T>
|
3552
3600
|
**/ PalletIdentityCall: {
|
3553
3601
|
_enum: {
|
3554
3602
|
add_registrar: {
|
@@ -3632,7 +3680,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3632
3680
|
}
|
3633
3681
|
},
|
3634
3682
|
/**
|
3635
|
-
*
|
3683
|
+
* Lookup310: pallet_identity::legacy::IdentityInfo<FieldLimit>
|
3636
3684
|
**/ PalletIdentityLegacyIdentityInfo: {
|
3637
3685
|
additional: 'Vec<(Data,Data)>',
|
3638
3686
|
display: 'Data',
|
@@ -3645,7 +3693,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3645
3693
|
twitter: 'Data'
|
3646
3694
|
},
|
3647
3695
|
/**
|
3648
|
-
*
|
3696
|
+
* Lookup346: pallet_identity::types::Judgement<Balance>
|
3649
3697
|
**/ PalletIdentityJudgement: {
|
3650
3698
|
_enum: {
|
3651
3699
|
Unknown: 'Null',
|
@@ -3658,7 +3706,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3658
3706
|
}
|
3659
3707
|
},
|
3660
3708
|
/**
|
3661
|
-
*
|
3709
|
+
* Lookup348: sp_runtime::MultiSignature
|
3662
3710
|
**/ SpRuntimeMultiSignature: {
|
3663
3711
|
_enum: {
|
3664
3712
|
Ed25519: '[u8;64]',
|
@@ -3667,7 +3715,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3667
3715
|
}
|
3668
3716
|
},
|
3669
3717
|
/**
|
3670
|
-
*
|
3718
|
+
* Lookup349: pallet_utility::pallet::Call<T>
|
3671
3719
|
**/ PalletUtilityCall: {
|
3672
3720
|
_enum: {
|
3673
3721
|
batch: {
|
@@ -3694,7 +3742,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3694
3742
|
}
|
3695
3743
|
},
|
3696
3744
|
/**
|
3697
|
-
*
|
3745
|
+
* Lookup351: tangle_testnet_runtime::OriginCaller
|
3698
3746
|
**/ TangleTestnetRuntimeOriginCaller: {
|
3699
3747
|
_enum: {
|
3700
3748
|
__Unused0: 'Null',
|
@@ -3734,7 +3782,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3734
3782
|
}
|
3735
3783
|
},
|
3736
3784
|
/**
|
3737
|
-
*
|
3785
|
+
* Lookup352: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
|
3738
3786
|
**/ FrameSupportDispatchRawOrigin: {
|
3739
3787
|
_enum: {
|
3740
3788
|
Root: 'Null',
|
@@ -3743,7 +3791,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3743
3791
|
}
|
3744
3792
|
},
|
3745
3793
|
/**
|
3746
|
-
*
|
3794
|
+
* Lookup353: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>
|
3747
3795
|
**/ PalletCollectiveRawOrigin: {
|
3748
3796
|
_enum: {
|
3749
3797
|
Members: '(u32,u32)',
|
@@ -3752,14 +3800,14 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3752
3800
|
}
|
3753
3801
|
},
|
3754
3802
|
/**
|
3755
|
-
*
|
3803
|
+
* Lookup354: pallet_ethereum::RawOrigin
|
3756
3804
|
**/ PalletEthereumRawOrigin: {
|
3757
3805
|
_enum: {
|
3758
3806
|
EthereumTransaction: 'H160'
|
3759
3807
|
}
|
3760
3808
|
},
|
3761
3809
|
/**
|
3762
|
-
*
|
3810
|
+
* Lookup355: pallet_multisig::pallet::Call<T>
|
3763
3811
|
**/ PalletMultisigCall: {
|
3764
3812
|
_enum: {
|
3765
3813
|
as_multi_threshold_1: {
|
@@ -3789,7 +3837,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3789
3837
|
}
|
3790
3838
|
},
|
3791
3839
|
/**
|
3792
|
-
*
|
3840
|
+
* Lookup357: pallet_ethereum::pallet::Call<T>
|
3793
3841
|
**/ PalletEthereumCall: {
|
3794
3842
|
_enum: {
|
3795
3843
|
transact: {
|
@@ -3798,7 +3846,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3798
3846
|
}
|
3799
3847
|
},
|
3800
3848
|
/**
|
3801
|
-
*
|
3849
|
+
* Lookup358: ethereum::transaction::TransactionV2
|
3802
3850
|
**/ EthereumTransactionTransactionV2: {
|
3803
3851
|
_enum: {
|
3804
3852
|
Legacy: 'EthereumTransactionLegacyTransaction',
|
@@ -3807,7 +3855,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3807
3855
|
}
|
3808
3856
|
},
|
3809
3857
|
/**
|
3810
|
-
*
|
3858
|
+
* Lookup359: ethereum::transaction::LegacyTransaction
|
3811
3859
|
**/ EthereumTransactionLegacyTransaction: {
|
3812
3860
|
nonce: 'U256',
|
3813
3861
|
gasPrice: 'U256',
|
@@ -3818,7 +3866,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3818
3866
|
signature: 'EthereumTransactionTransactionSignature'
|
3819
3867
|
},
|
3820
3868
|
/**
|
3821
|
-
*
|
3869
|
+
* Lookup360: ethereum::transaction::TransactionAction
|
3822
3870
|
**/ EthereumTransactionTransactionAction: {
|
3823
3871
|
_enum: {
|
3824
3872
|
Call: 'H160',
|
@@ -3826,14 +3874,14 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3826
3874
|
}
|
3827
3875
|
},
|
3828
3876
|
/**
|
3829
|
-
*
|
3877
|
+
* Lookup361: ethereum::transaction::TransactionSignature
|
3830
3878
|
**/ EthereumTransactionTransactionSignature: {
|
3831
3879
|
v: 'u64',
|
3832
3880
|
r: 'H256',
|
3833
3881
|
s: 'H256'
|
3834
3882
|
},
|
3835
3883
|
/**
|
3836
|
-
*
|
3884
|
+
* Lookup363: ethereum::transaction::EIP2930Transaction
|
3837
3885
|
**/ EthereumTransactionEip2930Transaction: {
|
3838
3886
|
chainId: 'u64',
|
3839
3887
|
nonce: 'U256',
|
@@ -3848,13 +3896,13 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3848
3896
|
s: 'H256'
|
3849
3897
|
},
|
3850
3898
|
/**
|
3851
|
-
*
|
3899
|
+
* Lookup365: ethereum::transaction::AccessListItem
|
3852
3900
|
**/ EthereumTransactionAccessListItem: {
|
3853
3901
|
address: 'H160',
|
3854
3902
|
storageKeys: 'Vec<H256>'
|
3855
3903
|
},
|
3856
3904
|
/**
|
3857
|
-
*
|
3905
|
+
* Lookup366: ethereum::transaction::EIP1559Transaction
|
3858
3906
|
**/ EthereumTransactionEip1559Transaction: {
|
3859
3907
|
chainId: 'u64',
|
3860
3908
|
nonce: 'U256',
|
@@ -3870,7 +3918,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3870
3918
|
s: 'H256'
|
3871
3919
|
},
|
3872
3920
|
/**
|
3873
|
-
*
|
3921
|
+
* Lookup367: pallet_evm::pallet::Call<T>
|
3874
3922
|
**/ PalletEvmCall: {
|
3875
3923
|
_enum: {
|
3876
3924
|
withdraw: {
|
@@ -3912,7 +3960,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3912
3960
|
}
|
3913
3961
|
},
|
3914
3962
|
/**
|
3915
|
-
*
|
3963
|
+
* Lookup371: pallet_dynamic_fee::pallet::Call<T>
|
3916
3964
|
**/ PalletDynamicFeeCall: {
|
3917
3965
|
_enum: {
|
3918
3966
|
note_min_gas_price_target: {
|
@@ -3921,7 +3969,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3921
3969
|
}
|
3922
3970
|
},
|
3923
3971
|
/**
|
3924
|
-
*
|
3972
|
+
* Lookup372: pallet_base_fee::pallet::Call<T>
|
3925
3973
|
**/ PalletBaseFeeCall: {
|
3926
3974
|
_enum: {
|
3927
3975
|
set_base_fee_per_gas: {
|
@@ -3933,7 +3981,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3933
3981
|
}
|
3934
3982
|
},
|
3935
3983
|
/**
|
3936
|
-
*
|
3984
|
+
* Lookup373: pallet_hotfix_sufficients::pallet::Call<T>
|
3937
3985
|
**/ PalletHotfixSufficientsCall: {
|
3938
3986
|
_enum: {
|
3939
3987
|
hotfix_inc_account_sufficients: {
|
@@ -3942,7 +3990,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3942
3990
|
}
|
3943
3991
|
},
|
3944
3992
|
/**
|
3945
|
-
*
|
3993
|
+
* Lookup375: pallet_airdrop_claims::pallet::Call<T>
|
3946
3994
|
**/ PalletAirdropClaimsCall: {
|
3947
3995
|
_enum: {
|
3948
3996
|
claim: {
|
@@ -3980,7 +4028,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3980
4028
|
}
|
3981
4029
|
},
|
3982
4030
|
/**
|
3983
|
-
*
|
4031
|
+
* Lookup377: pallet_airdrop_claims::utils::MultiAddressSignature
|
3984
4032
|
**/ PalletAirdropClaimsUtilsMultiAddressSignature: {
|
3985
4033
|
_enum: {
|
3986
4034
|
EVM: 'PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature',
|
@@ -3988,13 +4036,13 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
3988
4036
|
}
|
3989
4037
|
},
|
3990
4038
|
/**
|
3991
|
-
*
|
4039
|
+
* Lookup378: pallet_airdrop_claims::utils::ethereum_address::EcdsaSignature
|
3992
4040
|
**/ PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature: '[u8;65]',
|
3993
4041
|
/**
|
3994
|
-
*
|
4042
|
+
* Lookup379: pallet_airdrop_claims::utils::Sr25519Signature
|
3995
4043
|
**/ PalletAirdropClaimsUtilsSr25519Signature: '[u8;64]',
|
3996
4044
|
/**
|
3997
|
-
*
|
4045
|
+
* Lookup385: pallet_airdrop_claims::StatementKind
|
3998
4046
|
**/ PalletAirdropClaimsStatementKind: {
|
3999
4047
|
_enum: [
|
4000
4048
|
'Regular',
|
@@ -4002,7 +4050,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4002
4050
|
]
|
4003
4051
|
},
|
4004
4052
|
/**
|
4005
|
-
*
|
4053
|
+
* Lookup386: pallet_proxy::pallet::Call<T>
|
4006
4054
|
**/ PalletProxyCall: {
|
4007
4055
|
_enum: {
|
4008
4056
|
proxy: {
|
@@ -4054,7 +4102,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4054
4102
|
}
|
4055
4103
|
},
|
4056
4104
|
/**
|
4057
|
-
*
|
4105
|
+
* Lookup388: pallet_multi_asset_delegation::pallet::Call<T>
|
4058
4106
|
**/ PalletMultiAssetDelegationCall: {
|
4059
4107
|
_enum: {
|
4060
4108
|
join_operators: {
|
@@ -4120,20 +4168,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4120
4168
|
}
|
4121
4169
|
},
|
4122
4170
|
/**
|
4123
|
-
*
|
4124
|
-
**/ TanglePrimitivesRewardsLockMultiplier: {
|
4125
|
-
_enum: [
|
4126
|
-
'__Unused0',
|
4127
|
-
'OneMonth',
|
4128
|
-
'TwoMonths',
|
4129
|
-
'ThreeMonths',
|
4130
|
-
'__Unused4',
|
4131
|
-
'__Unused5',
|
4132
|
-
'SixMonths'
|
4133
|
-
]
|
4134
|
-
},
|
4135
|
-
/**
|
4136
|
-
* Lookup389: pallet_multi_asset_delegation::types::delegator::DelegatorBlueprintSelection<tangle_testnet_runtime::MaxDelegatorBlueprints>
|
4171
|
+
* Lookup390: pallet_multi_asset_delegation::types::delegator::DelegatorBlueprintSelection<tangle_testnet_runtime::MaxDelegatorBlueprints>
|
4137
4172
|
**/ PalletMultiAssetDelegationDelegatorDelegatorBlueprintSelection: {
|
4138
4173
|
_enum: {
|
4139
4174
|
Fixed: 'Vec<u64>',
|
@@ -4141,10 +4176,10 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4141
4176
|
}
|
4142
4177
|
},
|
4143
4178
|
/**
|
4144
|
-
*
|
4179
|
+
* Lookup391: tangle_testnet_runtime::MaxDelegatorBlueprints
|
4145
4180
|
**/ TangleTestnetRuntimeMaxDelegatorBlueprints: 'Null',
|
4146
4181
|
/**
|
4147
|
-
*
|
4182
|
+
* Lookup394: pallet_services::module::Call<T>
|
4148
4183
|
**/ PalletServicesModuleCall: {
|
4149
4184
|
_enum: {
|
4150
4185
|
create_blueprint: {
|
@@ -4212,7 +4247,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4212
4247
|
}
|
4213
4248
|
},
|
4214
4249
|
/**
|
4215
|
-
*
|
4250
|
+
* Lookup395: tangle_primitives::services::ServiceBlueprint<C>
|
4216
4251
|
**/ TanglePrimitivesServicesServiceBlueprint: {
|
4217
4252
|
metadata: 'TanglePrimitivesServicesServiceMetadata',
|
4218
4253
|
jobs: 'Vec<TanglePrimitivesServicesJobDefinition>',
|
@@ -4223,7 +4258,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4223
4258
|
gadget: 'TanglePrimitivesServicesGadget'
|
4224
4259
|
},
|
4225
4260
|
/**
|
4226
|
-
*
|
4261
|
+
* Lookup396: tangle_primitives::services::ServiceMetadata<C>
|
4227
4262
|
**/ TanglePrimitivesServicesServiceMetadata: {
|
4228
4263
|
name: 'Bytes',
|
4229
4264
|
description: 'Option<Bytes>',
|
@@ -4235,20 +4270,20 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4235
4270
|
license: 'Option<Bytes>'
|
4236
4271
|
},
|
4237
4272
|
/**
|
4238
|
-
*
|
4273
|
+
* Lookup401: tangle_primitives::services::JobDefinition<C>
|
4239
4274
|
**/ TanglePrimitivesServicesJobDefinition: {
|
4240
4275
|
metadata: 'TanglePrimitivesServicesJobMetadata',
|
4241
4276
|
params: 'Vec<TanglePrimitivesServicesFieldFieldType>',
|
4242
4277
|
result: 'Vec<TanglePrimitivesServicesFieldFieldType>'
|
4243
4278
|
},
|
4244
4279
|
/**
|
4245
|
-
*
|
4280
|
+
* Lookup402: tangle_primitives::services::JobMetadata<C>
|
4246
4281
|
**/ TanglePrimitivesServicesJobMetadata: {
|
4247
4282
|
name: 'Bytes',
|
4248
4283
|
description: 'Option<Bytes>'
|
4249
4284
|
},
|
4250
4285
|
/**
|
4251
|
-
*
|
4286
|
+
* Lookup404: tangle_primitives::services::field::FieldType
|
4252
4287
|
**/ TanglePrimitivesServicesFieldFieldType: {
|
4253
4288
|
_enum: {
|
4254
4289
|
Void: 'Null',
|
@@ -4355,14 +4390,14 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4355
4390
|
}
|
4356
4391
|
},
|
4357
4392
|
/**
|
4358
|
-
*
|
4393
|
+
* Lookup410: tangle_primitives::services::BlueprintServiceManager
|
4359
4394
|
**/ TanglePrimitivesServicesBlueprintServiceManager: {
|
4360
4395
|
_enum: {
|
4361
4396
|
Evm: 'H160'
|
4362
4397
|
}
|
4363
4398
|
},
|
4364
4399
|
/**
|
4365
|
-
*
|
4400
|
+
* Lookup411: tangle_primitives::services::MasterBlueprintServiceManagerRevision
|
4366
4401
|
**/ TanglePrimitivesServicesMasterBlueprintServiceManagerRevision: {
|
4367
4402
|
_enum: {
|
4368
4403
|
Latest: 'Null',
|
@@ -4370,7 +4405,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4370
4405
|
}
|
4371
4406
|
},
|
4372
4407
|
/**
|
4373
|
-
*
|
4408
|
+
* Lookup412: tangle_primitives::services::Gadget<C>
|
4374
4409
|
**/ TanglePrimitivesServicesGadget: {
|
4375
4410
|
_enum: {
|
4376
4411
|
Wasm: 'TanglePrimitivesServicesWasmGadget',
|
@@ -4379,13 +4414,13 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4379
4414
|
}
|
4380
4415
|
},
|
4381
4416
|
/**
|
4382
|
-
*
|
4417
|
+
* Lookup413: tangle_primitives::services::WasmGadget<C>
|
4383
4418
|
**/ TanglePrimitivesServicesWasmGadget: {
|
4384
4419
|
runtime: 'TanglePrimitivesServicesWasmRuntime',
|
4385
4420
|
sources: 'Vec<TanglePrimitivesServicesGadgetSource>'
|
4386
4421
|
},
|
4387
4422
|
/**
|
4388
|
-
*
|
4423
|
+
* Lookup414: tangle_primitives::services::WasmRuntime
|
4389
4424
|
**/ TanglePrimitivesServicesWasmRuntime: {
|
4390
4425
|
_enum: [
|
4391
4426
|
'Wasmtime',
|
@@ -4393,12 +4428,12 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4393
4428
|
]
|
4394
4429
|
},
|
4395
4430
|
/**
|
4396
|
-
*
|
4431
|
+
* Lookup416: tangle_primitives::services::GadgetSource<C>
|
4397
4432
|
**/ TanglePrimitivesServicesGadgetSource: {
|
4398
4433
|
fetcher: 'TanglePrimitivesServicesGadgetSourceFetcher'
|
4399
4434
|
},
|
4400
4435
|
/**
|
4401
|
-
*
|
4436
|
+
* Lookup417: tangle_primitives::services::GadgetSourceFetcher<C>
|
4402
4437
|
**/ TanglePrimitivesServicesGadgetSourceFetcher: {
|
4403
4438
|
_enum: {
|
4404
4439
|
IPFS: 'Bytes',
|
@@ -4408,7 +4443,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4408
4443
|
}
|
4409
4444
|
},
|
4410
4445
|
/**
|
4411
|
-
*
|
4446
|
+
* Lookup419: tangle_primitives::services::GithubFetcher<C>
|
4412
4447
|
**/ TanglePrimitivesServicesGithubFetcher: {
|
4413
4448
|
owner: 'Bytes',
|
4414
4449
|
repo: 'Bytes',
|
@@ -4416,7 +4451,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4416
4451
|
binaries: 'Vec<TanglePrimitivesServicesGadgetBinary>'
|
4417
4452
|
},
|
4418
4453
|
/**
|
4419
|
-
*
|
4454
|
+
* Lookup427: tangle_primitives::services::GadgetBinary<C>
|
4420
4455
|
**/ TanglePrimitivesServicesGadgetBinary: {
|
4421
4456
|
arch: 'TanglePrimitivesServicesArchitecture',
|
4422
4457
|
os: 'TanglePrimitivesServicesOperatingSystem',
|
@@ -4424,7 +4459,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4424
4459
|
sha256: '[u8;32]'
|
4425
4460
|
},
|
4426
4461
|
/**
|
4427
|
-
*
|
4462
|
+
* Lookup428: tangle_primitives::services::Architecture
|
4428
4463
|
**/ TanglePrimitivesServicesArchitecture: {
|
4429
4464
|
_enum: [
|
4430
4465
|
'Wasm',
|
@@ -4440,7 +4475,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4440
4475
|
]
|
4441
4476
|
},
|
4442
4477
|
/**
|
4443
|
-
*
|
4478
|
+
* Lookup429: tangle_primitives::services::OperatingSystem
|
4444
4479
|
**/ TanglePrimitivesServicesOperatingSystem: {
|
4445
4480
|
_enum: [
|
4446
4481
|
'Unknown',
|
@@ -4451,7 +4486,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4451
4486
|
]
|
4452
4487
|
},
|
4453
4488
|
/**
|
4454
|
-
*
|
4489
|
+
* Lookup433: tangle_primitives::services::ImageRegistryFetcher<C>
|
4455
4490
|
**/ TanglePrimitivesServicesImageRegistryFetcher: {
|
4456
4491
|
_alias: {
|
4457
4492
|
registry_: 'registry'
|
@@ -4461,24 +4496,24 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4461
4496
|
tag: 'Bytes'
|
4462
4497
|
},
|
4463
4498
|
/**
|
4464
|
-
*
|
4499
|
+
* Lookup440: tangle_primitives::services::TestFetcher<C>
|
4465
4500
|
**/ TanglePrimitivesServicesTestFetcher: {
|
4466
4501
|
cargoPackage: 'Bytes',
|
4467
4502
|
cargoBin: 'Bytes',
|
4468
4503
|
basePath: 'Bytes'
|
4469
4504
|
},
|
4470
4505
|
/**
|
4471
|
-
*
|
4506
|
+
* Lookup442: tangle_primitives::services::NativeGadget<C>
|
4472
4507
|
**/ TanglePrimitivesServicesNativeGadget: {
|
4473
4508
|
sources: 'Vec<TanglePrimitivesServicesGadgetSource>'
|
4474
4509
|
},
|
4475
4510
|
/**
|
4476
|
-
*
|
4511
|
+
* Lookup443: tangle_primitives::services::ContainerGadget<C>
|
4477
4512
|
**/ TanglePrimitivesServicesContainerGadget: {
|
4478
4513
|
sources: 'Vec<TanglePrimitivesServicesGadgetSource>'
|
4479
4514
|
},
|
4480
4515
|
/**
|
4481
|
-
*
|
4516
|
+
* Lookup446: pallet_tangle_lst::pallet::Call<T>
|
4482
4517
|
**/ PalletTangleLstCall: {
|
4483
4518
|
_enum: {
|
4484
4519
|
join: {
|
@@ -4576,18 +4611,21 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4576
4611
|
set_commission_claim_permission: {
|
4577
4612
|
poolId: 'u32',
|
4578
4613
|
permission: 'Option<PalletTangleLstCommissionCommissionClaimPermission>'
|
4614
|
+
},
|
4615
|
+
set_last_pool_id: {
|
4616
|
+
poolId: 'u32'
|
4579
4617
|
}
|
4580
4618
|
}
|
4581
4619
|
},
|
4582
4620
|
/**
|
4583
|
-
*
|
4621
|
+
* Lookup447: pallet_tangle_lst::types::BondExtra<Balance>
|
4584
4622
|
**/ PalletTangleLstBondExtra: {
|
4585
4623
|
_enum: {
|
4586
4624
|
FreeBalance: 'u128'
|
4587
4625
|
}
|
4588
4626
|
},
|
4589
4627
|
/**
|
4590
|
-
*
|
4628
|
+
* Lookup452: pallet_tangle_lst::types::ConfigOp<T>
|
4591
4629
|
**/ PalletTangleLstConfigOpU128: {
|
4592
4630
|
_enum: {
|
4593
4631
|
Noop: 'Null',
|
@@ -4596,7 +4634,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4596
4634
|
}
|
4597
4635
|
},
|
4598
4636
|
/**
|
4599
|
-
*
|
4637
|
+
* Lookup453: pallet_tangle_lst::types::ConfigOp<T>
|
4600
4638
|
**/ PalletTangleLstConfigOpU32: {
|
4601
4639
|
_enum: {
|
4602
4640
|
Noop: 'Null',
|
@@ -4605,7 +4643,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4605
4643
|
}
|
4606
4644
|
},
|
4607
4645
|
/**
|
4608
|
-
*
|
4646
|
+
* Lookup454: pallet_tangle_lst::types::ConfigOp<sp_arithmetic::per_things::Perbill>
|
4609
4647
|
**/ PalletTangleLstConfigOpPerbill: {
|
4610
4648
|
_enum: {
|
4611
4649
|
Noop: 'Null',
|
@@ -4614,7 +4652,7 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4614
4652
|
}
|
4615
4653
|
},
|
4616
4654
|
/**
|
4617
|
-
*
|
4655
|
+
* Lookup455: pallet_tangle_lst::types::ConfigOp<sp_core::crypto::AccountId32>
|
4618
4656
|
**/ PalletTangleLstConfigOpAccountId32: {
|
4619
4657
|
_enum: {
|
4620
4658
|
Noop: 'Null',
|
@@ -4623,33 +4661,40 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
4623
4661
|
}
|
4624
4662
|
},
|
4625
4663
|
/**
|
4626
|
-
*
|
4664
|
+
* Lookup456: pallet_rewards::pallet::Call<T>
|
4627
4665
|
**/ PalletRewardsCall: {
|
4628
4666
|
_enum: {
|
4629
4667
|
__Unused0: 'Null',
|
4630
4668
|
claim_rewards: {
|
4631
4669
|
asset: 'TanglePrimitivesServicesAsset'
|
4632
4670
|
},
|
4671
|
+
claim_rewards_other: {
|
4672
|
+
who: 'AccountId32',
|
4673
|
+
asset: 'TanglePrimitivesServicesAsset'
|
4674
|
+
},
|
4633
4675
|
manage_asset_reward_vault: {
|
4634
4676
|
vaultId: 'u32',
|
4635
4677
|
assetId: 'TanglePrimitivesServicesAsset',
|
4636
4678
|
action: 'PalletRewardsAssetAction'
|
4637
4679
|
},
|
4680
|
+
create_reward_vault: {
|
4681
|
+
vaultId: 'u32',
|
4682
|
+
newConfig: 'PalletRewardsRewardConfigForAssetVault'
|
4683
|
+
},
|
4638
4684
|
update_vault_reward_config: {
|
4639
4685
|
vaultId: 'u32',
|
4640
4686
|
newConfig: 'PalletRewardsRewardConfigForAssetVault'
|
4687
|
+
},
|
4688
|
+
update_decay_config: {
|
4689
|
+
startPeriod: 'u64',
|
4690
|
+
rate: 'Percent'
|
4691
|
+
},
|
4692
|
+
update_apy_blocks: {
|
4693
|
+
blocks: 'u64'
|
4641
4694
|
}
|
4642
4695
|
}
|
4643
4696
|
},
|
4644
4697
|
/**
|
4645
|
-
* Lookup456: pallet_rewards::types::RewardConfigForAssetVault<Balance>
|
4646
|
-
**/ PalletRewardsRewardConfigForAssetVault: {
|
4647
|
-
apy: 'Percent',
|
4648
|
-
incentiveCap: 'u128',
|
4649
|
-
depositCap: 'u128',
|
4650
|
-
boostMultiplier: 'Option<u32>'
|
4651
|
-
},
|
4652
|
-
/**
|
4653
4698
|
* Lookup457: pallet_sudo::pallet::Error<T>
|
4654
4699
|
**/ PalletSudoError: {
|
4655
4700
|
_enum: [
|
@@ -6068,7 +6113,6 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
6068
6113
|
'CannotExit',
|
6069
6114
|
'AlreadyLeaving',
|
6070
6115
|
'NotLeavingOperator',
|
6071
|
-
'NotLeavingRound',
|
6072
6116
|
'LeavingRoundNotReached',
|
6073
6117
|
'NoScheduledBondLess',
|
6074
6118
|
'BondLessRequestNotSatisfied',
|
@@ -6113,7 +6157,8 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
6113
6157
|
'EVMAbiEncode',
|
6114
6158
|
'EVMAbiDecode',
|
6115
6159
|
'LockViolation',
|
6116
|
-
'DepositExceedsCapForAsset'
|
6160
|
+
'DepositExceedsCapForAsset',
|
6161
|
+
'OverflowRisk'
|
6117
6162
|
]
|
6118
6163
|
},
|
6119
6164
|
/**
|
@@ -6396,7 +6441,15 @@ function typesFromDefs(definitions, initTypes = {}) {
|
|
6396
6441
|
'DuplicateBlueprintId',
|
6397
6442
|
'BlueprintIdNotFound',
|
6398
6443
|
'RewardConfigNotFound',
|
6399
|
-
'
|
6444
|
+
'CannotCalculatePropotionalApy',
|
6445
|
+
'CannotCalculateRewardPerBlock',
|
6446
|
+
'IncentiveCapGreaterThanDepositCap',
|
6447
|
+
'BoostMultiplierMustBeOne',
|
6448
|
+
'VaultAlreadyExists',
|
6449
|
+
'TotalDepositLessThanIncentiveCap',
|
6450
|
+
'PotAlreadyExists',
|
6451
|
+
'PotAccountNotFound',
|
6452
|
+
'InvalidDecayRate'
|
6400
6453
|
]
|
6401
6454
|
},
|
6402
6455
|
/**
|