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