@webb-tools/tangle-substrate-types 0.9.1 → 0.9.4
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 +437 -343
- package/build/index.d.ts +1080 -700
- package/build/index.mjs +437 -343
- package/package.json +1 -1
    
        package/build/index.mjs
    CHANGED
    
    | @@ -1795,6 +1795,14 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 1795 1795 | 
             
                            vaultId: 'u128',
         | 
| 1796 1796 | 
             
                            assetId: 'u128',
         | 
| 1797 1797 | 
             
                            action: 'PalletMultiAssetDelegationRewardsAssetAction'
         | 
| 1798 | 
            +
                        },
         | 
| 1799 | 
            +
                        OperatorSlashed: {
         | 
| 1800 | 
            +
                            who: 'AccountId32',
         | 
| 1801 | 
            +
                            amount: 'u128'
         | 
| 1802 | 
            +
                        },
         | 
| 1803 | 
            +
                        DelegatorSlashed: {
         | 
| 1804 | 
            +
                            who: 'AccountId32',
         | 
| 1805 | 
            +
                            amount: 'u128'
         | 
| 1798 1806 | 
             
                        }
         | 
| 1799 1807 | 
             
                    }
         | 
| 1800 1808 | 
             
                },
         | 
| @@ -1828,11 +1836,6 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 1828 1836 | 
             
                            operator: 'AccountId32',
         | 
| 1829 1837 | 
             
                            blueprintId: 'u64'
         | 
| 1830 1838 | 
             
                        },
         | 
| 1831 | 
            -
                        ApprovalPreferenceUpdated: {
         | 
| 1832 | 
            -
                            operator: 'AccountId32',
         | 
| 1833 | 
            -
                            blueprintId: 'u64',
         | 
| 1834 | 
            -
                            approvalPreference: 'TanglePrimitivesServicesApprovalPreference'
         | 
| 1835 | 
            -
                        },
         | 
| 1836 1839 | 
             
                        PriceTargetsUpdated: {
         | 
| 1837 1840 | 
             
                            operator: 'AccountId32',
         | 
| 1838 1841 | 
             
                            blueprintId: 'u64',
         | 
| @@ -1858,16 +1861,9 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 1858 1861 | 
             
                            requestId: 'u64',
         | 
| 1859 1862 | 
             
                            blueprintId: 'u64'
         | 
| 1860 1863 | 
             
                        },
         | 
| 1861 | 
            -
                        ServiceRequestUpdated: {
         | 
| 1862 | 
            -
                            owner: 'AccountId32',
         | 
| 1863 | 
            -
                            requestId: 'u64',
         | 
| 1864 | 
            -
                            blueprintId: 'u64',
         | 
| 1865 | 
            -
                            pendingApprovals: 'Vec<AccountId32>',
         | 
| 1866 | 
            -
                            approved: 'Vec<AccountId32>'
         | 
| 1867 | 
            -
                        },
         | 
| 1868 1864 | 
             
                        ServiceInitiated: {
         | 
| 1869 1865 | 
             
                            owner: 'AccountId32',
         | 
| 1870 | 
            -
                            requestId: ' | 
| 1866 | 
            +
                            requestId: 'u64',
         | 
| 1871 1867 | 
             
                            serviceId: 'u64',
         | 
| 1872 1868 | 
             
                            blueprintId: 'u64',
         | 
| 1873 1869 | 
             
                            assets: 'Vec<u128>'
         | 
| @@ -1901,6 +1897,22 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 1901 1897 | 
             
                            to: 'H160',
         | 
| 1902 1898 | 
             
                            data: 'Bytes',
         | 
| 1903 1899 | 
             
                            reason: 'Bytes'
         | 
| 1900 | 
            +
                        },
         | 
| 1901 | 
            +
                        UnappliedSlash: {
         | 
| 1902 | 
            +
                            index: 'u32',
         | 
| 1903 | 
            +
                            operator: 'AccountId32',
         | 
| 1904 | 
            +
                            amount: 'u128',
         | 
| 1905 | 
            +
                            serviceId: 'u64',
         | 
| 1906 | 
            +
                            blueprintId: 'u64',
         | 
| 1907 | 
            +
                            era: 'u32'
         | 
| 1908 | 
            +
                        },
         | 
| 1909 | 
            +
                        SlashDiscarded: {
         | 
| 1910 | 
            +
                            index: 'u32',
         | 
| 1911 | 
            +
                            operator: 'AccountId32',
         | 
| 1912 | 
            +
                            amount: 'u128',
         | 
| 1913 | 
            +
                            serviceId: 'u64',
         | 
| 1914 | 
            +
                            blueprintId: 'u64',
         | 
| 1915 | 
            +
                            era: 'u32'
         | 
| 1904 1916 | 
             
                        }
         | 
| 1905 1917 | 
             
                    }
         | 
| 1906 1918 | 
             
                },
         | 
| @@ -1908,19 +1920,10 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 1908 1920 | 
             
               * Lookup127: tangle_primitives::services::OperatorPreferences
         | 
| 1909 1921 | 
             
               **/ TanglePrimitivesServicesOperatorPreferences: {
         | 
| 1910 1922 | 
             
                    key: '[u8;33]',
         | 
| 1911 | 
            -
                    approval: 'TanglePrimitivesServicesApprovalPreference',
         | 
| 1912 1923 | 
             
                    priceTargets: 'TanglePrimitivesServicesPriceTargets'
         | 
| 1913 1924 | 
             
                },
         | 
| 1914 1925 | 
             
                /**
         | 
| 1915 | 
            -
               * Lookup129: tangle_primitives::services:: | 
| 1916 | 
            -
               **/ TanglePrimitivesServicesApprovalPreference: {
         | 
| 1917 | 
            -
                    _enum: [
         | 
| 1918 | 
            -
                        'None',
         | 
| 1919 | 
            -
                        'Required'
         | 
| 1920 | 
            -
                    ]
         | 
| 1921 | 
            -
                },
         | 
| 1922 | 
            -
                /**
         | 
| 1923 | 
            -
               * Lookup130: tangle_primitives::services::PriceTargets
         | 
| 1926 | 
            +
               * Lookup129: tangle_primitives::services::PriceTargets
         | 
| 1924 1927 | 
             
               **/ TanglePrimitivesServicesPriceTargets: {
         | 
| 1925 1928 | 
             
                    cpu: 'u64',
         | 
| 1926 1929 | 
             
                    mem: 'u64',
         | 
| @@ -1929,7 +1932,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 1929 1932 | 
             
                    storageNvme: 'u64'
         | 
| 1930 1933 | 
             
                },
         | 
| 1931 1934 | 
             
                /**
         | 
| 1932 | 
            -
               *  | 
| 1935 | 
            +
               * Lookup131: tangle_primitives::services::field::Field<C, sp_core::crypto::AccountId32>
         | 
| 1933 1936 | 
             
               **/ TanglePrimitivesServicesField: {
         | 
| 1934 1937 | 
             
                    _enum: {
         | 
| 1935 1938 | 
             
                        None: 'Null',
         | 
| @@ -2036,7 +2039,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2036 2039 | 
             
                    }
         | 
| 2037 2040 | 
             
                },
         | 
| 2038 2041 | 
             
                /**
         | 
| 2039 | 
            -
               *  | 
| 2042 | 
            +
               * Lookup144: pallet_tangle_lst::pallet::Event<T>
         | 
| 2040 2043 | 
             
               **/ PalletTangleLstEvent: {
         | 
| 2041 2044 | 
             
                    _enum: {
         | 
| 2042 2045 | 
             
                        Created: {
         | 
| @@ -2123,7 +2126,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2123 2126 | 
             
                    }
         | 
| 2124 2127 | 
             
                },
         | 
| 2125 2128 | 
             
                /**
         | 
| 2126 | 
            -
               *  | 
| 2129 | 
            +
               * Lookup145: pallet_tangle_lst::types::pools::PoolState
         | 
| 2127 2130 | 
             
               **/ PalletTangleLstPoolsPoolState: {
         | 
| 2128 2131 | 
             
                    _enum: [
         | 
| 2129 2132 | 
             
                        'Open',
         | 
| @@ -2132,13 +2135,13 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2132 2135 | 
             
                    ]
         | 
| 2133 2136 | 
             
                },
         | 
| 2134 2137 | 
             
                /**
         | 
| 2135 | 
            -
               *  | 
| 2138 | 
            +
               * Lookup146: pallet_tangle_lst::types::commission::CommissionChangeRate<BlockNumber>
         | 
| 2136 2139 | 
             
               **/ PalletTangleLstCommissionCommissionChangeRate: {
         | 
| 2137 2140 | 
             
                    maxIncrease: 'Perbill',
         | 
| 2138 2141 | 
             
                    minDelay: 'u64'
         | 
| 2139 2142 | 
             
                },
         | 
| 2140 2143 | 
             
                /**
         | 
| 2141 | 
            -
               *  | 
| 2144 | 
            +
               * Lookup148: pallet_tangle_lst::types::commission::CommissionClaimPermission<sp_core::crypto::AccountId32>
         | 
| 2142 2145 | 
             
               **/ PalletTangleLstCommissionCommissionClaimPermission: {
         | 
| 2143 2146 | 
             
                    _enum: {
         | 
| 2144 2147 | 
             
                        Permissionless: 'Null',
         | 
| @@ -2146,7 +2149,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2146 2149 | 
             
                    }
         | 
| 2147 2150 | 
             
                },
         | 
| 2148 2151 | 
             
                /**
         | 
| 2149 | 
            -
               *  | 
| 2152 | 
            +
               * Lookup149: frame_system::Phase
         | 
| 2150 2153 | 
             
               **/ FrameSystemPhase: {
         | 
| 2151 2154 | 
             
                    _enum: {
         | 
| 2152 2155 | 
             
                        ApplyExtrinsic: 'u32',
         | 
| @@ -2155,19 +2158,19 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2155 2158 | 
             
                    }
         | 
| 2156 2159 | 
             
                },
         | 
| 2157 2160 | 
             
                /**
         | 
| 2158 | 
            -
               *  | 
| 2161 | 
            +
               * Lookup151: frame_system::LastRuntimeUpgradeInfo
         | 
| 2159 2162 | 
             
               **/ FrameSystemLastRuntimeUpgradeInfo: {
         | 
| 2160 2163 | 
             
                    specVersion: 'Compact<u32>',
         | 
| 2161 2164 | 
             
                    specName: 'Text'
         | 
| 2162 2165 | 
             
                },
         | 
| 2163 2166 | 
             
                /**
         | 
| 2164 | 
            -
               *  | 
| 2167 | 
            +
               * Lookup153: frame_system::CodeUpgradeAuthorization<T>
         | 
| 2165 2168 | 
             
               **/ FrameSystemCodeUpgradeAuthorization: {
         | 
| 2166 2169 | 
             
                    codeHash: 'H256',
         | 
| 2167 2170 | 
             
                    checkVersion: 'bool'
         | 
| 2168 2171 | 
             
                },
         | 
| 2169 2172 | 
             
                /**
         | 
| 2170 | 
            -
               *  | 
| 2173 | 
            +
               * Lookup154: frame_system::pallet::Call<T>
         | 
| 2171 2174 | 
             
               **/ FrameSystemCall: {
         | 
| 2172 2175 | 
             
                    _enum: {
         | 
| 2173 2176 | 
             
                        remark: {
         | 
| @@ -2211,21 +2214,21 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2211 2214 | 
             
                    }
         | 
| 2212 2215 | 
             
                },
         | 
| 2213 2216 | 
             
                /**
         | 
| 2214 | 
            -
               *  | 
| 2217 | 
            +
               * Lookup158: frame_system::limits::BlockWeights
         | 
| 2215 2218 | 
             
               **/ FrameSystemLimitsBlockWeights: {
         | 
| 2216 2219 | 
             
                    baseBlock: 'SpWeightsWeightV2Weight',
         | 
| 2217 2220 | 
             
                    maxBlock: 'SpWeightsWeightV2Weight',
         | 
| 2218 2221 | 
             
                    perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
         | 
| 2219 2222 | 
             
                },
         | 
| 2220 2223 | 
             
                /**
         | 
| 2221 | 
            -
               *  | 
| 2224 | 
            +
               * Lookup159: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
         | 
| 2222 2225 | 
             
               **/ FrameSupportDispatchPerDispatchClassWeightsPerClass: {
         | 
| 2223 2226 | 
             
                    normal: 'FrameSystemLimitsWeightsPerClass',
         | 
| 2224 2227 | 
             
                    operational: 'FrameSystemLimitsWeightsPerClass',
         | 
| 2225 2228 | 
             
                    mandatory: 'FrameSystemLimitsWeightsPerClass'
         | 
| 2226 2229 | 
             
                },
         | 
| 2227 2230 | 
             
                /**
         | 
| 2228 | 
            -
               *  | 
| 2231 | 
            +
               * Lookup160: frame_system::limits::WeightsPerClass
         | 
| 2229 2232 | 
             
               **/ FrameSystemLimitsWeightsPerClass: {
         | 
| 2230 2233 | 
             
                    baseExtrinsic: 'SpWeightsWeightV2Weight',
         | 
| 2231 2234 | 
             
                    maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',
         | 
| @@ -2233,25 +2236,25 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2233 2236 | 
             
                    reserved: 'Option<SpWeightsWeightV2Weight>'
         | 
| 2234 2237 | 
             
                },
         | 
| 2235 2238 | 
             
                /**
         | 
| 2236 | 
            -
               *  | 
| 2239 | 
            +
               * Lookup162: frame_system::limits::BlockLength
         | 
| 2237 2240 | 
             
               **/ FrameSystemLimitsBlockLength: {
         | 
| 2238 2241 | 
             
                    max: 'FrameSupportDispatchPerDispatchClassU32'
         | 
| 2239 2242 | 
             
                },
         | 
| 2240 2243 | 
             
                /**
         | 
| 2241 | 
            -
               *  | 
| 2244 | 
            +
               * Lookup163: frame_support::dispatch::PerDispatchClass<T>
         | 
| 2242 2245 | 
             
               **/ FrameSupportDispatchPerDispatchClassU32: {
         | 
| 2243 2246 | 
             
                    normal: 'u32',
         | 
| 2244 2247 | 
             
                    operational: 'u32',
         | 
| 2245 2248 | 
             
                    mandatory: 'u32'
         | 
| 2246 2249 | 
             
                },
         | 
| 2247 2250 | 
             
                /**
         | 
| 2248 | 
            -
               *  | 
| 2251 | 
            +
               * Lookup164: sp_weights::RuntimeDbWeight
         | 
| 2249 2252 | 
             
               **/ SpWeightsRuntimeDbWeight: {
         | 
| 2250 2253 | 
             
                    read: 'u64',
         | 
| 2251 2254 | 
             
                    write: 'u64'
         | 
| 2252 2255 | 
             
                },
         | 
| 2253 2256 | 
             
                /**
         | 
| 2254 | 
            -
               *  | 
| 2257 | 
            +
               * Lookup165: sp_version::RuntimeVersion
         | 
| 2255 2258 | 
             
               **/ SpVersionRuntimeVersion: {
         | 
| 2256 2259 | 
             
                    specName: 'Text',
         | 
| 2257 2260 | 
             
                    implName: 'Text',
         | 
| @@ -2263,7 +2266,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2263 2266 | 
             
                    stateVersion: 'u8'
         | 
| 2264 2267 | 
             
                },
         | 
| 2265 2268 | 
             
                /**
         | 
| 2266 | 
            -
               *  | 
| 2269 | 
            +
               * Lookup170: frame_system::pallet::Error<T>
         | 
| 2267 2270 | 
             
               **/ FrameSystemError: {
         | 
| 2268 2271 | 
             
                    _enum: [
         | 
| 2269 2272 | 
             
                        'InvalidSpecName',
         | 
| @@ -2278,7 +2281,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2278 2281 | 
             
                    ]
         | 
| 2279 2282 | 
             
                },
         | 
| 2280 2283 | 
             
                /**
         | 
| 2281 | 
            -
               *  | 
| 2284 | 
            +
               * Lookup171: pallet_timestamp::pallet::Call<T>
         | 
| 2282 2285 | 
             
               **/ PalletTimestampCall: {
         | 
| 2283 2286 | 
             
                    _enum: {
         | 
| 2284 2287 | 
             
                        set: {
         | 
| @@ -2287,7 +2290,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2287 2290 | 
             
                    }
         | 
| 2288 2291 | 
             
                },
         | 
| 2289 2292 | 
             
                /**
         | 
| 2290 | 
            -
               *  | 
| 2293 | 
            +
               * Lookup172: pallet_sudo::pallet::Call<T>
         | 
| 2291 2294 | 
             
               **/ PalletSudoCall: {
         | 
| 2292 2295 | 
             
                    _enum: {
         | 
| 2293 2296 | 
             
                        sudo: {
         | 
| @@ -2311,7 +2314,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2311 2314 | 
             
                    }
         | 
| 2312 2315 | 
             
                },
         | 
| 2313 2316 | 
             
                /**
         | 
| 2314 | 
            -
               *  | 
| 2317 | 
            +
               * Lookup174: pallet_assets::pallet::Call<T, I>
         | 
| 2315 2318 | 
             
               **/ PalletAssetsCall: {
         | 
| 2316 2319 | 
             
                    _enum: {
         | 
| 2317 2320 | 
             
                        create: {
         | 
| @@ -2462,7 +2465,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2462 2465 | 
             
                    }
         | 
| 2463 2466 | 
             
                },
         | 
| 2464 2467 | 
             
                /**
         | 
| 2465 | 
            -
               *  | 
| 2468 | 
            +
               * Lookup176: pallet_balances::pallet::Call<T, I>
         | 
| 2466 2469 | 
             
               **/ PalletBalancesCall: {
         | 
| 2467 2470 | 
             
                    _enum: {
         | 
| 2468 2471 | 
             
                        transfer_allow_death: {
         | 
| @@ -2506,7 +2509,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2506 2509 | 
             
                    }
         | 
| 2507 2510 | 
             
                },
         | 
| 2508 2511 | 
             
                /**
         | 
| 2509 | 
            -
               *  | 
| 2512 | 
            +
               * Lookup177: pallet_balances::types::AdjustmentDirection
         | 
| 2510 2513 | 
             
               **/ PalletBalancesAdjustmentDirection: {
         | 
| 2511 2514 | 
             
                    _enum: [
         | 
| 2512 2515 | 
             
                        'Increase',
         | 
| @@ -2514,7 +2517,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2514 2517 | 
             
                    ]
         | 
| 2515 2518 | 
             
                },
         | 
| 2516 2519 | 
             
                /**
         | 
| 2517 | 
            -
               *  | 
| 2520 | 
            +
               * Lookup178: pallet_babe::pallet::Call<T>
         | 
| 2518 2521 | 
             
               **/ PalletBabeCall: {
         | 
| 2519 2522 | 
             
                    _enum: {
         | 
| 2520 2523 | 
             
                        report_equivocation: {
         | 
| @@ -2531,7 +2534,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2531 2534 | 
             
                    }
         | 
| 2532 2535 | 
             
                },
         | 
| 2533 2536 | 
             
                /**
         | 
| 2534 | 
            -
               *  | 
| 2537 | 
            +
               * Lookup179: sp_consensus_slots::EquivocationProof<sp_runtime::generic::header::Header<Number, Hash>, sp_consensus_babe::app::Public>
         | 
| 2535 2538 | 
             
               **/ SpConsensusSlotsEquivocationProof: {
         | 
| 2536 2539 | 
             
                    offender: 'SpConsensusBabeAppPublic',
         | 
| 2537 2540 | 
             
                    slot: 'u64',
         | 
| @@ -2539,7 +2542,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2539 2542 | 
             
                    secondHeader: 'SpRuntimeHeader'
         | 
| 2540 2543 | 
             
                },
         | 
| 2541 2544 | 
             
                /**
         | 
| 2542 | 
            -
               *  | 
| 2545 | 
            +
               * Lookup180: sp_runtime::generic::header::Header<Number, Hash>
         | 
| 2543 2546 | 
             
               **/ SpRuntimeHeader: {
         | 
| 2544 2547 | 
             
                    parentHash: 'H256',
         | 
| 2545 2548 | 
             
                    number: 'Compact<u64>',
         | 
| @@ -2548,17 +2551,17 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2548 2551 | 
             
                    digest: 'SpRuntimeDigest'
         | 
| 2549 2552 | 
             
                },
         | 
| 2550 2553 | 
             
                /**
         | 
| 2551 | 
            -
               *  | 
| 2554 | 
            +
               * Lookup181: sp_consensus_babe::app::Public
         | 
| 2552 2555 | 
             
               **/ SpConsensusBabeAppPublic: '[u8;32]',
         | 
| 2553 2556 | 
             
                /**
         | 
| 2554 | 
            -
               *  | 
| 2557 | 
            +
               * Lookup183: sp_session::MembershipProof
         | 
| 2555 2558 | 
             
               **/ SpSessionMembershipProof: {
         | 
| 2556 2559 | 
             
                    session: 'u32',
         | 
| 2557 2560 | 
             
                    trieNodes: 'Vec<Bytes>',
         | 
| 2558 2561 | 
             
                    validatorCount: 'u32'
         | 
| 2559 2562 | 
             
                },
         | 
| 2560 2563 | 
             
                /**
         | 
| 2561 | 
            -
               *  | 
| 2564 | 
            +
               * Lookup184: sp_consensus_babe::digests::NextConfigDescriptor
         | 
| 2562 2565 | 
             
               **/ SpConsensusBabeDigestsNextConfigDescriptor: {
         | 
| 2563 2566 | 
             
                    _enum: {
         | 
| 2564 2567 | 
             
                        __Unused0: 'Null',
         | 
| @@ -2569,7 +2572,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2569 2572 | 
             
                    }
         | 
| 2570 2573 | 
             
                },
         | 
| 2571 2574 | 
             
                /**
         | 
| 2572 | 
            -
               *  | 
| 2575 | 
            +
               * Lookup186: sp_consensus_babe::AllowedSlots
         | 
| 2573 2576 | 
             
               **/ SpConsensusBabeAllowedSlots: {
         | 
| 2574 2577 | 
             
                    _enum: [
         | 
| 2575 2578 | 
             
                        'PrimarySlots',
         | 
| @@ -2578,7 +2581,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2578 2581 | 
             
                    ]
         | 
| 2579 2582 | 
             
                },
         | 
| 2580 2583 | 
             
                /**
         | 
| 2581 | 
            -
               *  | 
| 2584 | 
            +
               * Lookup187: pallet_grandpa::pallet::Call<T>
         | 
| 2582 2585 | 
             
               **/ PalletGrandpaCall: {
         | 
| 2583 2586 | 
             
                    _enum: {
         | 
| 2584 2587 | 
             
                        report_equivocation: {
         | 
| @@ -2596,13 +2599,13 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2596 2599 | 
             
                    }
         | 
| 2597 2600 | 
             
                },
         | 
| 2598 2601 | 
             
                /**
         | 
| 2599 | 
            -
               *  | 
| 2602 | 
            +
               * Lookup188: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
         | 
| 2600 2603 | 
             
               **/ SpConsensusGrandpaEquivocationProof: {
         | 
| 2601 2604 | 
             
                    setId: 'u64',
         | 
| 2602 2605 | 
             
                    equivocation: 'SpConsensusGrandpaEquivocation'
         | 
| 2603 2606 | 
             
                },
         | 
| 2604 2607 | 
             
                /**
         | 
| 2605 | 
            -
               *  | 
| 2608 | 
            +
               * Lookup189: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
         | 
| 2606 2609 | 
             
               **/ SpConsensusGrandpaEquivocation: {
         | 
| 2607 2610 | 
             
                    _enum: {
         | 
| 2608 2611 | 
             
                        Prevote: 'FinalityGrandpaEquivocationPrevote',
         | 
| @@ -2610,7 +2613,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2610 2613 | 
             
                    }
         | 
| 2611 2614 | 
             
                },
         | 
| 2612 2615 | 
             
                /**
         | 
| 2613 | 
            -
               *  | 
| 2616 | 
            +
               * Lookup190: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
         | 
| 2614 2617 | 
             
               **/ FinalityGrandpaEquivocationPrevote: {
         | 
| 2615 2618 | 
             
                    roundNumber: 'u64',
         | 
| 2616 2619 | 
             
                    identity: 'SpConsensusGrandpaAppPublic',
         | 
| @@ -2618,16 +2621,16 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2618 2621 | 
             
                    second: '(FinalityGrandpaPrevote,SpConsensusGrandpaAppSignature)'
         | 
| 2619 2622 | 
             
                },
         | 
| 2620 2623 | 
             
                /**
         | 
| 2621 | 
            -
               *  | 
| 2624 | 
            +
               * Lookup191: finality_grandpa::Prevote<primitive_types::H256, N>
         | 
| 2622 2625 | 
             
               **/ FinalityGrandpaPrevote: {
         | 
| 2623 2626 | 
             
                    targetHash: 'H256',
         | 
| 2624 2627 | 
             
                    targetNumber: 'u64'
         | 
| 2625 2628 | 
             
                },
         | 
| 2626 2629 | 
             
                /**
         | 
| 2627 | 
            -
               *  | 
| 2630 | 
            +
               * Lookup192: sp_consensus_grandpa::app::Signature
         | 
| 2628 2631 | 
             
               **/ SpConsensusGrandpaAppSignature: '[u8;64]',
         | 
| 2629 2632 | 
             
                /**
         | 
| 2630 | 
            -
               *  | 
| 2633 | 
            +
               * Lookup195: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
         | 
| 2631 2634 | 
             
               **/ FinalityGrandpaEquivocationPrecommit: {
         | 
| 2632 2635 | 
             
                    roundNumber: 'u64',
         | 
| 2633 2636 | 
             
                    identity: 'SpConsensusGrandpaAppPublic',
         | 
| @@ -2635,16 +2638,16 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2635 2638 | 
             
                    second: '(FinalityGrandpaPrecommit,SpConsensusGrandpaAppSignature)'
         | 
| 2636 2639 | 
             
                },
         | 
| 2637 2640 | 
             
                /**
         | 
| 2638 | 
            -
               *  | 
| 2641 | 
            +
               * Lookup196: finality_grandpa::Precommit<primitive_types::H256, N>
         | 
| 2639 2642 | 
             
               **/ FinalityGrandpaPrecommit: {
         | 
| 2640 2643 | 
             
                    targetHash: 'H256',
         | 
| 2641 2644 | 
             
                    targetNumber: 'u64'
         | 
| 2642 2645 | 
             
                },
         | 
| 2643 2646 | 
             
                /**
         | 
| 2644 | 
            -
               *  | 
| 2647 | 
            +
               * Lookup198: sp_core::Void
         | 
| 2645 2648 | 
             
               **/ SpCoreVoid: 'Null',
         | 
| 2646 2649 | 
             
                /**
         | 
| 2647 | 
            -
               *  | 
| 2650 | 
            +
               * Lookup199: pallet_indices::pallet::Call<T>
         | 
| 2648 2651 | 
             
               **/ PalletIndicesCall: {
         | 
| 2649 2652 | 
             
                    _enum: {
         | 
| 2650 2653 | 
             
                        claim: {
         | 
| @@ -2674,7 +2677,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2674 2677 | 
             
                    }
         | 
| 2675 2678 | 
             
                },
         | 
| 2676 2679 | 
             
                /**
         | 
| 2677 | 
            -
               *  | 
| 2680 | 
            +
               * Lookup200: pallet_democracy::pallet::Call<T>
         | 
| 2678 2681 | 
             
               **/ PalletDemocracyCall: {
         | 
| 2679 2682 | 
             
                    _enum: {
         | 
| 2680 2683 | 
             
                        propose: {
         | 
| @@ -2742,7 +2745,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2742 2745 | 
             
                    }
         | 
| 2743 2746 | 
             
                },
         | 
| 2744 2747 | 
             
                /**
         | 
| 2745 | 
            -
               *  | 
| 2748 | 
            +
               * Lookup201: frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>
         | 
| 2746 2749 | 
             
               **/ FrameSupportPreimagesBounded: {
         | 
| 2747 2750 | 
             
                    _enum: {
         | 
| 2748 2751 | 
             
                        Legacy: {
         | 
| @@ -2762,10 +2765,10 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2762 2765 | 
             
                    }
         | 
| 2763 2766 | 
             
                },
         | 
| 2764 2767 | 
             
                /**
         | 
| 2765 | 
            -
               *  | 
| 2768 | 
            +
               * Lookup202: sp_runtime::traits::BlakeTwo256
         | 
| 2766 2769 | 
             
               **/ SpRuntimeBlakeTwo256: 'Null',
         | 
| 2767 2770 | 
             
                /**
         | 
| 2768 | 
            -
               *  | 
| 2771 | 
            +
               * Lookup204: pallet_democracy::conviction::Conviction
         | 
| 2769 2772 | 
             
               **/ PalletDemocracyConviction: {
         | 
| 2770 2773 | 
             
                    _enum: [
         | 
| 2771 2774 | 
             
                        'None',
         | 
| @@ -2778,7 +2781,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2778 2781 | 
             
                    ]
         | 
| 2779 2782 | 
             
                },
         | 
| 2780 2783 | 
             
                /**
         | 
| 2781 | 
            -
               *  | 
| 2784 | 
            +
               * Lookup207: pallet_collective::pallet::Call<T, I>
         | 
| 2782 2785 | 
             
               **/ PalletCollectiveCall: {
         | 
| 2783 2786 | 
             
                    _enum: {
         | 
| 2784 2787 | 
             
                        set_members: {
         | 
| @@ -2813,7 +2816,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2813 2816 | 
             
                    }
         | 
| 2814 2817 | 
             
                },
         | 
| 2815 2818 | 
             
                /**
         | 
| 2816 | 
            -
               *  | 
| 2819 | 
            +
               * Lookup208: pallet_vesting::pallet::Call<T>
         | 
| 2817 2820 | 
             
               **/ PalletVestingCall: {
         | 
| 2818 2821 | 
             
                    _enum: {
         | 
| 2819 2822 | 
             
                        vest: 'Null',
         | 
| @@ -2840,14 +2843,14 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2840 2843 | 
             
                    }
         | 
| 2841 2844 | 
             
                },
         | 
| 2842 2845 | 
             
                /**
         | 
| 2843 | 
            -
               *  | 
| 2846 | 
            +
               * Lookup209: pallet_vesting::vesting_info::VestingInfo<Balance, BlockNumber>
         | 
| 2844 2847 | 
             
               **/ PalletVestingVestingInfo: {
         | 
| 2845 2848 | 
             
                    locked: 'u128',
         | 
| 2846 2849 | 
             
                    perBlock: 'u128',
         | 
| 2847 2850 | 
             
                    startingBlock: 'u64'
         | 
| 2848 2851 | 
             
                },
         | 
| 2849 2852 | 
             
                /**
         | 
| 2850 | 
            -
               *  | 
| 2853 | 
            +
               * Lookup210: pallet_elections_phragmen::pallet::Call<T>
         | 
| 2851 2854 | 
             
               **/ PalletElectionsPhragmenCall: {
         | 
| 2852 2855 | 
             
                    _enum: {
         | 
| 2853 2856 | 
             
                        vote: {
         | 
| @@ -2873,7 +2876,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2873 2876 | 
             
                    }
         | 
| 2874 2877 | 
             
                },
         | 
| 2875 2878 | 
             
                /**
         | 
| 2876 | 
            -
               *  | 
| 2879 | 
            +
               * Lookup211: pallet_elections_phragmen::Renouncing
         | 
| 2877 2880 | 
             
               **/ PalletElectionsPhragmenRenouncing: {
         | 
| 2878 2881 | 
             
                    _enum: {
         | 
| 2879 2882 | 
             
                        Member: 'Null',
         | 
| @@ -2882,7 +2885,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2882 2885 | 
             
                    }
         | 
| 2883 2886 | 
             
                },
         | 
| 2884 2887 | 
             
                /**
         | 
| 2885 | 
            -
               *  | 
| 2888 | 
            +
               * Lookup212: pallet_election_provider_multi_phase::pallet::Call<T>
         | 
| 2886 2889 | 
             
               **/ PalletElectionProviderMultiPhaseCall: {
         | 
| 2887 2890 | 
             
                    _enum: {
         | 
| 2888 2891 | 
             
                        submit_unsigned: {
         | 
| @@ -2905,14 +2908,14 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2905 2908 | 
             
                    }
         | 
| 2906 2909 | 
             
                },
         | 
| 2907 2910 | 
             
                /**
         | 
| 2908 | 
            -
               *  | 
| 2911 | 
            +
               * Lookup213: pallet_election_provider_multi_phase::RawSolution<tangle_testnet_runtime::NposSolution16>
         | 
| 2909 2912 | 
             
               **/ PalletElectionProviderMultiPhaseRawSolution: {
         | 
| 2910 2913 | 
             
                    solution: 'TangleTestnetRuntimeNposSolution16',
         | 
| 2911 2914 | 
             
                    score: 'SpNposElectionsElectionScore',
         | 
| 2912 2915 | 
             
                    round: 'u32'
         | 
| 2913 2916 | 
             
                },
         | 
| 2914 2917 | 
             
                /**
         | 
| 2915 | 
            -
               *  | 
| 2918 | 
            +
               * Lookup214: tangle_testnet_runtime::NposSolution16
         | 
| 2916 2919 | 
             
               **/ TangleTestnetRuntimeNposSolution16: {
         | 
| 2917 2920 | 
             
                    votes1: 'Vec<(Compact<u32>,Compact<u16>)>',
         | 
| 2918 2921 | 
             
                    votes2: 'Vec<(Compact<u32>,(Compact<u16>,Compact<PerU16>),Compact<u16>)>',
         | 
| @@ -2932,19 +2935,19 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 2932 2935 | 
             
                    votes16: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);15],Compact<u16>)>'
         | 
| 2933 2936 | 
             
                },
         | 
| 2934 2937 | 
             
                /**
         | 
| 2935 | 
            -
               *  | 
| 2938 | 
            +
               * Lookup265: pallet_election_provider_multi_phase::SolutionOrSnapshotSize
         | 
| 2936 2939 | 
             
               **/ PalletElectionProviderMultiPhaseSolutionOrSnapshotSize: {
         | 
| 2937 2940 | 
             
                    voters: 'Compact<u32>',
         | 
| 2938 2941 | 
             
                    targets: 'Compact<u32>'
         | 
| 2939 2942 | 
             
                },
         | 
| 2940 2943 | 
             
                /**
         | 
| 2941 | 
            -
               *  | 
| 2944 | 
            +
               * Lookup269: sp_npos_elections::Support<sp_core::crypto::AccountId32>
         | 
| 2942 2945 | 
             
               **/ SpNposElectionsSupport: {
         | 
| 2943 2946 | 
             
                    total: 'u128',
         | 
| 2944 2947 | 
             
                    voters: 'Vec<(AccountId32,u128)>'
         | 
| 2945 2948 | 
             
                },
         | 
| 2946 2949 | 
             
                /**
         | 
| 2947 | 
            -
               *  | 
| 2950 | 
            +
               * Lookup270: pallet_staking::pallet::pallet::Call<T>
         | 
| 2948 2951 | 
             
               **/ PalletStakingPalletCall: {
         | 
| 2949 2952 | 
             
                    _enum: {
         | 
| 2950 2953 | 
             
                        bond: {
         | 
| @@ -3052,7 +3055,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3052 3055 | 
             
                    }
         | 
| 3053 3056 | 
             
                },
         | 
| 3054 3057 | 
             
                /**
         | 
| 3055 | 
            -
               *  | 
| 3058 | 
            +
               * Lookup273: pallet_staking::pallet::pallet::ConfigOp<T>
         | 
| 3056 3059 | 
             
               **/ PalletStakingPalletConfigOpU128: {
         | 
| 3057 3060 | 
             
                    _enum: {
         | 
| 3058 3061 | 
             
                        Noop: 'Null',
         | 
| @@ -3061,7 +3064,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3061 3064 | 
             
                    }
         | 
| 3062 3065 | 
             
                },
         | 
| 3063 3066 | 
             
                /**
         | 
| 3064 | 
            -
               *  | 
| 3067 | 
            +
               * Lookup274: pallet_staking::pallet::pallet::ConfigOp<T>
         | 
| 3065 3068 | 
             
               **/ PalletStakingPalletConfigOpU32: {
         | 
| 3066 3069 | 
             
                    _enum: {
         | 
| 3067 3070 | 
             
                        Noop: 'Null',
         | 
| @@ -3070,7 +3073,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3070 3073 | 
             
                    }
         | 
| 3071 3074 | 
             
                },
         | 
| 3072 3075 | 
             
                /**
         | 
| 3073 | 
            -
               *  | 
| 3076 | 
            +
               * Lookup275: pallet_staking::pallet::pallet::ConfigOp<sp_arithmetic::per_things::Percent>
         | 
| 3074 3077 | 
             
               **/ PalletStakingPalletConfigOpPercent: {
         | 
| 3075 3078 | 
             
                    _enum: {
         | 
| 3076 3079 | 
             
                        Noop: 'Null',
         | 
| @@ -3079,7 +3082,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3079 3082 | 
             
                    }
         | 
| 3080 3083 | 
             
                },
         | 
| 3081 3084 | 
             
                /**
         | 
| 3082 | 
            -
               *  | 
| 3085 | 
            +
               * Lookup276: pallet_staking::pallet::pallet::ConfigOp<sp_arithmetic::per_things::Perbill>
         | 
| 3083 3086 | 
             
               **/ PalletStakingPalletConfigOpPerbill: {
         | 
| 3084 3087 | 
             
                    _enum: {
         | 
| 3085 3088 | 
             
                        Noop: 'Null',
         | 
| @@ -3088,13 +3091,13 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3088 3091 | 
             
                    }
         | 
| 3089 3092 | 
             
                },
         | 
| 3090 3093 | 
             
                /**
         | 
| 3091 | 
            -
               *  | 
| 3094 | 
            +
               * Lookup281: pallet_staking::UnlockChunk<Balance>
         | 
| 3092 3095 | 
             
               **/ PalletStakingUnlockChunk: {
         | 
| 3093 3096 | 
             
                    value: 'Compact<u128>',
         | 
| 3094 3097 | 
             
                    era: 'Compact<u32>'
         | 
| 3095 3098 | 
             
                },
         | 
| 3096 3099 | 
             
                /**
         | 
| 3097 | 
            -
               *  | 
| 3100 | 
            +
               * Lookup283: pallet_session::pallet::Call<T>
         | 
| 3098 3101 | 
             
               **/ PalletSessionCall: {
         | 
| 3099 3102 | 
             
                    _enum: {
         | 
| 3100 3103 | 
             
                        set_keys: {
         | 
| @@ -3108,14 +3111,14 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3108 3111 | 
             
                    }
         | 
| 3109 3112 | 
             
                },
         | 
| 3110 3113 | 
             
                /**
         | 
| 3111 | 
            -
               *  | 
| 3114 | 
            +
               * Lookup284: tangle_testnet_runtime::opaque::SessionKeys
         | 
| 3112 3115 | 
             
               **/ TangleTestnetRuntimeOpaqueSessionKeys: {
         | 
| 3113 3116 | 
             
                    babe: 'SpConsensusBabeAppPublic',
         | 
| 3114 3117 | 
             
                    grandpa: 'SpConsensusGrandpaAppPublic',
         | 
| 3115 3118 | 
             
                    imOnline: 'PalletImOnlineSr25519AppSr25519Public'
         | 
| 3116 3119 | 
             
                },
         | 
| 3117 3120 | 
             
                /**
         | 
| 3118 | 
            -
               *  | 
| 3121 | 
            +
               * Lookup285: pallet_treasury::pallet::Call<T, I>
         | 
| 3119 3122 | 
             
               **/ PalletTreasuryCall: {
         | 
| 3120 3123 | 
             
                    _enum: {
         | 
| 3121 3124 | 
             
                        __Unused0: 'Null',
         | 
| @@ -3146,7 +3149,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3146 3149 | 
             
                    }
         | 
| 3147 3150 | 
             
                },
         | 
| 3148 3151 | 
             
                /**
         | 
| 3149 | 
            -
               *  | 
| 3152 | 
            +
               * Lookup287: pallet_bounties::pallet::Call<T, I>
         | 
| 3150 3153 | 
             
               **/ PalletBountiesCall: {
         | 
| 3151 3154 | 
             
                    _enum: {
         | 
| 3152 3155 | 
             
                        propose_bounty: {
         | 
| @@ -3184,7 +3187,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3184 3187 | 
             
                    }
         | 
| 3185 3188 | 
             
                },
         | 
| 3186 3189 | 
             
                /**
         | 
| 3187 | 
            -
               *  | 
| 3190 | 
            +
               * Lookup288: pallet_child_bounties::pallet::Call<T>
         | 
| 3188 3191 | 
             
               **/ PalletChildBountiesCall: {
         | 
| 3189 3192 | 
             
                    _enum: {
         | 
| 3190 3193 | 
             
                        add_child_bounty: {
         | 
| @@ -3222,7 +3225,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3222 3225 | 
             
                    }
         | 
| 3223 3226 | 
             
                },
         | 
| 3224 3227 | 
             
                /**
         | 
| 3225 | 
            -
               *  | 
| 3228 | 
            +
               * Lookup289: pallet_bags_list::pallet::Call<T, I>
         | 
| 3226 3229 | 
             
               **/ PalletBagsListCall: {
         | 
| 3227 3230 | 
             
                    _enum: {
         | 
| 3228 3231 | 
             
                        rebag: {
         | 
| @@ -3238,7 +3241,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3238 3241 | 
             
                    }
         | 
| 3239 3242 | 
             
                },
         | 
| 3240 3243 | 
             
                /**
         | 
| 3241 | 
            -
               *  | 
| 3244 | 
            +
               * Lookup290: pallet_nomination_pools::pallet::Call<T>
         | 
| 3242 3245 | 
             
               **/ PalletNominationPoolsCall: {
         | 
| 3243 3246 | 
             
                    _enum: {
         | 
| 3244 3247 | 
             
                        join: {
         | 
| @@ -3347,7 +3350,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3347 3350 | 
             
                    }
         | 
| 3348 3351 | 
             
                },
         | 
| 3349 3352 | 
             
                /**
         | 
| 3350 | 
            -
               *  | 
| 3353 | 
            +
               * Lookup291: pallet_nomination_pools::BondExtra<Balance>
         | 
| 3351 3354 | 
             
               **/ PalletNominationPoolsBondExtra: {
         | 
| 3352 3355 | 
             
                    _enum: {
         | 
| 3353 3356 | 
             
                        FreeBalance: 'u128',
         | 
| @@ -3355,7 +3358,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3355 3358 | 
             
                    }
         | 
| 3356 3359 | 
             
                },
         | 
| 3357 3360 | 
             
                /**
         | 
| 3358 | 
            -
               *  | 
| 3361 | 
            +
               * Lookup292: pallet_nomination_pools::ConfigOp<T>
         | 
| 3359 3362 | 
             
               **/ PalletNominationPoolsConfigOpU128: {
         | 
| 3360 3363 | 
             
                    _enum: {
         | 
| 3361 3364 | 
             
                        Noop: 'Null',
         | 
| @@ -3364,7 +3367,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3364 3367 | 
             
                    }
         | 
| 3365 3368 | 
             
                },
         | 
| 3366 3369 | 
             
                /**
         | 
| 3367 | 
            -
               *  | 
| 3370 | 
            +
               * Lookup293: pallet_nomination_pools::ConfigOp<T>
         | 
| 3368 3371 | 
             
               **/ PalletNominationPoolsConfigOpU32: {
         | 
| 3369 3372 | 
             
                    _enum: {
         | 
| 3370 3373 | 
             
                        Noop: 'Null',
         | 
| @@ -3373,7 +3376,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3373 3376 | 
             
                    }
         | 
| 3374 3377 | 
             
                },
         | 
| 3375 3378 | 
             
                /**
         | 
| 3376 | 
            -
               *  | 
| 3379 | 
            +
               * Lookup294: pallet_nomination_pools::ConfigOp<sp_arithmetic::per_things::Perbill>
         | 
| 3377 3380 | 
             
               **/ PalletNominationPoolsConfigOpPerbill: {
         | 
| 3378 3381 | 
             
                    _enum: {
         | 
| 3379 3382 | 
             
                        Noop: 'Null',
         | 
| @@ -3382,7 +3385,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3382 3385 | 
             
                    }
         | 
| 3383 3386 | 
             
                },
         | 
| 3384 3387 | 
             
                /**
         | 
| 3385 | 
            -
               *  | 
| 3388 | 
            +
               * Lookup295: pallet_nomination_pools::ConfigOp<sp_core::crypto::AccountId32>
         | 
| 3386 3389 | 
             
               **/ PalletNominationPoolsConfigOpAccountId32: {
         | 
| 3387 3390 | 
             
                    _enum: {
         | 
| 3388 3391 | 
             
                        Noop: 'Null',
         | 
| @@ -3391,7 +3394,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3391 3394 | 
             
                    }
         | 
| 3392 3395 | 
             
                },
         | 
| 3393 3396 | 
             
                /**
         | 
| 3394 | 
            -
               *  | 
| 3397 | 
            +
               * Lookup296: pallet_nomination_pools::ClaimPermission
         | 
| 3395 3398 | 
             
               **/ PalletNominationPoolsClaimPermission: {
         | 
| 3396 3399 | 
             
                    _enum: [
         | 
| 3397 3400 | 
             
                        'Permissioned',
         | 
| @@ -3401,7 +3404,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3401 3404 | 
             
                    ]
         | 
| 3402 3405 | 
             
                },
         | 
| 3403 3406 | 
             
                /**
         | 
| 3404 | 
            -
               *  | 
| 3407 | 
            +
               * Lookup297: pallet_scheduler::pallet::Call<T>
         | 
| 3405 3408 | 
             
               **/ PalletSchedulerCall: {
         | 
| 3406 3409 | 
             
                    _enum: {
         | 
| 3407 3410 | 
             
                        schedule: {
         | 
| @@ -3456,7 +3459,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3456 3459 | 
             
                    }
         | 
| 3457 3460 | 
             
                },
         | 
| 3458 3461 | 
             
                /**
         | 
| 3459 | 
            -
               *  | 
| 3462 | 
            +
               * Lookup299: pallet_preimage::pallet::Call<T>
         | 
| 3460 3463 | 
             
               **/ PalletPreimageCall: {
         | 
| 3461 3464 | 
             
                    _enum: {
         | 
| 3462 3465 | 
             
                        note_preimage: {
         | 
| @@ -3486,7 +3489,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3486 3489 | 
             
                    }
         | 
| 3487 3490 | 
             
                },
         | 
| 3488 3491 | 
             
                /**
         | 
| 3489 | 
            -
               *  | 
| 3492 | 
            +
               * Lookup300: pallet_tx_pause::pallet::Call<T>
         | 
| 3490 3493 | 
             
               **/ PalletTxPauseCall: {
         | 
| 3491 3494 | 
             
                    _enum: {
         | 
| 3492 3495 | 
             
                        pause: {
         | 
| @@ -3498,7 +3501,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3498 3501 | 
             
                    }
         | 
| 3499 3502 | 
             
                },
         | 
| 3500 3503 | 
             
                /**
         | 
| 3501 | 
            -
               *  | 
| 3504 | 
            +
               * Lookup301: pallet_im_online::pallet::Call<T>
         | 
| 3502 3505 | 
             
               **/ PalletImOnlineCall: {
         | 
| 3503 3506 | 
             
                    _enum: {
         | 
| 3504 3507 | 
             
                        heartbeat: {
         | 
| @@ -3508,7 +3511,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3508 3511 | 
             
                    }
         | 
| 3509 3512 | 
             
                },
         | 
| 3510 3513 | 
             
                /**
         | 
| 3511 | 
            -
               *  | 
| 3514 | 
            +
               * Lookup302: pallet_im_online::Heartbeat<BlockNumber>
         | 
| 3512 3515 | 
             
               **/ PalletImOnlineHeartbeat: {
         | 
| 3513 3516 | 
             
                    blockNumber: 'u64',
         | 
| 3514 3517 | 
             
                    sessionIndex: 'u32',
         | 
| @@ -3516,10 +3519,10 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3516 3519 | 
             
                    validatorsLen: 'u32'
         | 
| 3517 3520 | 
             
                },
         | 
| 3518 3521 | 
             
                /**
         | 
| 3519 | 
            -
               *  | 
| 3522 | 
            +
               * Lookup303: pallet_im_online::sr25519::app_sr25519::Signature
         | 
| 3520 3523 | 
             
               **/ PalletImOnlineSr25519AppSr25519Signature: '[u8;64]',
         | 
| 3521 3524 | 
             
                /**
         | 
| 3522 | 
            -
               *  | 
| 3525 | 
            +
               * Lookup304: pallet_identity::pallet::Call<T>
         | 
| 3523 3526 | 
             
               **/ PalletIdentityCall: {
         | 
| 3524 3527 | 
             
                    _enum: {
         | 
| 3525 3528 | 
             
                        add_registrar: {
         | 
| @@ -3603,7 +3606,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3603 3606 | 
             
                    }
         | 
| 3604 3607 | 
             
                },
         | 
| 3605 3608 | 
             
                /**
         | 
| 3606 | 
            -
               *  | 
| 3609 | 
            +
               * Lookup305: pallet_identity::legacy::IdentityInfo<FieldLimit>
         | 
| 3607 3610 | 
             
               **/ PalletIdentityLegacyIdentityInfo: {
         | 
| 3608 3611 | 
             
                    additional: 'Vec<(Data,Data)>',
         | 
| 3609 3612 | 
             
                    display: 'Data',
         | 
| @@ -3616,7 +3619,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3616 3619 | 
             
                    twitter: 'Data'
         | 
| 3617 3620 | 
             
                },
         | 
| 3618 3621 | 
             
                /**
         | 
| 3619 | 
            -
               *  | 
| 3622 | 
            +
               * Lookup341: pallet_identity::types::Judgement<Balance>
         | 
| 3620 3623 | 
             
               **/ PalletIdentityJudgement: {
         | 
| 3621 3624 | 
             
                    _enum: {
         | 
| 3622 3625 | 
             
                        Unknown: 'Null',
         | 
| @@ -3629,7 +3632,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3629 3632 | 
             
                    }
         | 
| 3630 3633 | 
             
                },
         | 
| 3631 3634 | 
             
                /**
         | 
| 3632 | 
            -
               *  | 
| 3635 | 
            +
               * Lookup343: sp_runtime::MultiSignature
         | 
| 3633 3636 | 
             
               **/ SpRuntimeMultiSignature: {
         | 
| 3634 3637 | 
             
                    _enum: {
         | 
| 3635 3638 | 
             
                        Ed25519: '[u8;64]',
         | 
| @@ -3638,7 +3641,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3638 3641 | 
             
                    }
         | 
| 3639 3642 | 
             
                },
         | 
| 3640 3643 | 
             
                /**
         | 
| 3641 | 
            -
               *  | 
| 3644 | 
            +
               * Lookup345: pallet_utility::pallet::Call<T>
         | 
| 3642 3645 | 
             
               **/ PalletUtilityCall: {
         | 
| 3643 3646 | 
             
                    _enum: {
         | 
| 3644 3647 | 
             
                        batch: {
         | 
| @@ -3665,7 +3668,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3665 3668 | 
             
                    }
         | 
| 3666 3669 | 
             
                },
         | 
| 3667 3670 | 
             
                /**
         | 
| 3668 | 
            -
               *  | 
| 3671 | 
            +
               * Lookup347: tangle_testnet_runtime::OriginCaller
         | 
| 3669 3672 | 
             
               **/ TangleTestnetRuntimeOriginCaller: {
         | 
| 3670 3673 | 
             
                    _enum: {
         | 
| 3671 3674 | 
             
                        __Unused0: 'Null',
         | 
| @@ -3705,7 +3708,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3705 3708 | 
             
                    }
         | 
| 3706 3709 | 
             
                },
         | 
| 3707 3710 | 
             
                /**
         | 
| 3708 | 
            -
               *  | 
| 3711 | 
            +
               * Lookup348: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
         | 
| 3709 3712 | 
             
               **/ FrameSupportDispatchRawOrigin: {
         | 
| 3710 3713 | 
             
                    _enum: {
         | 
| 3711 3714 | 
             
                        Root: 'Null',
         | 
| @@ -3714,7 +3717,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3714 3717 | 
             
                    }
         | 
| 3715 3718 | 
             
                },
         | 
| 3716 3719 | 
             
                /**
         | 
| 3717 | 
            -
               *  | 
| 3720 | 
            +
               * Lookup349: pallet_collective::RawOrigin<sp_core::crypto::AccountId32, I>
         | 
| 3718 3721 | 
             
               **/ PalletCollectiveRawOrigin: {
         | 
| 3719 3722 | 
             
                    _enum: {
         | 
| 3720 3723 | 
             
                        Members: '(u32,u32)',
         | 
| @@ -3723,14 +3726,14 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3723 3726 | 
             
                    }
         | 
| 3724 3727 | 
             
                },
         | 
| 3725 3728 | 
             
                /**
         | 
| 3726 | 
            -
               *  | 
| 3729 | 
            +
               * Lookup350: pallet_ethereum::RawOrigin
         | 
| 3727 3730 | 
             
               **/ PalletEthereumRawOrigin: {
         | 
| 3728 3731 | 
             
                    _enum: {
         | 
| 3729 3732 | 
             
                        EthereumTransaction: 'H160'
         | 
| 3730 3733 | 
             
                    }
         | 
| 3731 3734 | 
             
                },
         | 
| 3732 3735 | 
             
                /**
         | 
| 3733 | 
            -
               *  | 
| 3736 | 
            +
               * Lookup351: pallet_multisig::pallet::Call<T>
         | 
| 3734 3737 | 
             
               **/ PalletMultisigCall: {
         | 
| 3735 3738 | 
             
                    _enum: {
         | 
| 3736 3739 | 
             
                        as_multi_threshold_1: {
         | 
| @@ -3760,7 +3763,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3760 3763 | 
             
                    }
         | 
| 3761 3764 | 
             
                },
         | 
| 3762 3765 | 
             
                /**
         | 
| 3763 | 
            -
               *  | 
| 3766 | 
            +
               * Lookup353: pallet_ethereum::pallet::Call<T>
         | 
| 3764 3767 | 
             
               **/ PalletEthereumCall: {
         | 
| 3765 3768 | 
             
                    _enum: {
         | 
| 3766 3769 | 
             
                        transact: {
         | 
| @@ -3769,7 +3772,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3769 3772 | 
             
                    }
         | 
| 3770 3773 | 
             
                },
         | 
| 3771 3774 | 
             
                /**
         | 
| 3772 | 
            -
               *  | 
| 3775 | 
            +
               * Lookup354: ethereum::transaction::TransactionV2
         | 
| 3773 3776 | 
             
               **/ EthereumTransactionTransactionV2: {
         | 
| 3774 3777 | 
             
                    _enum: {
         | 
| 3775 3778 | 
             
                        Legacy: 'EthereumTransactionLegacyTransaction',
         | 
| @@ -3778,7 +3781,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3778 3781 | 
             
                    }
         | 
| 3779 3782 | 
             
                },
         | 
| 3780 3783 | 
             
                /**
         | 
| 3781 | 
            -
               *  | 
| 3784 | 
            +
               * Lookup355: ethereum::transaction::LegacyTransaction
         | 
| 3782 3785 | 
             
               **/ EthereumTransactionLegacyTransaction: {
         | 
| 3783 3786 | 
             
                    nonce: 'U256',
         | 
| 3784 3787 | 
             
                    gasPrice: 'U256',
         | 
| @@ -3789,7 +3792,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3789 3792 | 
             
                    signature: 'EthereumTransactionTransactionSignature'
         | 
| 3790 3793 | 
             
                },
         | 
| 3791 3794 | 
             
                /**
         | 
| 3792 | 
            -
               *  | 
| 3795 | 
            +
               * Lookup356: ethereum::transaction::TransactionAction
         | 
| 3793 3796 | 
             
               **/ EthereumTransactionTransactionAction: {
         | 
| 3794 3797 | 
             
                    _enum: {
         | 
| 3795 3798 | 
             
                        Call: 'H160',
         | 
| @@ -3797,14 +3800,14 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3797 3800 | 
             
                    }
         | 
| 3798 3801 | 
             
                },
         | 
| 3799 3802 | 
             
                /**
         | 
| 3800 | 
            -
               *  | 
| 3803 | 
            +
               * Lookup357: ethereum::transaction::TransactionSignature
         | 
| 3801 3804 | 
             
               **/ EthereumTransactionTransactionSignature: {
         | 
| 3802 3805 | 
             
                    v: 'u64',
         | 
| 3803 3806 | 
             
                    r: 'H256',
         | 
| 3804 3807 | 
             
                    s: 'H256'
         | 
| 3805 3808 | 
             
                },
         | 
| 3806 3809 | 
             
                /**
         | 
| 3807 | 
            -
               *  | 
| 3810 | 
            +
               * Lookup359: ethereum::transaction::EIP2930Transaction
         | 
| 3808 3811 | 
             
               **/ EthereumTransactionEip2930Transaction: {
         | 
| 3809 3812 | 
             
                    chainId: 'u64',
         | 
| 3810 3813 | 
             
                    nonce: 'U256',
         | 
| @@ -3819,13 +3822,13 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3819 3822 | 
             
                    s: 'H256'
         | 
| 3820 3823 | 
             
                },
         | 
| 3821 3824 | 
             
                /**
         | 
| 3822 | 
            -
               *  | 
| 3825 | 
            +
               * Lookup361: ethereum::transaction::AccessListItem
         | 
| 3823 3826 | 
             
               **/ EthereumTransactionAccessListItem: {
         | 
| 3824 3827 | 
             
                    address: 'H160',
         | 
| 3825 3828 | 
             
                    storageKeys: 'Vec<H256>'
         | 
| 3826 3829 | 
             
                },
         | 
| 3827 3830 | 
             
                /**
         | 
| 3828 | 
            -
               *  | 
| 3831 | 
            +
               * Lookup362: ethereum::transaction::EIP1559Transaction
         | 
| 3829 3832 | 
             
               **/ EthereumTransactionEip1559Transaction: {
         | 
| 3830 3833 | 
             
                    chainId: 'u64',
         | 
| 3831 3834 | 
             
                    nonce: 'U256',
         | 
| @@ -3841,7 +3844,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3841 3844 | 
             
                    s: 'H256'
         | 
| 3842 3845 | 
             
                },
         | 
| 3843 3846 | 
             
                /**
         | 
| 3844 | 
            -
               *  | 
| 3847 | 
            +
               * Lookup363: pallet_evm::pallet::Call<T>
         | 
| 3845 3848 | 
             
               **/ PalletEvmCall: {
         | 
| 3846 3849 | 
             
                    _enum: {
         | 
| 3847 3850 | 
             
                        withdraw: {
         | 
| @@ -3883,7 +3886,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3883 3886 | 
             
                    }
         | 
| 3884 3887 | 
             
                },
         | 
| 3885 3888 | 
             
                /**
         | 
| 3886 | 
            -
               *  | 
| 3889 | 
            +
               * Lookup367: pallet_dynamic_fee::pallet::Call<T>
         | 
| 3887 3890 | 
             
               **/ PalletDynamicFeeCall: {
         | 
| 3888 3891 | 
             
                    _enum: {
         | 
| 3889 3892 | 
             
                        note_min_gas_price_target: {
         | 
| @@ -3892,7 +3895,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3892 3895 | 
             
                    }
         | 
| 3893 3896 | 
             
                },
         | 
| 3894 3897 | 
             
                /**
         | 
| 3895 | 
            -
               *  | 
| 3898 | 
            +
               * Lookup368: pallet_base_fee::pallet::Call<T>
         | 
| 3896 3899 | 
             
               **/ PalletBaseFeeCall: {
         | 
| 3897 3900 | 
             
                    _enum: {
         | 
| 3898 3901 | 
             
                        set_base_fee_per_gas: {
         | 
| @@ -3904,7 +3907,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3904 3907 | 
             
                    }
         | 
| 3905 3908 | 
             
                },
         | 
| 3906 3909 | 
             
                /**
         | 
| 3907 | 
            -
               *  | 
| 3910 | 
            +
               * Lookup369: pallet_hotfix_sufficients::pallet::Call<T>
         | 
| 3908 3911 | 
             
               **/ PalletHotfixSufficientsCall: {
         | 
| 3909 3912 | 
             
                    _enum: {
         | 
| 3910 3913 | 
             
                        hotfix_inc_account_sufficients: {
         | 
| @@ -3913,7 +3916,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3913 3916 | 
             
                    }
         | 
| 3914 3917 | 
             
                },
         | 
| 3915 3918 | 
             
                /**
         | 
| 3916 | 
            -
               *  | 
| 3919 | 
            +
               * Lookup371: pallet_airdrop_claims::pallet::Call<T>
         | 
| 3917 3920 | 
             
               **/ PalletAirdropClaimsCall: {
         | 
| 3918 3921 | 
             
                    _enum: {
         | 
| 3919 3922 | 
             
                        claim: {
         | 
| @@ -3951,7 +3954,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3951 3954 | 
             
                    }
         | 
| 3952 3955 | 
             
                },
         | 
| 3953 3956 | 
             
                /**
         | 
| 3954 | 
            -
               *  | 
| 3957 | 
            +
               * Lookup373: pallet_airdrop_claims::utils::MultiAddressSignature
         | 
| 3955 3958 | 
             
               **/ PalletAirdropClaimsUtilsMultiAddressSignature: {
         | 
| 3956 3959 | 
             
                    _enum: {
         | 
| 3957 3960 | 
             
                        EVM: 'PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature',
         | 
| @@ -3959,13 +3962,13 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3959 3962 | 
             
                    }
         | 
| 3960 3963 | 
             
                },
         | 
| 3961 3964 | 
             
                /**
         | 
| 3962 | 
            -
               *  | 
| 3965 | 
            +
               * Lookup374: pallet_airdrop_claims::utils::ethereum_address::EcdsaSignature
         | 
| 3963 3966 | 
             
               **/ PalletAirdropClaimsUtilsEthereumAddressEcdsaSignature: '[u8;65]',
         | 
| 3964 3967 | 
             
                /**
         | 
| 3965 | 
            -
               *  | 
| 3968 | 
            +
               * Lookup375: pallet_airdrop_claims::utils::Sr25519Signature
         | 
| 3966 3969 | 
             
               **/ PalletAirdropClaimsUtilsSr25519Signature: '[u8;64]',
         | 
| 3967 3970 | 
             
                /**
         | 
| 3968 | 
            -
               *  | 
| 3971 | 
            +
               * Lookup381: pallet_airdrop_claims::StatementKind
         | 
| 3969 3972 | 
             
               **/ PalletAirdropClaimsStatementKind: {
         | 
| 3970 3973 | 
             
                    _enum: [
         | 
| 3971 3974 | 
             
                        'Regular',
         | 
| @@ -3973,7 +3976,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 3973 3976 | 
             
                    ]
         | 
| 3974 3977 | 
             
                },
         | 
| 3975 3978 | 
             
                /**
         | 
| 3976 | 
            -
               *  | 
| 3979 | 
            +
               * Lookup382: pallet_proxy::pallet::Call<T>
         | 
| 3977 3980 | 
             
               **/ PalletProxyCall: {
         | 
| 3978 3981 | 
             
                    _enum: {
         | 
| 3979 3982 | 
             
                        proxy: {
         | 
| @@ -4025,7 +4028,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4025 4028 | 
             
                    }
         | 
| 4026 4029 | 
             
                },
         | 
| 4027 4030 | 
             
                /**
         | 
| 4028 | 
            -
               *  | 
| 4031 | 
            +
               * Lookup384: pallet_multi_asset_delegation::pallet::Call<T>
         | 
| 4029 4032 | 
             
               **/ PalletMultiAssetDelegationCall: {
         | 
| 4030 4033 | 
             
                    _enum: {
         | 
| 4031 4034 | 
             
                        join_operators: {
         | 
| @@ -4060,7 +4063,8 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4060 4063 | 
             
                        delegate: {
         | 
| 4061 4064 | 
             
                            operator: 'AccountId32',
         | 
| 4062 4065 | 
             
                            assetId: 'u128',
         | 
| 4063 | 
            -
                            amount: 'u128'
         | 
| 4066 | 
            +
                            amount: 'u128',
         | 
| 4067 | 
            +
                            blueprintSelection: 'PalletMultiAssetDelegationDelegatorDelegatorBlueprintSelection'
         | 
| 4064 4068 | 
             
                        },
         | 
| 4065 4069 | 
             
                        schedule_delegator_unstake: {
         | 
| 4066 4070 | 
             
                            operator: 'AccountId32',
         | 
| @@ -4073,7 +4077,6 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4073 4077 | 
             
                            assetId: 'u128',
         | 
| 4074 4078 | 
             
                            amount: 'u128'
         | 
| 4075 4079 | 
             
                        },
         | 
| 4076 | 
            -
                        __Unused18: 'Null',
         | 
| 4077 4080 | 
             
                        set_incentive_apy_and_cap: {
         | 
| 4078 4081 | 
             
                            vaultId: 'u128',
         | 
| 4079 4082 | 
             
                            apy: 'Percent',
         | 
| @@ -4086,11 +4089,29 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4086 4089 | 
             
                            vaultId: 'u128',
         | 
| 4087 4090 | 
             
                            assetId: 'u128',
         | 
| 4088 4091 | 
             
                            action: 'PalletMultiAssetDelegationRewardsAssetAction'
         | 
| 4092 | 
            +
                        },
         | 
| 4093 | 
            +
                        __Unused21: 'Null',
         | 
| 4094 | 
            +
                        add_blueprint_id: {
         | 
| 4095 | 
            +
                            blueprintId: 'u64'
         | 
| 4096 | 
            +
                        },
         | 
| 4097 | 
            +
                        remove_blueprint_id: {
         | 
| 4098 | 
            +
                            blueprintId: 'u64'
         | 
| 4089 4099 | 
             
                        }
         | 
| 4090 4100 | 
             
                    }
         | 
| 4091 4101 | 
             
                },
         | 
| 4092 4102 | 
             
                /**
         | 
| 4093 | 
            -
               *  | 
| 4103 | 
            +
               * Lookup385: pallet_multi_asset_delegation::types::delegator::DelegatorBlueprintSelection<tangle_testnet_runtime::MaxDelegatorBlueprints>
         | 
| 4104 | 
            +
               **/ PalletMultiAssetDelegationDelegatorDelegatorBlueprintSelection: {
         | 
| 4105 | 
            +
                    _enum: {
         | 
| 4106 | 
            +
                        Fixed: 'Vec<u64>',
         | 
| 4107 | 
            +
                        All: 'Null'
         | 
| 4108 | 
            +
                    }
         | 
| 4109 | 
            +
                },
         | 
| 4110 | 
            +
                /**
         | 
| 4111 | 
            +
               * Lookup386: tangle_testnet_runtime::MaxDelegatorBlueprints
         | 
| 4112 | 
            +
               **/ TangleTestnetRuntimeMaxDelegatorBlueprints: 'Null',
         | 
| 4113 | 
            +
                /**
         | 
| 4114 | 
            +
               * Lookup389: pallet_services::module::Call<T>
         | 
| 4094 4115 | 
             
               **/ PalletServicesModuleCall: {
         | 
| 4095 4116 | 
             
                    _enum: {
         | 
| 4096 4117 | 
             
                        create_blueprint: {
         | 
| @@ -4102,15 +4123,12 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4102 4123 | 
             
                        register: {
         | 
| 4103 4124 | 
             
                            blueprintId: 'Compact<u64>',
         | 
| 4104 4125 | 
             
                            preferences: 'TanglePrimitivesServicesOperatorPreferences',
         | 
| 4105 | 
            -
                            registrationArgs: 'Vec<TanglePrimitivesServicesField>'
         | 
| 4126 | 
            +
                            registrationArgs: 'Vec<TanglePrimitivesServicesField>',
         | 
| 4127 | 
            +
                            value: 'Compact<u128>'
         | 
| 4106 4128 | 
             
                        },
         | 
| 4107 4129 | 
             
                        unregister: {
         | 
| 4108 4130 | 
             
                            blueprintId: 'Compact<u64>'
         | 
| 4109 4131 | 
             
                        },
         | 
| 4110 | 
            -
                        update_approval_preference: {
         | 
| 4111 | 
            -
                            blueprintId: 'Compact<u64>',
         | 
| 4112 | 
            -
                            approvalPreference: 'TanglePrimitivesServicesApprovalPreference'
         | 
| 4113 | 
            -
                        },
         | 
| 4114 4132 | 
             
                        update_price_targets: {
         | 
| 4115 4133 | 
             
                            blueprintId: 'Compact<u64>',
         | 
| 4116 4134 | 
             
                            priceTargets: 'TanglePrimitivesServicesPriceTargets'
         | 
| @@ -4118,13 +4136,15 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4118 4136 | 
             
                        request: {
         | 
| 4119 4137 | 
             
                            blueprintId: 'Compact<u64>',
         | 
| 4120 4138 | 
             
                            permittedCallers: 'Vec<AccountId32>',
         | 
| 4121 | 
            -
                             | 
| 4139 | 
            +
                            operators: 'Vec<AccountId32>',
         | 
| 4122 4140 | 
             
                            requestArgs: 'Vec<TanglePrimitivesServicesField>',
         | 
| 4123 4141 | 
             
                            assets: 'Vec<u128>',
         | 
| 4124 | 
            -
                            ttl: 'Compact<u64>'
         | 
| 4142 | 
            +
                            ttl: 'Compact<u64>',
         | 
| 4143 | 
            +
                            value: 'Compact<u128>'
         | 
| 4125 4144 | 
             
                        },
         | 
| 4126 4145 | 
             
                        approve: {
         | 
| 4127 | 
            -
                            requestId: 'Compact<u64>'
         | 
| 4146 | 
            +
                            requestId: 'Compact<u64>',
         | 
| 4147 | 
            +
                            restakingPercent: 'Compact<Percent>'
         | 
| 4128 4148 | 
             
                        },
         | 
| 4129 4149 | 
             
                        reject: {
         | 
| 4130 4150 | 
             
                            requestId: 'Compact<u64>'
         | 
| @@ -4141,11 +4161,20 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4141 4161 | 
             
                            serviceId: 'Compact<u64>',
         | 
| 4142 4162 | 
             
                            callId: 'Compact<u64>',
         | 
| 4143 4163 | 
             
                            result: 'Vec<TanglePrimitivesServicesField>'
         | 
| 4164 | 
            +
                        },
         | 
| 4165 | 
            +
                        slash: {
         | 
| 4166 | 
            +
                            offender: 'AccountId32',
         | 
| 4167 | 
            +
                            serviceId: 'Compact<u64>',
         | 
| 4168 | 
            +
                            percent: 'Compact<Percent>'
         | 
| 4169 | 
            +
                        },
         | 
| 4170 | 
            +
                        dispute: {
         | 
| 4171 | 
            +
                            era: 'Compact<u32>',
         | 
| 4172 | 
            +
                            index: 'Compact<u32>'
         | 
| 4144 4173 | 
             
                        }
         | 
| 4145 4174 | 
             
                    }
         | 
| 4146 4175 | 
             
                },
         | 
| 4147 4176 | 
             
                /**
         | 
| 4148 | 
            -
               *  | 
| 4177 | 
            +
               * Lookup390: tangle_primitives::services::ServiceBlueprint<C>
         | 
| 4149 4178 | 
             
               **/ TanglePrimitivesServicesServiceBlueprint: {
         | 
| 4150 4179 | 
             
                    metadata: 'TanglePrimitivesServicesServiceMetadata',
         | 
| 4151 4180 | 
             
                    jobs: 'Vec<TanglePrimitivesServicesJobDefinition>',
         | 
| @@ -4153,10 +4182,11 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4153 4182 | 
             
                    registrationParams: 'Vec<TanglePrimitivesServicesFieldFieldType>',
         | 
| 4154 4183 | 
             
                    requestHook: 'TanglePrimitivesServicesServiceRequestHook',
         | 
| 4155 4184 | 
             
                    requestParams: 'Vec<TanglePrimitivesServicesFieldFieldType>',
         | 
| 4185 | 
            +
                    manager: 'TanglePrimitivesServicesBlueprintManager',
         | 
| 4156 4186 | 
             
                    gadget: 'TanglePrimitivesServicesGadget'
         | 
| 4157 4187 | 
             
                },
         | 
| 4158 4188 | 
             
                /**
         | 
| 4159 | 
            -
               *  | 
| 4189 | 
            +
               * Lookup391: tangle_primitives::services::ServiceMetadata<C>
         | 
| 4160 4190 | 
             
               **/ TanglePrimitivesServicesServiceMetadata: {
         | 
| 4161 4191 | 
             
                    name: 'Bytes',
         | 
| 4162 4192 | 
             
                    description: 'Option<Bytes>',
         | 
| @@ -4168,7 +4198,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4168 4198 | 
             
                    license: 'Option<Bytes>'
         | 
| 4169 4199 | 
             
                },
         | 
| 4170 4200 | 
             
                /**
         | 
| 4171 | 
            -
               *  | 
| 4201 | 
            +
               * Lookup396: tangle_primitives::services::JobDefinition<C>
         | 
| 4172 4202 | 
             
               **/ TanglePrimitivesServicesJobDefinition: {
         | 
| 4173 4203 | 
             
                    metadata: 'TanglePrimitivesServicesJobMetadata',
         | 
| 4174 4204 | 
             
                    params: 'Vec<TanglePrimitivesServicesFieldFieldType>',
         | 
| @@ -4176,13 +4206,13 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4176 4206 | 
             
                    verifier: 'TanglePrimitivesServicesJobResultVerifier'
         | 
| 4177 4207 | 
             
                },
         | 
| 4178 4208 | 
             
                /**
         | 
| 4179 | 
            -
               *  | 
| 4209 | 
            +
               * Lookup397: tangle_primitives::services::JobMetadata<C>
         | 
| 4180 4210 | 
             
               **/ TanglePrimitivesServicesJobMetadata: {
         | 
| 4181 4211 | 
             
                    name: 'Bytes',
         | 
| 4182 4212 | 
             
                    description: 'Option<Bytes>'
         | 
| 4183 4213 | 
             
                },
         | 
| 4184 4214 | 
             
                /**
         | 
| 4185 | 
            -
               *  | 
| 4215 | 
            +
               * Lookup399: tangle_primitives::services::field::FieldType
         | 
| 4186 4216 | 
             
               **/ TanglePrimitivesServicesFieldFieldType: {
         | 
| 4187 4217 | 
             
                    _enum: {
         | 
| 4188 4218 | 
             
                        Void: 'Null',
         | 
| @@ -4289,7 +4319,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4289 4319 | 
             
                    }
         | 
| 4290 4320 | 
             
                },
         | 
| 4291 4321 | 
             
                /**
         | 
| 4292 | 
            -
               *  | 
| 4322 | 
            +
               * Lookup404: tangle_primitives::services::JobResultVerifier
         | 
| 4293 4323 | 
             
               **/ TanglePrimitivesServicesJobResultVerifier: {
         | 
| 4294 4324 | 
             
                    _enum: {
         | 
| 4295 4325 | 
             
                        None: 'Null',
         | 
| @@ -4297,7 +4327,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4297 4327 | 
             
                    }
         | 
| 4298 4328 | 
             
                },
         | 
| 4299 4329 | 
             
                /**
         | 
| 4300 | 
            -
               *  | 
| 4330 | 
            +
               * Lookup406: tangle_primitives::services::ServiceRegistrationHook
         | 
| 4301 4331 | 
             
               **/ TanglePrimitivesServicesServiceRegistrationHook: {
         | 
| 4302 4332 | 
             
                    _enum: {
         | 
| 4303 4333 | 
             
                        None: 'Null',
         | 
| @@ -4305,7 +4335,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4305 4335 | 
             
                    }
         | 
| 4306 4336 | 
             
                },
         | 
| 4307 4337 | 
             
                /**
         | 
| 4308 | 
            -
               *  | 
| 4338 | 
            +
               * Lookup407: tangle_primitives::services::ServiceRequestHook
         | 
| 4309 4339 | 
             
               **/ TanglePrimitivesServicesServiceRequestHook: {
         | 
| 4310 4340 | 
             
                    _enum: {
         | 
| 4311 4341 | 
             
                        None: 'Null',
         | 
| @@ -4313,7 +4343,14 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4313 4343 | 
             
                    }
         | 
| 4314 4344 | 
             
                },
         | 
| 4315 4345 | 
             
                /**
         | 
| 4316 | 
            -
               *  | 
| 4346 | 
            +
               * Lookup408: tangle_primitives::services::BlueprintManager
         | 
| 4347 | 
            +
               **/ TanglePrimitivesServicesBlueprintManager: {
         | 
| 4348 | 
            +
                    _enum: {
         | 
| 4349 | 
            +
                        Evm: 'H160'
         | 
| 4350 | 
            +
                    }
         | 
| 4351 | 
            +
                },
         | 
| 4352 | 
            +
                /**
         | 
| 4353 | 
            +
               * Lookup409: tangle_primitives::services::Gadget<C>
         | 
| 4317 4354 | 
             
               **/ TanglePrimitivesServicesGadget: {
         | 
| 4318 4355 | 
             
                    _enum: {
         | 
| 4319 4356 | 
             
                        Wasm: 'TanglePrimitivesServicesWasmGadget',
         | 
| @@ -4322,13 +4359,13 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4322 4359 | 
             
                    }
         | 
| 4323 4360 | 
             
                },
         | 
| 4324 4361 | 
             
                /**
         | 
| 4325 | 
            -
               *  | 
| 4362 | 
            +
               * Lookup410: tangle_primitives::services::WasmGadget<C>
         | 
| 4326 4363 | 
             
               **/ TanglePrimitivesServicesWasmGadget: {
         | 
| 4327 4364 | 
             
                    runtime: 'TanglePrimitivesServicesWasmRuntime',
         | 
| 4328 4365 | 
             
                    sources: 'Vec<TanglePrimitivesServicesGadgetSource>'
         | 
| 4329 4366 | 
             
                },
         | 
| 4330 4367 | 
             
                /**
         | 
| 4331 | 
            -
               *  | 
| 4368 | 
            +
               * Lookup411: tangle_primitives::services::WasmRuntime
         | 
| 4332 4369 | 
             
               **/ TanglePrimitivesServicesWasmRuntime: {
         | 
| 4333 4370 | 
             
                    _enum: [
         | 
| 4334 4371 | 
             
                        'Wasmtime',
         | 
| @@ -4336,12 +4373,12 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4336 4373 | 
             
                    ]
         | 
| 4337 4374 | 
             
                },
         | 
| 4338 4375 | 
             
                /**
         | 
| 4339 | 
            -
               *  | 
| 4376 | 
            +
               * Lookup413: tangle_primitives::services::GadgetSource<C>
         | 
| 4340 4377 | 
             
               **/ TanglePrimitivesServicesGadgetSource: {
         | 
| 4341 4378 | 
             
                    fetcher: 'TanglePrimitivesServicesGadgetSourceFetcher'
         | 
| 4342 4379 | 
             
                },
         | 
| 4343 4380 | 
             
                /**
         | 
| 4344 | 
            -
               *  | 
| 4381 | 
            +
               * Lookup414: tangle_primitives::services::GadgetSourceFetcher<C>
         | 
| 4345 4382 | 
             
               **/ TanglePrimitivesServicesGadgetSourceFetcher: {
         | 
| 4346 4383 | 
             
                    _enum: {
         | 
| 4347 4384 | 
             
                        IPFS: 'Bytes',
         | 
| @@ -4351,7 +4388,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4351 4388 | 
             
                    }
         | 
| 4352 4389 | 
             
                },
         | 
| 4353 4390 | 
             
                /**
         | 
| 4354 | 
            -
               *  | 
| 4391 | 
            +
               * Lookup416: tangle_primitives::services::GithubFetcher<C>
         | 
| 4355 4392 | 
             
               **/ TanglePrimitivesServicesGithubFetcher: {
         | 
| 4356 4393 | 
             
                    owner: 'Bytes',
         | 
| 4357 4394 | 
             
                    repo: 'Bytes',
         | 
| @@ -4359,7 +4396,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4359 4396 | 
             
                    binaries: 'Vec<TanglePrimitivesServicesGadgetBinary>'
         | 
| 4360 4397 | 
             
                },
         | 
| 4361 4398 | 
             
                /**
         | 
| 4362 | 
            -
               *  | 
| 4399 | 
            +
               * Lookup424: tangle_primitives::services::GadgetBinary<C>
         | 
| 4363 4400 | 
             
               **/ TanglePrimitivesServicesGadgetBinary: {
         | 
| 4364 4401 | 
             
                    arch: 'TanglePrimitivesServicesArchitecture',
         | 
| 4365 4402 | 
             
                    os: 'TanglePrimitivesServicesOperatingSystem',
         | 
| @@ -4367,7 +4404,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4367 4404 | 
             
                    sha256: '[u8;32]'
         | 
| 4368 4405 | 
             
                },
         | 
| 4369 4406 | 
             
                /**
         | 
| 4370 | 
            -
               *  | 
| 4407 | 
            +
               * Lookup425: tangle_primitives::services::Architecture
         | 
| 4371 4408 | 
             
               **/ TanglePrimitivesServicesArchitecture: {
         | 
| 4372 4409 | 
             
                    _enum: [
         | 
| 4373 4410 | 
             
                        'Wasm',
         | 
| @@ -4383,7 +4420,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4383 4420 | 
             
                    ]
         | 
| 4384 4421 | 
             
                },
         | 
| 4385 4422 | 
             
                /**
         | 
| 4386 | 
            -
               *  | 
| 4423 | 
            +
               * Lookup426: tangle_primitives::services::OperatingSystem
         | 
| 4387 4424 | 
             
               **/ TanglePrimitivesServicesOperatingSystem: {
         | 
| 4388 4425 | 
             
                    _enum: [
         | 
| 4389 4426 | 
             
                        'Unknown',
         | 
| @@ -4394,7 +4431,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4394 4431 | 
             
                    ]
         | 
| 4395 4432 | 
             
                },
         | 
| 4396 4433 | 
             
                /**
         | 
| 4397 | 
            -
               *  | 
| 4434 | 
            +
               * Lookup430: tangle_primitives::services::ImageRegistryFetcher<C>
         | 
| 4398 4435 | 
             
               **/ TanglePrimitivesServicesImageRegistryFetcher: {
         | 
| 4399 4436 | 
             
                    _alias: {
         | 
| 4400 4437 | 
             
                        registry_: 'registry'
         | 
| @@ -4404,24 +4441,24 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4404 4441 | 
             
                    tag: 'Bytes'
         | 
| 4405 4442 | 
             
                },
         | 
| 4406 4443 | 
             
                /**
         | 
| 4407 | 
            -
               *  | 
| 4444 | 
            +
               * Lookup437: tangle_primitives::services::TestFetcher<C>
         | 
| 4408 4445 | 
             
               **/ TanglePrimitivesServicesTestFetcher: {
         | 
| 4409 4446 | 
             
                    cargoPackage: 'Bytes',
         | 
| 4410 4447 | 
             
                    cargoBin: 'Bytes',
         | 
| 4411 4448 | 
             
                    basePath: 'Bytes'
         | 
| 4412 4449 | 
             
                },
         | 
| 4413 4450 | 
             
                /**
         | 
| 4414 | 
            -
               *  | 
| 4451 | 
            +
               * Lookup439: tangle_primitives::services::NativeGadget<C>
         | 
| 4415 4452 | 
             
               **/ TanglePrimitivesServicesNativeGadget: {
         | 
| 4416 4453 | 
             
                    sources: 'Vec<TanglePrimitivesServicesGadgetSource>'
         | 
| 4417 4454 | 
             
                },
         | 
| 4418 4455 | 
             
                /**
         | 
| 4419 | 
            -
               *  | 
| 4456 | 
            +
               * Lookup440: tangle_primitives::services::ContainerGadget<C>
         | 
| 4420 4457 | 
             
               **/ TanglePrimitivesServicesContainerGadget: {
         | 
| 4421 4458 | 
             
                    sources: 'Vec<TanglePrimitivesServicesGadgetSource>'
         | 
| 4422 4459 | 
             
                },
         | 
| 4423 4460 | 
             
                /**
         | 
| 4424 | 
            -
               *  | 
| 4461 | 
            +
               * Lookup443: pallet_tangle_lst::pallet::Call<T>
         | 
| 4425 4462 | 
             
               **/ PalletTangleLstCall: {
         | 
| 4426 4463 | 
             
                    _enum: {
         | 
| 4427 4464 | 
             
                        join: {
         | 
| @@ -4452,7 +4489,8 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4452 4489 | 
             
                            root: 'MultiAddress',
         | 
| 4453 4490 | 
             
                            nominator: 'MultiAddress',
         | 
| 4454 4491 | 
             
                            bouncer: 'MultiAddress',
         | 
| 4455 | 
            -
                            name: 'Bytes'
         | 
| 4492 | 
            +
                            name: 'Option<Bytes>',
         | 
| 4493 | 
            +
                            icon: 'Option<Bytes>'
         | 
| 4456 4494 | 
             
                        },
         | 
| 4457 4495 | 
             
                        create_with_pool_id: {
         | 
| 4458 4496 | 
             
                            amount: 'Compact<u128>',
         | 
| @@ -4460,7 +4498,8 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4460 4498 | 
             
                            nominator: 'MultiAddress',
         | 
| 4461 4499 | 
             
                            bouncer: 'MultiAddress',
         | 
| 4462 4500 | 
             
                            poolId: 'u32',
         | 
| 4463 | 
            -
                            name: 'Bytes'
         | 
| 4501 | 
            +
                            name: 'Option<Bytes>',
         | 
| 4502 | 
            +
                            icon: 'Option<Bytes>'
         | 
| 4464 4503 | 
             
                        },
         | 
| 4465 4504 | 
             
                        nominate: {
         | 
| 4466 4505 | 
             
                            poolId: 'u32',
         | 
| @@ -4521,14 +4560,14 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4521 4560 | 
             
                    }
         | 
| 4522 4561 | 
             
                },
         | 
| 4523 4562 | 
             
                /**
         | 
| 4524 | 
            -
               *  | 
| 4563 | 
            +
               * Lookup444: pallet_tangle_lst::types::BondExtra<Balance>
         | 
| 4525 4564 | 
             
               **/ PalletTangleLstBondExtra: {
         | 
| 4526 4565 | 
             
                    _enum: {
         | 
| 4527 4566 | 
             
                        FreeBalance: 'u128'
         | 
| 4528 4567 | 
             
                    }
         | 
| 4529 4568 | 
             
                },
         | 
| 4530 4569 | 
             
                /**
         | 
| 4531 | 
            -
               *  | 
| 4570 | 
            +
               * Lookup449: pallet_tangle_lst::types::ConfigOp<T>
         | 
| 4532 4571 | 
             
               **/ PalletTangleLstConfigOpU128: {
         | 
| 4533 4572 | 
             
                    _enum: {
         | 
| 4534 4573 | 
             
                        Noop: 'Null',
         | 
| @@ -4537,7 +4576,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4537 4576 | 
             
                    }
         | 
| 4538 4577 | 
             
                },
         | 
| 4539 4578 | 
             
                /**
         | 
| 4540 | 
            -
               *  | 
| 4579 | 
            +
               * Lookup450: pallet_tangle_lst::types::ConfigOp<T>
         | 
| 4541 4580 | 
             
               **/ PalletTangleLstConfigOpU32: {
         | 
| 4542 4581 | 
             
                    _enum: {
         | 
| 4543 4582 | 
             
                        Noop: 'Null',
         | 
| @@ -4546,7 +4585,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4546 4585 | 
             
                    }
         | 
| 4547 4586 | 
             
                },
         | 
| 4548 4587 | 
             
                /**
         | 
| 4549 | 
            -
               *  | 
| 4588 | 
            +
               * Lookup451: pallet_tangle_lst::types::ConfigOp<sp_arithmetic::per_things::Perbill>
         | 
| 4550 4589 | 
             
               **/ PalletTangleLstConfigOpPerbill: {
         | 
| 4551 4590 | 
             
                    _enum: {
         | 
| 4552 4591 | 
             
                        Noop: 'Null',
         | 
| @@ -4555,7 +4594,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4555 4594 | 
             
                    }
         | 
| 4556 4595 | 
             
                },
         | 
| 4557 4596 | 
             
                /**
         | 
| 4558 | 
            -
               *  | 
| 4597 | 
            +
               * Lookup452: pallet_tangle_lst::types::ConfigOp<sp_core::crypto::AccountId32>
         | 
| 4559 4598 | 
             
               **/ PalletTangleLstConfigOpAccountId32: {
         | 
| 4560 4599 | 
             
                    _enum: {
         | 
| 4561 4600 | 
             
                        Noop: 'Null',
         | 
| @@ -4564,14 +4603,14 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4564 4603 | 
             
                    }
         | 
| 4565 4604 | 
             
                },
         | 
| 4566 4605 | 
             
                /**
         | 
| 4567 | 
            -
               *  | 
| 4606 | 
            +
               * Lookup453: pallet_sudo::pallet::Error<T>
         | 
| 4568 4607 | 
             
               **/ PalletSudoError: {
         | 
| 4569 4608 | 
             
                    _enum: [
         | 
| 4570 4609 | 
             
                        'RequireSudo'
         | 
| 4571 4610 | 
             
                    ]
         | 
| 4572 4611 | 
             
                },
         | 
| 4573 4612 | 
             
                /**
         | 
| 4574 | 
            -
               *  | 
| 4613 | 
            +
               * Lookup455: pallet_assets::types::AssetDetails<Balance, sp_core::crypto::AccountId32, DepositBalance>
         | 
| 4575 4614 | 
             
               **/ PalletAssetsAssetDetails: {
         | 
| 4576 4615 | 
             
                    owner: 'AccountId32',
         | 
| 4577 4616 | 
             
                    issuer: 'AccountId32',
         | 
| @@ -4587,7 +4626,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4587 4626 | 
             
                    status: 'PalletAssetsAssetStatus'
         | 
| 4588 4627 | 
             
                },
         | 
| 4589 4628 | 
             
                /**
         | 
| 4590 | 
            -
               *  | 
| 4629 | 
            +
               * Lookup456: pallet_assets::types::AssetStatus
         | 
| 4591 4630 | 
             
               **/ PalletAssetsAssetStatus: {
         | 
| 4592 4631 | 
             
                    _enum: [
         | 
| 4593 4632 | 
             
                        'Live',
         | 
| @@ -4596,7 +4635,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4596 4635 | 
             
                    ]
         | 
| 4597 4636 | 
             
                },
         | 
| 4598 4637 | 
             
                /**
         | 
| 4599 | 
            -
               *  | 
| 4638 | 
            +
               * Lookup458: pallet_assets::types::AssetAccount<Balance, DepositBalance, Extra, sp_core::crypto::AccountId32>
         | 
| 4600 4639 | 
             
               **/ PalletAssetsAssetAccount: {
         | 
| 4601 4640 | 
             
                    balance: 'u128',
         | 
| 4602 4641 | 
             
                    status: 'PalletAssetsAccountStatus',
         | 
| @@ -4604,7 +4643,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4604 4643 | 
             
                    extra: 'Null'
         | 
| 4605 4644 | 
             
                },
         | 
| 4606 4645 | 
             
                /**
         | 
| 4607 | 
            -
               *  | 
| 4646 | 
            +
               * Lookup459: pallet_assets::types::AccountStatus
         | 
| 4608 4647 | 
             
               **/ PalletAssetsAccountStatus: {
         | 
| 4609 4648 | 
             
                    _enum: [
         | 
| 4610 4649 | 
             
                        'Liquid',
         | 
| @@ -4613,7 +4652,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4613 4652 | 
             
                    ]
         | 
| 4614 4653 | 
             
                },
         | 
| 4615 4654 | 
             
                /**
         | 
| 4616 | 
            -
               *  | 
| 4655 | 
            +
               * Lookup460: pallet_assets::types::ExistenceReason<Balance, sp_core::crypto::AccountId32>
         | 
| 4617 4656 | 
             
               **/ PalletAssetsExistenceReason: {
         | 
| 4618 4657 | 
             
                    _enum: {
         | 
| 4619 4658 | 
             
                        Consumer: 'Null',
         | 
| @@ -4624,13 +4663,13 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4624 4663 | 
             
                    }
         | 
| 4625 4664 | 
             
                },
         | 
| 4626 4665 | 
             
                /**
         | 
| 4627 | 
            -
               *  | 
| 4666 | 
            +
               * Lookup462: pallet_assets::types::Approval<Balance, DepositBalance>
         | 
| 4628 4667 | 
             
               **/ PalletAssetsApproval: {
         | 
| 4629 4668 | 
             
                    amount: 'u128',
         | 
| 4630 4669 | 
             
                    deposit: 'u128'
         | 
| 4631 4670 | 
             
                },
         | 
| 4632 4671 | 
             
                /**
         | 
| 4633 | 
            -
               *  | 
| 4672 | 
            +
               * Lookup463: pallet_assets::types::AssetMetadata<DepositBalance, bounded_collections::bounded_vec::BoundedVec<T, S>>
         | 
| 4634 4673 | 
             
               **/ PalletAssetsAssetMetadata: {
         | 
| 4635 4674 | 
             
                    deposit: 'u128',
         | 
| 4636 4675 | 
             
                    name: 'Bytes',
         | 
| @@ -4639,7 +4678,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4639 4678 | 
             
                    isFrozen: 'bool'
         | 
| 4640 4679 | 
             
                },
         | 
| 4641 4680 | 
             
                /**
         | 
| 4642 | 
            -
               *  | 
| 4681 | 
            +
               * Lookup465: pallet_assets::pallet::Error<T, I>
         | 
| 4643 4682 | 
             
               **/ PalletAssetsError: {
         | 
| 4644 4683 | 
             
                    _enum: [
         | 
| 4645 4684 | 
             
                        'BalanceLow',
         | 
| @@ -4666,14 +4705,14 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4666 4705 | 
             
                    ]
         | 
| 4667 4706 | 
             
                },
         | 
| 4668 4707 | 
             
                /**
         | 
| 4669 | 
            -
               *  | 
| 4708 | 
            +
               * Lookup467: pallet_balances::types::BalanceLock<Balance>
         | 
| 4670 4709 | 
             
               **/ PalletBalancesBalanceLock: {
         | 
| 4671 4710 | 
             
                    id: '[u8;8]',
         | 
| 4672 4711 | 
             
                    amount: 'u128',
         | 
| 4673 4712 | 
             
                    reasons: 'PalletBalancesReasons'
         | 
| 4674 4713 | 
             
                },
         | 
| 4675 4714 | 
             
                /**
         | 
| 4676 | 
            -
               *  | 
| 4715 | 
            +
               * Lookup468: pallet_balances::types::Reasons
         | 
| 4677 4716 | 
             
               **/ PalletBalancesReasons: {
         | 
| 4678 4717 | 
             
                    _enum: [
         | 
| 4679 4718 | 
             
                        'Fee',
         | 
| @@ -4682,19 +4721,19 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4682 4721 | 
             
                    ]
         | 
| 4683 4722 | 
             
                },
         | 
| 4684 4723 | 
             
                /**
         | 
| 4685 | 
            -
               *  | 
| 4724 | 
            +
               * Lookup471: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
         | 
| 4686 4725 | 
             
               **/ PalletBalancesReserveData: {
         | 
| 4687 4726 | 
             
                    id: '[u8;8]',
         | 
| 4688 4727 | 
             
                    amount: 'u128'
         | 
| 4689 4728 | 
             
                },
         | 
| 4690 4729 | 
             
                /**
         | 
| 4691 | 
            -
               *  | 
| 4730 | 
            +
               * Lookup474: frame_support::traits::tokens::misc::IdAmount<tangle_testnet_runtime::RuntimeHoldReason, Balance>
         | 
| 4692 4731 | 
             
               **/ FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
         | 
| 4693 4732 | 
             
                    id: 'TangleTestnetRuntimeRuntimeHoldReason',
         | 
| 4694 4733 | 
             
                    amount: 'u128'
         | 
| 4695 4734 | 
             
                },
         | 
| 4696 4735 | 
             
                /**
         | 
| 4697 | 
            -
               *  | 
| 4736 | 
            +
               * Lookup475: tangle_testnet_runtime::RuntimeHoldReason
         | 
| 4698 4737 | 
             
               **/ TangleTestnetRuntimeRuntimeHoldReason: {
         | 
| 4699 4738 | 
             
                    _enum: {
         | 
| 4700 4739 | 
             
                        __Unused0: 'Null',
         | 
| @@ -4727,20 +4766,20 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4727 4766 | 
             
                    }
         | 
| 4728 4767 | 
             
                },
         | 
| 4729 4768 | 
             
                /**
         | 
| 4730 | 
            -
               *  | 
| 4769 | 
            +
               * Lookup476: pallet_preimage::pallet::HoldReason
         | 
| 4731 4770 | 
             
               **/ PalletPreimageHoldReason: {
         | 
| 4732 4771 | 
             
                    _enum: [
         | 
| 4733 4772 | 
             
                        'Preimage'
         | 
| 4734 4773 | 
             
                    ]
         | 
| 4735 4774 | 
             
                },
         | 
| 4736 4775 | 
             
                /**
         | 
| 4737 | 
            -
               *  | 
| 4776 | 
            +
               * Lookup479: frame_support::traits::tokens::misc::IdAmount<tangle_testnet_runtime::RuntimeFreezeReason, Balance>
         | 
| 4738 4777 | 
             
               **/ FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
         | 
| 4739 4778 | 
             
                    id: 'TangleTestnetRuntimeRuntimeFreezeReason',
         | 
| 4740 4779 | 
             
                    amount: 'u128'
         | 
| 4741 4780 | 
             
                },
         | 
| 4742 4781 | 
             
                /**
         | 
| 4743 | 
            -
               *  | 
| 4782 | 
            +
               * Lookup480: tangle_testnet_runtime::RuntimeFreezeReason
         | 
| 4744 4783 | 
             
               **/ TangleTestnetRuntimeRuntimeFreezeReason: {
         | 
| 4745 4784 | 
             
                    _enum: {
         | 
| 4746 4785 | 
             
                        __Unused0: 'Null',
         | 
| @@ -4799,21 +4838,21 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4799 4838 | 
             
                    }
         | 
| 4800 4839 | 
             
                },
         | 
| 4801 4840 | 
             
                /**
         | 
| 4802 | 
            -
               *  | 
| 4841 | 
            +
               * Lookup481: pallet_nomination_pools::pallet::FreezeReason
         | 
| 4803 4842 | 
             
               **/ PalletNominationPoolsFreezeReason: {
         | 
| 4804 4843 | 
             
                    _enum: [
         | 
| 4805 4844 | 
             
                        'PoolMinBalance'
         | 
| 4806 4845 | 
             
                    ]
         | 
| 4807 4846 | 
             
                },
         | 
| 4808 4847 | 
             
                /**
         | 
| 4809 | 
            -
               *  | 
| 4848 | 
            +
               * Lookup482: pallet_tangle_lst::pallet::FreezeReason
         | 
| 4810 4849 | 
             
               **/ PalletTangleLstFreezeReason: {
         | 
| 4811 4850 | 
             
                    _enum: [
         | 
| 4812 4851 | 
             
                        'PoolMinBalance'
         | 
| 4813 4852 | 
             
                    ]
         | 
| 4814 4853 | 
             
                },
         | 
| 4815 4854 | 
             
                /**
         | 
| 4816 | 
            -
               *  | 
| 4855 | 
            +
               * Lookup484: pallet_balances::pallet::Error<T, I>
         | 
| 4817 4856 | 
             
               **/ PalletBalancesError: {
         | 
| 4818 4857 | 
             
                    _enum: [
         | 
| 4819 4858 | 
             
                        'VestingBalance',
         | 
| @@ -4831,7 +4870,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4831 4870 | 
             
                    ]
         | 
| 4832 4871 | 
             
                },
         | 
| 4833 4872 | 
             
                /**
         | 
| 4834 | 
            -
               *  | 
| 4873 | 
            +
               * Lookup486: pallet_transaction_payment::Releases
         | 
| 4835 4874 | 
             
               **/ PalletTransactionPaymentReleases: {
         | 
| 4836 4875 | 
             
                    _enum: [
         | 
| 4837 4876 | 
             
                        'V1Ancient',
         | 
| @@ -4839,7 +4878,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4839 4878 | 
             
                    ]
         | 
| 4840 4879 | 
             
                },
         | 
| 4841 4880 | 
             
                /**
         | 
| 4842 | 
            -
               *  | 
| 4881 | 
            +
               * Lookup493: sp_consensus_babe::digests::PreDigest
         | 
| 4843 4882 | 
             
               **/ SpConsensusBabeDigestsPreDigest: {
         | 
| 4844 4883 | 
             
                    _enum: {
         | 
| 4845 4884 | 
             
                        __Unused0: 'Null',
         | 
| @@ -4849,39 +4888,39 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4849 4888 | 
             
                    }
         | 
| 4850 4889 | 
             
                },
         | 
| 4851 4890 | 
             
                /**
         | 
| 4852 | 
            -
               *  | 
| 4891 | 
            +
               * Lookup494: sp_consensus_babe::digests::PrimaryPreDigest
         | 
| 4853 4892 | 
             
               **/ SpConsensusBabeDigestsPrimaryPreDigest: {
         | 
| 4854 4893 | 
             
                    authorityIndex: 'u32',
         | 
| 4855 4894 | 
             
                    slot: 'u64',
         | 
| 4856 4895 | 
             
                    vrfSignature: 'SpCoreSr25519VrfVrfSignature'
         | 
| 4857 4896 | 
             
                },
         | 
| 4858 4897 | 
             
                /**
         | 
| 4859 | 
            -
               *  | 
| 4898 | 
            +
               * Lookup495: sp_core::sr25519::vrf::VrfSignature
         | 
| 4860 4899 | 
             
               **/ SpCoreSr25519VrfVrfSignature: {
         | 
| 4861 4900 | 
             
                    preOutput: '[u8;32]',
         | 
| 4862 4901 | 
             
                    proof: '[u8;64]'
         | 
| 4863 4902 | 
             
                },
         | 
| 4864 4903 | 
             
                /**
         | 
| 4865 | 
            -
               *  | 
| 4904 | 
            +
               * Lookup496: sp_consensus_babe::digests::SecondaryPlainPreDigest
         | 
| 4866 4905 | 
             
               **/ SpConsensusBabeDigestsSecondaryPlainPreDigest: {
         | 
| 4867 4906 | 
             
                    authorityIndex: 'u32',
         | 
| 4868 4907 | 
             
                    slot: 'u64'
         | 
| 4869 4908 | 
             
                },
         | 
| 4870 4909 | 
             
                /**
         | 
| 4871 | 
            -
               *  | 
| 4910 | 
            +
               * Lookup497: sp_consensus_babe::digests::SecondaryVRFPreDigest
         | 
| 4872 4911 | 
             
               **/ SpConsensusBabeDigestsSecondaryVRFPreDigest: {
         | 
| 4873 4912 | 
             
                    authorityIndex: 'u32',
         | 
| 4874 4913 | 
             
                    slot: 'u64',
         | 
| 4875 4914 | 
             
                    vrfSignature: 'SpCoreSr25519VrfVrfSignature'
         | 
| 4876 4915 | 
             
                },
         | 
| 4877 4916 | 
             
                /**
         | 
| 4878 | 
            -
               *  | 
| 4917 | 
            +
               * Lookup498: sp_consensus_babe::BabeEpochConfiguration
         | 
| 4879 4918 | 
             
               **/ SpConsensusBabeBabeEpochConfiguration: {
         | 
| 4880 4919 | 
             
                    c: '(u64,u64)',
         | 
| 4881 4920 | 
             
                    allowedSlots: 'SpConsensusBabeAllowedSlots'
         | 
| 4882 4921 | 
             
                },
         | 
| 4883 4922 | 
             
                /**
         | 
| 4884 | 
            -
               *  | 
| 4923 | 
            +
               * Lookup500: pallet_babe::pallet::Error<T>
         | 
| 4885 4924 | 
             
               **/ PalletBabeError: {
         | 
| 4886 4925 | 
             
                    _enum: [
         | 
| 4887 4926 | 
             
                        'InvalidEquivocationProof',
         | 
| @@ -4891,7 +4930,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4891 4930 | 
             
                    ]
         | 
| 4892 4931 | 
             
                },
         | 
| 4893 4932 | 
             
                /**
         | 
| 4894 | 
            -
               *  | 
| 4933 | 
            +
               * Lookup501: pallet_grandpa::StoredState<N>
         | 
| 4895 4934 | 
             
               **/ PalletGrandpaStoredState: {
         | 
| 4896 4935 | 
             
                    _enum: {
         | 
| 4897 4936 | 
             
                        Live: 'Null',
         | 
| @@ -4907,7 +4946,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4907 4946 | 
             
                    }
         | 
| 4908 4947 | 
             
                },
         | 
| 4909 4948 | 
             
                /**
         | 
| 4910 | 
            -
               *  | 
| 4949 | 
            +
               * Lookup502: pallet_grandpa::StoredPendingChange<N, Limit>
         | 
| 4911 4950 | 
             
               **/ PalletGrandpaStoredPendingChange: {
         | 
| 4912 4951 | 
             
                    scheduledAt: 'u64',
         | 
| 4913 4952 | 
             
                    delay: 'u64',
         | 
| @@ -4915,7 +4954,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4915 4954 | 
             
                    forced: 'Option<u64>'
         | 
| 4916 4955 | 
             
                },
         | 
| 4917 4956 | 
             
                /**
         | 
| 4918 | 
            -
               *  | 
| 4957 | 
            +
               * Lookup504: pallet_grandpa::pallet::Error<T>
         | 
| 4919 4958 | 
             
               **/ PalletGrandpaError: {
         | 
| 4920 4959 | 
             
                    _enum: [
         | 
| 4921 4960 | 
             
                        'PauseFailed',
         | 
| @@ -4928,7 +4967,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4928 4967 | 
             
                    ]
         | 
| 4929 4968 | 
             
                },
         | 
| 4930 4969 | 
             
                /**
         | 
| 4931 | 
            -
               *  | 
| 4970 | 
            +
               * Lookup506: pallet_indices::pallet::Error<T>
         | 
| 4932 4971 | 
             
               **/ PalletIndicesError: {
         | 
| 4933 4972 | 
             
                    _enum: [
         | 
| 4934 4973 | 
             
                        'NotAssigned',
         | 
| @@ -4939,7 +4978,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4939 4978 | 
             
                    ]
         | 
| 4940 4979 | 
             
                },
         | 
| 4941 4980 | 
             
                /**
         | 
| 4942 | 
            -
               *  | 
| 4981 | 
            +
               * Lookup511: pallet_democracy::types::ReferendumInfo<BlockNumber, frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>, Balance>
         | 
| 4943 4982 | 
             
               **/ PalletDemocracyReferendumInfo: {
         | 
| 4944 4983 | 
             
                    _enum: {
         | 
| 4945 4984 | 
             
                        Ongoing: 'PalletDemocracyReferendumStatus',
         | 
| @@ -4950,7 +4989,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4950 4989 | 
             
                    }
         | 
| 4951 4990 | 
             
                },
         | 
| 4952 4991 | 
             
                /**
         | 
| 4953 | 
            -
               *  | 
| 4992 | 
            +
               * Lookup512: pallet_democracy::types::ReferendumStatus<BlockNumber, frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>, Balance>
         | 
| 4954 4993 | 
             
               **/ PalletDemocracyReferendumStatus: {
         | 
| 4955 4994 | 
             
                    end: 'u64',
         | 
| 4956 4995 | 
             
                    proposal: 'FrameSupportPreimagesBounded',
         | 
| @@ -4959,14 +4998,14 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4959 4998 | 
             
                    tally: 'PalletDemocracyTally'
         | 
| 4960 4999 | 
             
                },
         | 
| 4961 5000 | 
             
                /**
         | 
| 4962 | 
            -
               *  | 
| 5001 | 
            +
               * Lookup513: pallet_democracy::types::Tally<Balance>
         | 
| 4963 5002 | 
             
               **/ PalletDemocracyTally: {
         | 
| 4964 5003 | 
             
                    ayes: 'u128',
         | 
| 4965 5004 | 
             
                    nays: 'u128',
         | 
| 4966 5005 | 
             
                    turnout: 'u128'
         | 
| 4967 5006 | 
             
                },
         | 
| 4968 5007 | 
             
                /**
         | 
| 4969 | 
            -
               *  | 
| 5008 | 
            +
               * Lookup514: pallet_democracy::vote::Voting<Balance, sp_core::crypto::AccountId32, BlockNumber, MaxVotes>
         | 
| 4970 5009 | 
             
               **/ PalletDemocracyVoteVoting: {
         | 
| 4971 5010 | 
             
                    _enum: {
         | 
| 4972 5011 | 
             
                        Direct: {
         | 
| @@ -4984,16 +5023,16 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 4984 5023 | 
             
                    }
         | 
| 4985 5024 | 
             
                },
         | 
| 4986 5025 | 
             
                /**
         | 
| 4987 | 
            -
               *  | 
| 5026 | 
            +
               * Lookup518: pallet_democracy::types::Delegations<Balance>
         | 
| 4988 5027 | 
             
               **/ PalletDemocracyDelegations: {
         | 
| 4989 5028 | 
             
                    votes: 'u128',
         | 
| 4990 5029 | 
             
                    capital: 'u128'
         | 
| 4991 5030 | 
             
                },
         | 
| 4992 5031 | 
             
                /**
         | 
| 4993 | 
            -
               *  | 
| 5032 | 
            +
               * Lookup519: pallet_democracy::vote::PriorLock<BlockNumber, Balance>
         | 
| 4994 5033 | 
             
               **/ PalletDemocracyVotePriorLock: '(u64,u128)',
         | 
| 4995 5034 | 
             
                /**
         | 
| 4996 | 
            -
               *  | 
| 5035 | 
            +
               * Lookup522: pallet_democracy::pallet::Error<T>
         | 
| 4997 5036 | 
             
               **/ PalletDemocracyError: {
         | 
| 4998 5037 | 
             
                    _enum: [
         | 
| 4999 5038 | 
             
                        'ValueLow',
         | 
| @@ -5023,7 +5062,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5023 5062 | 
             
                    ]
         | 
| 5024 5063 | 
             
                },
         | 
| 5025 5064 | 
             
                /**
         | 
| 5026 | 
            -
               *  | 
| 5065 | 
            +
               * Lookup524: pallet_collective::Votes<sp_core::crypto::AccountId32, BlockNumber>
         | 
| 5027 5066 | 
             
               **/ PalletCollectiveVotes: {
         | 
| 5028 5067 | 
             
                    index: 'u32',
         | 
| 5029 5068 | 
             
                    threshold: 'u32',
         | 
| @@ -5032,7 +5071,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5032 5071 | 
             
                    end: 'u64'
         | 
| 5033 5072 | 
             
                },
         | 
| 5034 5073 | 
             
                /**
         | 
| 5035 | 
            -
               *  | 
| 5074 | 
            +
               * Lookup525: pallet_collective::pallet::Error<T, I>
         | 
| 5036 5075 | 
             
               **/ PalletCollectiveError: {
         | 
| 5037 5076 | 
             
                    _enum: [
         | 
| 5038 5077 | 
             
                        'NotMember',
         | 
| @@ -5049,7 +5088,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5049 5088 | 
             
                    ]
         | 
| 5050 5089 | 
             
                },
         | 
| 5051 5090 | 
             
                /**
         | 
| 5052 | 
            -
               *  | 
| 5091 | 
            +
               * Lookup528: pallet_vesting::Releases
         | 
| 5053 5092 | 
             
               **/ PalletVestingReleases: {
         | 
| 5054 5093 | 
             
                    _enum: [
         | 
| 5055 5094 | 
             
                        'V0',
         | 
| @@ -5057,7 +5096,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5057 5096 | 
             
                    ]
         | 
| 5058 5097 | 
             
                },
         | 
| 5059 5098 | 
             
                /**
         | 
| 5060 | 
            -
               *  | 
| 5099 | 
            +
               * Lookup529: pallet_vesting::pallet::Error<T>
         | 
| 5061 5100 | 
             
               **/ PalletVestingError: {
         | 
| 5062 5101 | 
             
                    _enum: [
         | 
| 5063 5102 | 
             
                        'NotVesting',
         | 
| @@ -5068,21 +5107,21 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5068 5107 | 
             
                    ]
         | 
| 5069 5108 | 
             
                },
         | 
| 5070 5109 | 
             
                /**
         | 
| 5071 | 
            -
               *  | 
| 5110 | 
            +
               * Lookup531: pallet_elections_phragmen::SeatHolder<sp_core::crypto::AccountId32, Balance>
         | 
| 5072 5111 | 
             
               **/ PalletElectionsPhragmenSeatHolder: {
         | 
| 5073 5112 | 
             
                    who: 'AccountId32',
         | 
| 5074 5113 | 
             
                    stake: 'u128',
         | 
| 5075 5114 | 
             
                    deposit: 'u128'
         | 
| 5076 5115 | 
             
                },
         | 
| 5077 5116 | 
             
                /**
         | 
| 5078 | 
            -
               *  | 
| 5117 | 
            +
               * Lookup532: pallet_elections_phragmen::Voter<sp_core::crypto::AccountId32, Balance>
         | 
| 5079 5118 | 
             
               **/ PalletElectionsPhragmenVoter: {
         | 
| 5080 5119 | 
             
                    votes: 'Vec<AccountId32>',
         | 
| 5081 5120 | 
             
                    stake: 'u128',
         | 
| 5082 5121 | 
             
                    deposit: 'u128'
         | 
| 5083 5122 | 
             
                },
         | 
| 5084 5123 | 
             
                /**
         | 
| 5085 | 
            -
               *  | 
| 5124 | 
            +
               * Lookup533: pallet_elections_phragmen::pallet::Error<T>
         | 
| 5086 5125 | 
             
               **/ PalletElectionsPhragmenError: {
         | 
| 5087 5126 | 
             
                    _enum: [
         | 
| 5088 5127 | 
             
                        'UnableToVote',
         | 
| @@ -5105,20 +5144,20 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5105 5144 | 
             
                    ]
         | 
| 5106 5145 | 
             
                },
         | 
| 5107 5146 | 
             
                /**
         | 
| 5108 | 
            -
               *  | 
| 5147 | 
            +
               * Lookup534: pallet_election_provider_multi_phase::ReadySolution<AccountId, MaxWinners>
         | 
| 5109 5148 | 
             
               **/ PalletElectionProviderMultiPhaseReadySolution: {
         | 
| 5110 5149 | 
             
                    supports: 'Vec<(AccountId32,SpNposElectionsSupport)>',
         | 
| 5111 5150 | 
             
                    score: 'SpNposElectionsElectionScore',
         | 
| 5112 5151 | 
             
                    compute: 'PalletElectionProviderMultiPhaseElectionCompute'
         | 
| 5113 5152 | 
             
                },
         | 
| 5114 5153 | 
             
                /**
         | 
| 5115 | 
            -
               *  | 
| 5154 | 
            +
               * Lookup536: pallet_election_provider_multi_phase::RoundSnapshot<sp_core::crypto::AccountId32, DataProvider>
         | 
| 5116 5155 | 
             
               **/ PalletElectionProviderMultiPhaseRoundSnapshot: {
         | 
| 5117 5156 | 
             
                    voters: 'Vec<(AccountId32,u64,Vec<AccountId32>)>',
         | 
| 5118 5157 | 
             
                    targets: 'Vec<AccountId32>'
         | 
| 5119 5158 | 
             
                },
         | 
| 5120 5159 | 
             
                /**
         | 
| 5121 | 
            -
               *  | 
| 5160 | 
            +
               * Lookup543: pallet_election_provider_multi_phase::signed::SignedSubmission<sp_core::crypto::AccountId32, Balance, tangle_testnet_runtime::NposSolution16>
         | 
| 5122 5161 | 
             
               **/ PalletElectionProviderMultiPhaseSignedSignedSubmission: {
         | 
| 5123 5162 | 
             
                    who: 'AccountId32',
         | 
| 5124 5163 | 
             
                    deposit: 'u128',
         | 
| @@ -5126,7 +5165,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5126 5165 | 
             
                    callFee: 'u128'
         | 
| 5127 5166 | 
             
                },
         | 
| 5128 5167 | 
             
                /**
         | 
| 5129 | 
            -
               *  | 
| 5168 | 
            +
               * Lookup544: pallet_election_provider_multi_phase::pallet::Error<T>
         | 
| 5130 5169 | 
             
               **/ PalletElectionProviderMultiPhaseError: {
         | 
| 5131 5170 | 
             
                    _enum: [
         | 
| 5132 5171 | 
             
                        'PreDispatchEarlySubmission',
         | 
| @@ -5147,7 +5186,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5147 5186 | 
             
                    ]
         | 
| 5148 5187 | 
             
                },
         | 
| 5149 5188 | 
             
                /**
         | 
| 5150 | 
            -
               *  | 
| 5189 | 
            +
               * Lookup545: pallet_staking::StakingLedger<T>
         | 
| 5151 5190 | 
             
               **/ PalletStakingStakingLedger: {
         | 
| 5152 5191 | 
             
                    stash: 'AccountId32',
         | 
| 5153 5192 | 
             
                    total: 'Compact<u128>',
         | 
| @@ -5156,20 +5195,20 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5156 5195 | 
             
                    legacyClaimedRewards: 'Vec<u32>'
         | 
| 5157 5196 | 
             
                },
         | 
| 5158 5197 | 
             
                /**
         | 
| 5159 | 
            -
               *  | 
| 5198 | 
            +
               * Lookup547: pallet_staking::Nominations<T>
         | 
| 5160 5199 | 
             
               **/ PalletStakingNominations: {
         | 
| 5161 5200 | 
             
                    targets: 'Vec<AccountId32>',
         | 
| 5162 5201 | 
             
                    submittedIn: 'u32',
         | 
| 5163 5202 | 
             
                    suppressed: 'bool'
         | 
| 5164 5203 | 
             
                },
         | 
| 5165 5204 | 
             
                /**
         | 
| 5166 | 
            -
               *  | 
| 5205 | 
            +
               * Lookup548: pallet_staking::ActiveEraInfo
         | 
| 5167 5206 | 
             
               **/ PalletStakingActiveEraInfo: {
         | 
| 5168 5207 | 
             
                    index: 'u32',
         | 
| 5169 5208 | 
             
                    start: 'Option<u64>'
         | 
| 5170 5209 | 
             
                },
         | 
| 5171 5210 | 
             
                /**
         | 
| 5172 | 
            -
               *  | 
| 5211 | 
            +
               * Lookup550: sp_staking::PagedExposureMetadata<Balance>
         | 
| 5173 5212 | 
             
               **/ SpStakingPagedExposureMetadata: {
         | 
| 5174 5213 | 
             
                    total: 'Compact<u128>',
         | 
| 5175 5214 | 
             
                    own: 'Compact<u128>',
         | 
| @@ -5177,19 +5216,19 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5177 5216 | 
             
                    pageCount: 'u32'
         | 
| 5178 5217 | 
             
                },
         | 
| 5179 5218 | 
             
                /**
         | 
| 5180 | 
            -
               *  | 
| 5219 | 
            +
               * Lookup552: sp_staking::ExposurePage<sp_core::crypto::AccountId32, Balance>
         | 
| 5181 5220 | 
             
               **/ SpStakingExposurePage: {
         | 
| 5182 5221 | 
             
                    pageTotal: 'Compact<u128>',
         | 
| 5183 5222 | 
             
                    others: 'Vec<SpStakingIndividualExposure>'
         | 
| 5184 5223 | 
             
                },
         | 
| 5185 5224 | 
             
                /**
         | 
| 5186 | 
            -
               *  | 
| 5225 | 
            +
               * Lookup553: pallet_staking::EraRewardPoints<sp_core::crypto::AccountId32>
         | 
| 5187 5226 | 
             
               **/ PalletStakingEraRewardPoints: {
         | 
| 5188 5227 | 
             
                    total: 'u32',
         | 
| 5189 5228 | 
             
                    individual: 'BTreeMap<AccountId32, u32>'
         | 
| 5190 5229 | 
             
                },
         | 
| 5191 5230 | 
             
                /**
         | 
| 5192 | 
            -
               *  | 
| 5231 | 
            +
               * Lookup558: pallet_staking::UnappliedSlash<sp_core::crypto::AccountId32, Balance>
         | 
| 5193 5232 | 
             
               **/ PalletStakingUnappliedSlash: {
         | 
| 5194 5233 | 
             
                    validator: 'AccountId32',
         | 
| 5195 5234 | 
             
                    own: 'u128',
         | 
| @@ -5198,7 +5237,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5198 5237 | 
             
                    payout: 'u128'
         | 
| 5199 5238 | 
             
                },
         | 
| 5200 5239 | 
             
                /**
         | 
| 5201 | 
            -
               *  | 
| 5240 | 
            +
               * Lookup562: pallet_staking::slashing::SlashingSpans
         | 
| 5202 5241 | 
             
               **/ PalletStakingSlashingSlashingSpans: {
         | 
| 5203 5242 | 
             
                    spanIndex: 'u32',
         | 
| 5204 5243 | 
             
                    lastStart: 'u32',
         | 
| @@ -5206,13 +5245,13 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5206 5245 | 
             
                    prior: 'Vec<u32>'
         | 
| 5207 5246 | 
             
                },
         | 
| 5208 5247 | 
             
                /**
         | 
| 5209 | 
            -
               *  | 
| 5248 | 
            +
               * Lookup563: pallet_staking::slashing::SpanRecord<Balance>
         | 
| 5210 5249 | 
             
               **/ PalletStakingSlashingSpanRecord: {
         | 
| 5211 5250 | 
             
                    slashed: 'u128',
         | 
| 5212 5251 | 
             
                    paidOut: 'u128'
         | 
| 5213 5252 | 
             
                },
         | 
| 5214 5253 | 
             
                /**
         | 
| 5215 | 
            -
               *  | 
| 5254 | 
            +
               * Lookup564: pallet_staking::pallet::pallet::Error<T>
         | 
| 5216 5255 | 
             
               **/ PalletStakingPalletError: {
         | 
| 5217 5256 | 
             
                    _enum: [
         | 
| 5218 5257 | 
             
                        'NotController',
         | 
| @@ -5249,10 +5288,10 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5249 5288 | 
             
                    ]
         | 
| 5250 5289 | 
             
                },
         | 
| 5251 5290 | 
             
                /**
         | 
| 5252 | 
            -
               *  | 
| 5291 | 
            +
               * Lookup568: sp_core::crypto::KeyTypeId
         | 
| 5253 5292 | 
             
               **/ SpCoreCryptoKeyTypeId: '[u8;4]',
         | 
| 5254 5293 | 
             
                /**
         | 
| 5255 | 
            -
               *  | 
| 5294 | 
            +
               * Lookup569: pallet_session::pallet::Error<T>
         | 
| 5256 5295 | 
             
               **/ PalletSessionError: {
         | 
| 5257 5296 | 
             
                    _enum: [
         | 
| 5258 5297 | 
             
                        'InvalidProof',
         | 
| @@ -5263,7 +5302,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5263 5302 | 
             
                    ]
         | 
| 5264 5303 | 
             
                },
         | 
| 5265 5304 | 
             
                /**
         | 
| 5266 | 
            -
               *  | 
| 5305 | 
            +
               * Lookup571: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
         | 
| 5267 5306 | 
             
               **/ PalletTreasuryProposal: {
         | 
| 5268 5307 | 
             
                    proposer: 'AccountId32',
         | 
| 5269 5308 | 
             
                    value: 'u128',
         | 
| @@ -5271,7 +5310,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5271 5310 | 
             
                    bond: 'u128'
         | 
| 5272 5311 | 
             
                },
         | 
| 5273 5312 | 
             
                /**
         | 
| 5274 | 
            -
               *  | 
| 5313 | 
            +
               * Lookup573: pallet_treasury::SpendStatus<AssetKind, AssetBalance, sp_core::crypto::AccountId32, BlockNumber, PaymentId>
         | 
| 5275 5314 | 
             
               **/ PalletTreasurySpendStatus: {
         | 
| 5276 5315 | 
             
                    assetKind: 'Null',
         | 
| 5277 5316 | 
             
                    amount: 'u128',
         | 
| @@ -5281,7 +5320,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5281 5320 | 
             
                    status: 'PalletTreasuryPaymentState'
         | 
| 5282 5321 | 
             
                },
         | 
| 5283 5322 | 
             
                /**
         | 
| 5284 | 
            -
               *  | 
| 5323 | 
            +
               * Lookup574: pallet_treasury::PaymentState<Id>
         | 
| 5285 5324 | 
             
               **/ PalletTreasuryPaymentState: {
         | 
| 5286 5325 | 
             
                    _enum: {
         | 
| 5287 5326 | 
             
                        Pending: 'Null',
         | 
| @@ -5292,10 +5331,10 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5292 5331 | 
             
                    }
         | 
| 5293 5332 | 
             
                },
         | 
| 5294 5333 | 
             
                /**
         | 
| 5295 | 
            -
               *  | 
| 5334 | 
            +
               * Lookup575: frame_support::PalletId
         | 
| 5296 5335 | 
             
               **/ FrameSupportPalletId: '[u8;8]',
         | 
| 5297 5336 | 
             
                /**
         | 
| 5298 | 
            -
               *  | 
| 5337 | 
            +
               * Lookup576: pallet_treasury::pallet::Error<T, I>
         | 
| 5299 5338 | 
             
               **/ PalletTreasuryError: {
         | 
| 5300 5339 | 
             
                    _enum: [
         | 
| 5301 5340 | 
             
                        'InvalidIndex',
         | 
| @@ -5312,7 +5351,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5312 5351 | 
             
                    ]
         | 
| 5313 5352 | 
             
                },
         | 
| 5314 5353 | 
             
                /**
         | 
| 5315 | 
            -
               *  | 
| 5354 | 
            +
               * Lookup577: pallet_bounties::Bounty<sp_core::crypto::AccountId32, Balance, BlockNumber>
         | 
| 5316 5355 | 
             
               **/ PalletBountiesBounty: {
         | 
| 5317 5356 | 
             
                    proposer: 'AccountId32',
         | 
| 5318 5357 | 
             
                    value: 'u128',
         | 
| @@ -5322,7 +5361,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5322 5361 | 
             
                    status: 'PalletBountiesBountyStatus'
         | 
| 5323 5362 | 
             
                },
         | 
| 5324 5363 | 
             
                /**
         | 
| 5325 | 
            -
               *  | 
| 5364 | 
            +
               * Lookup578: pallet_bounties::BountyStatus<sp_core::crypto::AccountId32, BlockNumber>
         | 
| 5326 5365 | 
             
               **/ PalletBountiesBountyStatus: {
         | 
| 5327 5366 | 
             
                    _enum: {
         | 
| 5328 5367 | 
             
                        Proposed: 'Null',
         | 
| @@ -5343,7 +5382,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5343 5382 | 
             
                    }
         | 
| 5344 5383 | 
             
                },
         | 
| 5345 5384 | 
             
                /**
         | 
| 5346 | 
            -
               *  | 
| 5385 | 
            +
               * Lookup580: pallet_bounties::pallet::Error<T, I>
         | 
| 5347 5386 | 
             
               **/ PalletBountiesError: {
         | 
| 5348 5387 | 
             
                    _enum: [
         | 
| 5349 5388 | 
             
                        'InsufficientProposersBalance',
         | 
| @@ -5360,7 +5399,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5360 5399 | 
             
                    ]
         | 
| 5361 5400 | 
             
                },
         | 
| 5362 5401 | 
             
                /**
         | 
| 5363 | 
            -
               *  | 
| 5402 | 
            +
               * Lookup581: pallet_child_bounties::ChildBounty<sp_core::crypto::AccountId32, Balance, BlockNumber>
         | 
| 5364 5403 | 
             
               **/ PalletChildBountiesChildBounty: {
         | 
| 5365 5404 | 
             
                    parentBounty: 'u32',
         | 
| 5366 5405 | 
             
                    value: 'u128',
         | 
| @@ -5369,7 +5408,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5369 5408 | 
             
                    status: 'PalletChildBountiesChildBountyStatus'
         | 
| 5370 5409 | 
             
                },
         | 
| 5371 5410 | 
             
                /**
         | 
| 5372 | 
            -
               *  | 
| 5411 | 
            +
               * Lookup582: pallet_child_bounties::ChildBountyStatus<sp_core::crypto::AccountId32, BlockNumber>
         | 
| 5373 5412 | 
             
               **/ PalletChildBountiesChildBountyStatus: {
         | 
| 5374 5413 | 
             
                    _enum: {
         | 
| 5375 5414 | 
             
                        Added: 'Null',
         | 
| @@ -5387,7 +5426,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5387 5426 | 
             
                    }
         | 
| 5388 5427 | 
             
                },
         | 
| 5389 5428 | 
             
                /**
         | 
| 5390 | 
            -
               *  | 
| 5429 | 
            +
               * Lookup583: pallet_child_bounties::pallet::Error<T>
         | 
| 5391 5430 | 
             
               **/ PalletChildBountiesError: {
         | 
| 5392 5431 | 
             
                    _enum: [
         | 
| 5393 5432 | 
             
                        'ParentBountyNotActive',
         | 
| @@ -5396,7 +5435,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5396 5435 | 
             
                    ]
         | 
| 5397 5436 | 
             
                },
         | 
| 5398 5437 | 
             
                /**
         | 
| 5399 | 
            -
               *  | 
| 5438 | 
            +
               * Lookup584: pallet_bags_list::list::Node<T, I>
         | 
| 5400 5439 | 
             
               **/ PalletBagsListListNode: {
         | 
| 5401 5440 | 
             
                    id: 'AccountId32',
         | 
| 5402 5441 | 
             
                    prev: 'Option<AccountId32>',
         | 
| @@ -5405,20 +5444,20 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5405 5444 | 
             
                    score: 'u64'
         | 
| 5406 5445 | 
             
                },
         | 
| 5407 5446 | 
             
                /**
         | 
| 5408 | 
            -
               *  | 
| 5447 | 
            +
               * Lookup585: pallet_bags_list::list::Bag<T, I>
         | 
| 5409 5448 | 
             
               **/ PalletBagsListListBag: {
         | 
| 5410 5449 | 
             
                    head: 'Option<AccountId32>',
         | 
| 5411 5450 | 
             
                    tail: 'Option<AccountId32>'
         | 
| 5412 5451 | 
             
                },
         | 
| 5413 5452 | 
             
                /**
         | 
| 5414 | 
            -
               *  | 
| 5453 | 
            +
               * Lookup586: pallet_bags_list::pallet::Error<T, I>
         | 
| 5415 5454 | 
             
               **/ PalletBagsListError: {
         | 
| 5416 5455 | 
             
                    _enum: {
         | 
| 5417 5456 | 
             
                        List: 'PalletBagsListListListError'
         | 
| 5418 5457 | 
             
                    }
         | 
| 5419 5458 | 
             
                },
         | 
| 5420 5459 | 
             
                /**
         | 
| 5421 | 
            -
               *  | 
| 5460 | 
            +
               * Lookup587: pallet_bags_list::list::ListError
         | 
| 5422 5461 | 
             
               **/ PalletBagsListListListError: {
         | 
| 5423 5462 | 
             
                    _enum: [
         | 
| 5424 5463 | 
             
                        'Duplicate',
         | 
| @@ -5428,7 +5467,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5428 5467 | 
             
                    ]
         | 
| 5429 5468 | 
             
                },
         | 
| 5430 5469 | 
             
                /**
         | 
| 5431 | 
            -
               *  | 
| 5470 | 
            +
               * Lookup588: pallet_nomination_pools::PoolMember<T>
         | 
| 5432 5471 | 
             
               **/ PalletNominationPoolsPoolMember: {
         | 
| 5433 5472 | 
             
                    poolId: 'u32',
         | 
| 5434 5473 | 
             
                    points: 'u128',
         | 
| @@ -5436,7 +5475,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5436 5475 | 
             
                    unbondingEras: 'BTreeMap<u32, u128>'
         | 
| 5437 5476 | 
             
                },
         | 
| 5438 5477 | 
             
                /**
         | 
| 5439 | 
            -
               *  | 
| 5478 | 
            +
               * Lookup593: pallet_nomination_pools::BondedPoolInner<T>
         | 
| 5440 5479 | 
             
               **/ PalletNominationPoolsBondedPoolInner: {
         | 
| 5441 5480 | 
             
                    commission: 'PalletNominationPoolsCommission',
         | 
| 5442 5481 | 
             
                    memberCounter: 'u32',
         | 
| @@ -5445,7 +5484,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5445 5484 | 
             
                    state: 'PalletNominationPoolsPoolState'
         | 
| 5446 5485 | 
             
                },
         | 
| 5447 5486 | 
             
                /**
         | 
| 5448 | 
            -
               *  | 
| 5487 | 
            +
               * Lookup594: pallet_nomination_pools::Commission<T>
         | 
| 5449 5488 | 
             
               **/ PalletNominationPoolsCommission: {
         | 
| 5450 5489 | 
             
                    current: 'Option<(Perbill,AccountId32)>',
         | 
| 5451 5490 | 
             
                    max: 'Option<Perbill>',
         | 
| @@ -5454,7 +5493,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5454 5493 | 
             
                    claimPermission: 'Option<PalletNominationPoolsCommissionClaimPermission>'
         | 
| 5455 5494 | 
             
                },
         | 
| 5456 5495 | 
             
                /**
         | 
| 5457 | 
            -
               *  | 
| 5496 | 
            +
               * Lookup597: pallet_nomination_pools::PoolRoles<sp_core::crypto::AccountId32>
         | 
| 5458 5497 | 
             
               **/ PalletNominationPoolsPoolRoles: {
         | 
| 5459 5498 | 
             
                    depositor: 'AccountId32',
         | 
| 5460 5499 | 
             
                    root: 'Option<AccountId32>',
         | 
| @@ -5462,7 +5501,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5462 5501 | 
             
                    bouncer: 'Option<AccountId32>'
         | 
| 5463 5502 | 
             
                },
         | 
| 5464 5503 | 
             
                /**
         | 
| 5465 | 
            -
               *  | 
| 5504 | 
            +
               * Lookup598: pallet_nomination_pools::RewardPool<T>
         | 
| 5466 5505 | 
             
               **/ PalletNominationPoolsRewardPool: {
         | 
| 5467 5506 | 
             
                    lastRecordedRewardCounter: 'u128',
         | 
| 5468 5507 | 
             
                    lastRecordedTotalPayouts: 'u128',
         | 
| @@ -5471,19 +5510,19 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5471 5510 | 
             
                    totalCommissionClaimed: 'u128'
         | 
| 5472 5511 | 
             
                },
         | 
| 5473 5512 | 
             
                /**
         | 
| 5474 | 
            -
               *  | 
| 5513 | 
            +
               * Lookup599: pallet_nomination_pools::SubPools<T>
         | 
| 5475 5514 | 
             
               **/ PalletNominationPoolsSubPools: {
         | 
| 5476 5515 | 
             
                    noEra: 'PalletNominationPoolsUnbondPool',
         | 
| 5477 5516 | 
             
                    withEra: 'BTreeMap<u32, PalletNominationPoolsUnbondPool>'
         | 
| 5478 5517 | 
             
                },
         | 
| 5479 5518 | 
             
                /**
         | 
| 5480 | 
            -
               *  | 
| 5519 | 
            +
               * Lookup600: pallet_nomination_pools::UnbondPool<T>
         | 
| 5481 5520 | 
             
               **/ PalletNominationPoolsUnbondPool: {
         | 
| 5482 5521 | 
             
                    points: 'u128',
         | 
| 5483 5522 | 
             
                    balance: 'u128'
         | 
| 5484 5523 | 
             
                },
         | 
| 5485 5524 | 
             
                /**
         | 
| 5486 | 
            -
               *  | 
| 5525 | 
            +
               * Lookup605: pallet_nomination_pools::pallet::Error<T>
         | 
| 5487 5526 | 
             
               **/ PalletNominationPoolsError: {
         | 
| 5488 5527 | 
             
                    _enum: {
         | 
| 5489 5528 | 
             
                        PoolNotFound: 'Null',
         | 
| @@ -5525,7 +5564,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5525 5564 | 
             
                    }
         | 
| 5526 5565 | 
             
                },
         | 
| 5527 5566 | 
             
                /**
         | 
| 5528 | 
            -
               *  | 
| 5567 | 
            +
               * Lookup606: pallet_nomination_pools::pallet::DefensiveError
         | 
| 5529 5568 | 
             
               **/ PalletNominationPoolsDefensiveError: {
         | 
| 5530 5569 | 
             
                    _enum: [
         | 
| 5531 5570 | 
             
                        'NotEnoughSpaceInUnbondPool',
         | 
| @@ -5538,7 +5577,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5538 5577 | 
             
                    ]
         | 
| 5539 5578 | 
             
                },
         | 
| 5540 5579 | 
             
                /**
         | 
| 5541 | 
            -
               *  | 
| 5580 | 
            +
               * Lookup609: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<tangle_testnet_runtime::RuntimeCall, sp_runtime::traits::BlakeTwo256>, BlockNumber, tangle_testnet_runtime::OriginCaller, sp_core::crypto::AccountId32>
         | 
| 5542 5581 | 
             
               **/ PalletSchedulerScheduled: {
         | 
| 5543 5582 | 
             
                    maybeId: 'Option<[u8;32]>',
         | 
| 5544 5583 | 
             
                    priority: 'u8',
         | 
| @@ -5547,14 +5586,14 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5547 5586 | 
             
                    origin: 'TangleTestnetRuntimeOriginCaller'
         | 
| 5548 5587 | 
             
                },
         | 
| 5549 5588 | 
             
                /**
         | 
| 5550 | 
            -
               *  | 
| 5589 | 
            +
               * Lookup611: pallet_scheduler::RetryConfig<Period>
         | 
| 5551 5590 | 
             
               **/ PalletSchedulerRetryConfig: {
         | 
| 5552 5591 | 
             
                    totalRetries: 'u8',
         | 
| 5553 5592 | 
             
                    remaining: 'u8',
         | 
| 5554 5593 | 
             
                    period: 'u64'
         | 
| 5555 5594 | 
             
                },
         | 
| 5556 5595 | 
             
                /**
         | 
| 5557 | 
            -
               *  | 
| 5596 | 
            +
               * Lookup612: pallet_scheduler::pallet::Error<T>
         | 
| 5558 5597 | 
             
               **/ PalletSchedulerError: {
         | 
| 5559 5598 | 
             
                    _enum: [
         | 
| 5560 5599 | 
             
                        'FailedToSchedule',
         | 
| @@ -5565,7 +5604,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5565 5604 | 
             
                    ]
         | 
| 5566 5605 | 
             
                },
         | 
| 5567 5606 | 
             
                /**
         | 
| 5568 | 
            -
               *  | 
| 5607 | 
            +
               * Lookup613: pallet_preimage::OldRequestStatus<sp_core::crypto::AccountId32, Balance>
         | 
| 5569 5608 | 
             
               **/ PalletPreimageOldRequestStatus: {
         | 
| 5570 5609 | 
             
                    _enum: {
         | 
| 5571 5610 | 
             
                        Unrequested: {
         | 
| @@ -5580,7 +5619,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5580 5619 | 
             
                    }
         | 
| 5581 5620 | 
             
                },
         | 
| 5582 5621 | 
             
                /**
         | 
| 5583 | 
            -
               *  | 
| 5622 | 
            +
               * Lookup615: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Ticket>
         | 
| 5584 5623 | 
             
               **/ PalletPreimageRequestStatus: {
         | 
| 5585 5624 | 
             
                    _enum: {
         | 
| 5586 5625 | 
             
                        Unrequested: {
         | 
| @@ -5595,7 +5634,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5595 5634 | 
             
                    }
         | 
| 5596 5635 | 
             
                },
         | 
| 5597 5636 | 
             
                /**
         | 
| 5598 | 
            -
               *  | 
| 5637 | 
            +
               * Lookup619: pallet_preimage::pallet::Error<T>
         | 
| 5599 5638 | 
             
               **/ PalletPreimageError: {
         | 
| 5600 5639 | 
             
                    _enum: [
         | 
| 5601 5640 | 
             
                        'TooBig',
         | 
| @@ -5610,13 +5649,13 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5610 5649 | 
             
                    ]
         | 
| 5611 5650 | 
             
                },
         | 
| 5612 5651 | 
             
                /**
         | 
| 5613 | 
            -
               *  | 
| 5652 | 
            +
               * Lookup620: sp_staking::offence::OffenceDetails<sp_core::crypto::AccountId32, Offender>
         | 
| 5614 5653 | 
             
               **/ SpStakingOffenceOffenceDetails: {
         | 
| 5615 5654 | 
             
                    offender: '(AccountId32,SpStakingExposure)',
         | 
| 5616 5655 | 
             
                    reporters: 'Vec<AccountId32>'
         | 
| 5617 5656 | 
             
                },
         | 
| 5618 5657 | 
             
                /**
         | 
| 5619 | 
            -
               *  | 
| 5658 | 
            +
               * Lookup622: pallet_tx_pause::pallet::Error<T>
         | 
| 5620 5659 | 
             
               **/ PalletTxPauseError: {
         | 
| 5621 5660 | 
             
                    _enum: [
         | 
| 5622 5661 | 
             
                        'IsPaused',
         | 
| @@ -5626,7 +5665,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5626 5665 | 
             
                    ]
         | 
| 5627 5666 | 
             
                },
         | 
| 5628 5667 | 
             
                /**
         | 
| 5629 | 
            -
               *  | 
| 5668 | 
            +
               * Lookup625: pallet_im_online::pallet::Error<T>
         | 
| 5630 5669 | 
             
               **/ PalletImOnlineError: {
         | 
| 5631 5670 | 
             
                    _enum: [
         | 
| 5632 5671 | 
             
                        'InvalidKey',
         | 
| @@ -5634,27 +5673,27 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5634 5673 | 
             
                    ]
         | 
| 5635 5674 | 
             
                },
         | 
| 5636 5675 | 
             
                /**
         | 
| 5637 | 
            -
               *  | 
| 5676 | 
            +
               * Lookup627: pallet_identity::types::Registration<Balance, MaxJudgements, pallet_identity::legacy::IdentityInfo<FieldLimit>>
         | 
| 5638 5677 | 
             
               **/ PalletIdentityRegistration: {
         | 
| 5639 5678 | 
             
                    judgements: 'Vec<(u32,PalletIdentityJudgement)>',
         | 
| 5640 5679 | 
             
                    deposit: 'u128',
         | 
| 5641 5680 | 
             
                    info: 'PalletIdentityLegacyIdentityInfo'
         | 
| 5642 5681 | 
             
                },
         | 
| 5643 5682 | 
             
                /**
         | 
| 5644 | 
            -
               *  | 
| 5683 | 
            +
               * Lookup636: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32, IdField>
         | 
| 5645 5684 | 
             
               **/ PalletIdentityRegistrarInfo: {
         | 
| 5646 5685 | 
             
                    account: 'AccountId32',
         | 
| 5647 5686 | 
             
                    fee: 'u128',
         | 
| 5648 5687 | 
             
                    fields: 'u64'
         | 
| 5649 5688 | 
             
                },
         | 
| 5650 5689 | 
             
                /**
         | 
| 5651 | 
            -
               *  | 
| 5690 | 
            +
               * Lookup638: pallet_identity::types::AuthorityProperties<bounded_collections::bounded_vec::BoundedVec<T, S>>
         | 
| 5652 5691 | 
             
               **/ PalletIdentityAuthorityProperties: {
         | 
| 5653 5692 | 
             
                    suffix: 'Bytes',
         | 
| 5654 5693 | 
             
                    allocation: 'u32'
         | 
| 5655 5694 | 
             
                },
         | 
| 5656 5695 | 
             
                /**
         | 
| 5657 | 
            -
               *  | 
| 5696 | 
            +
               * Lookup641: pallet_identity::pallet::Error<T>
         | 
| 5658 5697 | 
             
               **/ PalletIdentityError: {
         | 
| 5659 5698 | 
             
                    _enum: [
         | 
| 5660 5699 | 
             
                        'TooManySubAccounts',
         | 
| @@ -5686,14 +5725,14 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5686 5725 | 
             
                    ]
         | 
| 5687 5726 | 
             
                },
         | 
| 5688 5727 | 
             
                /**
         | 
| 5689 | 
            -
               *  | 
| 5728 | 
            +
               * Lookup642: pallet_utility::pallet::Error<T>
         | 
| 5690 5729 | 
             
               **/ PalletUtilityError: {
         | 
| 5691 5730 | 
             
                    _enum: [
         | 
| 5692 5731 | 
             
                        'TooManyCalls'
         | 
| 5693 5732 | 
             
                    ]
         | 
| 5694 5733 | 
             
                },
         | 
| 5695 5734 | 
             
                /**
         | 
| 5696 | 
            -
               *  | 
| 5735 | 
            +
               * Lookup644: pallet_multisig::Multisig<BlockNumber, Balance, sp_core::crypto::AccountId32, MaxApprovals>
         | 
| 5697 5736 | 
             
               **/ PalletMultisigMultisig: {
         | 
| 5698 5737 | 
             
                    when: 'PalletMultisigTimepoint',
         | 
| 5699 5738 | 
             
                    deposit: 'u128',
         | 
| @@ -5701,7 +5740,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5701 5740 | 
             
                    approvals: 'Vec<AccountId32>'
         | 
| 5702 5741 | 
             
                },
         | 
| 5703 5742 | 
             
                /**
         | 
| 5704 | 
            -
               *  | 
| 5743 | 
            +
               * Lookup645: pallet_multisig::pallet::Error<T>
         | 
| 5705 5744 | 
             
               **/ PalletMultisigError: {
         | 
| 5706 5745 | 
             
                    _enum: [
         | 
| 5707 5746 | 
             
                        'MinimumThreshold',
         | 
| @@ -5721,7 +5760,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5721 5760 | 
             
                    ]
         | 
| 5722 5761 | 
             
                },
         | 
| 5723 5762 | 
             
                /**
         | 
| 5724 | 
            -
               *  | 
| 5763 | 
            +
               * Lookup648: fp_rpc::TransactionStatus
         | 
| 5725 5764 | 
             
               **/ FpRpcTransactionStatus: {
         | 
| 5726 5765 | 
             
                    transactionHash: 'H256',
         | 
| 5727 5766 | 
             
                    transactionIndex: 'u32',
         | 
| @@ -5732,10 +5771,10 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5732 5771 | 
             
                    logsBloom: 'EthbloomBloom'
         | 
| 5733 5772 | 
             
                },
         | 
| 5734 5773 | 
             
                /**
         | 
| 5735 | 
            -
               *  | 
| 5774 | 
            +
               * Lookup651: ethbloom::Bloom
         | 
| 5736 5775 | 
             
               **/ EthbloomBloom: '[u8;256]',
         | 
| 5737 5776 | 
             
                /**
         | 
| 5738 | 
            -
               *  | 
| 5777 | 
            +
               * Lookup653: ethereum::receipt::ReceiptV3
         | 
| 5739 5778 | 
             
               **/ EthereumReceiptReceiptV3: {
         | 
| 5740 5779 | 
             
                    _enum: {
         | 
| 5741 5780 | 
             
                        Legacy: 'EthereumReceiptEip658ReceiptData',
         | 
| @@ -5744,7 +5783,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5744 5783 | 
             
                    }
         | 
| 5745 5784 | 
             
                },
         | 
| 5746 5785 | 
             
                /**
         | 
| 5747 | 
            -
               *  | 
| 5786 | 
            +
               * Lookup654: ethereum::receipt::EIP658ReceiptData
         | 
| 5748 5787 | 
             
               **/ EthereumReceiptEip658ReceiptData: {
         | 
| 5749 5788 | 
             
                    statusCode: 'u8',
         | 
| 5750 5789 | 
             
                    usedGas: 'U256',
         | 
| @@ -5752,14 +5791,14 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5752 5791 | 
             
                    logs: 'Vec<EthereumLog>'
         | 
| 5753 5792 | 
             
                },
         | 
| 5754 5793 | 
             
                /**
         | 
| 5755 | 
            -
               *  | 
| 5794 | 
            +
               * Lookup655: ethereum::block::Block<ethereum::transaction::TransactionV2>
         | 
| 5756 5795 | 
             
               **/ EthereumBlock: {
         | 
| 5757 5796 | 
             
                    header: 'EthereumHeader',
         | 
| 5758 5797 | 
             
                    transactions: 'Vec<EthereumTransactionTransactionV2>',
         | 
| 5759 5798 | 
             
                    ommers: 'Vec<EthereumHeader>'
         | 
| 5760 5799 | 
             
                },
         | 
| 5761 5800 | 
             
                /**
         | 
| 5762 | 
            -
               *  | 
| 5801 | 
            +
               * Lookup656: ethereum::header::Header
         | 
| 5763 5802 | 
             
               **/ EthereumHeader: {
         | 
| 5764 5803 | 
             
                    parentHash: 'H256',
         | 
| 5765 5804 | 
             
                    ommersHash: 'H256',
         | 
| @@ -5778,10 +5817,10 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5778 5817 | 
             
                    nonce: 'EthereumTypesHashH64'
         | 
| 5779 5818 | 
             
                },
         | 
| 5780 5819 | 
             
                /**
         | 
| 5781 | 
            -
               *  | 
| 5820 | 
            +
               * Lookup657: ethereum_types::hash::H64
         | 
| 5782 5821 | 
             
               **/ EthereumTypesHashH64: '[u8;8]',
         | 
| 5783 5822 | 
             
                /**
         | 
| 5784 | 
            -
               *  | 
| 5823 | 
            +
               * Lookup662: pallet_ethereum::pallet::Error<T>
         | 
| 5785 5824 | 
             
               **/ PalletEthereumError: {
         | 
| 5786 5825 | 
             
                    _enum: [
         | 
| 5787 5826 | 
             
                        'InvalidSignature',
         | 
| @@ -5789,7 +5828,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5789 5828 | 
             
                    ]
         | 
| 5790 5829 | 
             
                },
         | 
| 5791 5830 | 
             
                /**
         | 
| 5792 | 
            -
               *  | 
| 5831 | 
            +
               * Lookup663: pallet_evm::CodeMetadata
         | 
| 5793 5832 | 
             
               **/ PalletEvmCodeMetadata: {
         | 
| 5794 5833 | 
             
                    _alias: {
         | 
| 5795 5834 | 
             
                        size_: 'size',
         | 
| @@ -5799,7 +5838,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5799 5838 | 
             
                    hash_: 'H256'
         | 
| 5800 5839 | 
             
                },
         | 
| 5801 5840 | 
             
                /**
         | 
| 5802 | 
            -
               *  | 
| 5841 | 
            +
               * Lookup665: pallet_evm::pallet::Error<T>
         | 
| 5803 5842 | 
             
               **/ PalletEvmError: {
         | 
| 5804 5843 | 
             
                    _enum: [
         | 
| 5805 5844 | 
             
                        'BalanceLow',
         | 
| @@ -5818,14 +5857,14 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5818 5857 | 
             
                    ]
         | 
| 5819 5858 | 
             
                },
         | 
| 5820 5859 | 
             
                /**
         | 
| 5821 | 
            -
               *  | 
| 5860 | 
            +
               * Lookup666: pallet_hotfix_sufficients::pallet::Error<T>
         | 
| 5822 5861 | 
             
               **/ PalletHotfixSufficientsError: {
         | 
| 5823 5862 | 
             
                    _enum: [
         | 
| 5824 5863 | 
             
                        'MaxAddressCountExceeded'
         | 
| 5825 5864 | 
             
                    ]
         | 
| 5826 5865 | 
             
                },
         | 
| 5827 5866 | 
             
                /**
         | 
| 5828 | 
            -
               *  | 
| 5867 | 
            +
               * Lookup668: pallet_airdrop_claims::pallet::Error<T>
         | 
| 5829 5868 | 
             
               **/ PalletAirdropClaimsError: {
         | 
| 5830 5869 | 
             
                    _enum: [
         | 
| 5831 5870 | 
             
                        'InvalidEthereumSignature',
         | 
| @@ -5839,21 +5878,21 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5839 5878 | 
             
                    ]
         | 
| 5840 5879 | 
             
                },
         | 
| 5841 5880 | 
             
                /**
         | 
| 5842 | 
            -
               *  | 
| 5881 | 
            +
               * Lookup671: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, tangle_testnet_runtime::ProxyType, BlockNumber>
         | 
| 5843 5882 | 
             
               **/ PalletProxyProxyDefinition: {
         | 
| 5844 5883 | 
             
                    delegate: 'AccountId32',
         | 
| 5845 5884 | 
             
                    proxyType: 'TangleTestnetRuntimeProxyType',
         | 
| 5846 5885 | 
             
                    delay: 'u64'
         | 
| 5847 5886 | 
             
                },
         | 
| 5848 5887 | 
             
                /**
         | 
| 5849 | 
            -
               *  | 
| 5888 | 
            +
               * Lookup675: pallet_proxy::Announcement<sp_core::crypto::AccountId32, primitive_types::H256, BlockNumber>
         | 
| 5850 5889 | 
             
               **/ PalletProxyAnnouncement: {
         | 
| 5851 5890 | 
             
                    real: 'AccountId32',
         | 
| 5852 5891 | 
             
                    callHash: 'H256',
         | 
| 5853 5892 | 
             
                    height: 'u64'
         | 
| 5854 5893 | 
             
                },
         | 
| 5855 5894 | 
             
                /**
         | 
| 5856 | 
            -
               *  | 
| 5895 | 
            +
               * Lookup677: pallet_proxy::pallet::Error<T>
         | 
| 5857 5896 | 
             
               **/ PalletProxyError: {
         | 
| 5858 5897 | 
             
                    _enum: [
         | 
| 5859 5898 | 
             
                        'TooMany',
         | 
| @@ -5867,29 +5906,36 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5867 5906 | 
             
                    ]
         | 
| 5868 5907 | 
             
                },
         | 
| 5869 5908 | 
             
                /**
         | 
| 5870 | 
            -
               *  | 
| 5909 | 
            +
               * Lookup678: pallet_multi_asset_delegation::types::operator::OperatorMetadata<sp_core::crypto::AccountId32, Balance, AssetId, tangle_testnet_runtime::MaxDelegations, tangle_testnet_runtime::MaxOperatorBlueprints>
         | 
| 5871 5910 | 
             
               **/ PalletMultiAssetDelegationOperatorOperatorMetadata: {
         | 
| 5872 5911 | 
             
                    stake: 'u128',
         | 
| 5873 5912 | 
             
                    delegationCount: 'u32',
         | 
| 5874 5913 | 
             
                    request: 'Option<PalletMultiAssetDelegationOperatorOperatorBondLessRequest>',
         | 
| 5875 5914 | 
             
                    delegations: 'Vec<PalletMultiAssetDelegationOperatorDelegatorBond>',
         | 
| 5876 | 
            -
                    status: 'PalletMultiAssetDelegationOperatorOperatorStatus'
         | 
| 5915 | 
            +
                    status: 'PalletMultiAssetDelegationOperatorOperatorStatus',
         | 
| 5916 | 
            +
                    blueprintIds: 'Vec<u32>'
         | 
| 5877 5917 | 
             
                },
         | 
| 5878 5918 | 
             
                /**
         | 
| 5879 | 
            -
               *  | 
| 5919 | 
            +
               * Lookup679: tangle_testnet_runtime::MaxDelegations
         | 
| 5920 | 
            +
               **/ TangleTestnetRuntimeMaxDelegations: 'Null',
         | 
| 5921 | 
            +
                /**
         | 
| 5922 | 
            +
               * Lookup680: tangle_testnet_runtime::MaxOperatorBlueprints
         | 
| 5923 | 
            +
               **/ TangleTestnetRuntimeMaxOperatorBlueprints: 'Null',
         | 
| 5924 | 
            +
                /**
         | 
| 5925 | 
            +
               * Lookup682: pallet_multi_asset_delegation::types::operator::OperatorBondLessRequest<Balance>
         | 
| 5880 5926 | 
             
               **/ PalletMultiAssetDelegationOperatorOperatorBondLessRequest: {
         | 
| 5881 5927 | 
             
                    amount: 'u128',
         | 
| 5882 5928 | 
             
                    requestTime: 'u32'
         | 
| 5883 5929 | 
             
                },
         | 
| 5884 5930 | 
             
                /**
         | 
| 5885 | 
            -
               *  | 
| 5931 | 
            +
               * Lookup684: pallet_multi_asset_delegation::types::operator::DelegatorBond<sp_core::crypto::AccountId32, Balance, AssetId>
         | 
| 5886 5932 | 
             
               **/ PalletMultiAssetDelegationOperatorDelegatorBond: {
         | 
| 5887 5933 | 
             
                    delegator: 'AccountId32',
         | 
| 5888 5934 | 
             
                    amount: 'u128',
         | 
| 5889 5935 | 
             
                    assetId: 'u128'
         | 
| 5890 5936 | 
             
                },
         | 
| 5891 5937 | 
             
                /**
         | 
| 5892 | 
            -
               *  | 
| 5938 | 
            +
               * Lookup686: pallet_multi_asset_delegation::types::operator::OperatorStatus
         | 
| 5893 5939 | 
             
               **/ PalletMultiAssetDelegationOperatorOperatorStatus: {
         | 
| 5894 5940 | 
             
                    _enum: {
         | 
| 5895 5941 | 
             
                        Active: 'Null',
         | 
| @@ -5898,13 +5944,13 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5898 5944 | 
             
                    }
         | 
| 5899 5945 | 
             
                },
         | 
| 5900 5946 | 
             
                /**
         | 
| 5901 | 
            -
               *  | 
| 5947 | 
            +
               * Lookup688: pallet_multi_asset_delegation::types::operator::OperatorSnapshot<sp_core::crypto::AccountId32, Balance, AssetId, tangle_testnet_runtime::MaxDelegations>
         | 
| 5902 5948 | 
             
               **/ PalletMultiAssetDelegationOperatorOperatorSnapshot: {
         | 
| 5903 5949 | 
             
                    stake: 'u128',
         | 
| 5904 5950 | 
             
                    delegations: 'Vec<PalletMultiAssetDelegationOperatorDelegatorBond>'
         | 
| 5905 5951 | 
             
                },
         | 
| 5906 5952 | 
             
                /**
         | 
| 5907 | 
            -
               *  | 
| 5953 | 
            +
               * Lookup689: pallet_multi_asset_delegation::types::delegator::DelegatorMetadata<sp_core::crypto::AccountId32, Balance, AssetId, tangle_testnet_runtime::MaxWithdrawRequests, tangle_testnet_runtime::MaxDelegations, tangle_testnet_runtime::MaxUnstakeRequests, tangle_testnet_runtime::MaxDelegatorBlueprints>
         | 
| 5908 5954 | 
             
               **/ PalletMultiAssetDelegationDelegatorDelegatorMetadata: {
         | 
| 5909 5955 | 
             
                    deposits: 'BTreeMap<u128, u128>',
         | 
| 5910 5956 | 
             
                    withdrawRequests: 'Vec<PalletMultiAssetDelegationDelegatorWithdrawRequest>',
         | 
| @@ -5913,29 +5959,37 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5913 5959 | 
             
                    status: 'PalletMultiAssetDelegationDelegatorDelegatorStatus'
         | 
| 5914 5960 | 
             
                },
         | 
| 5915 5961 | 
             
                /**
         | 
| 5916 | 
            -
               *  | 
| 5962 | 
            +
               * Lookup690: tangle_testnet_runtime::MaxWithdrawRequests
         | 
| 5963 | 
            +
               **/ TangleTestnetRuntimeMaxWithdrawRequests: 'Null',
         | 
| 5964 | 
            +
                /**
         | 
| 5965 | 
            +
               * Lookup691: tangle_testnet_runtime::MaxUnstakeRequests
         | 
| 5966 | 
            +
               **/ TangleTestnetRuntimeMaxUnstakeRequests: 'Null',
         | 
| 5967 | 
            +
                /**
         | 
| 5968 | 
            +
               * Lookup696: pallet_multi_asset_delegation::types::delegator::WithdrawRequest<AssetId, Balance>
         | 
| 5917 5969 | 
             
               **/ PalletMultiAssetDelegationDelegatorWithdrawRequest: {
         | 
| 5918 5970 | 
             
                    assetId: 'u128',
         | 
| 5919 5971 | 
             
                    amount: 'u128',
         | 
| 5920 5972 | 
             
                    requestedRound: 'u32'
         | 
| 5921 5973 | 
             
                },
         | 
| 5922 5974 | 
             
                /**
         | 
| 5923 | 
            -
               *  | 
| 5975 | 
            +
               * Lookup699: pallet_multi_asset_delegation::types::delegator::BondInfoDelegator<sp_core::crypto::AccountId32, Balance, AssetId, tangle_testnet_runtime::MaxDelegatorBlueprints>
         | 
| 5924 5976 | 
             
               **/ PalletMultiAssetDelegationDelegatorBondInfoDelegator: {
         | 
| 5925 5977 | 
             
                    operator: 'AccountId32',
         | 
| 5926 5978 | 
             
                    amount: 'u128',
         | 
| 5927 | 
            -
                    assetId: 'u128'
         | 
| 5979 | 
            +
                    assetId: 'u128',
         | 
| 5980 | 
            +
                    blueprintSelection: 'PalletMultiAssetDelegationDelegatorDelegatorBlueprintSelection'
         | 
| 5928 5981 | 
             
                },
         | 
| 5929 5982 | 
             
                /**
         | 
| 5930 | 
            -
               *  | 
| 5983 | 
            +
               * Lookup702: pallet_multi_asset_delegation::types::delegator::BondLessRequest<sp_core::crypto::AccountId32, AssetId, Balance, tangle_testnet_runtime::MaxDelegatorBlueprints>
         | 
| 5931 5984 | 
             
               **/ PalletMultiAssetDelegationDelegatorBondLessRequest: {
         | 
| 5932 5985 | 
             
                    operator: 'AccountId32',
         | 
| 5933 5986 | 
             
                    assetId: 'u128',
         | 
| 5934 5987 | 
             
                    amount: 'u128',
         | 
| 5935 | 
            -
                    requestedRound: 'u32'
         | 
| 5988 | 
            +
                    requestedRound: 'u32',
         | 
| 5989 | 
            +
                    blueprintSelection: 'PalletMultiAssetDelegationDelegatorDelegatorBlueprintSelection'
         | 
| 5936 5990 | 
             
                },
         | 
| 5937 5991 | 
             
                /**
         | 
| 5938 | 
            -
               *  | 
| 5992 | 
            +
               * Lookup704: pallet_multi_asset_delegation::types::delegator::DelegatorStatus
         | 
| 5939 5993 | 
             
               **/ PalletMultiAssetDelegationDelegatorDelegatorStatus: {
         | 
| 5940 5994 | 
             
                    _enum: {
         | 
| 5941 5995 | 
             
                        Active: 'Null',
         | 
| @@ -5943,19 +5997,19 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5943 5997 | 
             
                    }
         | 
| 5944 5998 | 
             
                },
         | 
| 5945 5999 | 
             
                /**
         | 
| 5946 | 
            -
               *  | 
| 6000 | 
            +
               * Lookup705: pallet_multi_asset_delegation::types::rewards::RewardConfig<VaultId, Balance>
         | 
| 5947 6001 | 
             
               **/ PalletMultiAssetDelegationRewardsRewardConfig: {
         | 
| 5948 6002 | 
             
                    configs: 'BTreeMap<u128, PalletMultiAssetDelegationRewardsRewardConfigForAssetVault>',
         | 
| 5949 6003 | 
             
                    whitelistedBlueprintIds: 'Vec<u32>'
         | 
| 5950 6004 | 
             
                },
         | 
| 5951 6005 | 
             
                /**
         | 
| 5952 | 
            -
               *  | 
| 6006 | 
            +
               * Lookup707: pallet_multi_asset_delegation::types::rewards::RewardConfigForAssetVault<Balance>
         | 
| 5953 6007 | 
             
               **/ PalletMultiAssetDelegationRewardsRewardConfigForAssetVault: {
         | 
| 5954 6008 | 
             
                    apy: 'Percent',
         | 
| 5955 6009 | 
             
                    cap: 'u128'
         | 
| 5956 6010 | 
             
                },
         | 
| 5957 6011 | 
             
                /**
         | 
| 5958 | 
            -
               *  | 
| 6012 | 
            +
               * Lookup710: pallet_multi_asset_delegation::pallet::Error<T>
         | 
| 5959 6013 | 
             
               **/ PalletMultiAssetDelegationError: {
         | 
| 5960 6014 | 
             
                    _enum: [
         | 
| 5961 6015 | 
             
                        'AlreadyOperator',
         | 
| @@ -5965,6 +6019,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5965 6019 | 
             
                        'AlreadyLeaving',
         | 
| 5966 6020 | 
             
                        'NotLeavingOperator',
         | 
| 5967 6021 | 
             
                        'NotLeavingRound',
         | 
| 6022 | 
            +
                        'LeavingRoundNotReached',
         | 
| 5968 6023 | 
             
                        'NoScheduledBondLess',
         | 
| 5969 6024 | 
             
                        'BondLessRequestNotSatisfied',
         | 
| 5970 6025 | 
             
                        'NotActiveOperator',
         | 
| @@ -5981,17 +6036,33 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 5981 6036 | 
             
                        'NoActiveDelegation',
         | 
| 5982 6037 | 
             
                        'AssetNotWhitelisted',
         | 
| 5983 6038 | 
             
                        'NotAuthorized',
         | 
| 6039 | 
            +
                        'MaxBlueprintsExceeded',
         | 
| 5984 6040 | 
             
                        'AssetNotFound',
         | 
| 5985 6041 | 
             
                        'BlueprintAlreadyWhitelisted',
         | 
| 5986 6042 | 
             
                        'NowithdrawRequests',
         | 
| 5987 6043 | 
             
                        'NoMatchingwithdrawRequest',
         | 
| 5988 6044 | 
             
                        'AssetAlreadyInVault',
         | 
| 5989 6045 | 
             
                        'AssetNotInVault',
         | 
| 5990 | 
            -
                        'VaultNotFound'
         | 
| 6046 | 
            +
                        'VaultNotFound',
         | 
| 6047 | 
            +
                        'DuplicateBlueprintId',
         | 
| 6048 | 
            +
                        'BlueprintIdNotFound',
         | 
| 6049 | 
            +
                        'NotInFixedMode',
         | 
| 6050 | 
            +
                        'MaxDelegationsExceeded',
         | 
| 6051 | 
            +
                        'MaxUnstakeRequestsExceeded',
         | 
| 6052 | 
            +
                        'MaxWithdrawRequestsExceeded',
         | 
| 6053 | 
            +
                        'DepositOverflow',
         | 
| 6054 | 
            +
                        'UnstakeAmountTooLarge',
         | 
| 6055 | 
            +
                        'StakeOverflow',
         | 
| 6056 | 
            +
                        'InsufficientStakeRemaining',
         | 
| 6057 | 
            +
                        'APYExceedsMaximum',
         | 
| 6058 | 
            +
                        'CapCannotBeZero',
         | 
| 6059 | 
            +
                        'CapExceedsTotalSupply',
         | 
| 6060 | 
            +
                        'PendingUnstakeRequestExists',
         | 
| 6061 | 
            +
                        'BlueprintNotSelected'
         | 
| 5991 6062 | 
             
                    ]
         | 
| 5992 6063 | 
             
                },
         | 
| 5993 6064 | 
             
                /**
         | 
| 5994 | 
            -
               *  | 
| 6065 | 
            +
               * Lookup713: tangle_primitives::services::ServiceRequest<C, sp_core::crypto::AccountId32, BlockNumber, AssetId>
         | 
| 5995 6066 | 
             
               **/ TanglePrimitivesServicesServiceRequest: {
         | 
| 5996 6067 | 
             
                    blueprint: 'u64',
         | 
| 5997 6068 | 
             
                    owner: 'AccountId32',
         | 
| @@ -6002,58 +6073,76 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 6002 6073 | 
             
                    operatorsWithApprovalState: 'Vec<(AccountId32,TanglePrimitivesServicesApprovalState)>'
         | 
| 6003 6074 | 
             
                },
         | 
| 6004 6075 | 
             
                /**
         | 
| 6005 | 
            -
               *  | 
| 6076 | 
            +
               * Lookup719: tangle_primitives::services::ApprovalState
         | 
| 6006 6077 | 
             
               **/ TanglePrimitivesServicesApprovalState: {
         | 
| 6007 | 
            -
                    _enum:  | 
| 6008 | 
            -
                         | 
| 6009 | 
            -
                         | 
| 6010 | 
            -
             | 
| 6011 | 
            -
             | 
| 6078 | 
            +
                    _enum: {
         | 
| 6079 | 
            +
                        Pending: 'Null',
         | 
| 6080 | 
            +
                        Approved: {
         | 
| 6081 | 
            +
                            restakingPercent: 'Percent'
         | 
| 6082 | 
            +
                        },
         | 
| 6083 | 
            +
                        Rejected: 'Null'
         | 
| 6084 | 
            +
                    }
         | 
| 6012 6085 | 
             
                },
         | 
| 6013 6086 | 
             
                /**
         | 
| 6014 | 
            -
               *  | 
| 6087 | 
            +
               * Lookup721: tangle_primitives::services::Service<C, sp_core::crypto::AccountId32, BlockNumber, AssetId>
         | 
| 6015 6088 | 
             
               **/ TanglePrimitivesServicesService: {
         | 
| 6016 6089 | 
             
                    id: 'u64',
         | 
| 6017 6090 | 
             
                    blueprint: 'u64',
         | 
| 6018 6091 | 
             
                    owner: 'AccountId32',
         | 
| 6019 6092 | 
             
                    permittedCallers: 'Vec<AccountId32>',
         | 
| 6020 | 
            -
                    operators: 'Vec<AccountId32>',
         | 
| 6093 | 
            +
                    operators: 'Vec<(AccountId32,Percent)>',
         | 
| 6021 6094 | 
             
                    assets: 'Vec<u128>',
         | 
| 6022 6095 | 
             
                    ttl: 'u64'
         | 
| 6023 6096 | 
             
                },
         | 
| 6024 6097 | 
             
                /**
         | 
| 6025 | 
            -
               *  | 
| 6098 | 
            +
               * Lookup727: tangle_primitives::services::JobCall<C, sp_core::crypto::AccountId32>
         | 
| 6026 6099 | 
             
               **/ TanglePrimitivesServicesJobCall: {
         | 
| 6027 6100 | 
             
                    serviceId: 'u64',
         | 
| 6028 6101 | 
             
                    job: 'u8',
         | 
| 6029 6102 | 
             
                    args: 'Vec<TanglePrimitivesServicesField>'
         | 
| 6030 6103 | 
             
                },
         | 
| 6031 6104 | 
             
                /**
         | 
| 6032 | 
            -
               *  | 
| 6105 | 
            +
               * Lookup728: tangle_primitives::services::JobCallResult<C, sp_core::crypto::AccountId32>
         | 
| 6033 6106 | 
             
               **/ TanglePrimitivesServicesJobCallResult: {
         | 
| 6034 6107 | 
             
                    serviceId: 'u64',
         | 
| 6035 6108 | 
             
                    callId: 'u64',
         | 
| 6036 6109 | 
             
                    result: 'Vec<TanglePrimitivesServicesField>'
         | 
| 6037 6110 | 
             
                },
         | 
| 6038 6111 | 
             
                /**
         | 
| 6039 | 
            -
               *  | 
| 6112 | 
            +
               * Lookup729: pallet_services::types::UnappliedSlash<sp_core::crypto::AccountId32, Balance>
         | 
| 6113 | 
            +
               **/ PalletServicesUnappliedSlash: {
         | 
| 6114 | 
            +
                    serviceId: 'u64',
         | 
| 6115 | 
            +
                    operator: 'AccountId32',
         | 
| 6116 | 
            +
                    own: 'u128',
         | 
| 6117 | 
            +
                    others: 'Vec<(AccountId32,u128)>',
         | 
| 6118 | 
            +
                    reporters: 'Vec<AccountId32>',
         | 
| 6119 | 
            +
                    payout: 'u128'
         | 
| 6120 | 
            +
                },
         | 
| 6121 | 
            +
                /**
         | 
| 6122 | 
            +
               * Lookup730: tangle_primitives::services::OperatorProfile<C>
         | 
| 6040 6123 | 
             
               **/ TanglePrimitivesServicesOperatorProfile: {
         | 
| 6041 6124 | 
             
                    services: 'BTreeSet<u64>',
         | 
| 6042 6125 | 
             
                    blueprints: 'BTreeSet<u64>'
         | 
| 6043 6126 | 
             
                },
         | 
| 6044 6127 | 
             
                /**
         | 
| 6045 | 
            -
               *  | 
| 6128 | 
            +
               * Lookup733: pallet_services::module::Error<T>
         | 
| 6046 6129 | 
             
               **/ PalletServicesModuleError: {
         | 
| 6047 6130 | 
             
                    _enum: {
         | 
| 6048 6131 | 
             
                        BlueprintNotFound: 'Null',
         | 
| 6049 6132 | 
             
                        AlreadyRegistered: 'Null',
         | 
| 6050 6133 | 
             
                        InvalidRegistrationInput: 'Null',
         | 
| 6134 | 
            +
                        NotAllowedToUnregister: 'Null',
         | 
| 6135 | 
            +
                        NotAllowedToUpdatePriceTargets: 'Null',
         | 
| 6051 6136 | 
             
                        InvalidRequestInput: 'Null',
         | 
| 6052 6137 | 
             
                        InvalidJobCallInput: 'Null',
         | 
| 6053 6138 | 
             
                        InvalidJobResult: 'Null',
         | 
| 6054 6139 | 
             
                        NotRegistered: 'Null',
         | 
| 6140 | 
            +
                        ApprovalInterrupted: 'Null',
         | 
| 6141 | 
            +
                        RejectionInterrupted: 'Null',
         | 
| 6055 6142 | 
             
                        ServiceRequestNotFound: 'Null',
         | 
| 6143 | 
            +
                        ServiceInitializationInterrupted: 'Null',
         | 
| 6056 6144 | 
             
                        ServiceNotFound: 'Null',
         | 
| 6145 | 
            +
                        TerminationInterrupted: 'Null',
         | 
| 6057 6146 | 
             
                        TypeCheck: 'TanglePrimitivesServicesTypeCheckError',
         | 
| 6058 6147 | 
             
                        MaxPermittedCallersExceeded: 'Null',
         | 
| 6059 6148 | 
             
                        MaxServiceProvidersExceeded: 'Null',
         | 
| @@ -6069,11 +6158,16 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 6069 6158 | 
             
                        MaxServicesPerProviderExceeded: 'Null',
         | 
| 6070 6159 | 
             
                        OperatorNotActive: 'Null',
         | 
| 6071 6160 | 
             
                        NoAssetsProvided: 'Null',
         | 
| 6072 | 
            -
                        MaxAssetsPerServiceExceeded: 'Null'
         | 
| 6161 | 
            +
                        MaxAssetsPerServiceExceeded: 'Null',
         | 
| 6162 | 
            +
                        OffenderNotOperator: 'Null',
         | 
| 6163 | 
            +
                        OffenderNotActiveOperator: 'Null',
         | 
| 6164 | 
            +
                        NoSlashingOrigin: 'Null',
         | 
| 6165 | 
            +
                        NoDisputeOrigin: 'Null',
         | 
| 6166 | 
            +
                        UnappliedSlashNotFound: 'Null'
         | 
| 6073 6167 | 
             
                    }
         | 
| 6074 6168 | 
             
                },
         | 
| 6075 6169 | 
             
                /**
         | 
| 6076 | 
            -
               *  | 
| 6170 | 
            +
               * Lookup734: tangle_primitives::services::TypeCheckError
         | 
| 6077 6171 | 
             
               **/ TanglePrimitivesServicesTypeCheckError: {
         | 
| 6078 6172 | 
             
                    _enum: {
         | 
| 6079 6173 | 
             
                        ArgumentTypeMismatch: {
         | 
| @@ -6093,7 +6187,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 6093 6187 | 
             
                    }
         | 
| 6094 6188 | 
             
                },
         | 
| 6095 6189 | 
             
                /**
         | 
| 6096 | 
            -
               *  | 
| 6190 | 
            +
               * Lookup735: pallet_tangle_lst::types::bonded_pool::BondedPoolInner<T>
         | 
| 6097 6191 | 
             
               **/ PalletTangleLstBondedPoolBondedPoolInner: {
         | 
| 6098 6192 | 
             
                    commission: 'PalletTangleLstCommission',
         | 
| 6099 6193 | 
             
                    roles: 'PalletTangleLstPoolsPoolRoles',
         | 
| @@ -6101,7 +6195,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 6101 6195 | 
             
                    metadata: 'PalletTangleLstBondedPoolPoolMetadata'
         | 
| 6102 6196 | 
             
                },
         | 
| 6103 6197 | 
             
                /**
         | 
| 6104 | 
            -
               *  | 
| 6198 | 
            +
               * Lookup736: pallet_tangle_lst::types::commission::Commission<T>
         | 
| 6105 6199 | 
             
               **/ PalletTangleLstCommission: {
         | 
| 6106 6200 | 
             
                    current: 'Option<(Perbill,AccountId32)>',
         | 
| 6107 6201 | 
             
                    max: 'Option<Perbill>',
         | 
| @@ -6110,7 +6204,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 6110 6204 | 
             
                    claimPermission: 'Option<PalletTangleLstCommissionCommissionClaimPermission>'
         | 
| 6111 6205 | 
             
                },
         | 
| 6112 6206 | 
             
                /**
         | 
| 6113 | 
            -
               *  | 
| 6207 | 
            +
               * Lookup738: pallet_tangle_lst::types::pools::PoolRoles<sp_core::crypto::AccountId32>
         | 
| 6114 6208 | 
             
               **/ PalletTangleLstPoolsPoolRoles: {
         | 
| 6115 6209 | 
             
                    depositor: 'AccountId32',
         | 
| 6116 6210 | 
             
                    root: 'Option<AccountId32>',
         | 
| @@ -6118,12 +6212,13 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 6118 6212 | 
             
                    bouncer: 'Option<AccountId32>'
         | 
| 6119 6213 | 
             
                },
         | 
| 6120 6214 | 
             
                /**
         | 
| 6121 | 
            -
               *  | 
| 6215 | 
            +
               * Lookup739: pallet_tangle_lst::types::bonded_pool::PoolMetadata<T>
         | 
| 6122 6216 | 
             
               **/ PalletTangleLstBondedPoolPoolMetadata: {
         | 
| 6123 | 
            -
                    name: 'Bytes'
         | 
| 6217 | 
            +
                    name: 'Option<Bytes>',
         | 
| 6218 | 
            +
                    icon: 'Option<Bytes>'
         | 
| 6124 6219 | 
             
                },
         | 
| 6125 6220 | 
             
                /**
         | 
| 6126 | 
            -
               *  | 
| 6221 | 
            +
               * Lookup740: pallet_tangle_lst::types::sub_pools::RewardPool<T>
         | 
| 6127 6222 | 
             
               **/ PalletTangleLstSubPoolsRewardPool: {
         | 
| 6128 6223 | 
             
                    lastRecordedRewardCounter: 'u128',
         | 
| 6129 6224 | 
             
                    lastRecordedTotalPayouts: 'u128',
         | 
| @@ -6132,25 +6227,24 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 6132 6227 | 
             
                    totalCommissionClaimed: 'u128'
         | 
| 6133 6228 | 
             
                },
         | 
| 6134 6229 | 
             
                /**
         | 
| 6135 | 
            -
               *  | 
| 6230 | 
            +
               * Lookup741: pallet_tangle_lst::types::sub_pools::SubPools<T>
         | 
| 6136 6231 | 
             
               **/ PalletTangleLstSubPools: {
         | 
| 6137 6232 | 
             
                    noEra: 'PalletTangleLstSubPoolsUnbondPool',
         | 
| 6138 6233 | 
             
                    withEra: 'BTreeMap<u32, PalletTangleLstSubPoolsUnbondPool>'
         | 
| 6139 6234 | 
             
                },
         | 
| 6140 6235 | 
             
                /**
         | 
| 6141 | 
            -
               *  | 
| 6236 | 
            +
               * Lookup742: pallet_tangle_lst::types::sub_pools::UnbondPool<T>
         | 
| 6142 6237 | 
             
               **/ PalletTangleLstSubPoolsUnbondPool: {
         | 
| 6143 6238 | 
             
                    points: 'u128',
         | 
| 6144 6239 | 
             
                    balance: 'u128'
         | 
| 6145 6240 | 
             
                },
         | 
| 6146 6241 | 
             
                /**
         | 
| 6147 | 
            -
               *  | 
| 6242 | 
            +
               * Lookup748: pallet_tangle_lst::types::pools::PoolMember<T>
         | 
| 6148 6243 | 
             
               **/ PalletTangleLstPoolsPoolMember: {
         | 
| 6149 | 
            -
                     | 
| 6150 | 
            -
                    unbondingEras: 'BTreeMap<u32, u128>'
         | 
| 6244 | 
            +
                    unbondingEras: 'BTreeMap<u32, (u32,u128)>'
         | 
| 6151 6245 | 
             
                },
         | 
| 6152 6246 | 
             
                /**
         | 
| 6153 | 
            -
               *  | 
| 6247 | 
            +
               * Lookup753: pallet_tangle_lst::types::ClaimPermission
         | 
| 6154 6248 | 
             
               **/ PalletTangleLstClaimPermission: {
         | 
| 6155 6249 | 
             
                    _enum: [
         | 
| 6156 6250 | 
             
                        'Permissioned',
         | 
| @@ -6160,7 +6254,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 6160 6254 | 
             
                    ]
         | 
| 6161 6255 | 
             
                },
         | 
| 6162 6256 | 
             
                /**
         | 
| 6163 | 
            -
               *  | 
| 6257 | 
            +
               * Lookup754: pallet_tangle_lst::pallet::Error<T>
         | 
| 6164 6258 | 
             
               **/ PalletTangleLstError: {
         | 
| 6165 6259 | 
             
                    _enum: {
         | 
| 6166 6260 | 
             
                        PoolNotFound: 'Null',
         | 
| @@ -6199,7 +6293,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 6199 6293 | 
             
                    }
         | 
| 6200 6294 | 
             
                },
         | 
| 6201 6295 | 
             
                /**
         | 
| 6202 | 
            -
               *  | 
| 6296 | 
            +
               * Lookup755: pallet_tangle_lst::pallet::DefensiveError
         | 
| 6203 6297 | 
             
               **/ PalletTangleLstDefensiveError: {
         | 
| 6204 6298 | 
             
                    _enum: [
         | 
| 6205 6299 | 
             
                        'NotEnoughSpaceInUnbondPool',
         | 
| @@ -6210,33 +6304,33 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 6210 6304 | 
             
                    ]
         | 
| 6211 6305 | 
             
                },
         | 
| 6212 6306 | 
             
                /**
         | 
| 6213 | 
            -
               *  | 
| 6307 | 
            +
               * Lookup758: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
         | 
| 6214 6308 | 
             
               **/ FrameSystemExtensionsCheckNonZeroSender: 'Null',
         | 
| 6215 6309 | 
             
                /**
         | 
| 6216 | 
            -
               *  | 
| 6310 | 
            +
               * Lookup759: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
         | 
| 6217 6311 | 
             
               **/ FrameSystemExtensionsCheckSpecVersion: 'Null',
         | 
| 6218 6312 | 
             
                /**
         | 
| 6219 | 
            -
               *  | 
| 6313 | 
            +
               * Lookup760: frame_system::extensions::check_tx_version::CheckTxVersion<T>
         | 
| 6220 6314 | 
             
               **/ FrameSystemExtensionsCheckTxVersion: 'Null',
         | 
| 6221 6315 | 
             
                /**
         | 
| 6222 | 
            -
               *  | 
| 6316 | 
            +
               * Lookup761: frame_system::extensions::check_genesis::CheckGenesis<T>
         | 
| 6223 6317 | 
             
               **/ FrameSystemExtensionsCheckGenesis: 'Null',
         | 
| 6224 6318 | 
             
                /**
         | 
| 6225 | 
            -
               *  | 
| 6319 | 
            +
               * Lookup764: frame_system::extensions::check_nonce::CheckNonce<T>
         | 
| 6226 6320 | 
             
               **/ FrameSystemExtensionsCheckNonce: 'Compact<u32>',
         | 
| 6227 6321 | 
             
                /**
         | 
| 6228 | 
            -
               *  | 
| 6322 | 
            +
               * Lookup765: frame_system::extensions::check_weight::CheckWeight<T>
         | 
| 6229 6323 | 
             
               **/ FrameSystemExtensionsCheckWeight: 'Null',
         | 
| 6230 6324 | 
             
                /**
         | 
| 6231 | 
            -
               *  | 
| 6325 | 
            +
               * Lookup766: pallet_transaction_payment::ChargeTransactionPayment<T>
         | 
| 6232 6326 | 
             
               **/ PalletTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
         | 
| 6233 6327 | 
             
                /**
         | 
| 6234 | 
            -
               *  | 
| 6328 | 
            +
               * Lookup767: frame_metadata_hash_extension::CheckMetadataHash<T>
         | 
| 6235 6329 | 
             
               **/ FrameMetadataHashExtensionCheckMetadataHash: {
         | 
| 6236 6330 | 
             
                    mode: 'FrameMetadataHashExtensionMode'
         | 
| 6237 6331 | 
             
                },
         | 
| 6238 6332 | 
             
                /**
         | 
| 6239 | 
            -
               *  | 
| 6333 | 
            +
               * Lookup768: frame_metadata_hash_extension::Mode
         | 
| 6240 6334 | 
             
               **/ FrameMetadataHashExtensionMode: {
         | 
| 6241 6335 | 
             
                    _enum: [
         | 
| 6242 6336 | 
             
                        'Disabled',
         | 
| @@ -6244,7 +6338,7 @@ function typesFromDefs(definitions, initTypes = {}) { | |
| 6244 6338 | 
             
                    ]
         | 
| 6245 6339 | 
             
                },
         | 
| 6246 6340 | 
             
                /**
         | 
| 6247 | 
            -
               *  | 
| 6341 | 
            +
               * Lookup770: tangle_testnet_runtime::Runtime
         | 
| 6248 6342 | 
             
               **/ TangleTestnetRuntimeRuntime: 'Null'
         | 
| 6249 6343 | 
             
            };
         | 
| 6250 6344 |  |