@argonprotocol/mainchain 1.4.3-dev.4e058920 → 1.4.3-dev.5831d68f

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.
Files changed (41) hide show
  1. package/browser/index.d.ts +569 -408
  2. package/browser/index.js +6309 -672
  3. package/browser/index.js.map +1 -1
  4. package/lib/index.cjs +6382 -716
  5. package/lib/index.cjs.map +1 -1
  6. package/lib/index.d.cts +569 -408
  7. package/lib/index.d.ts +569 -408
  8. package/lib/index.js +6377 -711
  9. package/lib/index.js.map +1 -1
  10. package/package.json +2 -5
  11. package/src/interfaces/augment-api-consts.ts +14 -7
  12. package/src/interfaces/augment-api-errors.ts +22 -13
  13. package/src/interfaces/augment-api-events.ts +27 -12
  14. package/src/interfaces/augment-api-query.ts +26 -22
  15. package/src/interfaces/augment-api-rpc.ts +1 -1
  16. package/src/interfaces/augment-api-runtime.ts +1 -28
  17. package/src/interfaces/augment-api-tx.ts +16 -5
  18. package/src/interfaces/augment-api.ts +0 -1
  19. package/src/interfaces/augment-types.ts +7 -4
  20. package/src/interfaces/definitions.ts +11 -26
  21. package/src/interfaces/ethereum/index.ts +0 -1
  22. package/src/interfaces/ethereum/types.ts +17 -6
  23. package/src/interfaces/lookup.ts +274 -245
  24. package/src/interfaces/registry.ts +22 -15
  25. package/src/interfaces/types-lookup.ts +279 -245
  26. package/lib/chunk-3KFMHNNJ.cjs +0 -706
  27. package/lib/chunk-3KFMHNNJ.cjs.map +0 -1
  28. package/lib/chunk-D3FCDADJ.cjs +0 -175
  29. package/lib/chunk-D3FCDADJ.cjs.map +0 -1
  30. package/lib/chunk-RF6NOJOR.js +0 -706
  31. package/lib/chunk-RF6NOJOR.js.map +0 -1
  32. package/lib/chunk-YPXWOFUS.js +0 -175
  33. package/lib/chunk-YPXWOFUS.js.map +0 -1
  34. package/lib/lib-CU2JUZW6.cjs +0 -403
  35. package/lib/lib-CU2JUZW6.cjs.map +0 -1
  36. package/lib/lib-P3PEMYOB.js +0 -403
  37. package/lib/lib-P3PEMYOB.js.map +0 -1
  38. package/lib/setPreset-NCTHSXWD.js +0 -15
  39. package/lib/setPreset-NCTHSXWD.js.map +0 -1
  40. package/lib/setPreset-XHOPATBO.cjs +0 -15
  41. package/lib/setPreset-XHOPATBO.cjs.map +0 -1
@@ -683,7 +683,7 @@ declare module '@polkadot/types/lookup' {
683
683
  readonly vaultId: u32;
684
684
  readonly liquidityPromised: u128;
685
685
  readonly securitization: u128;
686
- readonly lockedMarketRate: u128;
686
+ readonly lockedTargetPrice: u128;
687
687
  readonly accountId: AccountId32;
688
688
  readonly securityFee: u128;
689
689
  } & Struct;
@@ -692,9 +692,9 @@ declare module '@polkadot/types/lookup' {
692
692
  readonly utxoId: u64;
693
693
  readonly vaultId: u32;
694
694
  readonly liquidityPromised: u128;
695
- readonly originalMarketRate: u128;
695
+ readonly oldTargetPrice: u128;
696
696
  readonly securityFee: u128;
697
- readonly newLockedMarketRate: u128;
697
+ readonly newTargetPrice: u128;
698
698
  readonly amountBurned: u128;
699
699
  readonly accountId: AccountId32;
700
700
  } & Struct;
@@ -1838,12 +1838,17 @@ declare module '@polkadot/types/lookup' {
1838
1838
 
1839
1839
  /** @name PalletCrosschainTransferEvent (127) */
1840
1840
  interface PalletCrosschainTransferEvent extends Enum {
1841
- readonly isBurnNoticeAccepted: boolean;
1842
- readonly asBurnNoticeAccepted: {
1841
+ readonly isTransferToArgonSettled: boolean;
1842
+ readonly asTransferToArgonSettled: {
1843
1843
  readonly sourceChain: PalletCrosschainTransferSourceChain;
1844
- readonly notice: PalletCrosschainTransferBurnNotice;
1844
+ readonly transfer: PalletCrosschainTransferTransferToArgonActivity;
1845
1845
  } & Struct;
1846
- readonly type: 'BurnNoticeAccepted';
1846
+ readonly isGatewayStateAdvanced: boolean;
1847
+ readonly asGatewayStateAdvanced: {
1848
+ readonly sourceChain: PalletCrosschainTransferSourceChain;
1849
+ readonly gatewayState: PalletCrosschainTransferGatewayState;
1850
+ } & Struct;
1851
+ readonly type: 'TransferToArgonSettled' | 'GatewayStateAdvanced';
1847
1852
  }
1848
1853
 
1849
1854
  /** @name PalletCrosschainTransferSourceChain (128) */
@@ -1852,13 +1857,13 @@ declare module '@polkadot/types/lookup' {
1852
1857
  readonly type: 'Ethereum';
1853
1858
  }
1854
1859
 
1855
- /** @name PalletCrosschainTransferBurnNotice (129) */
1856
- interface PalletCrosschainTransferBurnNotice extends Struct {
1860
+ /** @name PalletCrosschainTransferTransferToArgonActivity (129) */
1861
+ interface PalletCrosschainTransferTransferToArgonActivity extends Struct {
1862
+ readonly gatewayActivityNonce: Compact<u64>;
1857
1863
  readonly from: H160;
1864
+ readonly asset: PalletCrosschainTransferAssetKind;
1858
1865
  readonly to: AccountId32;
1859
- readonly assetKind: PalletCrosschainTransferAssetKind;
1860
- readonly amount: u128;
1861
- readonly accountNonce: Compact<u64>;
1866
+ readonly amount: Compact<u128>;
1862
1867
  }
1863
1868
 
1864
1869
  /** @name PalletCrosschainTransferAssetKind (132) */
@@ -1868,7 +1873,15 @@ declare module '@polkadot/types/lookup' {
1868
1873
  readonly type: 'Argon' | 'Argonot';
1869
1874
  }
1870
1875
 
1871
- /** @name FrameSystemPhase (133) */
1876
+ /** @name PalletCrosschainTransferGatewayState (133) */
1877
+ interface PalletCrosschainTransferGatewayState extends Struct {
1878
+ readonly gatewayActivityNonce: Compact<u64>;
1879
+ readonly argonApprovalsNonce: Compact<u64>;
1880
+ readonly argonCirculation: u128;
1881
+ readonly argonotCirculation: u128;
1882
+ }
1883
+
1884
+ /** @name FrameSystemPhase (134) */
1872
1885
  interface FrameSystemPhase extends Enum {
1873
1886
  readonly isApplyExtrinsic: boolean;
1874
1887
  readonly asApplyExtrinsic: u32;
@@ -1877,19 +1890,19 @@ declare module '@polkadot/types/lookup' {
1877
1890
  readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
1878
1891
  }
1879
1892
 
1880
- /** @name FrameSystemLastRuntimeUpgradeInfo (137) */
1893
+ /** @name FrameSystemLastRuntimeUpgradeInfo (138) */
1881
1894
  interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
1882
1895
  readonly specVersion: Compact<u32>;
1883
1896
  readonly specName: Text;
1884
1897
  }
1885
1898
 
1886
- /** @name FrameSystemCodeUpgradeAuthorization (140) */
1899
+ /** @name FrameSystemCodeUpgradeAuthorization (141) */
1887
1900
  interface FrameSystemCodeUpgradeAuthorization extends Struct {
1888
1901
  readonly codeHash: H256;
1889
1902
  readonly checkVersion: bool;
1890
1903
  }
1891
1904
 
1892
- /** @name FrameSystemCall (141) */
1905
+ /** @name FrameSystemCall (142) */
1893
1906
  interface FrameSystemCall extends Enum {
1894
1907
  readonly isRemark: boolean;
1895
1908
  readonly asRemark: {
@@ -1950,21 +1963,21 @@ declare module '@polkadot/types/lookup' {
1950
1963
  | 'ApplyAuthorizedUpgrade';
1951
1964
  }
1952
1965
 
1953
- /** @name FrameSystemLimitsBlockWeights (145) */
1966
+ /** @name FrameSystemLimitsBlockWeights (146) */
1954
1967
  interface FrameSystemLimitsBlockWeights extends Struct {
1955
1968
  readonly baseBlock: SpWeightsWeightV2Weight;
1956
1969
  readonly maxBlock: SpWeightsWeightV2Weight;
1957
1970
  readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
1958
1971
  }
1959
1972
 
1960
- /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (146) */
1973
+ /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (147) */
1961
1974
  interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
1962
1975
  readonly normal: FrameSystemLimitsWeightsPerClass;
1963
1976
  readonly operational: FrameSystemLimitsWeightsPerClass;
1964
1977
  readonly mandatory: FrameSystemLimitsWeightsPerClass;
1965
1978
  }
1966
1979
 
1967
- /** @name FrameSystemLimitsWeightsPerClass (147) */
1980
+ /** @name FrameSystemLimitsWeightsPerClass (148) */
1968
1981
  interface FrameSystemLimitsWeightsPerClass extends Struct {
1969
1982
  readonly baseExtrinsic: SpWeightsWeightV2Weight;
1970
1983
  readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
@@ -1972,26 +1985,26 @@ declare module '@polkadot/types/lookup' {
1972
1985
  readonly reserved: Option<SpWeightsWeightV2Weight>;
1973
1986
  }
1974
1987
 
1975
- /** @name FrameSystemLimitsBlockLength (149) */
1988
+ /** @name FrameSystemLimitsBlockLength (150) */
1976
1989
  interface FrameSystemLimitsBlockLength extends Struct {
1977
1990
  readonly max: FrameSupportDispatchPerDispatchClassU32;
1978
1991
  readonly maxHeaderSize: Option<u32>;
1979
1992
  }
1980
1993
 
1981
- /** @name FrameSupportDispatchPerDispatchClassU32 (150) */
1994
+ /** @name FrameSupportDispatchPerDispatchClassU32 (151) */
1982
1995
  interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
1983
1996
  readonly normal: u32;
1984
1997
  readonly operational: u32;
1985
1998
  readonly mandatory: u32;
1986
1999
  }
1987
2000
 
1988
- /** @name SpWeightsRuntimeDbWeight (152) */
2001
+ /** @name SpWeightsRuntimeDbWeight (153) */
1989
2002
  interface SpWeightsRuntimeDbWeight extends Struct {
1990
2003
  readonly read: u64;
1991
2004
  readonly write: u64;
1992
2005
  }
1993
2006
 
1994
- /** @name SpVersionRuntimeVersion (153) */
2007
+ /** @name SpVersionRuntimeVersion (154) */
1995
2008
  interface SpVersionRuntimeVersion extends Struct {
1996
2009
  readonly specName: Text;
1997
2010
  readonly implName: Text;
@@ -2003,7 +2016,7 @@ declare module '@polkadot/types/lookup' {
2003
2016
  readonly systemVersion: u8;
2004
2017
  }
2005
2018
 
2006
- /** @name FrameSystemError (158) */
2019
+ /** @name FrameSystemError (159) */
2007
2020
  interface FrameSystemError extends Enum {
2008
2021
  readonly isInvalidSpecName: boolean;
2009
2022
  readonly isSpecVersionNeedsToIncrease: boolean;
@@ -2026,7 +2039,7 @@ declare module '@polkadot/types/lookup' {
2026
2039
  | 'Unauthorized';
2027
2040
  }
2028
2041
 
2029
- /** @name ArgonPrimitivesDigestsDigestset (159) */
2042
+ /** @name ArgonPrimitivesDigestsDigestset (160) */
2030
2043
  interface ArgonPrimitivesDigestsDigestset extends Struct {
2031
2044
  readonly author: AccountId32;
2032
2045
  readonly blockVote: ArgonPrimitivesDigestsBlockVoteDigest;
@@ -2037,18 +2050,18 @@ declare module '@polkadot/types/lookup' {
2037
2050
  readonly notebooks: ArgonPrimitivesDigestsNotebookDigest;
2038
2051
  }
2039
2052
 
2040
- /** @name ArgonPrimitivesDigestsBlockVoteDigest (160) */
2053
+ /** @name ArgonPrimitivesDigestsBlockVoteDigest (161) */
2041
2054
  interface ArgonPrimitivesDigestsBlockVoteDigest extends Struct {
2042
2055
  readonly votingPower: Compact<u128>;
2043
2056
  readonly votesCount: Compact<u32>;
2044
2057
  }
2045
2058
 
2046
- /** @name ArgonPrimitivesDigestsParentVotingKeyDigest (162) */
2059
+ /** @name ArgonPrimitivesDigestsParentVotingKeyDigest (163) */
2047
2060
  interface ArgonPrimitivesDigestsParentVotingKeyDigest extends Struct {
2048
2061
  readonly parentVotingKey: Option<H256>;
2049
2062
  }
2050
2063
 
2051
- /** @name ArgonPrimitivesForkPower (165) */
2064
+ /** @name ArgonPrimitivesForkPower (166) */
2052
2065
  interface ArgonPrimitivesForkPower extends Struct {
2053
2066
  readonly isLatestVote: bool;
2054
2067
  readonly notebooks: Compact<u64>;
@@ -2059,19 +2072,19 @@ declare module '@polkadot/types/lookup' {
2059
2072
  readonly minerNonceScore: Option<U256>;
2060
2073
  }
2061
2074
 
2062
- /** @name ArgonPrimitivesDigestsFrameInfo (170) */
2075
+ /** @name ArgonPrimitivesDigestsFrameInfo (171) */
2063
2076
  interface ArgonPrimitivesDigestsFrameInfo extends Struct {
2064
2077
  readonly frameId: Compact<u64>;
2065
2078
  readonly frameRewardTicksRemaining: Compact<u32>;
2066
2079
  readonly isNewFrame: bool;
2067
2080
  }
2068
2081
 
2069
- /** @name ArgonPrimitivesDigestsNotebookDigest (172) */
2082
+ /** @name ArgonPrimitivesDigestsNotebookDigest (173) */
2070
2083
  interface ArgonPrimitivesDigestsNotebookDigest extends Struct {
2071
2084
  readonly notebooks: Vec<ArgonPrimitivesNotebookNotebookAuditResult>;
2072
2085
  }
2073
2086
 
2074
- /** @name ArgonPrimitivesNotebookNotebookAuditResult (174) */
2087
+ /** @name ArgonPrimitivesNotebookNotebookAuditResult (175) */
2075
2088
  interface ArgonPrimitivesNotebookNotebookAuditResult extends Struct {
2076
2089
  readonly notaryId: Compact<u32>;
2077
2090
  readonly notebookNumber: Compact<u32>;
@@ -2079,7 +2092,7 @@ declare module '@polkadot/types/lookup' {
2079
2092
  readonly auditFirstFailure: Option<ArgonNotaryAuditErrorVerifyError>;
2080
2093
  }
2081
2094
 
2082
- /** @name PalletDigestsError (177) */
2095
+ /** @name PalletDigestsError (178) */
2083
2096
  interface PalletDigestsError extends Enum {
2084
2097
  readonly isDuplicateBlockVoteDigest: boolean;
2085
2098
  readonly isDuplicateAuthorDigest: boolean;
@@ -2110,7 +2123,7 @@ declare module '@polkadot/types/lookup' {
2110
2123
  | 'DuplicateFrameInfoDigest';
2111
2124
  }
2112
2125
 
2113
- /** @name PalletTimestampCall (178) */
2126
+ /** @name PalletTimestampCall (179) */
2114
2127
  interface PalletTimestampCall extends Enum {
2115
2128
  readonly isSet: boolean;
2116
2129
  readonly asSet: {
@@ -2119,7 +2132,7 @@ declare module '@polkadot/types/lookup' {
2119
2132
  readonly type: 'Set';
2120
2133
  }
2121
2134
 
2122
- /** @name PalletMultisigMultisig (180) */
2135
+ /** @name PalletMultisigMultisig (181) */
2123
2136
  interface PalletMultisigMultisig extends Struct {
2124
2137
  readonly when: PalletMultisigTimepoint;
2125
2138
  readonly deposit: u128;
@@ -2127,7 +2140,7 @@ declare module '@polkadot/types/lookup' {
2127
2140
  readonly approvals: Vec<AccountId32>;
2128
2141
  }
2129
2142
 
2130
- /** @name PalletMultisigCall (183) */
2143
+ /** @name PalletMultisigCall (184) */
2131
2144
  interface PalletMultisigCall extends Enum {
2132
2145
  readonly isAsMultiThreshold1: boolean;
2133
2146
  readonly asAsMultiThreshold1: {
@@ -2171,7 +2184,7 @@ declare module '@polkadot/types/lookup' {
2171
2184
  | 'PokeDeposit';
2172
2185
  }
2173
2186
 
2174
- /** @name PalletProxyCall (185) */
2187
+ /** @name PalletProxyCall (186) */
2175
2188
  interface PalletProxyCall extends Enum {
2176
2189
  readonly isProxy: boolean;
2177
2190
  readonly asProxy: {
@@ -2243,10 +2256,10 @@ declare module '@polkadot/types/lookup' {
2243
2256
  | 'PokeDeposit';
2244
2257
  }
2245
2258
 
2246
- /** @name PalletTicksCall (189) */
2259
+ /** @name PalletTicksCall (190) */
2247
2260
  type PalletTicksCall = Null;
2248
2261
 
2249
- /** @name PalletMiningSlotCall (190) */
2262
+ /** @name PalletMiningSlotCall (191) */
2250
2263
  interface PalletMiningSlotCall extends Enum {
2251
2264
  readonly isBid: boolean;
2252
2265
  readonly asBid: {
@@ -2262,7 +2275,7 @@ declare module '@polkadot/types/lookup' {
2262
2275
  readonly type: 'Bid' | 'ConfigureMiningSlotDelay';
2263
2276
  }
2264
2277
 
2265
- /** @name PalletBitcoinUtxosCall (191) */
2278
+ /** @name PalletBitcoinUtxosCall (192) */
2266
2279
  interface PalletBitcoinUtxosCall extends Enum {
2267
2280
  readonly isSync: boolean;
2268
2281
  readonly asSync: {
@@ -2295,21 +2308,21 @@ declare module '@polkadot/types/lookup' {
2295
2308
  | 'RejectUtxoCandidate';
2296
2309
  }
2297
2310
 
2298
- /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (192) */
2311
+ /** @name ArgonPrimitivesInherentsBitcoinUtxoSync (193) */
2299
2312
  interface ArgonPrimitivesInherentsBitcoinUtxoSync extends Struct {
2300
2313
  readonly spent: Vec<ArgonPrimitivesInherentsBitcoinUtxoSpend>;
2301
2314
  readonly funded: Vec<ArgonPrimitivesInherentsBitcoinUtxoFunding>;
2302
2315
  readonly syncToBlock: ArgonPrimitivesBitcoinBitcoinBlock;
2303
2316
  }
2304
2317
 
2305
- /** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (194) */
2318
+ /** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (195) */
2306
2319
  interface ArgonPrimitivesInherentsBitcoinUtxoSpend extends Struct {
2307
2320
  readonly utxoId: Compact<u64>;
2308
2321
  readonly utxoRef: Option<ArgonPrimitivesBitcoinUtxoRef>;
2309
2322
  readonly bitcoinHeight: Compact<u64>;
2310
2323
  }
2311
2324
 
2312
- /** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (197) */
2325
+ /** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (198) */
2313
2326
  interface ArgonPrimitivesInherentsBitcoinUtxoFunding extends Struct {
2314
2327
  readonly utxoId: Compact<u64>;
2315
2328
  readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
@@ -2318,13 +2331,13 @@ declare module '@polkadot/types/lookup' {
2318
2331
  readonly bitcoinHeight: Compact<u64>;
2319
2332
  }
2320
2333
 
2321
- /** @name ArgonPrimitivesBitcoinBitcoinBlock (198) */
2334
+ /** @name ArgonPrimitivesBitcoinBitcoinBlock (199) */
2322
2335
  interface ArgonPrimitivesBitcoinBitcoinBlock extends Struct {
2323
2336
  readonly blockHeight: Compact<u64>;
2324
2337
  readonly blockHash: ArgonPrimitivesBitcoinH256Le;
2325
2338
  }
2326
2339
 
2327
- /** @name PalletVaultsCall (199) */
2340
+ /** @name PalletVaultsCall (200) */
2328
2341
  interface PalletVaultsCall extends Enum {
2329
2342
  readonly isCreate: boolean;
2330
2343
  readonly asCreate: {
@@ -2373,7 +2386,7 @@ declare module '@polkadot/types/lookup' {
2373
2386
  | 'SetName';
2374
2387
  }
2375
2388
 
2376
- /** @name PalletVaultsVaultConfig (200) */
2389
+ /** @name PalletVaultsVaultConfig (201) */
2377
2390
  interface PalletVaultsVaultConfig extends Struct {
2378
2391
  readonly terms: ArgonPrimitivesVaultVaultTerms;
2379
2392
  readonly name: Option<Bytes>;
@@ -2382,17 +2395,17 @@ declare module '@polkadot/types/lookup' {
2382
2395
  readonly securitizationRatio: Compact<u128>;
2383
2396
  }
2384
2397
 
2385
- /** @name ArgonPrimitivesVaultVaultTerms (201) */
2398
+ /** @name ArgonPrimitivesVaultVaultTerms (202) */
2386
2399
  interface ArgonPrimitivesVaultVaultTerms extends Struct {
2387
2400
  readonly bitcoinAnnualPercentRate: Compact<u128>;
2388
2401
  readonly bitcoinBaseFee: Compact<u128>;
2389
2402
  readonly treasuryProfitSharing: Compact<Permill>;
2390
2403
  }
2391
2404
 
2392
- /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (207) */
2405
+ /** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (208) */
2393
2406
  interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {}
2394
2407
 
2395
- /** @name PalletBitcoinLocksCall (209) */
2408
+ /** @name PalletBitcoinLocksCall (210) */
2396
2409
  interface PalletBitcoinLocksCall extends Enum {
2397
2410
  readonly isInitialize: boolean;
2398
2411
  readonly asInitialize: {
@@ -2458,19 +2471,19 @@ declare module '@polkadot/types/lookup' {
2458
2471
  | 'IncreaseSecuritization';
2459
2472
  }
2460
2473
 
2461
- /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (210) */
2474
+ /** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (211) */
2462
2475
  interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {}
2463
2476
 
2464
- /** @name PalletBitcoinLocksLockOptions (213) */
2477
+ /** @name PalletBitcoinLocksLockOptions (214) */
2465
2478
  interface PalletBitcoinLocksLockOptions extends Enum {
2466
2479
  readonly isV1: boolean;
2467
2480
  readonly asV1: {
2468
- readonly microgonsPerBtc: Option<u128>;
2481
+ readonly microgonsAtTargetPerBtc: Option<u128>;
2469
2482
  } & Struct;
2470
2483
  readonly type: 'V1';
2471
2484
  }
2472
2485
 
2473
- /** @name PalletNotariesCall (216) */
2486
+ /** @name PalletNotariesCall (217) */
2474
2487
  interface PalletNotariesCall extends Enum {
2475
2488
  readonly isPropose: boolean;
2476
2489
  readonly asPropose: {
@@ -2489,7 +2502,7 @@ declare module '@polkadot/types/lookup' {
2489
2502
  readonly type: 'Propose' | 'Activate' | 'Update';
2490
2503
  }
2491
2504
 
2492
- /** @name PalletNotebookCall (217) */
2505
+ /** @name PalletNotebookCall (218) */
2493
2506
  interface PalletNotebookCall extends Enum {
2494
2507
  readonly isSubmit: boolean;
2495
2508
  readonly asSubmit: {
@@ -2502,13 +2515,13 @@ declare module '@polkadot/types/lookup' {
2502
2515
  readonly type: 'Submit' | 'Unlock';
2503
2516
  }
2504
2517
 
2505
- /** @name ArgonPrimitivesNotebookSignedNotebookHeader (219) */
2518
+ /** @name ArgonPrimitivesNotebookSignedNotebookHeader (220) */
2506
2519
  interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
2507
2520
  readonly header: ArgonPrimitivesNotebookNotebookHeader;
2508
2521
  readonly signature: U8aFixed;
2509
2522
  }
2510
2523
 
2511
- /** @name ArgonPrimitivesNotebookNotebookHeader (220) */
2524
+ /** @name ArgonPrimitivesNotebookNotebookHeader (221) */
2512
2525
  interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
2513
2526
  readonly version: Compact<u16>;
2514
2527
  readonly notebookNumber: Compact<u32>;
@@ -2527,7 +2540,7 @@ declare module '@polkadot/types/lookup' {
2527
2540
  readonly domains: Vec<ITuple<[H256, AccountId32]>>;
2528
2541
  }
2529
2542
 
2530
- /** @name ArgonPrimitivesNotebookChainTransfer (223) */
2543
+ /** @name ArgonPrimitivesNotebookChainTransfer (224) */
2531
2544
  interface ArgonPrimitivesNotebookChainTransfer extends Enum {
2532
2545
  readonly isToMainchain: boolean;
2533
2546
  readonly asToMainchain: {
@@ -2541,13 +2554,13 @@ declare module '@polkadot/types/lookup' {
2541
2554
  readonly type: 'ToMainchain' | 'ToLocalchain';
2542
2555
  }
2543
2556
 
2544
- /** @name ArgonPrimitivesBalanceChangeAccountOrigin (226) */
2557
+ /** @name ArgonPrimitivesBalanceChangeAccountOrigin (227) */
2545
2558
  interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
2546
2559
  readonly notebookNumber: Compact<u32>;
2547
2560
  readonly accountUid: Compact<u32>;
2548
2561
  }
2549
2562
 
2550
- /** @name PalletLocalchainTransferCall (233) */
2563
+ /** @name PalletLocalchainTransferCall (234) */
2551
2564
  interface PalletLocalchainTransferCall extends Enum {
2552
2565
  readonly isSendToLocalchain: boolean;
2553
2566
  readonly asSendToLocalchain: {
@@ -2557,7 +2570,7 @@ declare module '@polkadot/types/lookup' {
2557
2570
  readonly type: 'SendToLocalchain';
2558
2571
  }
2559
2572
 
2560
- /** @name PalletBlockSealSpecCall (234) */
2573
+ /** @name PalletBlockSealSpecCall (235) */
2561
2574
  interface PalletBlockSealSpecCall extends Enum {
2562
2575
  readonly isConfigure: boolean;
2563
2576
  readonly asConfigure: {
@@ -2567,7 +2580,7 @@ declare module '@polkadot/types/lookup' {
2567
2580
  readonly type: 'Configure';
2568
2581
  }
2569
2582
 
2570
- /** @name PalletDomainsCall (235) */
2583
+ /** @name PalletDomainsCall (236) */
2571
2584
  interface PalletDomainsCall extends Enum {
2572
2585
  readonly isSetZoneRecord: boolean;
2573
2586
  readonly asSetZoneRecord: {
@@ -2577,7 +2590,7 @@ declare module '@polkadot/types/lookup' {
2577
2590
  readonly type: 'SetZoneRecord';
2578
2591
  }
2579
2592
 
2580
- /** @name PalletPriceIndexCall (236) */
2593
+ /** @name PalletPriceIndexCall (237) */
2581
2594
  interface PalletPriceIndexCall extends Enum {
2582
2595
  readonly isSubmit: boolean;
2583
2596
  readonly asSubmit: {
@@ -2590,7 +2603,7 @@ declare module '@polkadot/types/lookup' {
2590
2603
  readonly type: 'Submit' | 'SetOperator';
2591
2604
  }
2592
2605
 
2593
- /** @name PalletPriceIndexPriceIndex (237) */
2606
+ /** @name PalletPriceIndexPriceIndex (238) */
2594
2607
  interface PalletPriceIndexPriceIndex extends Struct {
2595
2608
  readonly btcUsdPrice: Compact<u128>;
2596
2609
  readonly argonotUsdPrice: u128;
@@ -2600,7 +2613,7 @@ declare module '@polkadot/types/lookup' {
2600
2613
  readonly tick: Compact<u64>;
2601
2614
  }
2602
2615
 
2603
- /** @name PalletGrandpaCall (238) */
2616
+ /** @name PalletGrandpaCall (239) */
2604
2617
  interface PalletGrandpaCall extends Enum {
2605
2618
  readonly isReportEquivocation: boolean;
2606
2619
  readonly asReportEquivocation: {
@@ -2620,13 +2633,13 @@ declare module '@polkadot/types/lookup' {
2620
2633
  readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
2621
2634
  }
2622
2635
 
2623
- /** @name SpConsensusGrandpaEquivocationProof (239) */
2636
+ /** @name SpConsensusGrandpaEquivocationProof (240) */
2624
2637
  interface SpConsensusGrandpaEquivocationProof extends Struct {
2625
2638
  readonly setId: u64;
2626
2639
  readonly equivocation: SpConsensusGrandpaEquivocation;
2627
2640
  }
2628
2641
 
2629
- /** @name SpConsensusGrandpaEquivocation (240) */
2642
+ /** @name SpConsensusGrandpaEquivocation (241) */
2630
2643
  interface SpConsensusGrandpaEquivocation extends Enum {
2631
2644
  readonly isPrevote: boolean;
2632
2645
  readonly asPrevote: FinalityGrandpaEquivocationPrevote;
@@ -2635,7 +2648,7 @@ declare module '@polkadot/types/lookup' {
2635
2648
  readonly type: 'Prevote' | 'Precommit';
2636
2649
  }
2637
2650
 
2638
- /** @name FinalityGrandpaEquivocationPrevote (241) */
2651
+ /** @name FinalityGrandpaEquivocationPrevote (242) */
2639
2652
  interface FinalityGrandpaEquivocationPrevote extends Struct {
2640
2653
  readonly roundNumber: u64;
2641
2654
  readonly identity: SpConsensusGrandpaAppPublic;
@@ -2643,16 +2656,16 @@ declare module '@polkadot/types/lookup' {
2643
2656
  readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
2644
2657
  }
2645
2658
 
2646
- /** @name FinalityGrandpaPrevote (242) */
2659
+ /** @name FinalityGrandpaPrevote (243) */
2647
2660
  interface FinalityGrandpaPrevote extends Struct {
2648
2661
  readonly targetHash: H256;
2649
2662
  readonly targetNumber: u32;
2650
2663
  }
2651
2664
 
2652
- /** @name SpConsensusGrandpaAppSignature (243) */
2665
+ /** @name SpConsensusGrandpaAppSignature (244) */
2653
2666
  interface SpConsensusGrandpaAppSignature extends U8aFixed {}
2654
2667
 
2655
- /** @name FinalityGrandpaEquivocationPrecommit (245) */
2668
+ /** @name FinalityGrandpaEquivocationPrecommit (246) */
2656
2669
  interface FinalityGrandpaEquivocationPrecommit extends Struct {
2657
2670
  readonly roundNumber: u64;
2658
2671
  readonly identity: SpConsensusGrandpaAppPublic;
@@ -2660,16 +2673,16 @@ declare module '@polkadot/types/lookup' {
2660
2673
  readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
2661
2674
  }
2662
2675
 
2663
- /** @name FinalityGrandpaPrecommit (246) */
2676
+ /** @name FinalityGrandpaPrecommit (247) */
2664
2677
  interface FinalityGrandpaPrecommit extends Struct {
2665
2678
  readonly targetHash: H256;
2666
2679
  readonly targetNumber: u32;
2667
2680
  }
2668
2681
 
2669
- /** @name SpCoreVoid (248) */
2682
+ /** @name SpCoreVoid (249) */
2670
2683
  type SpCoreVoid = Null;
2671
2684
 
2672
- /** @name PalletBlockSealCall (249) */
2685
+ /** @name PalletBlockSealCall (250) */
2673
2686
  interface PalletBlockSealCall extends Enum {
2674
2687
  readonly isApply: boolean;
2675
2688
  readonly asApply: {
@@ -2678,7 +2691,7 @@ declare module '@polkadot/types/lookup' {
2678
2691
  readonly type: 'Apply';
2679
2692
  }
2680
2693
 
2681
- /** @name ArgonPrimitivesInherentsBlockSealInherent (250) */
2694
+ /** @name ArgonPrimitivesInherentsBlockSealInherent (251) */
2682
2695
  interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
2683
2696
  readonly isVote: boolean;
2684
2697
  readonly asVote: {
@@ -2693,14 +2706,14 @@ declare module '@polkadot/types/lookup' {
2693
2706
  readonly type: 'Vote' | 'Compute';
2694
2707
  }
2695
2708
 
2696
- /** @name ArgonPrimitivesBalanceChangeMerkleProof (251) */
2709
+ /** @name ArgonPrimitivesBalanceChangeMerkleProof (252) */
2697
2710
  interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
2698
2711
  readonly proof: Vec<H256>;
2699
2712
  readonly numberOfLeaves: Compact<u32>;
2700
2713
  readonly leafIndex: Compact<u32>;
2701
2714
  }
2702
2715
 
2703
- /** @name ArgonPrimitivesBlockVoteBlockVoteT (253) */
2716
+ /** @name ArgonPrimitivesBlockVoteBlockVoteT (254) */
2704
2717
  interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
2705
2718
  readonly accountId: AccountId32;
2706
2719
  readonly blockHash: H256;
@@ -2711,7 +2724,7 @@ declare module '@polkadot/types/lookup' {
2711
2724
  readonly tick: Compact<u64>;
2712
2725
  }
2713
2726
 
2714
- /** @name SpRuntimeMultiSignature (254) */
2727
+ /** @name SpRuntimeMultiSignature (255) */
2715
2728
  interface SpRuntimeMultiSignature extends Enum {
2716
2729
  readonly isEd25519: boolean;
2717
2730
  readonly asEd25519: U8aFixed;
@@ -2724,7 +2737,7 @@ declare module '@polkadot/types/lookup' {
2724
2737
  readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
2725
2738
  }
2726
2739
 
2727
- /** @name PalletBlockRewardsCall (256) */
2740
+ /** @name PalletBlockRewardsCall (257) */
2728
2741
  interface PalletBlockRewardsCall extends Enum {
2729
2742
  readonly isSetBlockRewardsPaused: boolean;
2730
2743
  readonly asSetBlockRewardsPaused: {
@@ -2733,10 +2746,10 @@ declare module '@polkadot/types/lookup' {
2733
2746
  readonly type: 'SetBlockRewardsPaused';
2734
2747
  }
2735
2748
 
2736
- /** @name PalletMintCall (257) */
2749
+ /** @name PalletMintCall (258) */
2737
2750
  type PalletMintCall = Null;
2738
2751
 
2739
- /** @name PalletBalancesCall (258) */
2752
+ /** @name PalletBalancesCall (259) */
2740
2753
  interface PalletBalancesCall extends Enum {
2741
2754
  readonly isTransferAllowDeath: boolean;
2742
2755
  readonly asTransferAllowDeath: {
@@ -2795,14 +2808,14 @@ declare module '@polkadot/types/lookup' {
2795
2808
  | 'Burn';
2796
2809
  }
2797
2810
 
2798
- /** @name PalletBalancesAdjustmentDirection (259) */
2811
+ /** @name PalletBalancesAdjustmentDirection (260) */
2799
2812
  interface PalletBalancesAdjustmentDirection extends Enum {
2800
2813
  readonly isIncrease: boolean;
2801
2814
  readonly isDecrease: boolean;
2802
2815
  readonly type: 'Increase' | 'Decrease';
2803
2816
  }
2804
2817
 
2805
- /** @name PalletTxPauseCall (261) */
2818
+ /** @name PalletTxPauseCall (262) */
2806
2819
  interface PalletTxPauseCall extends Enum {
2807
2820
  readonly isPause: boolean;
2808
2821
  readonly asPause: {
@@ -2815,7 +2828,7 @@ declare module '@polkadot/types/lookup' {
2815
2828
  readonly type: 'Pause' | 'Unpause';
2816
2829
  }
2817
2830
 
2818
- /** @name PalletUtilityCall (262) */
2831
+ /** @name PalletUtilityCall (263) */
2819
2832
  interface PalletUtilityCall extends Enum {
2820
2833
  readonly isBatch: boolean;
2821
2834
  readonly asBatch: {
@@ -2865,7 +2878,7 @@ declare module '@polkadot/types/lookup' {
2865
2878
  | 'DispatchAsFallible';
2866
2879
  }
2867
2880
 
2868
- /** @name PalletSudoCall (264) */
2881
+ /** @name PalletSudoCall (265) */
2869
2882
  interface PalletSudoCall extends Enum {
2870
2883
  readonly isSudo: boolean;
2871
2884
  readonly asSudo: {
@@ -2889,7 +2902,7 @@ declare module '@polkadot/types/lookup' {
2889
2902
  readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
2890
2903
  }
2891
2904
 
2892
- /** @name PalletTreasuryCall (265) */
2905
+ /** @name PalletTreasuryCall (266) */
2893
2906
  interface PalletTreasuryCall extends Enum {
2894
2907
  readonly isBuyBonds: boolean;
2895
2908
  readonly asBuyBonds: {
@@ -2903,7 +2916,7 @@ declare module '@polkadot/types/lookup' {
2903
2916
  readonly type: 'BuyBonds' | 'LiquidateBondLot';
2904
2917
  }
2905
2918
 
2906
- /** @name PalletOperationalAccountsCall (266) */
2919
+ /** @name PalletOperationalAccountsCall (267) */
2907
2920
  interface PalletOperationalAccountsCall extends Enum {
2908
2921
  readonly isRegister: boolean;
2909
2922
  readonly asRegister: {
@@ -2939,14 +2952,14 @@ declare module '@polkadot/types/lookup' {
2939
2952
  | 'ClaimRewards';
2940
2953
  }
2941
2954
 
2942
- /** @name PalletOperationalAccountsRegistration (267) */
2955
+ /** @name PalletOperationalAccountsRegistration (268) */
2943
2956
  interface PalletOperationalAccountsRegistration extends Enum {
2944
2957
  readonly isV1: boolean;
2945
2958
  readonly asV1: PalletOperationalAccountsRegistrationV1;
2946
2959
  readonly type: 'V1';
2947
2960
  }
2948
2961
 
2949
- /** @name PalletOperationalAccountsRegistrationV1 (268) */
2962
+ /** @name PalletOperationalAccountsRegistrationV1 (269) */
2950
2963
  interface PalletOperationalAccountsRegistrationV1 extends Struct {
2951
2964
  readonly operationalAccount: AccountId32;
2952
2965
  readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
@@ -2960,15 +2973,15 @@ declare module '@polkadot/types/lookup' {
2960
2973
  readonly referralProof: Option<PalletOperationalAccountsReferralProof>;
2961
2974
  }
2962
2975
 
2963
- /** @name PalletOperationalAccountsOpaqueEncryptionPubkey (269) */
2976
+ /** @name PalletOperationalAccountsOpaqueEncryptionPubkey (270) */
2964
2977
  interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
2965
2978
 
2966
- /** @name PalletOperationalAccountsAccountOwnershipProof (270) */
2979
+ /** @name PalletOperationalAccountsAccountOwnershipProof (271) */
2967
2980
  interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
2968
2981
  readonly signature: SpRuntimeMultiSignature;
2969
2982
  }
2970
2983
 
2971
- /** @name PalletOperationalAccountsReferralProof (272) */
2984
+ /** @name PalletOperationalAccountsReferralProof (273) */
2972
2985
  interface PalletOperationalAccountsReferralProof extends Struct {
2973
2986
  readonly referralCode: U8aFixed;
2974
2987
  readonly referralSignature: U8aFixed;
@@ -2977,7 +2990,7 @@ declare module '@polkadot/types/lookup' {
2977
2990
  readonly sponsorSignature: SpRuntimeMultiSignature;
2978
2991
  }
2979
2992
 
2980
- /** @name PalletOperationalAccountsOperationalProgressPatch (273) */
2993
+ /** @name PalletOperationalAccountsOperationalProgressPatch (274) */
2981
2994
  interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
2982
2995
  readonly hasUniswapTransfer: Option<bool>;
2983
2996
  readonly vaultCreated: Option<bool>;
@@ -2986,7 +2999,7 @@ declare module '@polkadot/types/lookup' {
2986
2999
  readonly observedMiningSeatTotal: Option<u32>;
2987
3000
  }
2988
3001
 
2989
- /** @name PalletEthereumVerifierCall (275) */
3002
+ /** @name PalletEthereumVerifierCall (276) */
2990
3003
  interface PalletEthereumVerifierCall extends Enum {
2991
3004
  readonly isForceCheckpoint: boolean;
2992
3005
  readonly asForceCheckpoint: {
@@ -3012,15 +3025,15 @@ declare module '@polkadot/types/lookup' {
3012
3025
  | 'SetOperatingMode';
3013
3026
  }
3014
3027
 
3015
- /** @name PalletEthereumVerifierCheckpointUpdate (276) */
3028
+ /** @name PalletEthereumVerifierCheckpointUpdate (277) */
3016
3029
  interface PalletEthereumVerifierCheckpointUpdate extends Struct {
3017
3030
  readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
3018
- readonly currentSyncCommittee: SnowbridgeBeaconPrimitivesSyncCommittee;
3031
+ readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
3019
3032
  readonly currentSyncCommitteeBranch: Vec<H256>;
3020
3033
  readonly validatorsRoot: H256;
3021
3034
  }
3022
3035
 
3023
- /** @name SnowbridgeBeaconPrimitivesBeaconHeader (277) */
3036
+ /** @name SnowbridgeBeaconPrimitivesBeaconHeader (278) */
3024
3037
  interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
3025
3038
  readonly slot: u64;
3026
3039
  readonly proposerIndex: u64;
@@ -3029,16 +3042,16 @@ declare module '@polkadot/types/lookup' {
3029
3042
  readonly bodyRoot: H256;
3030
3043
  }
3031
3044
 
3032
- /** @name SnowbridgeBeaconPrimitivesSyncCommittee (278) */
3033
- interface SnowbridgeBeaconPrimitivesSyncCommittee extends Struct {
3045
+ /** @name PalletEthereumVerifierSyncCommittee (279) */
3046
+ interface PalletEthereumVerifierSyncCommittee extends Struct {
3034
3047
  readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
3035
3048
  readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
3036
3049
  }
3037
3050
 
3038
- /** @name SnowbridgeBeaconPrimitivesPublicKey (280) */
3051
+ /** @name SnowbridgeBeaconPrimitivesPublicKey (281) */
3039
3052
  interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
3040
3053
 
3041
- /** @name PalletEthereumVerifierForkVersions (282) */
3054
+ /** @name PalletEthereumVerifierForkVersions (285) */
3042
3055
  interface PalletEthereumVerifierForkVersions extends Struct {
3043
3056
  readonly genesis: PalletEthereumVerifierFork;
3044
3057
  readonly altair: PalletEthereumVerifierFork;
@@ -3049,45 +3062,45 @@ declare module '@polkadot/types/lookup' {
3049
3062
  readonly fulu: PalletEthereumVerifierFork;
3050
3063
  }
3051
3064
 
3052
- /** @name PalletEthereumVerifierFork (283) */
3065
+ /** @name PalletEthereumVerifierFork (286) */
3053
3066
  interface PalletEthereumVerifierFork extends Struct {
3054
3067
  readonly version: U8aFixed;
3055
3068
  readonly epoch: Compact<u64>;
3056
3069
  }
3057
3070
 
3058
- /** @name PalletEthereumVerifierUpdate (284) */
3071
+ /** @name PalletEthereumVerifierUpdate (287) */
3059
3072
  interface PalletEthereumVerifierUpdate extends Struct {
3060
3073
  readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
3061
- readonly syncAggregate: SnowbridgeBeaconPrimitivesSyncAggregate;
3074
+ readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
3062
3075
  readonly signatureSlot: Compact<u64>;
3063
3076
  readonly nextSyncCommitteeUpdate: Option<PalletEthereumVerifierNextSyncCommitteeUpdate>;
3064
3077
  readonly finalizedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
3065
3078
  readonly finalityBranch: Vec<H256>;
3066
3079
  }
3067
3080
 
3068
- /** @name SnowbridgeBeaconPrimitivesSyncAggregate (285) */
3069
- interface SnowbridgeBeaconPrimitivesSyncAggregate extends Struct {
3070
- readonly syncCommitteeBits: U8aFixed;
3081
+ /** @name PalletEthereumVerifierSyncAggregate (288) */
3082
+ interface PalletEthereumVerifierSyncAggregate extends Struct {
3083
+ readonly syncCommitteeBits: Bytes;
3071
3084
  readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
3072
3085
  }
3073
3086
 
3074
- /** @name SnowbridgeBeaconPrimitivesSignature (286) */
3087
+ /** @name SnowbridgeBeaconPrimitivesSignature (290) */
3075
3088
  interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
3076
3089
 
3077
- /** @name PalletEthereumVerifierNextSyncCommitteeUpdate (289) */
3090
+ /** @name PalletEthereumVerifierNextSyncCommitteeUpdate (293) */
3078
3091
  interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
3079
- readonly nextSyncCommittee: SnowbridgeBeaconPrimitivesSyncCommittee;
3092
+ readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
3080
3093
  readonly nextSyncCommitteeBranch: Vec<H256>;
3081
3094
  }
3082
3095
 
3083
- /** @name PalletEthereumVerifierExecutionProof (290) */
3096
+ /** @name PalletEthereumVerifierExecutionProof (294) */
3084
3097
  interface PalletEthereumVerifierExecutionProof extends Struct {
3085
3098
  readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
3086
3099
  readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
3087
3100
  readonly executionBranch: Vec<H256>;
3088
3101
  }
3089
3102
 
3090
- /** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (291) */
3103
+ /** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (295) */
3091
3104
  interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
3092
3105
  readonly isCapella: boolean;
3093
3106
  readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
@@ -3096,7 +3109,7 @@ declare module '@polkadot/types/lookup' {
3096
3109
  readonly type: 'Capella' | 'Deneb';
3097
3110
  }
3098
3111
 
3099
- /** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (292) */
3112
+ /** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (296) */
3100
3113
  interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
3101
3114
  readonly parentHash: H256;
3102
3115
  readonly feeRecipient: H160;
@@ -3115,7 +3128,7 @@ declare module '@polkadot/types/lookup' {
3115
3128
  readonly withdrawalsRoot: H256;
3116
3129
  }
3117
3130
 
3118
- /** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (293) */
3131
+ /** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (297) */
3119
3132
  interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
3120
3133
  readonly parentHash: H256;
3121
3134
  readonly feeRecipient: H160;
@@ -3136,74 +3149,82 @@ declare module '@polkadot/types/lookup' {
3136
3149
  readonly excessBlobGas: u64;
3137
3150
  }
3138
3151
 
3139
- /** @name PalletCrosschainTransferCall (294) */
3152
+ /** @name PalletCrosschainTransferCall (298) */
3140
3153
  interface PalletCrosschainTransferCall extends Enum {
3141
3154
  readonly isSetChainConfig: boolean;
3142
3155
  readonly asSetChainConfig: {
3143
3156
  readonly config: PalletCrosschainTransferChainConfig;
3144
3157
  } & Struct;
3145
- readonly isProveTransfer: boolean;
3146
- readonly asProveTransfer: {
3147
- readonly proof: PalletCrosschainTransferTransferProof;
3158
+ readonly isProveGatewayActivity: boolean;
3159
+ readonly asProveGatewayActivity: {
3160
+ readonly sourceChain: PalletCrosschainTransferSourceChain;
3161
+ readonly previousGatewayActivityNonce: Compact<u64>;
3162
+ readonly proofBatch: ArgonPrimitivesEthereumEthereumReceiptLogProofBatch;
3148
3163
  } & Struct;
3149
- readonly type: 'SetChainConfig' | 'ProveTransfer';
3164
+ readonly type: 'SetChainConfig' | 'ProveGatewayActivity';
3150
3165
  }
3151
3166
 
3152
- /** @name PalletCrosschainTransferChainConfig (295) */
3167
+ /** @name PalletCrosschainTransferChainConfig (299) */
3153
3168
  interface PalletCrosschainTransferChainConfig extends Enum {
3154
3169
  readonly isEthereum: boolean;
3155
3170
  readonly asEthereum: {
3156
3171
  readonly gateway: H160;
3157
3172
  readonly argonToken: H160;
3158
3173
  readonly argonotToken: H160;
3159
- readonly previousGateway: Option<H160>;
3160
- readonly previousReleaseExpiration: Option<u64>;
3161
- } & Struct;
3162
- readonly type: 'Ethereum';
3163
- }
3164
-
3165
- /** @name PalletCrosschainTransferTransferProof (297) */
3166
- interface PalletCrosschainTransferTransferProof extends Enum {
3167
- readonly isEthereum: boolean;
3168
- readonly asEthereum: {
3169
- readonly sourceChain: PalletCrosschainTransferSourceChain;
3170
- readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
3171
- readonly proof: ArgonPrimitivesEthereumEthereumProof;
3172
3174
  } & Struct;
3173
3175
  readonly type: 'Ethereum';
3174
3176
  }
3175
3177
 
3176
- /** @name ArgonPrimitivesEthereumEthereumLog (298) */
3177
- interface ArgonPrimitivesEthereumEthereumLog extends Struct {
3178
- readonly address: H160;
3179
- readonly topics: Vec<H256>;
3180
- readonly data: Bytes;
3181
- }
3182
-
3183
- /** @name ArgonPrimitivesEthereumEthereumProof (299) */
3184
- interface ArgonPrimitivesEthereumEthereumProof extends Struct {
3178
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (300) */
3179
+ interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
3185
3180
  readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
3186
- readonly receiptProof: ArgonPrimitivesEthereumEthereumReceiptProof;
3181
+ readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
3187
3182
  }
3188
3183
 
3189
- /** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (300) */
3184
+ /** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (301) */
3190
3185
  interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
3191
3186
  readonly anchorBlockHash: H256;
3192
3187
  readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
3193
3188
  }
3194
3189
 
3195
- /** @name ArgonPrimitivesEthereumEthereumExecutionHeader (302) */
3190
+ /** @name ArgonPrimitivesEthereumEthereumExecutionHeader (303) */
3196
3191
  interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
3197
3192
  readonly rlp: Bytes;
3198
3193
  }
3199
3194
 
3200
- /** @name ArgonPrimitivesEthereumEthereumReceiptProof (303) */
3201
- interface ArgonPrimitivesEthereumEthereumReceiptProof extends Struct {
3202
- readonly transactionIndex: Compact<u64>;
3195
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (307) */
3196
+ interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
3197
+ readonly targetBlockNumber: Compact<u64>;
3198
+ readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
3199
+ readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
3200
+ }
3201
+
3202
+ /** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (308) */
3203
+ interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
3203
3204
  readonly nodes: Vec<Bytes>;
3205
+ readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
3206
+ }
3207
+
3208
+ /** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (312) */
3209
+ interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
3210
+ readonly transactionIndex: Compact<u64>;
3211
+ readonly nodeIndexes: Vec<u16>;
3212
+ }
3213
+
3214
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLog (317) */
3215
+ interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
3216
+ readonly transactionIndex: Compact<u64>;
3217
+ readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
3204
3218
  }
3205
3219
 
3206
- /** @name PalletMultisigError (305) */
3220
+ /** @name ArgonPrimitivesEthereumEthereumLog (318) */
3221
+ interface ArgonPrimitivesEthereumEthereumLog extends Struct {
3222
+ readonly address: H160;
3223
+ readonly topics: Vec<H256>;
3224
+ readonly data: Bytes;
3225
+ }
3226
+
3227
+ /** @name PalletMultisigError (324) */
3207
3228
  interface PalletMultisigError extends Enum {
3208
3229
  readonly isMinimumThreshold: boolean;
3209
3230
  readonly isAlreadyApproved: boolean;
@@ -3236,21 +3257,21 @@ declare module '@polkadot/types/lookup' {
3236
3257
  | 'AlreadyStored';
3237
3258
  }
3238
3259
 
3239
- /** @name PalletProxyProxyDefinition (308) */
3260
+ /** @name PalletProxyProxyDefinition (327) */
3240
3261
  interface PalletProxyProxyDefinition extends Struct {
3241
3262
  readonly delegate: AccountId32;
3242
3263
  readonly proxyType: ArgonRuntimeProxyType;
3243
3264
  readonly delay: u32;
3244
3265
  }
3245
3266
 
3246
- /** @name PalletProxyAnnouncement (312) */
3267
+ /** @name PalletProxyAnnouncement (331) */
3247
3268
  interface PalletProxyAnnouncement extends Struct {
3248
3269
  readonly real: AccountId32;
3249
3270
  readonly callHash: H256;
3250
3271
  readonly height: u32;
3251
3272
  }
3252
3273
 
3253
- /** @name PalletProxyError (314) */
3274
+ /** @name PalletProxyError (333) */
3254
3275
  interface PalletProxyError extends Enum {
3255
3276
  readonly isTooMany: boolean;
3256
3277
  readonly isNotFound: boolean;
@@ -3271,16 +3292,16 @@ declare module '@polkadot/types/lookup' {
3271
3292
  | 'NoSelfProxy';
3272
3293
  }
3273
3294
 
3274
- /** @name ArgonPrimitivesTickTicker (315) */
3295
+ /** @name ArgonPrimitivesTickTicker (334) */
3275
3296
  interface ArgonPrimitivesTickTicker extends Struct {
3276
3297
  readonly tickDurationMillis: Compact<u64>;
3277
3298
  readonly channelHoldExpirationTicks: Compact<u64>;
3278
3299
  }
3279
3300
 
3280
- /** @name PalletTicksError (317) */
3301
+ /** @name PalletTicksError (336) */
3281
3302
  type PalletTicksError = Null;
3282
3303
 
3283
- /** @name PalletMiningSlotMinerNonceScoring (320) */
3304
+ /** @name PalletMiningSlotMinerNonceScoring (339) */
3284
3305
  interface PalletMiningSlotMinerNonceScoring extends Struct {
3285
3306
  readonly nonce: U256;
3286
3307
  readonly lastWinBlock: Option<u32>;
@@ -3288,7 +3309,7 @@ declare module '@polkadot/types/lookup' {
3288
3309
  readonly frameStartBlocksWonSurplus: i16;
3289
3310
  }
3290
3311
 
3291
- /** @name ArgonPrimitivesBlockSealMiningBidStats (332) */
3312
+ /** @name ArgonPrimitivesBlockSealMiningBidStats (351) */
3292
3313
  interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
3293
3314
  readonly bidsCount: u32;
3294
3315
  readonly bidAmountMin: u128;
@@ -3296,14 +3317,14 @@ declare module '@polkadot/types/lookup' {
3296
3317
  readonly bidAmountSum: u128;
3297
3318
  }
3298
3319
 
3299
- /** @name ArgonPrimitivesBlockSealMiningSlotConfig (336) */
3320
+ /** @name ArgonPrimitivesBlockSealMiningSlotConfig (355) */
3300
3321
  interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
3301
3322
  readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
3302
3323
  readonly ticksBetweenSlots: Compact<u64>;
3303
3324
  readonly slotBiddingStartAfterTicks: Compact<u64>;
3304
3325
  }
3305
3326
 
3306
- /** @name PalletMiningSlotError (347) */
3327
+ /** @name PalletMiningSlotError (366) */
3307
3328
  interface PalletMiningSlotError extends Enum {
3308
3329
  readonly isSlotNotTakingBids: boolean;
3309
3330
  readonly isTooManyBlockRegistrants: boolean;
@@ -3328,7 +3349,7 @@ declare module '@polkadot/types/lookup' {
3328
3349
  | 'UnrecoverableHold';
3329
3350
  }
3330
3351
 
3331
- /** @name ArgonPrimitivesBitcoinUtxoValue (348) */
3352
+ /** @name ArgonPrimitivesBitcoinUtxoValue (367) */
3332
3353
  interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
3333
3354
  readonly utxoId: u64;
3334
3355
  readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
@@ -3337,7 +3358,7 @@ declare module '@polkadot/types/lookup' {
3337
3358
  readonly watchForSpentUntilHeight: Compact<u64>;
3338
3359
  }
3339
3360
 
3340
- /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (349) */
3361
+ /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (368) */
3341
3362
  interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
3342
3363
  readonly isP2wsh: boolean;
3343
3364
  readonly asP2wsh: {
@@ -3346,7 +3367,7 @@ declare module '@polkadot/types/lookup' {
3346
3367
  readonly type: 'P2wsh';
3347
3368
  }
3348
3369
 
3349
- /** @name ArgonPrimitivesBitcoinBitcoinNetwork (358) */
3370
+ /** @name ArgonPrimitivesBitcoinBitcoinNetwork (377) */
3350
3371
  interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
3351
3372
  readonly isBitcoin: boolean;
3352
3373
  readonly isTestnet: boolean;
@@ -3355,7 +3376,7 @@ declare module '@polkadot/types/lookup' {
3355
3376
  readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
3356
3377
  }
3357
3378
 
3358
- /** @name PalletBitcoinUtxosError (359) */
3379
+ /** @name PalletBitcoinUtxosError (378) */
3359
3380
  interface PalletBitcoinUtxosError extends Enum {
3360
3381
  readonly isNoPermissions: boolean;
3361
3382
  readonly isNoBitcoinConfirmedBlock: boolean;
@@ -3390,7 +3411,7 @@ declare module '@polkadot/types/lookup' {
3390
3411
  | 'LockAlreadyFunded';
3391
3412
  }
3392
3413
 
3393
- /** @name ArgonPrimitivesVault (360) */
3414
+ /** @name ArgonPrimitivesVault (379) */
3394
3415
  interface ArgonPrimitivesVault extends Struct {
3395
3416
  readonly operatorAccountId: AccountId32;
3396
3417
  readonly bitcoinLockDelegateAccount: Option<AccountId32>;
@@ -3411,7 +3432,7 @@ declare module '@polkadot/types/lookup' {
3411
3432
  readonly operationalMinimumReleaseTick: Option<u64>;
3412
3433
  }
3413
3434
 
3414
- /** @name ArgonPrimitivesBitcoinBitcoinXPub (368) */
3435
+ /** @name ArgonPrimitivesBitcoinBitcoinXPub (387) */
3415
3436
  interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
3416
3437
  readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
3417
3438
  readonly depth: Compact<u8>;
@@ -3421,14 +3442,14 @@ declare module '@polkadot/types/lookup' {
3421
3442
  readonly network: ArgonPrimitivesBitcoinNetworkKind;
3422
3443
  }
3423
3444
 
3424
- /** @name ArgonPrimitivesBitcoinNetworkKind (370) */
3445
+ /** @name ArgonPrimitivesBitcoinNetworkKind (389) */
3425
3446
  interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
3426
3447
  readonly isMain: boolean;
3427
3448
  readonly isTest: boolean;
3428
3449
  readonly type: 'Main' | 'Test';
3429
3450
  }
3430
3451
 
3431
- /** @name PalletVaultsVaultFrameRevenue (379) */
3452
+ /** @name PalletVaultsVaultFrameRevenue (398) */
3432
3453
  interface PalletVaultsVaultFrameRevenue extends Struct {
3433
3454
  readonly frameId: Compact<u64>;
3434
3455
  readonly bitcoinLockFeeRevenue: Compact<u128>;
@@ -3448,7 +3469,7 @@ declare module '@polkadot/types/lookup' {
3448
3469
  readonly uncollectedRevenue: Compact<u128>;
3449
3470
  }
3450
3471
 
3451
- /** @name PalletVaultsRecentCapacityDrop (382) */
3472
+ /** @name PalletVaultsRecentCapacityDrop (401) */
3452
3473
  interface PalletVaultsRecentCapacityDrop extends Struct {
3453
3474
  readonly blockNumber: Compact<u32>;
3454
3475
  readonly availableBeforeDrop: Compact<u128>;
@@ -3456,7 +3477,7 @@ declare module '@polkadot/types/lookup' {
3456
3477
  readonly noFeeFailuresUsed: Compact<u32>;
3457
3478
  }
3458
3479
 
3459
- /** @name PalletVaultsError (384) */
3480
+ /** @name PalletVaultsError (403) */
3460
3481
  interface PalletVaultsError extends Enum {
3461
3482
  readonly isNoMoreVaultIds: boolean;
3462
3483
  readonly isInsufficientFunds: boolean;
@@ -3521,11 +3542,11 @@ declare module '@polkadot/types/lookup' {
3521
3542
  | 'AccountAlreadyHasVault';
3522
3543
  }
3523
3544
 
3524
- /** @name PalletBitcoinLocksLockedBitcoin (385) */
3545
+ /** @name PalletBitcoinLocksLockedBitcoin (404) */
3525
3546
  interface PalletBitcoinLocksLockedBitcoin extends Struct {
3526
3547
  readonly vaultId: Compact<u32>;
3527
3548
  readonly liquidityPromised: Compact<u128>;
3528
- readonly lockedMarketRate: Compact<u128>;
3549
+ readonly lockedTargetPrice: Compact<u128>;
3529
3550
  readonly ownerAccount: AccountId32;
3530
3551
  readonly securitizationRatio: u128;
3531
3552
  readonly securityFees: Compact<u128>;
@@ -3545,17 +3566,17 @@ declare module '@polkadot/types/lookup' {
3545
3566
  readonly createdAtArgonBlock: Compact<u32>;
3546
3567
  }
3547
3568
 
3548
- /** @name PalletBitcoinLocksLockReleaseRequest (388) */
3569
+ /** @name PalletBitcoinLocksLockReleaseRequest (407) */
3549
3570
  interface PalletBitcoinLocksLockReleaseRequest extends Struct {
3550
3571
  readonly utxoId: Compact<u64>;
3551
3572
  readonly vaultId: Compact<u32>;
3552
3573
  readonly bitcoinNetworkFee: Compact<u64>;
3553
3574
  readonly cosignDueFrame: Compact<u64>;
3554
3575
  readonly toScriptPubkey: Bytes;
3555
- readonly redemptionPrice: Compact<u128>;
3576
+ readonly redemptionAmount: Compact<u128>;
3556
3577
  }
3557
3578
 
3558
- /** @name PalletBitcoinLocksOrphanedUtxo (390) */
3579
+ /** @name PalletBitcoinLocksOrphanedUtxo (409) */
3559
3580
  interface PalletBitcoinLocksOrphanedUtxo extends Struct {
3560
3581
  readonly utxoId: Compact<u64>;
3561
3582
  readonly vaultId: Compact<u32>;
@@ -3564,14 +3585,14 @@ declare module '@polkadot/types/lookup' {
3564
3585
  readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
3565
3586
  }
3566
3587
 
3567
- /** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (392) */
3588
+ /** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (411) */
3568
3589
  interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
3569
3590
  readonly bitcoinNetworkFee: u64;
3570
3591
  readonly toScriptPubkey: Bytes;
3571
3592
  readonly createdAtArgonBlockNumber: u32;
3572
3593
  }
3573
3594
 
3574
- /** @name PalletBitcoinLocksError (399) */
3595
+ /** @name PalletBitcoinLocksError (418) */
3575
3596
  interface PalletBitcoinLocksError extends Enum {
3576
3597
  readonly isInsufficientFunds: boolean;
3577
3598
  readonly isInsufficientVaultFunds: boolean;
@@ -3647,7 +3668,7 @@ declare module '@polkadot/types/lookup' {
3647
3668
  | 'MaxOrphanedUtxoReleaseRequestsExceeded';
3648
3669
  }
3649
3670
 
3650
- /** @name ArgonPrimitivesVaultVaultError (400) */
3671
+ /** @name ArgonPrimitivesVaultVaultError (419) */
3651
3672
  interface ArgonPrimitivesVaultVaultError extends Enum {
3652
3673
  readonly isVaultClosed: boolean;
3653
3674
  readonly isAccountWouldBeBelowMinimum: boolean;
@@ -3676,7 +3697,7 @@ declare module '@polkadot/types/lookup' {
3676
3697
  | 'VaultNotYetActive';
3677
3698
  }
3678
3699
 
3679
- /** @name PalletNotariesError (412) */
3700
+ /** @name PalletNotariesError (431) */
3680
3701
  interface PalletNotariesError extends Enum {
3681
3702
  readonly isProposalNotFound: boolean;
3682
3703
  readonly isMaxNotariesExceeded: boolean;
@@ -3699,7 +3720,7 @@ declare module '@polkadot/types/lookup' {
3699
3720
  | 'InvalidNotary';
3700
3721
  }
3701
3722
 
3702
- /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (416) */
3723
+ /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (435) */
3703
3724
  interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
3704
3725
  readonly notebookNumber: Compact<u32>;
3705
3726
  readonly tick: Compact<u64>;
@@ -3708,7 +3729,7 @@ declare module '@polkadot/types/lookup' {
3708
3729
  readonly parentSecret: Option<H256>;
3709
3730
  }
3710
3731
 
3711
- /** @name PalletNotebookError (419) */
3732
+ /** @name PalletNotebookError (438) */
3712
3733
  interface PalletNotebookError extends Enum {
3713
3734
  readonly isDuplicateNotebookNumber: boolean;
3714
3735
  readonly isMissingNotebookNumber: boolean;
@@ -3743,7 +3764,7 @@ declare module '@polkadot/types/lookup' {
3743
3764
  | 'InvalidNotebookSubmissionTick';
3744
3765
  }
3745
3766
 
3746
- /** @name PalletLocalchainTransferQueuedTransferOut (420) */
3767
+ /** @name PalletLocalchainTransferQueuedTransferOut (439) */
3747
3768
  interface PalletLocalchainTransferQueuedTransferOut extends Struct {
3748
3769
  readonly accountId: AccountId32;
3749
3770
  readonly amount: u128;
@@ -3751,10 +3772,10 @@ declare module '@polkadot/types/lookup' {
3751
3772
  readonly notaryId: u32;
3752
3773
  }
3753
3774
 
3754
- /** @name FrameSupportPalletId (422) */
3775
+ /** @name FrameSupportPalletId (441) */
3755
3776
  interface FrameSupportPalletId extends U8aFixed {}
3756
3777
 
3757
- /** @name PalletLocalchainTransferError (423) */
3778
+ /** @name PalletLocalchainTransferError (442) */
3758
3779
  interface PalletLocalchainTransferError extends Enum {
3759
3780
  readonly isMaxBlockTransfersExceeded: boolean;
3760
3781
  readonly isInsufficientFunds: boolean;
@@ -3775,7 +3796,7 @@ declare module '@polkadot/types/lookup' {
3775
3796
  | 'NoAvailableTransferId';
3776
3797
  }
3777
3798
 
3778
- /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (427) */
3799
+ /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (446) */
3779
3800
  interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
3780
3801
  readonly notaryId: Compact<u32>;
3781
3802
  readonly notebookNumber: Compact<u32>;
@@ -3784,13 +3805,13 @@ declare module '@polkadot/types/lookup' {
3784
3805
  readonly blockVotingPower: Compact<u128>;
3785
3806
  }
3786
3807
 
3787
- /** @name PalletBlockSealSpecError (432) */
3808
+ /** @name PalletBlockSealSpecError (451) */
3788
3809
  interface PalletBlockSealSpecError extends Enum {
3789
3810
  readonly isMaxNotebooksAtTickExceeded: boolean;
3790
3811
  readonly type: 'MaxNotebooksAtTickExceeded';
3791
3812
  }
3792
3813
 
3793
- /** @name PalletDomainsError (434) */
3814
+ /** @name PalletDomainsError (453) */
3794
3815
  interface PalletDomainsError extends Enum {
3795
3816
  readonly isDomainNotRegistered: boolean;
3796
3817
  readonly isNotDomainOwner: boolean;
@@ -3805,14 +3826,14 @@ declare module '@polkadot/types/lookup' {
3805
3826
  | 'AccountDecodingError';
3806
3827
  }
3807
3828
 
3808
- /** @name PalletPriceIndexCpiMeasurementBucket (436) */
3829
+ /** @name PalletPriceIndexCpiMeasurementBucket (455) */
3809
3830
  interface PalletPriceIndexCpiMeasurementBucket extends Struct {
3810
3831
  readonly tickRange: ITuple<[u64, u64]>;
3811
3832
  readonly totalCpi: i128;
3812
3833
  readonly measurementsCount: u32;
3813
3834
  }
3814
3835
 
3815
- /** @name PalletPriceIndexError (438) */
3836
+ /** @name PalletPriceIndexError (457) */
3816
3837
  interface PalletPriceIndexError extends Enum {
3817
3838
  readonly isNotAuthorizedOperator: boolean;
3818
3839
  readonly isMissingValue: boolean;
@@ -3825,7 +3846,7 @@ declare module '@polkadot/types/lookup' {
3825
3846
  | 'MaxPriceChangePerTickExceeded';
3826
3847
  }
3827
3848
 
3828
- /** @name PalletGrandpaStoredState (439) */
3849
+ /** @name PalletGrandpaStoredState (458) */
3829
3850
  interface PalletGrandpaStoredState extends Enum {
3830
3851
  readonly isLive: boolean;
3831
3852
  readonly isPendingPause: boolean;
@@ -3842,7 +3863,7 @@ declare module '@polkadot/types/lookup' {
3842
3863
  readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
3843
3864
  }
3844
3865
 
3845
- /** @name PalletGrandpaStoredPendingChange (440) */
3866
+ /** @name PalletGrandpaStoredPendingChange (459) */
3846
3867
  interface PalletGrandpaStoredPendingChange extends Struct {
3847
3868
  readonly scheduledAt: u32;
3848
3869
  readonly delay: u32;
@@ -3850,7 +3871,7 @@ declare module '@polkadot/types/lookup' {
3850
3871
  readonly forced: Option<u32>;
3851
3872
  }
3852
3873
 
3853
- /** @name PalletGrandpaError (442) */
3874
+ /** @name PalletGrandpaError (461) */
3854
3875
  interface PalletGrandpaError extends Enum {
3855
3876
  readonly isPauseFailed: boolean;
3856
3877
  readonly isResumeFailed: boolean;
@@ -3869,14 +3890,14 @@ declare module '@polkadot/types/lookup' {
3869
3890
  | 'DuplicateOffenceReport';
3870
3891
  }
3871
3892
 
3872
- /** @name ArgonPrimitivesProvidersBlockSealerInfo (443) */
3893
+ /** @name ArgonPrimitivesProvidersBlockSealerInfo (462) */
3873
3894
  interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
3874
3895
  readonly blockAuthorAccountId: AccountId32;
3875
3896
  readonly blockVoteRewardsAccount: Option<AccountId32>;
3876
3897
  readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
3877
3898
  }
3878
3899
 
3879
- /** @name PalletBlockSealError (445) */
3900
+ /** @name PalletBlockSealError (464) */
3880
3901
  interface PalletBlockSealError extends Enum {
3881
3902
  readonly isInvalidVoteSealStrength: boolean;
3882
3903
  readonly isInvalidSubmitter: boolean;
@@ -3923,30 +3944,30 @@ declare module '@polkadot/types/lookup' {
3923
3944
  | 'DuplicateVoteBlockAtTick';
3924
3945
  }
3925
3946
 
3926
- /** @name PalletBlockRewardsError (449) */
3947
+ /** @name PalletBlockRewardsError (468) */
3927
3948
  type PalletBlockRewardsError = Null;
3928
3949
 
3929
- /** @name PalletMintMintAction (455) */
3950
+ /** @name PalletMintMintAction (474) */
3930
3951
  interface PalletMintMintAction extends Struct {
3931
3952
  readonly argonBurned: u128;
3932
3953
  readonly argonMinted: u128;
3933
3954
  readonly bitcoinMinted: u128;
3934
3955
  }
3935
3956
 
3936
- /** @name PalletMintError (456) */
3957
+ /** @name PalletMintError (475) */
3937
3958
  interface PalletMintError extends Enum {
3938
3959
  readonly isTooManyPendingMints: boolean;
3939
3960
  readonly type: 'TooManyPendingMints';
3940
3961
  }
3941
3962
 
3942
- /** @name PalletBalancesBalanceLock (458) */
3963
+ /** @name PalletBalancesBalanceLock (477) */
3943
3964
  interface PalletBalancesBalanceLock extends Struct {
3944
3965
  readonly id: U8aFixed;
3945
3966
  readonly amount: u128;
3946
3967
  readonly reasons: PalletBalancesReasons;
3947
3968
  }
3948
3969
 
3949
- /** @name PalletBalancesReasons (459) */
3970
+ /** @name PalletBalancesReasons (478) */
3950
3971
  interface PalletBalancesReasons extends Enum {
3951
3972
  readonly isFee: boolean;
3952
3973
  readonly isMisc: boolean;
@@ -3954,38 +3975,38 @@ declare module '@polkadot/types/lookup' {
3954
3975
  readonly type: 'Fee' | 'Misc' | 'All';
3955
3976
  }
3956
3977
 
3957
- /** @name PalletBalancesReserveData (462) */
3978
+ /** @name PalletBalancesReserveData (481) */
3958
3979
  interface PalletBalancesReserveData extends Struct {
3959
3980
  readonly id: U8aFixed;
3960
3981
  readonly amount: u128;
3961
3982
  }
3962
3983
 
3963
- /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (465) */
3984
+ /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (484) */
3964
3985
  interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
3965
3986
  readonly id: ArgonRuntimeRuntimeHoldReason;
3966
3987
  readonly amount: u128;
3967
3988
  }
3968
3989
 
3969
- /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (468) */
3990
+ /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (487) */
3970
3991
  interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
3971
3992
  readonly id: ArgonRuntimeRuntimeFreezeReason;
3972
3993
  readonly amount: u128;
3973
3994
  }
3974
3995
 
3975
- /** @name ArgonRuntimeRuntimeFreezeReason (469) */
3996
+ /** @name ArgonRuntimeRuntimeFreezeReason (488) */
3976
3997
  interface ArgonRuntimeRuntimeFreezeReason extends Enum {
3977
3998
  readonly isBlockRewards: boolean;
3978
3999
  readonly asBlockRewards: PalletBlockRewardsFreezeReason;
3979
4000
  readonly type: 'BlockRewards';
3980
4001
  }
3981
4002
 
3982
- /** @name PalletBlockRewardsFreezeReason (470) */
4003
+ /** @name PalletBlockRewardsFreezeReason (489) */
3983
4004
  interface PalletBlockRewardsFreezeReason extends Enum {
3984
4005
  readonly isMaturationPeriod: boolean;
3985
4006
  readonly type: 'MaturationPeriod';
3986
4007
  }
3987
4008
 
3988
- /** @name PalletBalancesError (472) */
4009
+ /** @name PalletBalancesError (491) */
3989
4010
  interface PalletBalancesError extends Enum {
3990
4011
  readonly isVestingBalance: boolean;
3991
4012
  readonly isLiquidityRestrictions: boolean;
@@ -4014,7 +4035,7 @@ declare module '@polkadot/types/lookup' {
4014
4035
  | 'DeltaZero';
4015
4036
  }
4016
4037
 
4017
- /** @name PalletTxPauseError (474) */
4038
+ /** @name PalletTxPauseError (493) */
4018
4039
  interface PalletTxPauseError extends Enum {
4019
4040
  readonly isIsPaused: boolean;
4020
4041
  readonly isIsUnpaused: boolean;
@@ -4023,53 +4044,53 @@ declare module '@polkadot/types/lookup' {
4023
4044
  readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
4024
4045
  }
4025
4046
 
4026
- /** @name PalletTransactionPaymentReleases (475) */
4047
+ /** @name PalletTransactionPaymentReleases (494) */
4027
4048
  interface PalletTransactionPaymentReleases extends Enum {
4028
4049
  readonly isV1Ancient: boolean;
4029
4050
  readonly isV2: boolean;
4030
4051
  readonly type: 'V1Ancient' | 'V2';
4031
4052
  }
4032
4053
 
4033
- /** @name FrameSupportStorageNoDrop (476) */
4054
+ /** @name FrameSupportStorageNoDrop (495) */
4034
4055
  interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
4035
4056
 
4036
- /** @name FrameSupportTokensFungibleImbalance (477) */
4057
+ /** @name FrameSupportTokensFungibleImbalance (496) */
4037
4058
  interface FrameSupportTokensFungibleImbalance extends Struct {
4038
4059
  readonly amount: u128;
4039
4060
  }
4040
4061
 
4041
- /** @name PalletUtilityError (478) */
4062
+ /** @name PalletUtilityError (497) */
4042
4063
  interface PalletUtilityError extends Enum {
4043
4064
  readonly isTooManyCalls: boolean;
4044
4065
  readonly type: 'TooManyCalls';
4045
4066
  }
4046
4067
 
4047
- /** @name PalletSudoError (479) */
4068
+ /** @name PalletSudoError (498) */
4048
4069
  interface PalletSudoError extends Enum {
4049
4070
  readonly isRequireSudo: boolean;
4050
4071
  readonly type: 'RequireSudo';
4051
4072
  }
4052
4073
 
4053
- /** @name PalletTreasuryFrameVaultCapital (480) */
4074
+ /** @name PalletTreasuryFrameVaultCapital (499) */
4054
4075
  interface PalletTreasuryFrameVaultCapital extends Struct {
4055
4076
  readonly frameId: Compact<u64>;
4056
4077
  readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
4057
4078
  }
4058
4079
 
4059
- /** @name PalletTreasuryVaultCapital (482) */
4080
+ /** @name PalletTreasuryVaultCapital (501) */
4060
4081
  interface PalletTreasuryVaultCapital extends Struct {
4061
4082
  readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
4062
4083
  readonly eligibleBonds: Compact<u32>;
4063
4084
  readonly vaultSharingPercent: Compact<Permill>;
4064
4085
  }
4065
4086
 
4066
- /** @name PalletTreasuryBondLotAllocation (484) */
4087
+ /** @name PalletTreasuryBondLotAllocation (503) */
4067
4088
  interface PalletTreasuryBondLotAllocation extends Struct {
4068
4089
  readonly bondLotId: Compact<u64>;
4069
4090
  readonly prorata: u128;
4070
4091
  }
4071
4092
 
4072
- /** @name PalletTreasuryBondLot (489) */
4093
+ /** @name PalletTreasuryBondLot (508) */
4073
4094
  interface PalletTreasuryBondLot extends Struct {
4074
4095
  readonly owner: AccountId32;
4075
4096
  readonly vaultId: Compact<u32>;
@@ -4083,13 +4104,13 @@ declare module '@polkadot/types/lookup' {
4083
4104
  readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
4084
4105
  }
4085
4106
 
4086
- /** @name PalletTreasuryBondLotSummary (494) */
4107
+ /** @name PalletTreasuryBondLotSummary (513) */
4087
4108
  interface PalletTreasuryBondLotSummary extends Struct {
4088
4109
  readonly bondLotId: Compact<u64>;
4089
4110
  readonly bonds: Compact<u32>;
4090
4111
  }
4091
4112
 
4092
- /** @name PalletTreasuryError (496) */
4113
+ /** @name PalletTreasuryError (515) */
4093
4114
  interface PalletTreasuryError extends Enum {
4094
4115
  readonly isBondPurchaseRejected: boolean;
4095
4116
  readonly isVaultNotAcceptingBondPurchases: boolean;
@@ -4114,13 +4135,13 @@ declare module '@polkadot/types/lookup' {
4114
4135
  | 'BondPurchaseAboveSecurity';
4115
4136
  }
4116
4137
 
4117
- /** @name PalletFeeControlError (497) */
4138
+ /** @name PalletFeeControlError (516) */
4118
4139
  interface PalletFeeControlError extends Enum {
4119
4140
  readonly isSponsoredFeeTooHigh: boolean;
4120
4141
  readonly type: 'SponsoredFeeTooHigh';
4121
4142
  }
4122
4143
 
4123
- /** @name PalletOperationalAccountsOperationalAccount (498) */
4144
+ /** @name PalletOperationalAccountsOperationalAccount (517) */
4124
4145
  interface PalletOperationalAccountsOperationalAccount extends Struct {
4125
4146
  readonly vaultAccount: AccountId32;
4126
4147
  readonly miningFundingAccount: AccountId32;
@@ -4143,13 +4164,13 @@ declare module '@polkadot/types/lookup' {
4143
4164
  readonly isOperational: bool;
4144
4165
  }
4145
4166
 
4146
- /** @name PalletOperationalAccountsRewardsConfig (500) */
4167
+ /** @name PalletOperationalAccountsRewardsConfig (519) */
4147
4168
  interface PalletOperationalAccountsRewardsConfig extends Struct {
4148
4169
  readonly operationalReferralReward: Compact<u128>;
4149
4170
  readonly referralBonusReward: Compact<u128>;
4150
4171
  }
4151
4172
 
4152
- /** @name PalletOperationalAccountsError (502) */
4173
+ /** @name PalletOperationalAccountsError (521) */
4153
4174
  interface PalletOperationalAccountsError extends Enum {
4154
4175
  readonly isAlreadyRegistered: boolean;
4155
4176
  readonly isInvalidRegistrationSubmitter: boolean;
@@ -4188,12 +4209,12 @@ declare module '@polkadot/types/lookup' {
4188
4209
  | 'NotEligibleForActivation';
4189
4210
  }
4190
4211
 
4191
- /** @name PalletEthereumVerifierFinalizedBeaconHeaderState (503) */
4212
+ /** @name PalletEthereumVerifierFinalizedBeaconHeaderState (522) */
4192
4213
  interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
4193
4214
  readonly slot: Compact<u64>;
4194
4215
  }
4195
4216
 
4196
- /** @name PalletEthereumVerifierExecutionHeaderAnchor (504) */
4217
+ /** @name PalletEthereumVerifierExecutionHeaderAnchor (523) */
4197
4218
  interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
4198
4219
  readonly blockNumber: Compact<u64>;
4199
4220
  readonly blockHash: H256;
@@ -4201,37 +4222,44 @@ declare module '@polkadot/types/lookup' {
4201
4222
  readonly receiptsRoot: H256;
4202
4223
  }
4203
4224
 
4204
- /** @name SnowbridgeBeaconPrimitivesSyncCommitteePrepared (505) */
4205
- interface SnowbridgeBeaconPrimitivesSyncCommitteePrepared extends Struct {
4225
+ /** @name PalletEthereumVerifierSyncCommitteePrepared (524) */
4226
+ interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
4206
4227
  readonly root: H256;
4207
4228
  readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
4208
4229
  readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
4209
4230
  }
4210
4231
 
4211
- /** @name SnowbridgeMilagroBlsKeysPublicKey (507) */
4232
+ /** @name SnowbridgeMilagroBlsKeysPublicKey (526) */
4212
4233
  interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
4213
4234
  readonly point: SnowbridgeAmclBls381Ecp;
4214
4235
  }
4215
4236
 
4216
- /** @name SnowbridgeAmclBls381Ecp (508) */
4237
+ /** @name SnowbridgeAmclBls381Ecp (527) */
4217
4238
  interface SnowbridgeAmclBls381Ecp extends Struct {
4218
4239
  readonly x: SnowbridgeAmclBls381Fp;
4219
4240
  readonly y: SnowbridgeAmclBls381Fp;
4220
4241
  readonly z: SnowbridgeAmclBls381Fp;
4221
4242
  }
4222
4243
 
4223
- /** @name SnowbridgeAmclBls381Fp (509) */
4244
+ /** @name SnowbridgeAmclBls381Fp (528) */
4224
4245
  interface SnowbridgeAmclBls381Fp extends Struct {
4225
4246
  readonly x: SnowbridgeAmclBls381Big;
4226
4247
  readonly xes: i32;
4227
4248
  }
4228
4249
 
4229
- /** @name SnowbridgeAmclBls381Big (510) */
4250
+ /** @name SnowbridgeAmclBls381Big (529) */
4230
4251
  interface SnowbridgeAmclBls381Big extends Struct {
4231
4252
  readonly w: Vec<i32>;
4232
4253
  }
4233
4254
 
4234
- /** @name PalletEthereumVerifierError (513) */
4255
+ /** @name ArgonPrimitivesEthereumEthereumBeaconPreset (533) */
4256
+ interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
4257
+ readonly isMainnet: boolean;
4258
+ readonly isMinimal: boolean;
4259
+ readonly type: 'Mainnet' | 'Minimal';
4260
+ }
4261
+
4262
+ /** @name PalletEthereumVerifierError (534) */
4235
4263
  interface PalletEthereumVerifierError extends Enum {
4236
4264
  readonly isSkippedSyncCommitteePeriod: boolean;
4237
4265
  readonly isSyncCommitteeUpdateRequired: boolean;
@@ -4250,6 +4278,7 @@ declare module '@polkadot/types/lookup' {
4250
4278
  readonly isExpectedFinalizedHeaderNotStored: boolean;
4251
4279
  readonly isBlsPreparePublicKeysFailed: boolean;
4252
4280
  readonly isBlsVerificationFailed: boolean;
4281
+ readonly isUnexpectedBeaconPreset: boolean;
4253
4282
  readonly isInvalidUpdateSlot: boolean;
4254
4283
  readonly isInvalidSyncCommitteeUpdate: boolean;
4255
4284
  readonly isHalted: boolean;
@@ -4271,75 +4300,80 @@ declare module '@polkadot/types/lookup' {
4271
4300
  | 'ExpectedFinalizedHeaderNotStored'
4272
4301
  | 'BlsPreparePublicKeysFailed'
4273
4302
  | 'BlsVerificationFailed'
4303
+ | 'UnexpectedBeaconPreset'
4274
4304
  | 'InvalidUpdateSlot'
4275
4305
  | 'InvalidSyncCommitteeUpdate'
4276
4306
  | 'Halted';
4277
4307
  }
4278
4308
 
4279
- /** @name PalletCrosschainTransferError (515) */
4309
+ /** @name PalletCrosschainTransferError (535) */
4280
4310
  interface PalletCrosschainTransferError extends Enum {
4281
- readonly isInvalidEthereumEvent: boolean;
4311
+ readonly isInvalidTransferToArgonActivity: boolean;
4312
+ readonly isNoGatewayProofBlocksProvided: boolean;
4313
+ readonly isNoGatewayActivitiesProvided: boolean;
4282
4314
  readonly isInvalidProof: boolean;
4283
4315
  readonly isInvalidRecipient: boolean;
4284
- readonly isInvalidAmount: boolean;
4285
4316
  readonly isUnsupportedSource: boolean;
4286
4317
  readonly isUnsupportedGateway: boolean;
4287
4318
  readonly isUnsupportedToken: boolean;
4288
- readonly isUnexpectedNonce: boolean;
4319
+ readonly isUnexpectedPreviousGatewayActivityNonce: boolean;
4320
+ readonly isUnexpectedGatewayActivityNonce: boolean;
4289
4321
  readonly isInvalidChainConfig: boolean;
4290
4322
  readonly isInsufficientLiquidity: boolean;
4291
4323
  readonly type:
4292
- | 'InvalidEthereumEvent'
4324
+ | 'InvalidTransferToArgonActivity'
4325
+ | 'NoGatewayProofBlocksProvided'
4326
+ | 'NoGatewayActivitiesProvided'
4293
4327
  | 'InvalidProof'
4294
4328
  | 'InvalidRecipient'
4295
- | 'InvalidAmount'
4296
4329
  | 'UnsupportedSource'
4297
4330
  | 'UnsupportedGateway'
4298
4331
  | 'UnsupportedToken'
4299
- | 'UnexpectedNonce'
4332
+ | 'UnexpectedPreviousGatewayActivityNonce'
4333
+ | 'UnexpectedGatewayActivityNonce'
4300
4334
  | 'InvalidChainConfig'
4301
4335
  | 'InsufficientLiquidity';
4302
4336
  }
4303
4337
 
4304
- /** @name FrameSystemExtensionsAuthorizeCall (518) */
4338
+ /** @name FrameSystemExtensionsAuthorizeCall (538) */
4305
4339
  type FrameSystemExtensionsAuthorizeCall = Null;
4306
4340
 
4307
- /** @name FrameSystemExtensionsCheckNonZeroSender (519) */
4341
+ /** @name FrameSystemExtensionsCheckNonZeroSender (539) */
4308
4342
  type FrameSystemExtensionsCheckNonZeroSender = Null;
4309
4343
 
4310
- /** @name FrameSystemExtensionsCheckSpecVersion (520) */
4344
+ /** @name FrameSystemExtensionsCheckSpecVersion (540) */
4311
4345
  type FrameSystemExtensionsCheckSpecVersion = Null;
4312
4346
 
4313
- /** @name FrameSystemExtensionsCheckTxVersion (521) */
4347
+ /** @name FrameSystemExtensionsCheckTxVersion (541) */
4314
4348
  type FrameSystemExtensionsCheckTxVersion = Null;
4315
4349
 
4316
- /** @name FrameSystemExtensionsCheckGenesis (522) */
4350
+ /** @name FrameSystemExtensionsCheckGenesis (542) */
4317
4351
  type FrameSystemExtensionsCheckGenesis = Null;
4318
4352
 
4319
- /** @name FrameSystemExtensionsCheckNonce (525) */
4353
+ /** @name FrameSystemExtensionsCheckNonce (545) */
4320
4354
  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
4321
4355
 
4322
- /** @name FrameSystemExtensionsCheckWeight (526) */
4356
+ /** @name FrameSystemExtensionsCheckWeight (546) */
4323
4357
  type FrameSystemExtensionsCheckWeight = Null;
4324
4358
 
4325
- /** @name PalletTransactionPaymentChargeTransactionPayment (527) */
4359
+ /** @name PalletTransactionPaymentChargeTransactionPayment (547) */
4326
4360
  interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
4327
4361
 
4328
- /** @name FrameMetadataHashExtensionCheckMetadataHash (528) */
4362
+ /** @name FrameMetadataHashExtensionCheckMetadataHash (548) */
4329
4363
  interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
4330
4364
  readonly mode: FrameMetadataHashExtensionMode;
4331
4365
  }
4332
4366
 
4333
- /** @name FrameMetadataHashExtensionMode (529) */
4367
+ /** @name FrameMetadataHashExtensionMode (549) */
4334
4368
  interface FrameMetadataHashExtensionMode extends Enum {
4335
4369
  readonly isDisabled: boolean;
4336
4370
  readonly isEnabled: boolean;
4337
4371
  readonly type: 'Disabled' | 'Enabled';
4338
4372
  }
4339
4373
 
4340
- /** @name FrameSystemExtensionsWeightReclaim (530) */
4374
+ /** @name FrameSystemExtensionsWeightReclaim (550) */
4341
4375
  type FrameSystemExtensionsWeightReclaim = Null;
4342
4376
 
4343
- /** @name ArgonRuntimeRuntime (532) */
4377
+ /** @name ArgonRuntimeRuntime (552) */
4344
4378
  type ArgonRuntimeRuntime = Null;
4345
4379
  } // declare module