@argonprotocol/mainchain 1.4.12-dev.d1c83d27 → 1.4.12-dev.dd86fab9
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/README.md +0 -10
- package/browser/index.d.ts +705 -842
- package/browser/index.js +14 -1343
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +16 -1346
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +705 -842
- package/lib/index.d.ts +705 -842
- package/lib/index.js +18 -1348
- package/lib/index.js.map +1 -1
- package/package.json +2 -3
- package/src/interfaces/augment-api-consts.ts +10 -1
- package/src/interfaces/augment-api-errors.ts +103 -9
- package/src/interfaces/augment-api-events.ts +105 -46
- package/src/interfaces/augment-api-query.ts +51 -3
- package/src/interfaces/augment-api-runtime.ts +0 -1
- package/src/interfaces/augment-api-tx.ts +54 -47
- package/src/interfaces/augment-api.ts +0 -1
- package/src/interfaces/augment-types.ts +0 -1
- package/src/interfaces/lookup.ts +379 -292
- package/src/interfaces/registry.ts +8 -1
- package/src/interfaces/types-lookup.ts +420 -309
|
@@ -594,17 +594,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
594
594
|
readonly vaultId: u32;
|
|
595
595
|
readonly revenue: u128;
|
|
596
596
|
} & Struct;
|
|
597
|
-
readonly
|
|
598
|
-
readonly
|
|
597
|
+
readonly isSecuritizationReserved: boolean;
|
|
598
|
+
readonly asSecuritizationReserved: {
|
|
599
599
|
readonly vaultId: u32;
|
|
600
600
|
readonly locker: AccountId32;
|
|
601
|
-
readonly
|
|
602
|
-
readonly isRatchet: bool;
|
|
601
|
+
readonly securitizationCoverageMicrogons: u128;
|
|
603
602
|
readonly feeRevenue: u128;
|
|
604
603
|
readonly didUseFeeCoupon: bool;
|
|
605
604
|
} & Struct;
|
|
606
|
-
readonly
|
|
607
|
-
readonly
|
|
605
|
+
readonly isSecuritizationReturned: boolean;
|
|
606
|
+
readonly asSecuritizationReturned: {
|
|
608
607
|
readonly vaultId: u32;
|
|
609
608
|
readonly amount: u128;
|
|
610
609
|
} & Struct;
|
|
@@ -654,8 +653,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
654
653
|
| 'ReservedSecuritizationSpaceChanged'
|
|
655
654
|
| 'VaultRevenueUncollected'
|
|
656
655
|
| 'VaultCollected'
|
|
657
|
-
| '
|
|
658
|
-
| '
|
|
656
|
+
| 'SecuritizationReserved'
|
|
657
|
+
| 'SecuritizationReturned'
|
|
659
658
|
| 'FundsScheduledForRelease'
|
|
660
659
|
| 'LostBitcoinCompensated'
|
|
661
660
|
| 'FundsReleased'
|
|
@@ -670,23 +669,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
670
669
|
readonly asBitcoinLockCreated: {
|
|
671
670
|
readonly utxoId: u64;
|
|
672
671
|
readonly vaultId: u32;
|
|
673
|
-
readonly
|
|
674
|
-
readonly
|
|
675
|
-
readonly
|
|
672
|
+
readonly securitizedSatoshis: u64;
|
|
673
|
+
readonly microgonsAtTargetPerBtc: u128;
|
|
674
|
+
readonly collateralRequired: u128;
|
|
676
675
|
readonly accountId: AccountId32;
|
|
677
676
|
readonly securityFee: u128;
|
|
678
677
|
} & Struct;
|
|
679
|
-
readonly isBitcoinLockRatcheted: boolean;
|
|
680
|
-
readonly asBitcoinLockRatcheted: {
|
|
681
|
-
readonly utxoId: u64;
|
|
682
|
-
readonly vaultId: u32;
|
|
683
|
-
readonly liquidityPromised: u128;
|
|
684
|
-
readonly oldTargetPrice: u128;
|
|
685
|
-
readonly securityFee: u128;
|
|
686
|
-
readonly newTargetPrice: u128;
|
|
687
|
-
readonly amountBurned: u128;
|
|
688
|
-
readonly accountId: AccountId32;
|
|
689
|
-
} & Struct;
|
|
690
678
|
readonly isBitcoinLockBurned: boolean;
|
|
691
679
|
readonly asBitcoinLockBurned: {
|
|
692
680
|
readonly utxoId: u64;
|
|
@@ -748,11 +736,24 @@ declare module '@polkadot/types/lookup' {
|
|
|
748
736
|
readonly accountId: AccountId32;
|
|
749
737
|
readonly signature: Bytes;
|
|
750
738
|
} & Struct;
|
|
751
|
-
readonly
|
|
752
|
-
readonly
|
|
739
|
+
readonly isOrphanedUtxoExpirationError: boolean;
|
|
740
|
+
readonly asOrphanedUtxoExpirationError: {
|
|
741
|
+
readonly accountId: AccountId32;
|
|
742
|
+
readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
743
|
+
readonly error: SpRuntimeDispatchError;
|
|
744
|
+
} & Struct;
|
|
745
|
+
readonly isOrphanedUtxoCleanupScheduleOverflow: boolean;
|
|
746
|
+
readonly asOrphanedUtxoCleanupScheduleOverflow: {
|
|
747
|
+
readonly accountId: AccountId32;
|
|
748
|
+
readonly utxoId: u64;
|
|
749
|
+
readonly expirationFrame: u64;
|
|
750
|
+
} & Struct;
|
|
751
|
+
readonly isBitcoinLockResecuritized: boolean;
|
|
752
|
+
readonly asBitcoinLockResecuritized: {
|
|
753
753
|
readonly utxoId: u64;
|
|
754
754
|
readonly vaultId: u32;
|
|
755
|
-
readonly
|
|
755
|
+
readonly securitizedSatoshis: u64;
|
|
756
|
+
readonly microgonsAtTargetPerBtc: u128;
|
|
756
757
|
readonly accountId: AccountId32;
|
|
757
758
|
} & Struct;
|
|
758
759
|
readonly isBitcoinLockFlexibleChanged: boolean;
|
|
@@ -763,7 +764,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
763
764
|
} & Struct;
|
|
764
765
|
readonly type:
|
|
765
766
|
| 'BitcoinLockCreated'
|
|
766
|
-
| 'BitcoinLockRatcheted'
|
|
767
767
|
| 'BitcoinLockBurned'
|
|
768
768
|
| 'BitcoinUtxoCosignRequested'
|
|
769
769
|
| 'BitcoinUtxoCosigned'
|
|
@@ -774,7 +774,9 @@ declare module '@polkadot/types/lookup' {
|
|
|
774
774
|
| 'OrphanedUtxoReceived'
|
|
775
775
|
| 'OrphanedUtxoReleaseRequested'
|
|
776
776
|
| 'OrphanedUtxoCosigned'
|
|
777
|
-
| '
|
|
777
|
+
| 'OrphanedUtxoExpirationError'
|
|
778
|
+
| 'OrphanedUtxoCleanupScheduleOverflow'
|
|
779
|
+
| 'BitcoinLockResecuritized'
|
|
778
780
|
| 'BitcoinLockFlexibleChanged';
|
|
779
781
|
}
|
|
780
782
|
|
|
@@ -1627,7 +1629,40 @@ declare module '@polkadot/types/lookup' {
|
|
|
1627
1629
|
readonly type: 'Sudid' | 'KeyChanged' | 'KeyRemoved' | 'SudoAsDone';
|
|
1628
1630
|
}
|
|
1629
1631
|
|
|
1630
|
-
/** @name
|
|
1632
|
+
/** @name PalletBitcoinFissionsEvent (118) */
|
|
1633
|
+
interface PalletBitcoinFissionsEvent extends Enum {
|
|
1634
|
+
readonly isFissionCreated: boolean;
|
|
1635
|
+
readonly asFissionCreated: {
|
|
1636
|
+
readonly accountId: AccountId32;
|
|
1637
|
+
readonly fissionId: u64;
|
|
1638
|
+
readonly liquidId: u64;
|
|
1639
|
+
readonly liquidityPromised: u128;
|
|
1640
|
+
} & Struct;
|
|
1641
|
+
readonly isFissionRatcheted: boolean;
|
|
1642
|
+
readonly asFissionRatcheted: {
|
|
1643
|
+
readonly accountId: AccountId32;
|
|
1644
|
+
readonly fissionId: u64;
|
|
1645
|
+
readonly ratchetNumber: u32;
|
|
1646
|
+
readonly liquidityPromised: u128;
|
|
1647
|
+
readonly amountMinted: u128;
|
|
1648
|
+
readonly amountBurned: u128;
|
|
1649
|
+
} & Struct;
|
|
1650
|
+
readonly isFissionClosed: boolean;
|
|
1651
|
+
readonly asFissionClosed: {
|
|
1652
|
+
readonly accountId: AccountId32;
|
|
1653
|
+
readonly fissionId: u64;
|
|
1654
|
+
readonly redemptionAmount: u128;
|
|
1655
|
+
} & Struct;
|
|
1656
|
+
readonly isFissionClosedByLock: boolean;
|
|
1657
|
+
readonly asFissionClosedByLock: {
|
|
1658
|
+
readonly accountId: AccountId32;
|
|
1659
|
+
readonly fissionId: u64;
|
|
1660
|
+
readonly utxoId: u64;
|
|
1661
|
+
} & Struct;
|
|
1662
|
+
readonly type: 'FissionCreated' | 'FissionRatcheted' | 'FissionClosed' | 'FissionClosedByLock';
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1665
|
+
/** @name PalletTreasuryEvent (119) */
|
|
1631
1666
|
interface PalletTreasuryEvent extends Enum {
|
|
1632
1667
|
readonly isCouldNotDistributeEarningsToBondLot: boolean;
|
|
1633
1668
|
readonly asCouldNotDistributeEarningsToBondLot: {
|
|
@@ -1733,7 +1768,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1733
1768
|
| 'EncumberedBondMicrogonsBurned';
|
|
1734
1769
|
}
|
|
1735
1770
|
|
|
1736
|
-
/** @name PalletTreasuryBondProgramId (
|
|
1771
|
+
/** @name PalletTreasuryBondProgramId (120) */
|
|
1737
1772
|
interface PalletTreasuryBondProgramId extends Enum {
|
|
1738
1773
|
readonly isVault: boolean;
|
|
1739
1774
|
readonly asVault: {
|
|
@@ -1743,7 +1778,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1743
1778
|
readonly type: 'Vault' | 'Argonot';
|
|
1744
1779
|
}
|
|
1745
1780
|
|
|
1746
|
-
/** @name PalletTreasuryBondReleaseReason (
|
|
1781
|
+
/** @name PalletTreasuryBondReleaseReason (121) */
|
|
1747
1782
|
interface PalletTreasuryBondReleaseReason extends Enum {
|
|
1748
1783
|
readonly isUserLiquidation: boolean;
|
|
1749
1784
|
readonly isBumped: boolean;
|
|
@@ -1751,7 +1786,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1751
1786
|
readonly type: 'UserLiquidation' | 'Bumped' | 'VaultClosed';
|
|
1752
1787
|
}
|
|
1753
1788
|
|
|
1754
|
-
/** @name PalletFeeControlEvent (
|
|
1789
|
+
/** @name PalletFeeControlEvent (122) */
|
|
1755
1790
|
interface PalletFeeControlEvent extends Enum {
|
|
1756
1791
|
readonly isFeeSkipped: boolean;
|
|
1757
1792
|
readonly asFeeSkipped: {
|
|
@@ -1766,14 +1801,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1766
1801
|
readonly type: 'FeeSkipped' | 'FeeDelegated';
|
|
1767
1802
|
}
|
|
1768
1803
|
|
|
1769
|
-
/** @name ArgonRuntimeOriginCaller (
|
|
1804
|
+
/** @name ArgonRuntimeOriginCaller (123) */
|
|
1770
1805
|
interface ArgonRuntimeOriginCaller extends Enum {
|
|
1771
1806
|
readonly isSystem: boolean;
|
|
1772
1807
|
readonly asSystem: FrameSupportDispatchRawOrigin;
|
|
1773
1808
|
readonly type: 'System';
|
|
1774
1809
|
}
|
|
1775
1810
|
|
|
1776
|
-
/** @name FrameSupportDispatchRawOrigin (
|
|
1811
|
+
/** @name FrameSupportDispatchRawOrigin (124) */
|
|
1777
1812
|
interface FrameSupportDispatchRawOrigin extends Enum {
|
|
1778
1813
|
readonly isRoot: boolean;
|
|
1779
1814
|
readonly isSigned: boolean;
|
|
@@ -1783,7 +1818,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
1783
1818
|
readonly type: 'Root' | 'Signed' | 'None' | 'Authorized';
|
|
1784
1819
|
}
|
|
1785
1820
|
|
|
1786
|
-
/** @name PalletOperationalAccountsEvent (
|
|
1821
|
+
/** @name PalletOperationalAccountsEvent (125) */
|
|
1787
1822
|
interface PalletOperationalAccountsEvent extends Enum {
|
|
1788
1823
|
readonly isOperationalAccountRegistered: boolean;
|
|
1789
1824
|
readonly asOperationalAccountRegistered: {
|
|
@@ -1840,14 +1875,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1840
1875
|
| 'OperationalProgressForced';
|
|
1841
1876
|
}
|
|
1842
1877
|
|
|
1843
|
-
/** @name ArgonPrimitivesProvidersOperationalRewardKind (
|
|
1878
|
+
/** @name ArgonPrimitivesProvidersOperationalRewardKind (126) */
|
|
1844
1879
|
interface ArgonPrimitivesProvidersOperationalRewardKind extends Enum {
|
|
1845
1880
|
readonly isCertification: boolean;
|
|
1846
1881
|
readonly isOperationalCertificationBonus: boolean;
|
|
1847
1882
|
readonly type: 'Certification' | 'OperationalCertificationBonus';
|
|
1848
1883
|
}
|
|
1849
1884
|
|
|
1850
|
-
/** @name PalletEthereumVerifierEvent (
|
|
1885
|
+
/** @name PalletEthereumVerifierEvent (127) */
|
|
1851
1886
|
interface PalletEthereumVerifierEvent extends Enum {
|
|
1852
1887
|
readonly isBeaconHeaderImported: boolean;
|
|
1853
1888
|
readonly asBeaconHeaderImported: {
|
|
@@ -1882,14 +1917,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
1882
1917
|
| 'OperatingModeChanged';
|
|
1883
1918
|
}
|
|
1884
1919
|
|
|
1885
|
-
/** @name PalletEthereumVerifierBasicOperatingMode (
|
|
1920
|
+
/** @name PalletEthereumVerifierBasicOperatingMode (128) */
|
|
1886
1921
|
interface PalletEthereumVerifierBasicOperatingMode extends Enum {
|
|
1887
1922
|
readonly isNormal: boolean;
|
|
1888
1923
|
readonly isHalted: boolean;
|
|
1889
1924
|
readonly type: 'Normal' | 'Halted';
|
|
1890
1925
|
}
|
|
1891
1926
|
|
|
1892
|
-
/** @name PalletCrosschainTransferEvent (
|
|
1927
|
+
/** @name PalletCrosschainTransferEvent (129) */
|
|
1893
1928
|
interface PalletCrosschainTransferEvent extends Enum {
|
|
1894
1929
|
readonly isTransferToArgonSettled: boolean;
|
|
1895
1930
|
readonly asTransferToArgonSettled: {
|
|
@@ -2045,13 +2080,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2045
2080
|
| 'TransferCollateralInvalidated';
|
|
2046
2081
|
}
|
|
2047
2082
|
|
|
2048
|
-
/** @name PalletCrosschainTransferSourceChain (
|
|
2083
|
+
/** @name PalletCrosschainTransferSourceChain (130) */
|
|
2049
2084
|
interface PalletCrosschainTransferSourceChain extends Enum {
|
|
2050
2085
|
readonly isEthereum: boolean;
|
|
2051
2086
|
readonly type: 'Ethereum';
|
|
2052
2087
|
}
|
|
2053
2088
|
|
|
2054
|
-
/** @name PalletCrosschainTransferTransferToArgonActivity (
|
|
2089
|
+
/** @name PalletCrosschainTransferTransferToArgonActivity (131) */
|
|
2055
2090
|
interface PalletCrosschainTransferTransferToArgonActivity extends Struct {
|
|
2056
2091
|
readonly gatewayActivityNonce: Compact<u64>;
|
|
2057
2092
|
readonly from: H160;
|
|
@@ -2060,14 +2095,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2060
2095
|
readonly amount: Compact<u128>;
|
|
2061
2096
|
}
|
|
2062
2097
|
|
|
2063
|
-
/** @name PalletCrosschainTransferAssetKind (
|
|
2098
|
+
/** @name PalletCrosschainTransferAssetKind (134) */
|
|
2064
2099
|
interface PalletCrosschainTransferAssetKind extends Enum {
|
|
2065
2100
|
readonly isArgon: boolean;
|
|
2066
2101
|
readonly isArgonot: boolean;
|
|
2067
2102
|
readonly type: 'Argon' | 'Argonot';
|
|
2068
2103
|
}
|
|
2069
2104
|
|
|
2070
|
-
/** @name PalletCrosschainTransferCouncilApprovalTargetId (
|
|
2105
|
+
/** @name PalletCrosschainTransferCouncilApprovalTargetId (135) */
|
|
2071
2106
|
interface PalletCrosschainTransferCouncilApprovalTargetId extends Enum {
|
|
2072
2107
|
readonly isMintingAuthorityActivation: boolean;
|
|
2073
2108
|
readonly asMintingAuthorityActivation: H160;
|
|
@@ -2081,14 +2116,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2081
2116
|
| 'GlobalIssuanceCouncilRotation';
|
|
2082
2117
|
}
|
|
2083
2118
|
|
|
2084
|
-
/** @name PalletCrosschainTransferGatewaySyncPause (
|
|
2119
|
+
/** @name PalletCrosschainTransferGatewaySyncPause (136) */
|
|
2085
2120
|
interface PalletCrosschainTransferGatewaySyncPause extends Struct {
|
|
2086
2121
|
readonly lastGoodGatewayActivityNonce: Compact<u64>;
|
|
2087
2122
|
readonly failedGatewayActivityNonce: Compact<u64>;
|
|
2088
2123
|
readonly reason: PalletCrosschainTransferGatewaySyncPauseReason;
|
|
2089
2124
|
}
|
|
2090
2125
|
|
|
2091
|
-
/** @name PalletCrosschainTransferGatewaySyncPauseReason (
|
|
2126
|
+
/** @name PalletCrosschainTransferGatewaySyncPauseReason (137) */
|
|
2092
2127
|
interface PalletCrosschainTransferGatewaySyncPauseReason extends Enum {
|
|
2093
2128
|
readonly isManual: boolean;
|
|
2094
2129
|
readonly isMalformedGatewayActivity: boolean;
|
|
@@ -2113,7 +2148,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2113
2148
|
| 'GatewayStateDrift';
|
|
2114
2149
|
}
|
|
2115
2150
|
|
|
2116
|
-
/** @name PalletCrosschainTransferGatewayState (
|
|
2151
|
+
/** @name PalletCrosschainTransferGatewayState (138) */
|
|
2117
2152
|
interface PalletCrosschainTransferGatewayState extends Struct {
|
|
2118
2153
|
readonly gatewayActivityNonce: Compact<u64>;
|
|
2119
2154
|
readonly argonApprovalsNonce: Compact<u64>;
|
|
@@ -2121,7 +2156,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2121
2156
|
readonly argonotCirculation: u128;
|
|
2122
2157
|
}
|
|
2123
2158
|
|
|
2124
|
-
/** @name PalletBootstrapEvent (
|
|
2159
|
+
/** @name PalletBootstrapEvent (139) */
|
|
2125
2160
|
interface PalletBootstrapEvent extends Enum {
|
|
2126
2161
|
readonly isRecoveryPayloadUpdated: boolean;
|
|
2127
2162
|
readonly asRecoveryPayloadUpdated: {
|
|
@@ -2136,13 +2171,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2136
2171
|
readonly type: 'RecoveryPayloadUpdated' | 'EndpointUpdated';
|
|
2137
2172
|
}
|
|
2138
2173
|
|
|
2139
|
-
/** @name PalletBootstrapRecoveryPubkey (
|
|
2174
|
+
/** @name PalletBootstrapRecoveryPubkey (140) */
|
|
2140
2175
|
interface PalletBootstrapRecoveryPubkey extends U8aFixed {}
|
|
2141
2176
|
|
|
2142
|
-
/** @name PalletBootstrapEndpointPubkey (
|
|
2177
|
+
/** @name PalletBootstrapEndpointPubkey (141) */
|
|
2143
2178
|
interface PalletBootstrapEndpointPubkey extends U8aFixed {}
|
|
2144
2179
|
|
|
2145
|
-
/** @name FrameSystemPhase (
|
|
2180
|
+
/** @name FrameSystemPhase (142) */
|
|
2146
2181
|
interface FrameSystemPhase extends Enum {
|
|
2147
2182
|
readonly isApplyExtrinsic: boolean;
|
|
2148
2183
|
readonly asApplyExtrinsic: u32;
|
|
@@ -2151,19 +2186,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
2151
2186
|
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
|
|
2152
2187
|
}
|
|
2153
2188
|
|
|
2154
|
-
/** @name FrameSystemLastRuntimeUpgradeInfo (
|
|
2189
|
+
/** @name FrameSystemLastRuntimeUpgradeInfo (146) */
|
|
2155
2190
|
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
|
|
2156
2191
|
readonly specVersion: Compact<u32>;
|
|
2157
2192
|
readonly specName: Text;
|
|
2158
2193
|
}
|
|
2159
2194
|
|
|
2160
|
-
/** @name FrameSystemCodeUpgradeAuthorization (
|
|
2195
|
+
/** @name FrameSystemCodeUpgradeAuthorization (149) */
|
|
2161
2196
|
interface FrameSystemCodeUpgradeAuthorization extends Struct {
|
|
2162
2197
|
readonly codeHash: H256;
|
|
2163
2198
|
readonly checkVersion: bool;
|
|
2164
2199
|
}
|
|
2165
2200
|
|
|
2166
|
-
/** @name FrameSystemCall (
|
|
2201
|
+
/** @name FrameSystemCall (150) */
|
|
2167
2202
|
interface FrameSystemCall extends Enum {
|
|
2168
2203
|
readonly isRemark: boolean;
|
|
2169
2204
|
readonly asRemark: {
|
|
@@ -2224,21 +2259,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
2224
2259
|
| 'ApplyAuthorizedUpgrade';
|
|
2225
2260
|
}
|
|
2226
2261
|
|
|
2227
|
-
/** @name FrameSystemLimitsBlockWeights (
|
|
2262
|
+
/** @name FrameSystemLimitsBlockWeights (154) */
|
|
2228
2263
|
interface FrameSystemLimitsBlockWeights extends Struct {
|
|
2229
2264
|
readonly baseBlock: SpWeightsWeightV2Weight;
|
|
2230
2265
|
readonly maxBlock: SpWeightsWeightV2Weight;
|
|
2231
2266
|
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
|
|
2232
2267
|
}
|
|
2233
2268
|
|
|
2234
|
-
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (
|
|
2269
|
+
/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (155) */
|
|
2235
2270
|
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
|
|
2236
2271
|
readonly normal: FrameSystemLimitsWeightsPerClass;
|
|
2237
2272
|
readonly operational: FrameSystemLimitsWeightsPerClass;
|
|
2238
2273
|
readonly mandatory: FrameSystemLimitsWeightsPerClass;
|
|
2239
2274
|
}
|
|
2240
2275
|
|
|
2241
|
-
/** @name FrameSystemLimitsWeightsPerClass (
|
|
2276
|
+
/** @name FrameSystemLimitsWeightsPerClass (156) */
|
|
2242
2277
|
interface FrameSystemLimitsWeightsPerClass extends Struct {
|
|
2243
2278
|
readonly baseExtrinsic: SpWeightsWeightV2Weight;
|
|
2244
2279
|
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
|
|
@@ -2246,26 +2281,26 @@ declare module '@polkadot/types/lookup' {
|
|
|
2246
2281
|
readonly reserved: Option<SpWeightsWeightV2Weight>;
|
|
2247
2282
|
}
|
|
2248
2283
|
|
|
2249
|
-
/** @name FrameSystemLimitsBlockLength (
|
|
2284
|
+
/** @name FrameSystemLimitsBlockLength (158) */
|
|
2250
2285
|
interface FrameSystemLimitsBlockLength extends Struct {
|
|
2251
2286
|
readonly max: FrameSupportDispatchPerDispatchClassU32;
|
|
2252
2287
|
readonly maxHeaderSize: Option<u32>;
|
|
2253
2288
|
}
|
|
2254
2289
|
|
|
2255
|
-
/** @name FrameSupportDispatchPerDispatchClassU32 (
|
|
2290
|
+
/** @name FrameSupportDispatchPerDispatchClassU32 (159) */
|
|
2256
2291
|
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
|
|
2257
2292
|
readonly normal: u32;
|
|
2258
2293
|
readonly operational: u32;
|
|
2259
2294
|
readonly mandatory: u32;
|
|
2260
2295
|
}
|
|
2261
2296
|
|
|
2262
|
-
/** @name SpWeightsRuntimeDbWeight (
|
|
2297
|
+
/** @name SpWeightsRuntimeDbWeight (161) */
|
|
2263
2298
|
interface SpWeightsRuntimeDbWeight extends Struct {
|
|
2264
2299
|
readonly read: u64;
|
|
2265
2300
|
readonly write: u64;
|
|
2266
2301
|
}
|
|
2267
2302
|
|
|
2268
|
-
/** @name SpVersionRuntimeVersion (
|
|
2303
|
+
/** @name SpVersionRuntimeVersion (162) */
|
|
2269
2304
|
interface SpVersionRuntimeVersion extends Struct {
|
|
2270
2305
|
readonly specName: Text;
|
|
2271
2306
|
readonly implName: Text;
|
|
@@ -2277,7 +2312,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2277
2312
|
readonly systemVersion: u8;
|
|
2278
2313
|
}
|
|
2279
2314
|
|
|
2280
|
-
/** @name FrameSystemError (
|
|
2315
|
+
/** @name FrameSystemError (167) */
|
|
2281
2316
|
interface FrameSystemError extends Enum {
|
|
2282
2317
|
readonly isInvalidSpecName: boolean;
|
|
2283
2318
|
readonly isSpecVersionNeedsToIncrease: boolean;
|
|
@@ -2300,7 +2335,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2300
2335
|
| 'Unauthorized';
|
|
2301
2336
|
}
|
|
2302
2337
|
|
|
2303
|
-
/** @name ArgonPrimitivesDigestsDigestset (
|
|
2338
|
+
/** @name ArgonPrimitivesDigestsDigestset (168) */
|
|
2304
2339
|
interface ArgonPrimitivesDigestsDigestset extends Struct {
|
|
2305
2340
|
readonly author: AccountId32;
|
|
2306
2341
|
readonly blockVote: ArgonPrimitivesDigestsBlockVoteDigest;
|
|
@@ -2311,18 +2346,18 @@ declare module '@polkadot/types/lookup' {
|
|
|
2311
2346
|
readonly notebooks: ArgonPrimitivesDigestsNotebookDigest;
|
|
2312
2347
|
}
|
|
2313
2348
|
|
|
2314
|
-
/** @name ArgonPrimitivesDigestsBlockVoteDigest (
|
|
2349
|
+
/** @name ArgonPrimitivesDigestsBlockVoteDigest (169) */
|
|
2315
2350
|
interface ArgonPrimitivesDigestsBlockVoteDigest extends Struct {
|
|
2316
2351
|
readonly votingPower: Compact<u128>;
|
|
2317
2352
|
readonly votesCount: Compact<u32>;
|
|
2318
2353
|
}
|
|
2319
2354
|
|
|
2320
|
-
/** @name ArgonPrimitivesDigestsParentVotingKeyDigest (
|
|
2355
|
+
/** @name ArgonPrimitivesDigestsParentVotingKeyDigest (171) */
|
|
2321
2356
|
interface ArgonPrimitivesDigestsParentVotingKeyDigest extends Struct {
|
|
2322
2357
|
readonly parentVotingKey: Option<H256>;
|
|
2323
2358
|
}
|
|
2324
2359
|
|
|
2325
|
-
/** @name ArgonPrimitivesForkPower (
|
|
2360
|
+
/** @name ArgonPrimitivesForkPower (174) */
|
|
2326
2361
|
interface ArgonPrimitivesForkPower extends Struct {
|
|
2327
2362
|
readonly isLatestVote: bool;
|
|
2328
2363
|
readonly notebooks: Compact<u64>;
|
|
@@ -2333,19 +2368,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
2333
2368
|
readonly minerNonceScore: Option<U256>;
|
|
2334
2369
|
}
|
|
2335
2370
|
|
|
2336
|
-
/** @name ArgonPrimitivesDigestsFrameInfo (
|
|
2371
|
+
/** @name ArgonPrimitivesDigestsFrameInfo (179) */
|
|
2337
2372
|
interface ArgonPrimitivesDigestsFrameInfo extends Struct {
|
|
2338
2373
|
readonly frameId: Compact<u64>;
|
|
2339
2374
|
readonly frameRewardTicksRemaining: Compact<u32>;
|
|
2340
2375
|
readonly isNewFrame: bool;
|
|
2341
2376
|
}
|
|
2342
2377
|
|
|
2343
|
-
/** @name ArgonPrimitivesDigestsNotebookDigest (
|
|
2378
|
+
/** @name ArgonPrimitivesDigestsNotebookDigest (181) */
|
|
2344
2379
|
interface ArgonPrimitivesDigestsNotebookDigest extends Struct {
|
|
2345
2380
|
readonly notebooks: Vec<ArgonPrimitivesNotebookNotebookAuditResult>;
|
|
2346
2381
|
}
|
|
2347
2382
|
|
|
2348
|
-
/** @name ArgonPrimitivesNotebookNotebookAuditResult (
|
|
2383
|
+
/** @name ArgonPrimitivesNotebookNotebookAuditResult (183) */
|
|
2349
2384
|
interface ArgonPrimitivesNotebookNotebookAuditResult extends Struct {
|
|
2350
2385
|
readonly notaryId: Compact<u32>;
|
|
2351
2386
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2353,7 +2388,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2353
2388
|
readonly auditFirstFailure: Option<ArgonNotaryAuditErrorVerifyError>;
|
|
2354
2389
|
}
|
|
2355
2390
|
|
|
2356
|
-
/** @name PalletDigestsError (
|
|
2391
|
+
/** @name PalletDigestsError (186) */
|
|
2357
2392
|
interface PalletDigestsError extends Enum {
|
|
2358
2393
|
readonly isDuplicateBlockVoteDigest: boolean;
|
|
2359
2394
|
readonly isDuplicateAuthorDigest: boolean;
|
|
@@ -2384,7 +2419,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2384
2419
|
| 'DuplicateFrameInfoDigest';
|
|
2385
2420
|
}
|
|
2386
2421
|
|
|
2387
|
-
/** @name PalletTimestampCall (
|
|
2422
|
+
/** @name PalletTimestampCall (187) */
|
|
2388
2423
|
interface PalletTimestampCall extends Enum {
|
|
2389
2424
|
readonly isSet: boolean;
|
|
2390
2425
|
readonly asSet: {
|
|
@@ -2393,7 +2428,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2393
2428
|
readonly type: 'Set';
|
|
2394
2429
|
}
|
|
2395
2430
|
|
|
2396
|
-
/** @name PalletMultisigMultisig (
|
|
2431
|
+
/** @name PalletMultisigMultisig (189) */
|
|
2397
2432
|
interface PalletMultisigMultisig extends Struct {
|
|
2398
2433
|
readonly when: PalletMultisigTimepoint;
|
|
2399
2434
|
readonly deposit: u128;
|
|
@@ -2401,7 +2436,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2401
2436
|
readonly approvals: Vec<AccountId32>;
|
|
2402
2437
|
}
|
|
2403
2438
|
|
|
2404
|
-
/** @name PalletMultisigCall (
|
|
2439
|
+
/** @name PalletMultisigCall (192) */
|
|
2405
2440
|
interface PalletMultisigCall extends Enum {
|
|
2406
2441
|
readonly isAsMultiThreshold1: boolean;
|
|
2407
2442
|
readonly asAsMultiThreshold1: {
|
|
@@ -2445,7 +2480,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2445
2480
|
| 'PokeDeposit';
|
|
2446
2481
|
}
|
|
2447
2482
|
|
|
2448
|
-
/** @name PalletProxyCall (
|
|
2483
|
+
/** @name PalletProxyCall (194) */
|
|
2449
2484
|
interface PalletProxyCall extends Enum {
|
|
2450
2485
|
readonly isProxy: boolean;
|
|
2451
2486
|
readonly asProxy: {
|
|
@@ -2517,10 +2552,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
2517
2552
|
| 'PokeDeposit';
|
|
2518
2553
|
}
|
|
2519
2554
|
|
|
2520
|
-
/** @name PalletTicksCall (
|
|
2555
|
+
/** @name PalletTicksCall (198) */
|
|
2521
2556
|
type PalletTicksCall = Null;
|
|
2522
2557
|
|
|
2523
|
-
/** @name PalletMiningSlotCall (
|
|
2558
|
+
/** @name PalletMiningSlotCall (199) */
|
|
2524
2559
|
interface PalletMiningSlotCall extends Enum {
|
|
2525
2560
|
readonly isBid: boolean;
|
|
2526
2561
|
readonly asBid: {
|
|
@@ -2536,7 +2571,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2536
2571
|
readonly type: 'Bid' | 'ConfigureMiningSlotDelay';
|
|
2537
2572
|
}
|
|
2538
2573
|
|
|
2539
|
-
/** @name PalletBitcoinUtxosCall (
|
|
2574
|
+
/** @name PalletBitcoinUtxosCall (200) */
|
|
2540
2575
|
interface PalletBitcoinUtxosCall extends Enum {
|
|
2541
2576
|
readonly isSync: boolean;
|
|
2542
2577
|
readonly asSync: {
|
|
@@ -2554,21 +2589,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
2554
2589
|
readonly type: 'Sync' | 'SetConfirmedBlock' | 'SetOperator';
|
|
2555
2590
|
}
|
|
2556
2591
|
|
|
2557
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (
|
|
2592
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (201) */
|
|
2558
2593
|
interface ArgonPrimitivesInherentsBitcoinUtxoSync extends Struct {
|
|
2559
2594
|
readonly spent: Vec<ArgonPrimitivesInherentsBitcoinUtxoSpend>;
|
|
2560
2595
|
readonly funded: Vec<ArgonPrimitivesInherentsBitcoinUtxoFunding>;
|
|
2561
2596
|
readonly syncToBlock: ArgonPrimitivesBitcoinBitcoinBlock;
|
|
2562
2597
|
}
|
|
2563
2598
|
|
|
2564
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (
|
|
2599
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoSpend (203) */
|
|
2565
2600
|
interface ArgonPrimitivesInherentsBitcoinUtxoSpend extends Struct {
|
|
2566
2601
|
readonly utxoId: Compact<u64>;
|
|
2567
2602
|
readonly utxoRef: Option<ArgonPrimitivesBitcoinUtxoRef>;
|
|
2568
2603
|
readonly bitcoinHeight: Compact<u64>;
|
|
2569
2604
|
}
|
|
2570
2605
|
|
|
2571
|
-
/** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (
|
|
2606
|
+
/** @name ArgonPrimitivesInherentsBitcoinUtxoFunding (206) */
|
|
2572
2607
|
interface ArgonPrimitivesInherentsBitcoinUtxoFunding extends Struct {
|
|
2573
2608
|
readonly utxoId: Compact<u64>;
|
|
2574
2609
|
readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
@@ -2577,13 +2612,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2577
2612
|
readonly bitcoinHeight: Compact<u64>;
|
|
2578
2613
|
}
|
|
2579
2614
|
|
|
2580
|
-
/** @name ArgonPrimitivesBitcoinBitcoinBlock (
|
|
2615
|
+
/** @name ArgonPrimitivesBitcoinBitcoinBlock (207) */
|
|
2581
2616
|
interface ArgonPrimitivesBitcoinBitcoinBlock extends Struct {
|
|
2582
2617
|
readonly blockHeight: Compact<u64>;
|
|
2583
2618
|
readonly blockHash: ArgonPrimitivesBitcoinH256Le;
|
|
2584
2619
|
}
|
|
2585
2620
|
|
|
2586
|
-
/** @name PalletVaultsCall (
|
|
2621
|
+
/** @name PalletVaultsCall (208) */
|
|
2587
2622
|
interface PalletVaultsCall extends Enum {
|
|
2588
2623
|
readonly isCreate: boolean;
|
|
2589
2624
|
readonly asCreate: {
|
|
@@ -2637,7 +2672,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2637
2672
|
| 'SetReservedSecuritizationSpace';
|
|
2638
2673
|
}
|
|
2639
2674
|
|
|
2640
|
-
/** @name PalletVaultsVaultConfig (
|
|
2675
|
+
/** @name PalletVaultsVaultConfig (209) */
|
|
2641
2676
|
interface PalletVaultsVaultConfig extends Struct {
|
|
2642
2677
|
readonly terms: ArgonPrimitivesVaultVaultTerms;
|
|
2643
2678
|
readonly delegateAccountId: Option<AccountId32>;
|
|
@@ -2646,20 +2681,20 @@ declare module '@polkadot/types/lookup' {
|
|
|
2646
2681
|
readonly securitizationRatio: Compact<u128>;
|
|
2647
2682
|
}
|
|
2648
2683
|
|
|
2649
|
-
/** @name ArgonPrimitivesVaultVaultTerms (
|
|
2684
|
+
/** @name ArgonPrimitivesVaultVaultTerms (210) */
|
|
2650
2685
|
interface ArgonPrimitivesVaultVaultTerms extends Struct {
|
|
2651
2686
|
readonly bitcoinAnnualPercentRate: Compact<u128>;
|
|
2652
2687
|
readonly bitcoinBaseFee: Compact<u128>;
|
|
2653
2688
|
readonly treasuryProfitSharing: Compact<Permill>;
|
|
2654
2689
|
}
|
|
2655
2690
|
|
|
2656
|
-
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (
|
|
2691
|
+
/** @name ArgonPrimitivesBitcoinOpaqueBitcoinXpub (214) */
|
|
2657
2692
|
interface ArgonPrimitivesBitcoinOpaqueBitcoinXpub extends U8aFixed {}
|
|
2658
2693
|
|
|
2659
|
-
/** @name PalletBitcoinLocksCall (
|
|
2694
|
+
/** @name PalletBitcoinLocksCall (216) */
|
|
2660
2695
|
interface PalletBitcoinLocksCall extends Enum {
|
|
2661
|
-
readonly
|
|
2662
|
-
readonly
|
|
2696
|
+
readonly isCreateReceiveAddress: boolean;
|
|
2697
|
+
readonly asCreateReceiveAddress: {
|
|
2663
2698
|
readonly vaultId: u32;
|
|
2664
2699
|
readonly satoshis: Compact<u64>;
|
|
2665
2700
|
readonly bitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
@@ -2676,11 +2711,6 @@ declare module '@polkadot/types/lookup' {
|
|
|
2676
2711
|
readonly utxoId: u64;
|
|
2677
2712
|
readonly signature: Bytes;
|
|
2678
2713
|
} & Struct;
|
|
2679
|
-
readonly isRatchet: boolean;
|
|
2680
|
-
readonly asRatchet: {
|
|
2681
|
-
readonly utxoId: u64;
|
|
2682
|
-
readonly options: Option<PalletBitcoinLocksLockOptions>;
|
|
2683
|
-
} & Struct;
|
|
2684
2714
|
readonly isAdminModifyMinimumLockedSats: boolean;
|
|
2685
2715
|
readonly asAdminModifyMinimumLockedSats: {
|
|
2686
2716
|
readonly satoshis: u64;
|
|
@@ -2697,10 +2727,11 @@ declare module '@polkadot/types/lookup' {
|
|
|
2697
2727
|
readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
2698
2728
|
readonly signature: Bytes;
|
|
2699
2729
|
} & Struct;
|
|
2700
|
-
readonly
|
|
2701
|
-
readonly
|
|
2730
|
+
readonly isResecuritize: boolean;
|
|
2731
|
+
readonly asResecuritize: {
|
|
2702
2732
|
readonly utxoId: u64;
|
|
2703
|
-
readonly
|
|
2733
|
+
readonly satoshis: Compact<u64>;
|
|
2734
|
+
readonly options: Option<PalletBitcoinLocksLockOptions>;
|
|
2704
2735
|
} & Struct;
|
|
2705
2736
|
readonly isSetFlexible: boolean;
|
|
2706
2737
|
readonly asSetFlexible: {
|
|
@@ -2708,35 +2739,26 @@ declare module '@polkadot/types/lookup' {
|
|
|
2708
2739
|
readonly isFlexible: bool;
|
|
2709
2740
|
} & Struct;
|
|
2710
2741
|
readonly type:
|
|
2711
|
-
| '
|
|
2742
|
+
| 'CreateReceiveAddress'
|
|
2712
2743
|
| 'RequestRelease'
|
|
2713
2744
|
| 'CosignRelease'
|
|
2714
|
-
| 'Ratchet'
|
|
2715
2745
|
| 'AdminModifyMinimumLockedSats'
|
|
2716
2746
|
| 'RequestOrphanedUtxoRelease'
|
|
2717
2747
|
| 'CosignOrphanedUtxoRelease'
|
|
2718
|
-
| '
|
|
2748
|
+
| 'Resecuritize'
|
|
2719
2749
|
| 'SetFlexible';
|
|
2720
2750
|
}
|
|
2721
2751
|
|
|
2722
|
-
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (
|
|
2752
|
+
/** @name ArgonPrimitivesBitcoinCompressedBitcoinPubkey (217) */
|
|
2723
2753
|
interface ArgonPrimitivesBitcoinCompressedBitcoinPubkey extends U8aFixed {}
|
|
2724
2754
|
|
|
2725
|
-
/** @name PalletBitcoinLocksLockOptions (
|
|
2726
|
-
interface PalletBitcoinLocksLockOptions extends
|
|
2727
|
-
readonly
|
|
2728
|
-
readonly
|
|
2729
|
-
readonly microgonsAtTargetPerBtc: Option<u128>;
|
|
2730
|
-
} & Struct;
|
|
2731
|
-
readonly isV2: boolean;
|
|
2732
|
-
readonly asV2: {
|
|
2733
|
-
readonly microgonsAtTargetPerBtc: Compact<u128>;
|
|
2734
|
-
readonly feeCoupon: PalletBitcoinLocksFeeCoupon;
|
|
2735
|
-
} & Struct;
|
|
2736
|
-
readonly type: 'V1' | 'V2';
|
|
2755
|
+
/** @name PalletBitcoinLocksLockOptions (220) */
|
|
2756
|
+
interface PalletBitcoinLocksLockOptions extends Struct {
|
|
2757
|
+
readonly microgonsAtTargetPerBtc: Compact<u128>;
|
|
2758
|
+
readonly feeCoupon: Option<PalletBitcoinLocksFeeCoupon>;
|
|
2737
2759
|
}
|
|
2738
2760
|
|
|
2739
|
-
/** @name PalletBitcoinLocksFeeCoupon (
|
|
2761
|
+
/** @name PalletBitcoinLocksFeeCoupon (222) */
|
|
2740
2762
|
interface PalletBitcoinLocksFeeCoupon extends Struct {
|
|
2741
2763
|
readonly feeDiscount: Compact<u128>;
|
|
2742
2764
|
readonly securitizationSpaceToUnreserve: Compact<u128>;
|
|
@@ -2745,7 +2767,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2745
2767
|
readonly signature: SpRuntimeMultiSignature;
|
|
2746
2768
|
}
|
|
2747
2769
|
|
|
2748
|
-
/** @name SpRuntimeMultiSignature (
|
|
2770
|
+
/** @name SpRuntimeMultiSignature (223) */
|
|
2749
2771
|
interface SpRuntimeMultiSignature extends Enum {
|
|
2750
2772
|
readonly isEd25519: boolean;
|
|
2751
2773
|
readonly asEd25519: U8aFixed;
|
|
@@ -2758,7 +2780,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2758
2780
|
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Eth';
|
|
2759
2781
|
}
|
|
2760
2782
|
|
|
2761
|
-
/** @name PalletNotariesCall (
|
|
2783
|
+
/** @name PalletNotariesCall (228) */
|
|
2762
2784
|
interface PalletNotariesCall extends Enum {
|
|
2763
2785
|
readonly isPropose: boolean;
|
|
2764
2786
|
readonly asPropose: {
|
|
@@ -2777,7 +2799,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2777
2799
|
readonly type: 'Propose' | 'Activate' | 'Update';
|
|
2778
2800
|
}
|
|
2779
2801
|
|
|
2780
|
-
/** @name PalletNotebookCall (
|
|
2802
|
+
/** @name PalletNotebookCall (229) */
|
|
2781
2803
|
interface PalletNotebookCall extends Enum {
|
|
2782
2804
|
readonly isSubmit: boolean;
|
|
2783
2805
|
readonly asSubmit: {
|
|
@@ -2790,13 +2812,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2790
2812
|
readonly type: 'Submit' | 'Unlock';
|
|
2791
2813
|
}
|
|
2792
2814
|
|
|
2793
|
-
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (
|
|
2815
|
+
/** @name ArgonPrimitivesNotebookSignedNotebookHeader (231) */
|
|
2794
2816
|
interface ArgonPrimitivesNotebookSignedNotebookHeader extends Struct {
|
|
2795
2817
|
readonly header: ArgonPrimitivesNotebookNotebookHeader;
|
|
2796
2818
|
readonly signature: U8aFixed;
|
|
2797
2819
|
}
|
|
2798
2820
|
|
|
2799
|
-
/** @name ArgonPrimitivesNotebookNotebookHeader (
|
|
2821
|
+
/** @name ArgonPrimitivesNotebookNotebookHeader (232) */
|
|
2800
2822
|
interface ArgonPrimitivesNotebookNotebookHeader extends Struct {
|
|
2801
2823
|
readonly version: Compact<u16>;
|
|
2802
2824
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -2815,7 +2837,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2815
2837
|
readonly domains: Vec<ITuple<[H256, AccountId32]>>;
|
|
2816
2838
|
}
|
|
2817
2839
|
|
|
2818
|
-
/** @name ArgonPrimitivesNotebookChainTransfer (
|
|
2840
|
+
/** @name ArgonPrimitivesNotebookChainTransfer (235) */
|
|
2819
2841
|
interface ArgonPrimitivesNotebookChainTransfer extends Enum {
|
|
2820
2842
|
readonly isToMainchain: boolean;
|
|
2821
2843
|
readonly asToMainchain: {
|
|
@@ -2829,13 +2851,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2829
2851
|
readonly type: 'ToMainchain' | 'ToLocalchain';
|
|
2830
2852
|
}
|
|
2831
2853
|
|
|
2832
|
-
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (
|
|
2854
|
+
/** @name ArgonPrimitivesBalanceChangeAccountOrigin (238) */
|
|
2833
2855
|
interface ArgonPrimitivesBalanceChangeAccountOrigin extends Struct {
|
|
2834
2856
|
readonly notebookNumber: Compact<u32>;
|
|
2835
2857
|
readonly accountUid: Compact<u32>;
|
|
2836
2858
|
}
|
|
2837
2859
|
|
|
2838
|
-
/** @name PalletLocalchainTransferCall (
|
|
2860
|
+
/** @name PalletLocalchainTransferCall (244) */
|
|
2839
2861
|
interface PalletLocalchainTransferCall extends Enum {
|
|
2840
2862
|
readonly isSendToLocalchain: boolean;
|
|
2841
2863
|
readonly asSendToLocalchain: {
|
|
@@ -2845,7 +2867,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2845
2867
|
readonly type: 'SendToLocalchain';
|
|
2846
2868
|
}
|
|
2847
2869
|
|
|
2848
|
-
/** @name PalletBlockSealSpecCall (
|
|
2870
|
+
/** @name PalletBlockSealSpecCall (245) */
|
|
2849
2871
|
interface PalletBlockSealSpecCall extends Enum {
|
|
2850
2872
|
readonly isConfigure: boolean;
|
|
2851
2873
|
readonly asConfigure: {
|
|
@@ -2855,7 +2877,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2855
2877
|
readonly type: 'Configure';
|
|
2856
2878
|
}
|
|
2857
2879
|
|
|
2858
|
-
/** @name PalletDomainsCall (
|
|
2880
|
+
/** @name PalletDomainsCall (246) */
|
|
2859
2881
|
interface PalletDomainsCall extends Enum {
|
|
2860
2882
|
readonly isSetZoneRecord: boolean;
|
|
2861
2883
|
readonly asSetZoneRecord: {
|
|
@@ -2865,7 +2887,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2865
2887
|
readonly type: 'SetZoneRecord';
|
|
2866
2888
|
}
|
|
2867
2889
|
|
|
2868
|
-
/** @name PalletPriceIndexCall (
|
|
2890
|
+
/** @name PalletPriceIndexCall (247) */
|
|
2869
2891
|
interface PalletPriceIndexCall extends Enum {
|
|
2870
2892
|
readonly isSubmit: boolean;
|
|
2871
2893
|
readonly asSubmit: {
|
|
@@ -2879,7 +2901,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2879
2901
|
readonly type: 'Submit' | 'SetOperator';
|
|
2880
2902
|
}
|
|
2881
2903
|
|
|
2882
|
-
/** @name PalletPriceIndexPriceIndex (
|
|
2904
|
+
/** @name PalletPriceIndexPriceIndex (248) */
|
|
2883
2905
|
interface PalletPriceIndexPriceIndex extends Struct {
|
|
2884
2906
|
readonly btcUsdPrice: Compact<u128>;
|
|
2885
2907
|
readonly argonotUsdPrice: u128;
|
|
@@ -2889,14 +2911,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2889
2911
|
readonly tick: Compact<u64>;
|
|
2890
2912
|
}
|
|
2891
2913
|
|
|
2892
|
-
/** @name PalletPriceIndexEthereumPriceIndex (
|
|
2914
|
+
/** @name PalletPriceIndexEthereumPriceIndex (250) */
|
|
2893
2915
|
interface PalletPriceIndexEthereumPriceIndex extends Struct {
|
|
2894
2916
|
readonly ethereumUsdPrice: u128;
|
|
2895
2917
|
readonly ethereumGasPriceWei: Compact<u128>;
|
|
2896
2918
|
readonly tick: Compact<u64>;
|
|
2897
2919
|
}
|
|
2898
2920
|
|
|
2899
|
-
/** @name PalletGrandpaCall (
|
|
2921
|
+
/** @name PalletGrandpaCall (251) */
|
|
2900
2922
|
interface PalletGrandpaCall extends Enum {
|
|
2901
2923
|
readonly isReportEquivocation: boolean;
|
|
2902
2924
|
readonly asReportEquivocation: {
|
|
@@ -2916,13 +2938,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
2916
2938
|
readonly type: 'ReportEquivocation' | 'ReportEquivocationUnsigned' | 'NoteStalled';
|
|
2917
2939
|
}
|
|
2918
2940
|
|
|
2919
|
-
/** @name SpConsensusGrandpaEquivocationProof (
|
|
2941
|
+
/** @name SpConsensusGrandpaEquivocationProof (252) */
|
|
2920
2942
|
interface SpConsensusGrandpaEquivocationProof extends Struct {
|
|
2921
2943
|
readonly setId: u64;
|
|
2922
2944
|
readonly equivocation: SpConsensusGrandpaEquivocation;
|
|
2923
2945
|
}
|
|
2924
2946
|
|
|
2925
|
-
/** @name SpConsensusGrandpaEquivocation (
|
|
2947
|
+
/** @name SpConsensusGrandpaEquivocation (253) */
|
|
2926
2948
|
interface SpConsensusGrandpaEquivocation extends Enum {
|
|
2927
2949
|
readonly isPrevote: boolean;
|
|
2928
2950
|
readonly asPrevote: FinalityGrandpaEquivocationPrevote;
|
|
@@ -2931,7 +2953,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2931
2953
|
readonly type: 'Prevote' | 'Precommit';
|
|
2932
2954
|
}
|
|
2933
2955
|
|
|
2934
|
-
/** @name FinalityGrandpaEquivocationPrevote (
|
|
2956
|
+
/** @name FinalityGrandpaEquivocationPrevote (254) */
|
|
2935
2957
|
interface FinalityGrandpaEquivocationPrevote extends Struct {
|
|
2936
2958
|
readonly roundNumber: u64;
|
|
2937
2959
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2939,16 +2961,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2939
2961
|
readonly second: ITuple<[FinalityGrandpaPrevote, SpConsensusGrandpaAppSignature]>;
|
|
2940
2962
|
}
|
|
2941
2963
|
|
|
2942
|
-
/** @name FinalityGrandpaPrevote (
|
|
2964
|
+
/** @name FinalityGrandpaPrevote (255) */
|
|
2943
2965
|
interface FinalityGrandpaPrevote extends Struct {
|
|
2944
2966
|
readonly targetHash: H256;
|
|
2945
2967
|
readonly targetNumber: u32;
|
|
2946
2968
|
}
|
|
2947
2969
|
|
|
2948
|
-
/** @name SpConsensusGrandpaAppSignature (
|
|
2970
|
+
/** @name SpConsensusGrandpaAppSignature (256) */
|
|
2949
2971
|
interface SpConsensusGrandpaAppSignature extends U8aFixed {}
|
|
2950
2972
|
|
|
2951
|
-
/** @name FinalityGrandpaEquivocationPrecommit (
|
|
2973
|
+
/** @name FinalityGrandpaEquivocationPrecommit (258) */
|
|
2952
2974
|
interface FinalityGrandpaEquivocationPrecommit extends Struct {
|
|
2953
2975
|
readonly roundNumber: u64;
|
|
2954
2976
|
readonly identity: SpConsensusGrandpaAppPublic;
|
|
@@ -2956,16 +2978,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
2956
2978
|
readonly second: ITuple<[FinalityGrandpaPrecommit, SpConsensusGrandpaAppSignature]>;
|
|
2957
2979
|
}
|
|
2958
2980
|
|
|
2959
|
-
/** @name FinalityGrandpaPrecommit (
|
|
2981
|
+
/** @name FinalityGrandpaPrecommit (259) */
|
|
2960
2982
|
interface FinalityGrandpaPrecommit extends Struct {
|
|
2961
2983
|
readonly targetHash: H256;
|
|
2962
2984
|
readonly targetNumber: u32;
|
|
2963
2985
|
}
|
|
2964
2986
|
|
|
2965
|
-
/** @name SpCoreVoid (
|
|
2987
|
+
/** @name SpCoreVoid (261) */
|
|
2966
2988
|
type SpCoreVoid = Null;
|
|
2967
2989
|
|
|
2968
|
-
/** @name PalletBlockSealCall (
|
|
2990
|
+
/** @name PalletBlockSealCall (262) */
|
|
2969
2991
|
interface PalletBlockSealCall extends Enum {
|
|
2970
2992
|
readonly isApply: boolean;
|
|
2971
2993
|
readonly asApply: {
|
|
@@ -2974,7 +2996,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
2974
2996
|
readonly type: 'Apply';
|
|
2975
2997
|
}
|
|
2976
2998
|
|
|
2977
|
-
/** @name ArgonPrimitivesInherentsBlockSealInherent (
|
|
2999
|
+
/** @name ArgonPrimitivesInherentsBlockSealInherent (263) */
|
|
2978
3000
|
interface ArgonPrimitivesInherentsBlockSealInherent extends Enum {
|
|
2979
3001
|
readonly isVote: boolean;
|
|
2980
3002
|
readonly asVote: {
|
|
@@ -2989,14 +3011,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
2989
3011
|
readonly type: 'Vote' | 'Compute';
|
|
2990
3012
|
}
|
|
2991
3013
|
|
|
2992
|
-
/** @name ArgonPrimitivesBalanceChangeMerkleProof (
|
|
3014
|
+
/** @name ArgonPrimitivesBalanceChangeMerkleProof (264) */
|
|
2993
3015
|
interface ArgonPrimitivesBalanceChangeMerkleProof extends Struct {
|
|
2994
3016
|
readonly proof: Vec<H256>;
|
|
2995
3017
|
readonly numberOfLeaves: Compact<u32>;
|
|
2996
3018
|
readonly leafIndex: Compact<u32>;
|
|
2997
3019
|
}
|
|
2998
3020
|
|
|
2999
|
-
/** @name ArgonPrimitivesBlockVoteBlockVoteT (
|
|
3021
|
+
/** @name ArgonPrimitivesBlockVoteBlockVoteT (266) */
|
|
3000
3022
|
interface ArgonPrimitivesBlockVoteBlockVoteT extends Struct {
|
|
3001
3023
|
readonly accountId: AccountId32;
|
|
3002
3024
|
readonly blockHash: H256;
|
|
@@ -3007,7 +3029,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3007
3029
|
readonly tick: Compact<u64>;
|
|
3008
3030
|
}
|
|
3009
3031
|
|
|
3010
|
-
/** @name PalletBlockRewardsCall (
|
|
3032
|
+
/** @name PalletBlockRewardsCall (267) */
|
|
3011
3033
|
interface PalletBlockRewardsCall extends Enum {
|
|
3012
3034
|
readonly isSetBlockRewardsPaused: boolean;
|
|
3013
3035
|
readonly asSetBlockRewardsPaused: {
|
|
@@ -3020,10 +3042,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
3020
3042
|
readonly type: 'SetBlockRewardsPaused' | 'SetBlockVoterRewardsEnabled';
|
|
3021
3043
|
}
|
|
3022
3044
|
|
|
3023
|
-
/** @name PalletMintCall (
|
|
3045
|
+
/** @name PalletMintCall (268) */
|
|
3024
3046
|
type PalletMintCall = Null;
|
|
3025
3047
|
|
|
3026
|
-
/** @name PalletBalancesCall (
|
|
3048
|
+
/** @name PalletBalancesCall (269) */
|
|
3027
3049
|
interface PalletBalancesCall extends Enum {
|
|
3028
3050
|
readonly isTransferAllowDeath: boolean;
|
|
3029
3051
|
readonly asTransferAllowDeath: {
|
|
@@ -3082,14 +3104,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3082
3104
|
| 'Burn';
|
|
3083
3105
|
}
|
|
3084
3106
|
|
|
3085
|
-
/** @name PalletBalancesAdjustmentDirection (
|
|
3107
|
+
/** @name PalletBalancesAdjustmentDirection (270) */
|
|
3086
3108
|
interface PalletBalancesAdjustmentDirection extends Enum {
|
|
3087
3109
|
readonly isIncrease: boolean;
|
|
3088
3110
|
readonly isDecrease: boolean;
|
|
3089
3111
|
readonly type: 'Increase' | 'Decrease';
|
|
3090
3112
|
}
|
|
3091
3113
|
|
|
3092
|
-
/** @name PalletTxPauseCall (
|
|
3114
|
+
/** @name PalletTxPauseCall (272) */
|
|
3093
3115
|
interface PalletTxPauseCall extends Enum {
|
|
3094
3116
|
readonly isPause: boolean;
|
|
3095
3117
|
readonly asPause: {
|
|
@@ -3102,7 +3124,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3102
3124
|
readonly type: 'Pause' | 'Unpause';
|
|
3103
3125
|
}
|
|
3104
3126
|
|
|
3105
|
-
/** @name PalletUtilityCall (
|
|
3127
|
+
/** @name PalletUtilityCall (273) */
|
|
3106
3128
|
interface PalletUtilityCall extends Enum {
|
|
3107
3129
|
readonly isBatch: boolean;
|
|
3108
3130
|
readonly asBatch: {
|
|
@@ -3152,7 +3174,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3152
3174
|
| 'DispatchAsFallible';
|
|
3153
3175
|
}
|
|
3154
3176
|
|
|
3155
|
-
/** @name PalletSudoCall (
|
|
3177
|
+
/** @name PalletSudoCall (275) */
|
|
3156
3178
|
interface PalletSudoCall extends Enum {
|
|
3157
3179
|
readonly isSudo: boolean;
|
|
3158
3180
|
readonly asSudo: {
|
|
@@ -3176,7 +3198,29 @@ declare module '@polkadot/types/lookup' {
|
|
|
3176
3198
|
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey';
|
|
3177
3199
|
}
|
|
3178
3200
|
|
|
3179
|
-
/** @name
|
|
3201
|
+
/** @name PalletBitcoinFissionsCall (276) */
|
|
3202
|
+
interface PalletBitcoinFissionsCall extends Enum {
|
|
3203
|
+
readonly isCreate: boolean;
|
|
3204
|
+
readonly asCreate: {
|
|
3205
|
+
readonly fissionId: Compact<u64>;
|
|
3206
|
+
readonly liquidId: Compact<u64>;
|
|
3207
|
+
readonly utxoId: Compact<u64>;
|
|
3208
|
+
readonly satoshis: Compact<u64>;
|
|
3209
|
+
readonly microgonsAtTargetPerBtc: Compact<u128>;
|
|
3210
|
+
} & Struct;
|
|
3211
|
+
readonly isRatchet: boolean;
|
|
3212
|
+
readonly asRatchet: {
|
|
3213
|
+
readonly fissionId: Compact<u64>;
|
|
3214
|
+
readonly microgonsAtTargetPerBtc: Compact<u128>;
|
|
3215
|
+
} & Struct;
|
|
3216
|
+
readonly isClose: boolean;
|
|
3217
|
+
readonly asClose: {
|
|
3218
|
+
readonly fissionId: Compact<u64>;
|
|
3219
|
+
} & Struct;
|
|
3220
|
+
readonly type: 'Create' | 'Ratchet' | 'Close';
|
|
3221
|
+
}
|
|
3222
|
+
|
|
3223
|
+
/** @name PalletTreasuryCall (277) */
|
|
3180
3224
|
interface PalletTreasuryCall extends Enum {
|
|
3181
3225
|
readonly isBuyBonds: boolean;
|
|
3182
3226
|
readonly asBuyBonds: {
|
|
@@ -3210,7 +3254,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3210
3254
|
| 'SetReservedBondSpace';
|
|
3211
3255
|
}
|
|
3212
3256
|
|
|
3213
|
-
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (
|
|
3257
|
+
/** @name ArgonPrimitivesVaultTreasuryBonusApprovalProof (279) */
|
|
3214
3258
|
interface ArgonPrimitivesVaultTreasuryBonusApprovalProof extends Struct {
|
|
3215
3259
|
readonly vaultId: Compact<u32>;
|
|
3216
3260
|
readonly beneficiary: AccountId32;
|
|
@@ -3221,7 +3265,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3221
3265
|
readonly signature: SpRuntimeMultiSignature;
|
|
3222
3266
|
}
|
|
3223
3267
|
|
|
3224
|
-
/** @name PalletOperationalAccountsCall (
|
|
3268
|
+
/** @name PalletOperationalAccountsCall (280) */
|
|
3225
3269
|
interface PalletOperationalAccountsCall extends Enum {
|
|
3226
3270
|
readonly isRegister: boolean;
|
|
3227
3271
|
readonly asRegister: {
|
|
@@ -3256,14 +3300,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3256
3300
|
| 'ClaimRewards';
|
|
3257
3301
|
}
|
|
3258
3302
|
|
|
3259
|
-
/** @name PalletOperationalAccountsRegistration (
|
|
3303
|
+
/** @name PalletOperationalAccountsRegistration (281) */
|
|
3260
3304
|
interface PalletOperationalAccountsRegistration extends Enum {
|
|
3261
3305
|
readonly isV1: boolean;
|
|
3262
3306
|
readonly asV1: PalletOperationalAccountsRegistrationV1;
|
|
3263
3307
|
readonly type: 'V1';
|
|
3264
3308
|
}
|
|
3265
3309
|
|
|
3266
|
-
/** @name PalletOperationalAccountsRegistrationV1 (
|
|
3310
|
+
/** @name PalletOperationalAccountsRegistrationV1 (282) */
|
|
3267
3311
|
interface PalletOperationalAccountsRegistrationV1 extends Struct {
|
|
3268
3312
|
readonly operationalAccount: AccountId32;
|
|
3269
3313
|
readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
@@ -3275,21 +3319,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3275
3319
|
readonly accessProof: Option<PalletOperationalAccountsUpstreamAccessProof>;
|
|
3276
3320
|
}
|
|
3277
3321
|
|
|
3278
|
-
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (
|
|
3322
|
+
/** @name PalletOperationalAccountsOpaqueEncryptionPubkey (283) */
|
|
3279
3323
|
interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {}
|
|
3280
3324
|
|
|
3281
|
-
/** @name PalletOperationalAccountsAccountOwnershipProof (
|
|
3325
|
+
/** @name PalletOperationalAccountsAccountOwnershipProof (284) */
|
|
3282
3326
|
interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
|
|
3283
3327
|
readonly signature: SpRuntimeMultiSignature;
|
|
3284
3328
|
}
|
|
3285
3329
|
|
|
3286
|
-
/** @name PalletOperationalAccountsUpstreamAccessProof (
|
|
3330
|
+
/** @name PalletOperationalAccountsUpstreamAccessProof (286) */
|
|
3287
3331
|
interface PalletOperationalAccountsUpstreamAccessProof extends Struct {
|
|
3288
3332
|
readonly upstreamAccount: AccountId32;
|
|
3289
3333
|
readonly signature: SpRuntimeMultiSignature;
|
|
3290
3334
|
}
|
|
3291
3335
|
|
|
3292
|
-
/** @name PalletOperationalAccountsOperationalProgressPatch (
|
|
3336
|
+
/** @name PalletOperationalAccountsOperationalProgressPatch (289) */
|
|
3293
3337
|
interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
|
|
3294
3338
|
readonly uniswapArgonTransfersInAmount: Option<u128>;
|
|
3295
3339
|
readonly accountBitcoinAmount: Option<u128>;
|
|
@@ -3299,7 +3343,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3299
3343
|
readonly miningSeatCount: Option<u32>;
|
|
3300
3344
|
}
|
|
3301
3345
|
|
|
3302
|
-
/** @name PalletEthereumVerifierCall (
|
|
3346
|
+
/** @name PalletEthereumVerifierCall (291) */
|
|
3303
3347
|
interface PalletEthereumVerifierCall extends Enum {
|
|
3304
3348
|
readonly isForceCheckpoint: boolean;
|
|
3305
3349
|
readonly asForceCheckpoint: {
|
|
@@ -3327,7 +3371,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3327
3371
|
| 'SetOperatingMode';
|
|
3328
3372
|
}
|
|
3329
3373
|
|
|
3330
|
-
/** @name PalletEthereumVerifierCheckpointUpdate (
|
|
3374
|
+
/** @name PalletEthereumVerifierCheckpointUpdate (292) */
|
|
3331
3375
|
interface PalletEthereumVerifierCheckpointUpdate extends Struct {
|
|
3332
3376
|
readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3333
3377
|
readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
@@ -3336,7 +3380,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3336
3380
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3337
3381
|
}
|
|
3338
3382
|
|
|
3339
|
-
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (
|
|
3383
|
+
/** @name SnowbridgeBeaconPrimitivesBeaconHeader (293) */
|
|
3340
3384
|
interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
|
|
3341
3385
|
readonly slot: u64;
|
|
3342
3386
|
readonly proposerIndex: u64;
|
|
@@ -3345,22 +3389,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3345
3389
|
readonly bodyRoot: H256;
|
|
3346
3390
|
}
|
|
3347
3391
|
|
|
3348
|
-
/** @name PalletEthereumVerifierSyncCommittee (
|
|
3392
|
+
/** @name PalletEthereumVerifierSyncCommittee (294) */
|
|
3349
3393
|
interface PalletEthereumVerifierSyncCommittee extends Struct {
|
|
3350
3394
|
readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
|
|
3351
3395
|
readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
|
|
3352
3396
|
}
|
|
3353
3397
|
|
|
3354
|
-
/** @name SnowbridgeBeaconPrimitivesPublicKey (
|
|
3398
|
+
/** @name SnowbridgeBeaconPrimitivesPublicKey (296) */
|
|
3355
3399
|
interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
|
|
3356
3400
|
|
|
3357
|
-
/** @name PalletEthereumVerifierExecutionHeaderProof (
|
|
3401
|
+
/** @name PalletEthereumVerifierExecutionHeaderProof (300) */
|
|
3358
3402
|
interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
|
|
3359
3403
|
readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
|
|
3360
3404
|
readonly executionBranch: Vec<H256>;
|
|
3361
3405
|
}
|
|
3362
3406
|
|
|
3363
|
-
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (
|
|
3407
|
+
/** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (301) */
|
|
3364
3408
|
interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
|
|
3365
3409
|
readonly isCapella: boolean;
|
|
3366
3410
|
readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
|
|
@@ -3369,7 +3413,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3369
3413
|
readonly type: 'Capella' | 'Deneb';
|
|
3370
3414
|
}
|
|
3371
3415
|
|
|
3372
|
-
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (
|
|
3416
|
+
/** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (302) */
|
|
3373
3417
|
interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
|
|
3374
3418
|
readonly parentHash: H256;
|
|
3375
3419
|
readonly feeRecipient: H160;
|
|
@@ -3388,7 +3432,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3388
3432
|
readonly withdrawalsRoot: H256;
|
|
3389
3433
|
}
|
|
3390
3434
|
|
|
3391
|
-
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (
|
|
3435
|
+
/** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (303) */
|
|
3392
3436
|
interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
|
|
3393
3437
|
readonly parentHash: H256;
|
|
3394
3438
|
readonly feeRecipient: H160;
|
|
@@ -3409,7 +3453,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3409
3453
|
readonly excessBlobGas: u64;
|
|
3410
3454
|
}
|
|
3411
3455
|
|
|
3412
|
-
/** @name PalletEthereumVerifierForkVersions (
|
|
3456
|
+
/** @name PalletEthereumVerifierForkVersions (304) */
|
|
3413
3457
|
interface PalletEthereumVerifierForkVersions extends Struct {
|
|
3414
3458
|
readonly genesis: PalletEthereumVerifierFork;
|
|
3415
3459
|
readonly altair: PalletEthereumVerifierFork;
|
|
@@ -3420,13 +3464,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3420
3464
|
readonly fulu: PalletEthereumVerifierFork;
|
|
3421
3465
|
}
|
|
3422
3466
|
|
|
3423
|
-
/** @name PalletEthereumVerifierFork (
|
|
3467
|
+
/** @name PalletEthereumVerifierFork (305) */
|
|
3424
3468
|
interface PalletEthereumVerifierFork extends Struct {
|
|
3425
3469
|
readonly version: U8aFixed;
|
|
3426
3470
|
readonly epoch: Compact<u64>;
|
|
3427
3471
|
}
|
|
3428
3472
|
|
|
3429
|
-
/** @name PalletEthereumVerifierUpdate (
|
|
3473
|
+
/** @name PalletEthereumVerifierUpdate (306) */
|
|
3430
3474
|
interface PalletEthereumVerifierUpdate extends Struct {
|
|
3431
3475
|
readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
|
|
3432
3476
|
readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
|
|
@@ -3437,22 +3481,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
3437
3481
|
readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
|
|
3438
3482
|
}
|
|
3439
3483
|
|
|
3440
|
-
/** @name PalletEthereumVerifierSyncAggregate (
|
|
3484
|
+
/** @name PalletEthereumVerifierSyncAggregate (307) */
|
|
3441
3485
|
interface PalletEthereumVerifierSyncAggregate extends Struct {
|
|
3442
3486
|
readonly syncCommitteeBits: Bytes;
|
|
3443
3487
|
readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
|
|
3444
3488
|
}
|
|
3445
3489
|
|
|
3446
|
-
/** @name SnowbridgeBeaconPrimitivesSignature (
|
|
3490
|
+
/** @name SnowbridgeBeaconPrimitivesSignature (309) */
|
|
3447
3491
|
interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
|
|
3448
3492
|
|
|
3449
|
-
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (
|
|
3493
|
+
/** @name PalletEthereumVerifierNextSyncCommitteeUpdate (312) */
|
|
3450
3494
|
interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
|
|
3451
3495
|
readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
|
|
3452
3496
|
readonly nextSyncCommitteeBranch: Vec<H256>;
|
|
3453
3497
|
}
|
|
3454
3498
|
|
|
3455
|
-
/** @name PalletCrosschainTransferCall (
|
|
3499
|
+
/** @name PalletCrosschainTransferCall (313) */
|
|
3456
3500
|
interface PalletCrosschainTransferCall extends Enum {
|
|
3457
3501
|
readonly isSetChainConfig: boolean;
|
|
3458
3502
|
readonly asSetChainConfig: {
|
|
@@ -3542,7 +3586,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3542
3586
|
| 'CollateralizeTransfer';
|
|
3543
3587
|
}
|
|
3544
3588
|
|
|
3545
|
-
/** @name PalletCrosschainTransferChainConfig (
|
|
3589
|
+
/** @name PalletCrosschainTransferChainConfig (314) */
|
|
3546
3590
|
interface PalletCrosschainTransferChainConfig extends Enum {
|
|
3547
3591
|
readonly isEvm: boolean;
|
|
3548
3592
|
readonly asEvm: {
|
|
@@ -3554,7 +3598,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3554
3598
|
readonly type: 'Evm';
|
|
3555
3599
|
}
|
|
3556
3600
|
|
|
3557
|
-
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (
|
|
3601
|
+
/** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (316) */
|
|
3558
3602
|
interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
|
|
3559
3603
|
readonly activationGasCost: Compact<u128>;
|
|
3560
3604
|
readonly signatureGasCost: Compact<u128>;
|
|
@@ -3562,56 +3606,56 @@ declare module '@polkadot/types/lookup' {
|
|
|
3562
3606
|
readonly estimatedMicrogonsPerEth: u128;
|
|
3563
3607
|
}
|
|
3564
3608
|
|
|
3565
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (
|
|
3609
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (319) */
|
|
3566
3610
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
|
|
3567
3611
|
readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
|
|
3568
3612
|
readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
|
|
3569
3613
|
}
|
|
3570
3614
|
|
|
3571
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (
|
|
3615
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (320) */
|
|
3572
3616
|
interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
|
|
3573
3617
|
readonly anchorBlockHash: H256;
|
|
3574
3618
|
readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
|
|
3575
3619
|
}
|
|
3576
3620
|
|
|
3577
|
-
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (
|
|
3621
|
+
/** @name ArgonPrimitivesEthereumEthereumExecutionHeader (322) */
|
|
3578
3622
|
interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
|
|
3579
3623
|
readonly rlp: Bytes;
|
|
3580
3624
|
}
|
|
3581
3625
|
|
|
3582
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (
|
|
3626
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (326) */
|
|
3583
3627
|
interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
|
|
3584
3628
|
readonly targetBlockNumber: Compact<u64>;
|
|
3585
3629
|
readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
|
|
3586
3630
|
readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
|
|
3587
3631
|
}
|
|
3588
3632
|
|
|
3589
|
-
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (
|
|
3633
|
+
/** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (327) */
|
|
3590
3634
|
interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
|
|
3591
3635
|
readonly nodes: Vec<Bytes>;
|
|
3592
3636
|
readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
|
|
3593
3637
|
}
|
|
3594
3638
|
|
|
3595
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (
|
|
3639
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (331) */
|
|
3596
3640
|
interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
|
|
3597
3641
|
readonly transactionIndex: Compact<u64>;
|
|
3598
3642
|
readonly nodeIndexes: Vec<u16>;
|
|
3599
3643
|
}
|
|
3600
3644
|
|
|
3601
|
-
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (
|
|
3645
|
+
/** @name ArgonPrimitivesEthereumEthereumReceiptLog (336) */
|
|
3602
3646
|
interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
|
|
3603
3647
|
readonly transactionIndex: Compact<u64>;
|
|
3604
3648
|
readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
|
|
3605
3649
|
}
|
|
3606
3650
|
|
|
3607
|
-
/** @name ArgonPrimitivesEthereumEthereumLog (
|
|
3651
|
+
/** @name ArgonPrimitivesEthereumEthereumLog (337) */
|
|
3608
3652
|
interface ArgonPrimitivesEthereumEthereumLog extends Struct {
|
|
3609
3653
|
readonly address: H160;
|
|
3610
3654
|
readonly topics: Vec<H256>;
|
|
3611
3655
|
readonly data: Bytes;
|
|
3612
3656
|
}
|
|
3613
3657
|
|
|
3614
|
-
/** @name PalletBootstrapCall (
|
|
3658
|
+
/** @name PalletBootstrapCall (342) */
|
|
3615
3659
|
interface PalletBootstrapCall extends Enum {
|
|
3616
3660
|
readonly isSetRecoveryPayload: boolean;
|
|
3617
3661
|
readonly asSetRecoveryPayload: {
|
|
@@ -3627,12 +3671,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
3627
3671
|
readonly type: 'SetRecoveryPayload' | 'SetEndpoint';
|
|
3628
3672
|
}
|
|
3629
3673
|
|
|
3630
|
-
/** @name PalletBootstrapRecoveryProof (
|
|
3674
|
+
/** @name PalletBootstrapRecoveryProof (343) */
|
|
3631
3675
|
interface PalletBootstrapRecoveryProof extends Struct {
|
|
3632
3676
|
readonly signature: U8aFixed;
|
|
3633
3677
|
}
|
|
3634
3678
|
|
|
3635
|
-
/** @name PalletMultisigError (
|
|
3679
|
+
/** @name PalletMultisigError (345) */
|
|
3636
3680
|
interface PalletMultisigError extends Enum {
|
|
3637
3681
|
readonly isMinimumThreshold: boolean;
|
|
3638
3682
|
readonly isAlreadyApproved: boolean;
|
|
@@ -3665,21 +3709,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3665
3709
|
| 'AlreadyStored';
|
|
3666
3710
|
}
|
|
3667
3711
|
|
|
3668
|
-
/** @name PalletProxyProxyDefinition (
|
|
3712
|
+
/** @name PalletProxyProxyDefinition (348) */
|
|
3669
3713
|
interface PalletProxyProxyDefinition extends Struct {
|
|
3670
3714
|
readonly delegate: AccountId32;
|
|
3671
3715
|
readonly proxyType: ArgonRuntimeProxyType;
|
|
3672
3716
|
readonly delay: u32;
|
|
3673
3717
|
}
|
|
3674
3718
|
|
|
3675
|
-
/** @name PalletProxyAnnouncement (
|
|
3719
|
+
/** @name PalletProxyAnnouncement (352) */
|
|
3676
3720
|
interface PalletProxyAnnouncement extends Struct {
|
|
3677
3721
|
readonly real: AccountId32;
|
|
3678
3722
|
readonly callHash: H256;
|
|
3679
3723
|
readonly height: u32;
|
|
3680
3724
|
}
|
|
3681
3725
|
|
|
3682
|
-
/** @name PalletProxyError (
|
|
3726
|
+
/** @name PalletProxyError (354) */
|
|
3683
3727
|
interface PalletProxyError extends Enum {
|
|
3684
3728
|
readonly isTooMany: boolean;
|
|
3685
3729
|
readonly isNotFound: boolean;
|
|
@@ -3700,16 +3744,16 @@ declare module '@polkadot/types/lookup' {
|
|
|
3700
3744
|
| 'NoSelfProxy';
|
|
3701
3745
|
}
|
|
3702
3746
|
|
|
3703
|
-
/** @name ArgonPrimitivesTickTicker (
|
|
3747
|
+
/** @name ArgonPrimitivesTickTicker (355) */
|
|
3704
3748
|
interface ArgonPrimitivesTickTicker extends Struct {
|
|
3705
3749
|
readonly tickDurationMillis: Compact<u64>;
|
|
3706
3750
|
readonly channelHoldExpirationTicks: Compact<u64>;
|
|
3707
3751
|
}
|
|
3708
3752
|
|
|
3709
|
-
/** @name PalletTicksError (
|
|
3753
|
+
/** @name PalletTicksError (357) */
|
|
3710
3754
|
type PalletTicksError = Null;
|
|
3711
3755
|
|
|
3712
|
-
/** @name PalletMiningSlotMinerNonceScoring (
|
|
3756
|
+
/** @name PalletMiningSlotMinerNonceScoring (360) */
|
|
3713
3757
|
interface PalletMiningSlotMinerNonceScoring extends Struct {
|
|
3714
3758
|
readonly nonce: U256;
|
|
3715
3759
|
readonly lastWinBlock: Option<u32>;
|
|
@@ -3717,7 +3761,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3717
3761
|
readonly frameStartBlocksWonSurplus: i16;
|
|
3718
3762
|
}
|
|
3719
3763
|
|
|
3720
|
-
/** @name ArgonPrimitivesBlockSealMiningBidStats (
|
|
3764
|
+
/** @name ArgonPrimitivesBlockSealMiningBidStats (372) */
|
|
3721
3765
|
interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
|
|
3722
3766
|
readonly bidsCount: u32;
|
|
3723
3767
|
readonly bidAmountMin: u128;
|
|
@@ -3725,14 +3769,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3725
3769
|
readonly bidAmountSum: u128;
|
|
3726
3770
|
}
|
|
3727
3771
|
|
|
3728
|
-
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (
|
|
3772
|
+
/** @name ArgonPrimitivesBlockSealMiningSlotConfig (376) */
|
|
3729
3773
|
interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
|
|
3730
3774
|
readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
|
|
3731
3775
|
readonly ticksBetweenSlots: Compact<u64>;
|
|
3732
3776
|
readonly slotBiddingStartAfterTicks: Compact<u64>;
|
|
3733
3777
|
}
|
|
3734
3778
|
|
|
3735
|
-
/** @name PalletMiningSlotError (
|
|
3779
|
+
/** @name PalletMiningSlotError (386) */
|
|
3736
3780
|
interface PalletMiningSlotError extends Enum {
|
|
3737
3781
|
readonly isSlotNotTakingBids: boolean;
|
|
3738
3782
|
readonly isTooManyBlockRegistrants: boolean;
|
|
@@ -3759,7 +3803,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3759
3803
|
| 'UnrecoverableHold';
|
|
3760
3804
|
}
|
|
3761
3805
|
|
|
3762
|
-
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (
|
|
3806
|
+
/** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (387) */
|
|
3763
3807
|
interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
|
|
3764
3808
|
readonly isP2wsh: boolean;
|
|
3765
3809
|
readonly asP2wsh: {
|
|
@@ -3768,14 +3812,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3768
3812
|
readonly type: 'P2wsh';
|
|
3769
3813
|
}
|
|
3770
3814
|
|
|
3771
|
-
/** @name ArgonPrimitivesBitcoinUtxoAddress (
|
|
3815
|
+
/** @name ArgonPrimitivesBitcoinUtxoAddress (388) */
|
|
3772
3816
|
interface ArgonPrimitivesBitcoinUtxoAddress extends Struct {
|
|
3773
3817
|
readonly utxoId: u64;
|
|
3774
3818
|
readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
3775
3819
|
readonly submittedAtHeight: Compact<u64>;
|
|
3776
3820
|
}
|
|
3777
3821
|
|
|
3778
|
-
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (
|
|
3822
|
+
/** @name ArgonPrimitivesBitcoinBitcoinNetwork (392) */
|
|
3779
3823
|
interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
|
|
3780
3824
|
readonly isBitcoin: boolean;
|
|
3781
3825
|
readonly isTestnet: boolean;
|
|
@@ -3784,7 +3828,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3784
3828
|
readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
|
|
3785
3829
|
}
|
|
3786
3830
|
|
|
3787
|
-
/** @name PalletBitcoinUtxosError (
|
|
3831
|
+
/** @name PalletBitcoinUtxosError (393) */
|
|
3788
3832
|
interface PalletBitcoinUtxosError extends Enum {
|
|
3789
3833
|
readonly isNoPermissions: boolean;
|
|
3790
3834
|
readonly isNoBitcoinConfirmedBlock: boolean;
|
|
@@ -3815,7 +3859,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3815
3859
|
| 'MaxUtxosPerLockExceeded';
|
|
3816
3860
|
}
|
|
3817
3861
|
|
|
3818
|
-
/** @name ArgonPrimitivesVault (
|
|
3862
|
+
/** @name ArgonPrimitivesVault (394) */
|
|
3819
3863
|
interface ArgonPrimitivesVault extends Struct {
|
|
3820
3864
|
readonly operatorAccountId: AccountId32;
|
|
3821
3865
|
readonly delegateAccountId: Option<AccountId32>;
|
|
@@ -3826,8 +3870,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
3826
3870
|
readonly reservedSecuritizationSpace: Compact<u128>;
|
|
3827
3871
|
readonly securitizationPendingActivation: Compact<u128>;
|
|
3828
3872
|
readonly lockedSatoshis: Compact<u64>;
|
|
3829
|
-
readonly
|
|
3830
|
-
readonly
|
|
3873
|
+
readonly ratioAdjustedSatoshis: Compact<u64>;
|
|
3874
|
+
readonly flexibleRatioAdjustedSatoshis: Compact<u64>;
|
|
3831
3875
|
readonly securitizationReleaseSchedule: BTreeMap<u64, u128>;
|
|
3832
3876
|
readonly securitizationRatio: Compact<u128>;
|
|
3833
3877
|
readonly isClosed: bool;
|
|
@@ -3837,13 +3881,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
3837
3881
|
readonly operationalMinimumReleaseTick: Option<u64>;
|
|
3838
3882
|
}
|
|
3839
3883
|
|
|
3840
|
-
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (
|
|
3884
|
+
/** @name ArgonPrimitivesVaultVaultArgonotCommitment (401) */
|
|
3841
3885
|
interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
|
|
3842
3886
|
readonly committedMicronots: Compact<u128>;
|
|
3843
3887
|
readonly encumberedMicronots: Compact<u128>;
|
|
3844
3888
|
}
|
|
3845
3889
|
|
|
3846
|
-
/** @name ArgonPrimitivesBitcoinBitcoinXPub (
|
|
3890
|
+
/** @name ArgonPrimitivesBitcoinBitcoinXPub (403) */
|
|
3847
3891
|
interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
|
|
3848
3892
|
readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3849
3893
|
readonly depth: Compact<u8>;
|
|
@@ -3853,21 +3897,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
3853
3897
|
readonly network: ArgonPrimitivesBitcoinNetworkKind;
|
|
3854
3898
|
}
|
|
3855
3899
|
|
|
3856
|
-
/** @name ArgonPrimitivesBitcoinNetworkKind (
|
|
3900
|
+
/** @name ArgonPrimitivesBitcoinNetworkKind (405) */
|
|
3857
3901
|
interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
|
|
3858
3902
|
readonly isMain: boolean;
|
|
3859
3903
|
readonly isTest: boolean;
|
|
3860
3904
|
readonly type: 'Main' | 'Test';
|
|
3861
3905
|
}
|
|
3862
3906
|
|
|
3863
|
-
/** @name PalletVaultsVaultFrameRevenue (
|
|
3907
|
+
/** @name PalletVaultsVaultFrameRevenue (414) */
|
|
3864
3908
|
interface PalletVaultsVaultFrameRevenue extends Struct {
|
|
3865
3909
|
readonly frameId: Compact<u64>;
|
|
3866
3910
|
readonly bitcoinLockFeeRevenue: Compact<u128>;
|
|
3867
3911
|
readonly bitcoinLockFeeCouponValueUsed: Compact<u128>;
|
|
3868
3912
|
readonly bitcoinLocksCreated: Compact<u32>;
|
|
3869
|
-
readonly
|
|
3870
|
-
readonly
|
|
3913
|
+
readonly bitcoinLocksNewSecuritization: Compact<u128>;
|
|
3914
|
+
readonly bitcoinLocksReleasedSecuritization: Compact<u128>;
|
|
3871
3915
|
readonly bitcoinLocksAddedSatoshis: Compact<u64>;
|
|
3872
3916
|
readonly bitcoinLocksReleasedSatoshis: Compact<u64>;
|
|
3873
3917
|
readonly securitizationActivated: Compact<u128>;
|
|
@@ -3880,7 +3924,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3880
3924
|
readonly uncollectedRevenue: Compact<u128>;
|
|
3881
3925
|
}
|
|
3882
3926
|
|
|
3883
|
-
/** @name PalletVaultsError (
|
|
3927
|
+
/** @name PalletVaultsError (416) */
|
|
3884
3928
|
interface PalletVaultsError extends Enum {
|
|
3885
3929
|
readonly isNoMoreVaultIds: boolean;
|
|
3886
3930
|
readonly isInsufficientFunds: boolean;
|
|
@@ -3949,17 +3993,19 @@ declare module '@polkadot/types/lookup' {
|
|
|
3949
3993
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
3950
3994
|
}
|
|
3951
3995
|
|
|
3952
|
-
/** @name PalletBitcoinLocksLockedBitcoin (
|
|
3996
|
+
/** @name PalletBitcoinLocksLockedBitcoin (417) */
|
|
3953
3997
|
interface PalletBitcoinLocksLockedBitcoin extends Struct {
|
|
3954
3998
|
readonly vaultId: Compact<u32>;
|
|
3955
|
-
readonly
|
|
3956
|
-
readonly
|
|
3999
|
+
readonly securitizedSatoshis: Compact<u64>;
|
|
4000
|
+
readonly microgonsAtTargetPerBtc: Compact<u128>;
|
|
4001
|
+
readonly securitizationCoverageMicrogons: Compact<u128>;
|
|
4002
|
+
readonly securitizationTick: Compact<u64>;
|
|
4003
|
+
readonly fundedSatoshis: Compact<u64>;
|
|
4004
|
+
readonly fissionedSatoshis: Compact<u64>;
|
|
3957
4005
|
readonly ownerAccount: AccountId32;
|
|
3958
4006
|
readonly securitizationRatio: u128;
|
|
3959
4007
|
readonly securityFees: Compact<u128>;
|
|
3960
4008
|
readonly couponPaidFees: Compact<u128>;
|
|
3961
|
-
readonly satoshis: Compact<u64>;
|
|
3962
|
-
readonly utxoSatoshis: Option<u64>;
|
|
3963
4009
|
readonly vaultPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3964
4010
|
readonly vaultClaimPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
3965
4011
|
readonly vaultXpubSources: ITuple<[U8aFixed, u32, u32]>;
|
|
@@ -3967,24 +4013,24 @@ declare module '@polkadot/types/lookup' {
|
|
|
3967
4013
|
readonly vaultClaimHeight: Compact<u64>;
|
|
3968
4014
|
readonly openClaimHeight: Compact<u64>;
|
|
3969
4015
|
readonly createdAtHeight: Compact<u64>;
|
|
4016
|
+
readonly fundingExpirationHeight: Compact<u64>;
|
|
3970
4017
|
readonly utxoScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
3971
|
-
readonly isFunded: bool;
|
|
3972
4018
|
readonly isFlexible: bool;
|
|
3973
4019
|
readonly fundHoldExtensions: BTreeMap<u64, u128>;
|
|
3974
4020
|
readonly createdAtArgonBlock: Compact<u32>;
|
|
3975
4021
|
}
|
|
3976
4022
|
|
|
3977
|
-
/** @name PalletBitcoinLocksLockReleaseRequest (
|
|
4023
|
+
/** @name PalletBitcoinLocksLockReleaseRequest (421) */
|
|
3978
4024
|
interface PalletBitcoinLocksLockReleaseRequest extends Struct {
|
|
3979
4025
|
readonly utxoId: Compact<u64>;
|
|
3980
4026
|
readonly vaultId: Compact<u32>;
|
|
3981
4027
|
readonly bitcoinNetworkFee: Compact<u64>;
|
|
3982
4028
|
readonly cosignDueFrame: Compact<u64>;
|
|
3983
4029
|
readonly toScriptPubkey: Bytes;
|
|
3984
|
-
readonly
|
|
4030
|
+
readonly securitizationAtRisk: Compact<u128>;
|
|
3985
4031
|
}
|
|
3986
4032
|
|
|
3987
|
-
/** @name PalletBitcoinLocksOrphanedUtxo (
|
|
4033
|
+
/** @name PalletBitcoinLocksOrphanedUtxo (423) */
|
|
3988
4034
|
interface PalletBitcoinLocksOrphanedUtxo extends Struct {
|
|
3989
4035
|
readonly utxoId: Compact<u64>;
|
|
3990
4036
|
readonly vaultId: Compact<u32>;
|
|
@@ -3993,14 +4039,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
3993
4039
|
readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
|
|
3994
4040
|
}
|
|
3995
4041
|
|
|
3996
|
-
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (
|
|
4042
|
+
/** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (425) */
|
|
3997
4043
|
interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
|
|
3998
4044
|
readonly bitcoinNetworkFee: u64;
|
|
3999
4045
|
readonly toScriptPubkey: Bytes;
|
|
4000
4046
|
readonly createdAtArgonBlockNumber: u32;
|
|
4001
4047
|
}
|
|
4002
4048
|
|
|
4003
|
-
/** @name PalletBitcoinLocksError (
|
|
4049
|
+
/** @name PalletBitcoinLocksError (432) */
|
|
4004
4050
|
interface PalletBitcoinLocksError extends Enum {
|
|
4005
4051
|
readonly isInsufficientFunds: boolean;
|
|
4006
4052
|
readonly isInsufficientVaultFunds: boolean;
|
|
@@ -4015,10 +4061,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4015
4061
|
readonly isBitcoinSignatureUnableToBeDecoded: boolean;
|
|
4016
4062
|
readonly isBitcoinPubkeyUnableToBeDecoded: boolean;
|
|
4017
4063
|
readonly isBitcoinInvalidCosignature: boolean;
|
|
4018
|
-
readonly isInsufficientSatoshisLocked: boolean;
|
|
4019
4064
|
readonly isNoBitcoinPricesAvailable: boolean;
|
|
4020
4065
|
readonly isInvalidBitcoinScript: boolean;
|
|
4021
4066
|
readonly isNoPermissions: boolean;
|
|
4067
|
+
readonly isLockHasActiveFissions: boolean;
|
|
4068
|
+
readonly isInsufficientSatoshisForFissions: boolean;
|
|
4069
|
+
readonly isFissionStateMismatch: boolean;
|
|
4070
|
+
readonly isInsufficientSecuritizationForFissions: boolean;
|
|
4022
4071
|
readonly isHoldUnexpectedlyModified: boolean;
|
|
4023
4072
|
readonly isUnrecoverableHold: boolean;
|
|
4024
4073
|
readonly isVaultNotFound: boolean;
|
|
@@ -4029,15 +4078,15 @@ declare module '@polkadot/types/lookup' {
|
|
|
4029
4078
|
readonly isUnableToGenerateVaultBitcoinPubkey: boolean;
|
|
4030
4079
|
readonly isVaultNotYetActive: boolean;
|
|
4031
4080
|
readonly isExpirationAtBlockOverflow: boolean;
|
|
4032
|
-
readonly
|
|
4081
|
+
readonly isNoResecuritizationChange: boolean;
|
|
4033
4082
|
readonly isLockInProcessOfRelease: boolean;
|
|
4034
4083
|
readonly isLockPendingFunding: boolean;
|
|
4035
4084
|
readonly isOverflowError: boolean;
|
|
4036
|
-
readonly
|
|
4085
|
+
readonly isIneligibleMicrogonsAtTargetPerBtcRequested: boolean;
|
|
4086
|
+
readonly isMicrogonsAtTargetPerBtcTickOlderThanCurrent: boolean;
|
|
4037
4087
|
readonly isFeeCouponExpired: boolean;
|
|
4038
4088
|
readonly isInvalidFeeCouponSignature: boolean;
|
|
4039
4089
|
readonly isFeeCouponAlreadyUsed: boolean;
|
|
4040
|
-
readonly isFeeCouponOnlyForInitialization: boolean;
|
|
4041
4090
|
readonly isOrphanedUtxoFundingConflict: boolean;
|
|
4042
4091
|
readonly isOrphanedUtxoReleaseRequested: boolean;
|
|
4043
4092
|
readonly isFundingUtxoCannotBeReleased: boolean;
|
|
@@ -4056,10 +4105,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4056
4105
|
| 'BitcoinSignatureUnableToBeDecoded'
|
|
4057
4106
|
| 'BitcoinPubkeyUnableToBeDecoded'
|
|
4058
4107
|
| 'BitcoinInvalidCosignature'
|
|
4059
|
-
| 'InsufficientSatoshisLocked'
|
|
4060
4108
|
| 'NoBitcoinPricesAvailable'
|
|
4061
4109
|
| 'InvalidBitcoinScript'
|
|
4062
4110
|
| 'NoPermissions'
|
|
4111
|
+
| 'LockHasActiveFissions'
|
|
4112
|
+
| 'InsufficientSatoshisForFissions'
|
|
4113
|
+
| 'FissionStateMismatch'
|
|
4114
|
+
| 'InsufficientSecuritizationForFissions'
|
|
4063
4115
|
| 'HoldUnexpectedlyModified'
|
|
4064
4116
|
| 'UnrecoverableHold'
|
|
4065
4117
|
| 'VaultNotFound'
|
|
@@ -4069,22 +4121,22 @@ declare module '@polkadot/types/lookup' {
|
|
|
4069
4121
|
| 'UnableToGenerateVaultBitcoinPubkey'
|
|
4070
4122
|
| 'VaultNotYetActive'
|
|
4071
4123
|
| 'ExpirationAtBlockOverflow'
|
|
4072
|
-
| '
|
|
4124
|
+
| 'NoResecuritizationChange'
|
|
4073
4125
|
| 'LockInProcessOfRelease'
|
|
4074
4126
|
| 'LockPendingFunding'
|
|
4075
4127
|
| 'OverflowError'
|
|
4076
|
-
| '
|
|
4128
|
+
| 'IneligibleMicrogonsAtTargetPerBtcRequested'
|
|
4129
|
+
| 'MicrogonsAtTargetPerBtcTickOlderThanCurrent'
|
|
4077
4130
|
| 'FeeCouponExpired'
|
|
4078
4131
|
| 'InvalidFeeCouponSignature'
|
|
4079
4132
|
| 'FeeCouponAlreadyUsed'
|
|
4080
|
-
| 'FeeCouponOnlyForInitialization'
|
|
4081
4133
|
| 'OrphanedUtxoFundingConflict'
|
|
4082
4134
|
| 'OrphanedUtxoReleaseRequested'
|
|
4083
4135
|
| 'FundingUtxoCannotBeReleased'
|
|
4084
4136
|
| 'MaxOrphanedUtxoReleaseRequestsExceeded';
|
|
4085
4137
|
}
|
|
4086
4138
|
|
|
4087
|
-
/** @name ArgonPrimitivesVaultVaultError (
|
|
4139
|
+
/** @name ArgonPrimitivesVaultVaultError (433) */
|
|
4088
4140
|
interface ArgonPrimitivesVaultVaultError extends Enum {
|
|
4089
4141
|
readonly isVaultClosed: boolean;
|
|
4090
4142
|
readonly isAccountWouldBeBelowMinimum: boolean;
|
|
@@ -4115,7 +4167,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4115
4167
|
| 'CommittedArgonotsBelowEncumberedBacking';
|
|
4116
4168
|
}
|
|
4117
4169
|
|
|
4118
|
-
/** @name PalletNotariesError (
|
|
4170
|
+
/** @name PalletNotariesError (445) */
|
|
4119
4171
|
interface PalletNotariesError extends Enum {
|
|
4120
4172
|
readonly isProposalNotFound: boolean;
|
|
4121
4173
|
readonly isMaxNotariesExceeded: boolean;
|
|
@@ -4138,7 +4190,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4138
4190
|
| 'InvalidNotary';
|
|
4139
4191
|
}
|
|
4140
4192
|
|
|
4141
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (
|
|
4193
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (449) */
|
|
4142
4194
|
interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
|
|
4143
4195
|
readonly notebookNumber: Compact<u32>;
|
|
4144
4196
|
readonly tick: Compact<u64>;
|
|
@@ -4147,7 +4199,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4147
4199
|
readonly parentSecret: Option<H256>;
|
|
4148
4200
|
}
|
|
4149
4201
|
|
|
4150
|
-
/** @name PalletNotebookError (
|
|
4202
|
+
/** @name PalletNotebookError (452) */
|
|
4151
4203
|
interface PalletNotebookError extends Enum {
|
|
4152
4204
|
readonly isDuplicateNotebookNumber: boolean;
|
|
4153
4205
|
readonly isMissingNotebookNumber: boolean;
|
|
@@ -4182,7 +4234,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4182
4234
|
| 'InvalidNotebookSubmissionTick';
|
|
4183
4235
|
}
|
|
4184
4236
|
|
|
4185
|
-
/** @name PalletLocalchainTransferQueuedTransferOut (
|
|
4237
|
+
/** @name PalletLocalchainTransferQueuedTransferOut (453) */
|
|
4186
4238
|
interface PalletLocalchainTransferQueuedTransferOut extends Struct {
|
|
4187
4239
|
readonly accountId: AccountId32;
|
|
4188
4240
|
readonly amount: u128;
|
|
@@ -4190,10 +4242,10 @@ declare module '@polkadot/types/lookup' {
|
|
|
4190
4242
|
readonly notaryId: u32;
|
|
4191
4243
|
}
|
|
4192
4244
|
|
|
4193
|
-
/** @name FrameSupportPalletId (
|
|
4245
|
+
/** @name FrameSupportPalletId (455) */
|
|
4194
4246
|
interface FrameSupportPalletId extends U8aFixed {}
|
|
4195
4247
|
|
|
4196
|
-
/** @name PalletLocalchainTransferError (
|
|
4248
|
+
/** @name PalletLocalchainTransferError (456) */
|
|
4197
4249
|
interface PalletLocalchainTransferError extends Enum {
|
|
4198
4250
|
readonly isMaxBlockTransfersExceeded: boolean;
|
|
4199
4251
|
readonly isInsufficientFunds: boolean;
|
|
@@ -4214,7 +4266,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4214
4266
|
| 'NoAvailableTransferId';
|
|
4215
4267
|
}
|
|
4216
4268
|
|
|
4217
|
-
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (
|
|
4269
|
+
/** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (460) */
|
|
4218
4270
|
interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
|
|
4219
4271
|
readonly notaryId: Compact<u32>;
|
|
4220
4272
|
readonly notebookNumber: Compact<u32>;
|
|
@@ -4223,13 +4275,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4223
4275
|
readonly blockVotingPower: Compact<u128>;
|
|
4224
4276
|
}
|
|
4225
4277
|
|
|
4226
|
-
/** @name PalletBlockSealSpecError (
|
|
4278
|
+
/** @name PalletBlockSealSpecError (465) */
|
|
4227
4279
|
interface PalletBlockSealSpecError extends Enum {
|
|
4228
4280
|
readonly isMaxNotebooksAtTickExceeded: boolean;
|
|
4229
4281
|
readonly type: 'MaxNotebooksAtTickExceeded';
|
|
4230
4282
|
}
|
|
4231
4283
|
|
|
4232
|
-
/** @name PalletDomainsError (
|
|
4284
|
+
/** @name PalletDomainsError (467) */
|
|
4233
4285
|
interface PalletDomainsError extends Enum {
|
|
4234
4286
|
readonly isDomainNotRegistered: boolean;
|
|
4235
4287
|
readonly isNotDomainOwner: boolean;
|
|
@@ -4244,28 +4296,28 @@ declare module '@polkadot/types/lookup' {
|
|
|
4244
4296
|
| 'AccountDecodingError';
|
|
4245
4297
|
}
|
|
4246
4298
|
|
|
4247
|
-
/** @name PalletPriceIndexEthereumPriceFrameAccumulator (
|
|
4299
|
+
/** @name PalletPriceIndexEthereumPriceFrameAccumulator (469) */
|
|
4248
4300
|
interface PalletPriceIndexEthereumPriceFrameAccumulator extends Struct {
|
|
4249
4301
|
readonly totalUsdPrice: u128;
|
|
4250
4302
|
readonly totalWeiPerGas: Compact<u128>;
|
|
4251
4303
|
readonly sampleCount: Compact<u32>;
|
|
4252
4304
|
}
|
|
4253
4305
|
|
|
4254
|
-
/** @name PalletPriceIndexCpiMeasurementBucket (
|
|
4306
|
+
/** @name PalletPriceIndexCpiMeasurementBucket (474) */
|
|
4255
4307
|
interface PalletPriceIndexCpiMeasurementBucket extends Struct {
|
|
4256
4308
|
readonly tickRange: ITuple<[u64, u64]>;
|
|
4257
4309
|
readonly totalCpi: i128;
|
|
4258
4310
|
readonly measurementsCount: u32;
|
|
4259
4311
|
}
|
|
4260
4312
|
|
|
4261
|
-
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (
|
|
4313
|
+
/** @name PalletPriceIndexArgonotAverageFrameAccumulator (478) */
|
|
4262
4314
|
interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
|
|
4263
4315
|
readonly frameId: Compact<u64>;
|
|
4264
4316
|
readonly totalMicrogonsPerArgonot: Compact<u128>;
|
|
4265
4317
|
readonly sampleCount: Compact<u32>;
|
|
4266
4318
|
}
|
|
4267
4319
|
|
|
4268
|
-
/** @name PalletPriceIndexError (
|
|
4320
|
+
/** @name PalletPriceIndexError (479) */
|
|
4269
4321
|
interface PalletPriceIndexError extends Enum {
|
|
4270
4322
|
readonly isNotAuthorizedOperator: boolean;
|
|
4271
4323
|
readonly isMissingValue: boolean;
|
|
@@ -4280,7 +4332,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4280
4332
|
| 'InvalidEthereumPrices';
|
|
4281
4333
|
}
|
|
4282
4334
|
|
|
4283
|
-
/** @name PalletGrandpaStoredState (
|
|
4335
|
+
/** @name PalletGrandpaStoredState (480) */
|
|
4284
4336
|
interface PalletGrandpaStoredState extends Enum {
|
|
4285
4337
|
readonly isLive: boolean;
|
|
4286
4338
|
readonly isPendingPause: boolean;
|
|
@@ -4297,7 +4349,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4297
4349
|
readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
|
|
4298
4350
|
}
|
|
4299
4351
|
|
|
4300
|
-
/** @name PalletGrandpaStoredPendingChange (
|
|
4352
|
+
/** @name PalletGrandpaStoredPendingChange (481) */
|
|
4301
4353
|
interface PalletGrandpaStoredPendingChange extends Struct {
|
|
4302
4354
|
readonly scheduledAt: u32;
|
|
4303
4355
|
readonly delay: u32;
|
|
@@ -4305,7 +4357,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4305
4357
|
readonly forced: Option<u32>;
|
|
4306
4358
|
}
|
|
4307
4359
|
|
|
4308
|
-
/** @name PalletGrandpaError (
|
|
4360
|
+
/** @name PalletGrandpaError (483) */
|
|
4309
4361
|
interface PalletGrandpaError extends Enum {
|
|
4310
4362
|
readonly isPauseFailed: boolean;
|
|
4311
4363
|
readonly isResumeFailed: boolean;
|
|
@@ -4324,14 +4376,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4324
4376
|
| 'DuplicateOffenceReport';
|
|
4325
4377
|
}
|
|
4326
4378
|
|
|
4327
|
-
/** @name ArgonPrimitivesProvidersBlockSealerInfo (
|
|
4379
|
+
/** @name ArgonPrimitivesProvidersBlockSealerInfo (484) */
|
|
4328
4380
|
interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
|
|
4329
4381
|
readonly blockAuthorAccountId: AccountId32;
|
|
4330
4382
|
readonly blockVoteRewardsAccount: Option<AccountId32>;
|
|
4331
4383
|
readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
|
|
4332
4384
|
}
|
|
4333
4385
|
|
|
4334
|
-
/** @name PalletBlockSealError (
|
|
4386
|
+
/** @name PalletBlockSealError (486) */
|
|
4335
4387
|
interface PalletBlockSealError extends Enum {
|
|
4336
4388
|
readonly isInvalidVoteSealStrength: boolean;
|
|
4337
4389
|
readonly isInvalidSubmitter: boolean;
|
|
@@ -4378,45 +4430,46 @@ declare module '@polkadot/types/lookup' {
|
|
|
4378
4430
|
| 'DuplicateVoteBlockAtTick';
|
|
4379
4431
|
}
|
|
4380
4432
|
|
|
4381
|
-
/** @name PalletBlockRewardsError (
|
|
4433
|
+
/** @name PalletBlockRewardsError (490) */
|
|
4382
4434
|
type PalletBlockRewardsError = Null;
|
|
4383
4435
|
|
|
4384
|
-
/** @name PalletMintPendingMintUtxo (
|
|
4436
|
+
/** @name PalletMintPendingMintUtxo (491) */
|
|
4385
4437
|
interface PalletMintPendingMintUtxo extends Struct {
|
|
4438
|
+
readonly fissionId: Compact<u64>;
|
|
4386
4439
|
readonly utxoId: Compact<u64>;
|
|
4387
4440
|
readonly accountId: AccountId32;
|
|
4388
4441
|
readonly remainingAmount: Compact<u128>;
|
|
4389
4442
|
readonly maxAmountPerFrame: Compact<u128>;
|
|
4390
4443
|
}
|
|
4391
4444
|
|
|
4392
|
-
/** @name PalletMintMintQueueCursor (
|
|
4445
|
+
/** @name PalletMintMintQueueCursor (493) */
|
|
4393
4446
|
interface PalletMintMintQueueCursor extends Struct {
|
|
4394
4447
|
readonly payoutStartIndex: Compact<u64>;
|
|
4395
4448
|
readonly payoutCursorIndex: Compact<u64>;
|
|
4396
4449
|
readonly payoutCursorFrameId: Option<u64>;
|
|
4397
4450
|
}
|
|
4398
4451
|
|
|
4399
|
-
/** @name PalletMintMintAction (
|
|
4452
|
+
/** @name PalletMintMintAction (496) */
|
|
4400
4453
|
interface PalletMintMintAction extends Struct {
|
|
4401
4454
|
readonly argonBurned: u128;
|
|
4402
4455
|
readonly argonMinted: u128;
|
|
4403
4456
|
readonly bitcoinMinted: u128;
|
|
4404
4457
|
}
|
|
4405
4458
|
|
|
4406
|
-
/** @name PalletMintError (
|
|
4459
|
+
/** @name PalletMintError (498) */
|
|
4407
4460
|
interface PalletMintError extends Enum {
|
|
4408
4461
|
readonly isTooManyPendingMints: boolean;
|
|
4409
4462
|
readonly type: 'TooManyPendingMints';
|
|
4410
4463
|
}
|
|
4411
4464
|
|
|
4412
|
-
/** @name PalletBalancesBalanceLock (
|
|
4465
|
+
/** @name PalletBalancesBalanceLock (500) */
|
|
4413
4466
|
interface PalletBalancesBalanceLock extends Struct {
|
|
4414
4467
|
readonly id: U8aFixed;
|
|
4415
4468
|
readonly amount: u128;
|
|
4416
4469
|
readonly reasons: PalletBalancesReasons;
|
|
4417
4470
|
}
|
|
4418
4471
|
|
|
4419
|
-
/** @name PalletBalancesReasons (
|
|
4472
|
+
/** @name PalletBalancesReasons (501) */
|
|
4420
4473
|
interface PalletBalancesReasons extends Enum {
|
|
4421
4474
|
readonly isFee: boolean;
|
|
4422
4475
|
readonly isMisc: boolean;
|
|
@@ -4424,38 +4477,38 @@ declare module '@polkadot/types/lookup' {
|
|
|
4424
4477
|
readonly type: 'Fee' | 'Misc' | 'All';
|
|
4425
4478
|
}
|
|
4426
4479
|
|
|
4427
|
-
/** @name PalletBalancesReserveData (
|
|
4480
|
+
/** @name PalletBalancesReserveData (504) */
|
|
4428
4481
|
interface PalletBalancesReserveData extends Struct {
|
|
4429
4482
|
readonly id: U8aFixed;
|
|
4430
4483
|
readonly amount: u128;
|
|
4431
4484
|
}
|
|
4432
4485
|
|
|
4433
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (
|
|
4486
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (507) */
|
|
4434
4487
|
interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
|
|
4435
4488
|
readonly id: ArgonRuntimeRuntimeHoldReason;
|
|
4436
4489
|
readonly amount: u128;
|
|
4437
4490
|
}
|
|
4438
4491
|
|
|
4439
|
-
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (
|
|
4492
|
+
/** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (510) */
|
|
4440
4493
|
interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
|
|
4441
4494
|
readonly id: ArgonRuntimeRuntimeFreezeReason;
|
|
4442
4495
|
readonly amount: u128;
|
|
4443
4496
|
}
|
|
4444
4497
|
|
|
4445
|
-
/** @name ArgonRuntimeRuntimeFreezeReason (
|
|
4498
|
+
/** @name ArgonRuntimeRuntimeFreezeReason (511) */
|
|
4446
4499
|
interface ArgonRuntimeRuntimeFreezeReason extends Enum {
|
|
4447
4500
|
readonly isBlockRewards: boolean;
|
|
4448
4501
|
readonly asBlockRewards: PalletBlockRewardsFreezeReason;
|
|
4449
4502
|
readonly type: 'BlockRewards';
|
|
4450
4503
|
}
|
|
4451
4504
|
|
|
4452
|
-
/** @name PalletBlockRewardsFreezeReason (
|
|
4505
|
+
/** @name PalletBlockRewardsFreezeReason (512) */
|
|
4453
4506
|
interface PalletBlockRewardsFreezeReason extends Enum {
|
|
4454
4507
|
readonly isMaturationPeriod: boolean;
|
|
4455
4508
|
readonly type: 'MaturationPeriod';
|
|
4456
4509
|
}
|
|
4457
4510
|
|
|
4458
|
-
/** @name PalletBalancesError (
|
|
4511
|
+
/** @name PalletBalancesError (514) */
|
|
4459
4512
|
interface PalletBalancesError extends Enum {
|
|
4460
4513
|
readonly isVestingBalance: boolean;
|
|
4461
4514
|
readonly isLiquidityRestrictions: boolean;
|
|
@@ -4484,7 +4537,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4484
4537
|
| 'DeltaZero';
|
|
4485
4538
|
}
|
|
4486
4539
|
|
|
4487
|
-
/** @name PalletTxPauseError (
|
|
4540
|
+
/** @name PalletTxPauseError (516) */
|
|
4488
4541
|
interface PalletTxPauseError extends Enum {
|
|
4489
4542
|
readonly isIsPaused: boolean;
|
|
4490
4543
|
readonly isIsUnpaused: boolean;
|
|
@@ -4493,40 +4546,98 @@ declare module '@polkadot/types/lookup' {
|
|
|
4493
4546
|
readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
|
|
4494
4547
|
}
|
|
4495
4548
|
|
|
4496
|
-
/** @name PalletTransactionPaymentReleases (
|
|
4549
|
+
/** @name PalletTransactionPaymentReleases (517) */
|
|
4497
4550
|
interface PalletTransactionPaymentReleases extends Enum {
|
|
4498
4551
|
readonly isV1Ancient: boolean;
|
|
4499
4552
|
readonly isV2: boolean;
|
|
4500
4553
|
readonly type: 'V1Ancient' | 'V2';
|
|
4501
4554
|
}
|
|
4502
4555
|
|
|
4503
|
-
/** @name FrameSupportStorageNoDrop (
|
|
4556
|
+
/** @name FrameSupportStorageNoDrop (518) */
|
|
4504
4557
|
interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
|
|
4505
4558
|
|
|
4506
|
-
/** @name FrameSupportTokensFungibleImbalance (
|
|
4559
|
+
/** @name FrameSupportTokensFungibleImbalance (519) */
|
|
4507
4560
|
interface FrameSupportTokensFungibleImbalance extends Struct {
|
|
4508
4561
|
readonly amount: u128;
|
|
4509
4562
|
}
|
|
4510
4563
|
|
|
4511
|
-
/** @name PalletUtilityError (
|
|
4564
|
+
/** @name PalletUtilityError (520) */
|
|
4512
4565
|
interface PalletUtilityError extends Enum {
|
|
4513
4566
|
readonly isTooManyCalls: boolean;
|
|
4514
4567
|
readonly type: 'TooManyCalls';
|
|
4515
4568
|
}
|
|
4516
4569
|
|
|
4517
|
-
/** @name PalletSudoError (
|
|
4570
|
+
/** @name PalletSudoError (521) */
|
|
4518
4571
|
interface PalletSudoError extends Enum {
|
|
4519
4572
|
readonly isRequireSudo: boolean;
|
|
4520
4573
|
readonly type: 'RequireSudo';
|
|
4521
4574
|
}
|
|
4522
4575
|
|
|
4523
|
-
/** @name
|
|
4576
|
+
/** @name PalletBitcoinFissionsFission (522) */
|
|
4577
|
+
interface PalletBitcoinFissionsFission extends Struct {
|
|
4578
|
+
readonly liquidId: Compact<u64>;
|
|
4579
|
+
readonly utxoId: Compact<u64>;
|
|
4580
|
+
readonly satoshis: Compact<u64>;
|
|
4581
|
+
readonly microgonsAtTargetPerBtc: Compact<u128>;
|
|
4582
|
+
readonly liquidityPromised: Compact<u128>;
|
|
4583
|
+
readonly createdAtArgonBlock: Compact<u32>;
|
|
4584
|
+
readonly ratchetNumber: Compact<u32>;
|
|
4585
|
+
readonly lastRatchetTick: Compact<u64>;
|
|
4586
|
+
readonly lastUpdatedArgonBlock: Compact<u32>;
|
|
4587
|
+
}
|
|
4588
|
+
|
|
4589
|
+
/** @name PalletBitcoinFissionsError (524) */
|
|
4590
|
+
interface PalletBitcoinFissionsError extends Enum {
|
|
4591
|
+
readonly isFissionIdBelowMinimum: boolean;
|
|
4592
|
+
readonly isFissionIdOverflow: boolean;
|
|
4593
|
+
readonly isFissionAlreadyExists: boolean;
|
|
4594
|
+
readonly isFissionNotFound: boolean;
|
|
4595
|
+
readonly isNoRatchetingAvailable: boolean;
|
|
4596
|
+
readonly isRatchetNumberOverflow: boolean;
|
|
4597
|
+
readonly isFissionHasNoSatoshis: boolean;
|
|
4598
|
+
readonly isTooManyFissionsForLock: boolean;
|
|
4599
|
+
readonly isLockNotFound: boolean;
|
|
4600
|
+
readonly isNoPermissions: boolean;
|
|
4601
|
+
readonly isLockNotFunded: boolean;
|
|
4602
|
+
readonly isLockReleasePending: boolean;
|
|
4603
|
+
readonly isInsufficientFundedSatoshis: boolean;
|
|
4604
|
+
readonly isInsufficientSecuritization: boolean;
|
|
4605
|
+
readonly isIneligibleMicrogonsAtTargetPerBtc: boolean;
|
|
4606
|
+
readonly isMicrogonsAtTargetPerBtcTickOlderThanCurrent: boolean;
|
|
4607
|
+
readonly isInsufficientFissionedSatoshis: boolean;
|
|
4608
|
+
readonly isNoBitcoinPricesAvailable: boolean;
|
|
4609
|
+
readonly isInsufficientFunds: boolean;
|
|
4610
|
+
readonly isOverflow: boolean;
|
|
4611
|
+
readonly type:
|
|
4612
|
+
| 'FissionIdBelowMinimum'
|
|
4613
|
+
| 'FissionIdOverflow'
|
|
4614
|
+
| 'FissionAlreadyExists'
|
|
4615
|
+
| 'FissionNotFound'
|
|
4616
|
+
| 'NoRatchetingAvailable'
|
|
4617
|
+
| 'RatchetNumberOverflow'
|
|
4618
|
+
| 'FissionHasNoSatoshis'
|
|
4619
|
+
| 'TooManyFissionsForLock'
|
|
4620
|
+
| 'LockNotFound'
|
|
4621
|
+
| 'NoPermissions'
|
|
4622
|
+
| 'LockNotFunded'
|
|
4623
|
+
| 'LockReleasePending'
|
|
4624
|
+
| 'InsufficientFundedSatoshis'
|
|
4625
|
+
| 'InsufficientSecuritization'
|
|
4626
|
+
| 'IneligibleMicrogonsAtTargetPerBtc'
|
|
4627
|
+
| 'MicrogonsAtTargetPerBtcTickOlderThanCurrent'
|
|
4628
|
+
| 'InsufficientFissionedSatoshis'
|
|
4629
|
+
| 'NoBitcoinPricesAvailable'
|
|
4630
|
+
| 'InsufficientFunds'
|
|
4631
|
+
| 'Overflow';
|
|
4632
|
+
}
|
|
4633
|
+
|
|
4634
|
+
/** @name PalletTreasuryFrameVaultCapital (525) */
|
|
4524
4635
|
interface PalletTreasuryFrameVaultCapital extends Struct {
|
|
4525
4636
|
readonly frameId: Compact<u64>;
|
|
4526
4637
|
readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
|
|
4527
4638
|
}
|
|
4528
4639
|
|
|
4529
|
-
/** @name PalletTreasuryVaultCapital (
|
|
4640
|
+
/** @name PalletTreasuryVaultCapital (527) */
|
|
4530
4641
|
interface PalletTreasuryVaultCapital extends Struct {
|
|
4531
4642
|
readonly regularBondAllocations: Vec<PalletTreasuryBondLotAllocation>;
|
|
4532
4643
|
readonly flexibleBondsEligible: Compact<u32>;
|
|
@@ -4534,26 +4645,26 @@ declare module '@polkadot/types/lookup' {
|
|
|
4534
4645
|
readonly eligibleBonds: Compact<u32>;
|
|
4535
4646
|
}
|
|
4536
4647
|
|
|
4537
|
-
/** @name PalletTreasuryBondLotAllocation (
|
|
4648
|
+
/** @name PalletTreasuryBondLotAllocation (529) */
|
|
4538
4649
|
interface PalletTreasuryBondLotAllocation extends Struct {
|
|
4539
4650
|
readonly bondLotId: Compact<u64>;
|
|
4540
4651
|
readonly prorata: u128;
|
|
4541
4652
|
}
|
|
4542
4653
|
|
|
4543
|
-
/** @name PalletTreasuryFrameArgonotBondParticipants (
|
|
4654
|
+
/** @name PalletTreasuryFrameArgonotBondParticipants (534) */
|
|
4544
4655
|
interface PalletTreasuryFrameArgonotBondParticipants extends Struct {
|
|
4545
4656
|
readonly frameId: Compact<u64>;
|
|
4546
4657
|
readonly totalBonds: Compact<u32>;
|
|
4547
4658
|
readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4548
4659
|
}
|
|
4549
4660
|
|
|
4550
|
-
/** @name PalletTreasuryBondLotSummary (
|
|
4661
|
+
/** @name PalletTreasuryBondLotSummary (536) */
|
|
4551
4662
|
interface PalletTreasuryBondLotSummary extends Struct {
|
|
4552
4663
|
readonly bondLotId: Compact<u64>;
|
|
4553
4664
|
readonly bonds: Compact<u32>;
|
|
4554
4665
|
}
|
|
4555
4666
|
|
|
4556
|
-
/** @name PalletTreasuryBondLot (
|
|
4667
|
+
/** @name PalletTreasuryBondLot (538) */
|
|
4557
4668
|
interface PalletTreasuryBondLot extends Struct {
|
|
4558
4669
|
readonly owner: AccountId32;
|
|
4559
4670
|
readonly program: PalletTreasuryBondProgram;
|
|
@@ -4568,7 +4679,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4568
4679
|
readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
|
|
4569
4680
|
}
|
|
4570
4681
|
|
|
4571
|
-
/** @name PalletTreasuryBondProgram (
|
|
4682
|
+
/** @name PalletTreasuryBondProgram (539) */
|
|
4572
4683
|
interface PalletTreasuryBondProgram extends Enum {
|
|
4573
4684
|
readonly isVault: boolean;
|
|
4574
4685
|
readonly asVault: {
|
|
@@ -4580,14 +4691,14 @@ declare module '@polkadot/types/lookup' {
|
|
|
4580
4691
|
readonly type: 'Vault' | 'Argonot';
|
|
4581
4692
|
}
|
|
4582
4693
|
|
|
4583
|
-
/** @name PalletTreasuryVaultBondState (
|
|
4694
|
+
/** @name PalletTreasuryVaultBondState (542) */
|
|
4584
4695
|
interface PalletTreasuryVaultBondState extends Struct {
|
|
4585
4696
|
readonly regularBondLots: Vec<PalletTreasuryBondLotSummary>;
|
|
4586
4697
|
readonly flexibleBonds: Compact<u32>;
|
|
4587
4698
|
readonly reservedBondSpace: Compact<u32>;
|
|
4588
4699
|
}
|
|
4589
4700
|
|
|
4590
|
-
/** @name PalletTreasuryError (
|
|
4701
|
+
/** @name PalletTreasuryError (544) */
|
|
4591
4702
|
interface PalletTreasuryError extends Enum {
|
|
4592
4703
|
readonly isBondPurchaseRejected: boolean;
|
|
4593
4704
|
readonly isVaultNotAcceptingBondPurchases: boolean;
|
|
@@ -4634,13 +4745,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4634
4745
|
| 'NoPermissions';
|
|
4635
4746
|
}
|
|
4636
4747
|
|
|
4637
|
-
/** @name PalletFeeControlError (
|
|
4748
|
+
/** @name PalletFeeControlError (545) */
|
|
4638
4749
|
interface PalletFeeControlError extends Enum {
|
|
4639
4750
|
readonly isSponsoredFeeTooHigh: boolean;
|
|
4640
4751
|
readonly type: 'SponsoredFeeTooHigh';
|
|
4641
4752
|
}
|
|
4642
4753
|
|
|
4643
|
-
/** @name PalletOperationalAccountsOperationalAccount (
|
|
4754
|
+
/** @name PalletOperationalAccountsOperationalAccount (546) */
|
|
4644
4755
|
interface PalletOperationalAccountsOperationalAccount extends Struct {
|
|
4645
4756
|
readonly vaultAccount: AccountId32;
|
|
4646
4757
|
readonly miningAccount: AccountId32;
|
|
@@ -4664,13 +4775,13 @@ declare module '@polkadot/types/lookup' {
|
|
|
4664
4775
|
readonly isOperationallyCertified: bool;
|
|
4665
4776
|
}
|
|
4666
4777
|
|
|
4667
|
-
/** @name PalletOperationalAccountsRewardsConfig (
|
|
4778
|
+
/** @name PalletOperationalAccountsRewardsConfig (547) */
|
|
4668
4779
|
interface PalletOperationalAccountsRewardsConfig extends Struct {
|
|
4669
4780
|
readonly operationalCertificationReward: Compact<u128>;
|
|
4670
4781
|
readonly operationalCertificationBonusReward: Compact<u128>;
|
|
4671
4782
|
}
|
|
4672
4783
|
|
|
4673
|
-
/** @name PalletOperationalAccountsError (
|
|
4784
|
+
/** @name PalletOperationalAccountsError (548) */
|
|
4674
4785
|
interface PalletOperationalAccountsError extends Enum {
|
|
4675
4786
|
readonly isAlreadyRegistered: boolean;
|
|
4676
4787
|
readonly isInvalidRegistrationSubmitter: boolean;
|
|
@@ -4715,12 +4826,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
4715
4826
|
| 'InvalidName';
|
|
4716
4827
|
}
|
|
4717
4828
|
|
|
4718
|
-
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (
|
|
4829
|
+
/** @name PalletEthereumVerifierFinalizedBeaconHeaderState (549) */
|
|
4719
4830
|
interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
|
|
4720
4831
|
readonly slot: Compact<u64>;
|
|
4721
4832
|
}
|
|
4722
4833
|
|
|
4723
|
-
/** @name PalletEthereumVerifierExecutionHeaderAnchor (
|
|
4834
|
+
/** @name PalletEthereumVerifierExecutionHeaderAnchor (550) */
|
|
4724
4835
|
interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
|
|
4725
4836
|
readonly blockNumber: Compact<u64>;
|
|
4726
4837
|
readonly timestampMillis: Compact<u64>;
|
|
@@ -4730,44 +4841,44 @@ declare module '@polkadot/types/lookup' {
|
|
|
4730
4841
|
readonly receiptsRoot: H256;
|
|
4731
4842
|
}
|
|
4732
4843
|
|
|
4733
|
-
/** @name PalletEthereumVerifierSyncCommitteePrepared (
|
|
4844
|
+
/** @name PalletEthereumVerifierSyncCommitteePrepared (551) */
|
|
4734
4845
|
interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
|
|
4735
4846
|
readonly root: H256;
|
|
4736
4847
|
readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
|
|
4737
4848
|
readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
|
|
4738
4849
|
}
|
|
4739
4850
|
|
|
4740
|
-
/** @name SnowbridgeMilagroBlsKeysPublicKey (
|
|
4851
|
+
/** @name SnowbridgeMilagroBlsKeysPublicKey (553) */
|
|
4741
4852
|
interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
|
|
4742
4853
|
readonly point: SnowbridgeAmclBls381Ecp;
|
|
4743
4854
|
}
|
|
4744
4855
|
|
|
4745
|
-
/** @name SnowbridgeAmclBls381Ecp (
|
|
4856
|
+
/** @name SnowbridgeAmclBls381Ecp (554) */
|
|
4746
4857
|
interface SnowbridgeAmclBls381Ecp extends Struct {
|
|
4747
4858
|
readonly x: SnowbridgeAmclBls381Fp;
|
|
4748
4859
|
readonly y: SnowbridgeAmclBls381Fp;
|
|
4749
4860
|
readonly z: SnowbridgeAmclBls381Fp;
|
|
4750
4861
|
}
|
|
4751
4862
|
|
|
4752
|
-
/** @name SnowbridgeAmclBls381Fp (
|
|
4863
|
+
/** @name SnowbridgeAmclBls381Fp (555) */
|
|
4753
4864
|
interface SnowbridgeAmclBls381Fp extends Struct {
|
|
4754
4865
|
readonly x: SnowbridgeAmclBls381Big;
|
|
4755
4866
|
readonly xes: i32;
|
|
4756
4867
|
}
|
|
4757
4868
|
|
|
4758
|
-
/** @name SnowbridgeAmclBls381Big (
|
|
4869
|
+
/** @name SnowbridgeAmclBls381Big (556) */
|
|
4759
4870
|
interface SnowbridgeAmclBls381Big extends Struct {
|
|
4760
4871
|
readonly w: Vec<i32>;
|
|
4761
4872
|
}
|
|
4762
4873
|
|
|
4763
|
-
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (
|
|
4874
|
+
/** @name ArgonPrimitivesEthereumEthereumBeaconPreset (560) */
|
|
4764
4875
|
interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
|
|
4765
4876
|
readonly isMainnet: boolean;
|
|
4766
4877
|
readonly isMinimal: boolean;
|
|
4767
4878
|
readonly type: 'Mainnet' | 'Minimal';
|
|
4768
4879
|
}
|
|
4769
4880
|
|
|
4770
|
-
/** @name PalletEthereumVerifierError (
|
|
4881
|
+
/** @name PalletEthereumVerifierError (561) */
|
|
4771
4882
|
interface PalletEthereumVerifierError extends Enum {
|
|
4772
4883
|
readonly isSkippedSyncCommitteePeriod: boolean;
|
|
4773
4884
|
readonly isSyncCommitteeUpdateRequired: boolean;
|
|
@@ -4820,7 +4931,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4820
4931
|
| 'Halted';
|
|
4821
4932
|
}
|
|
4822
4933
|
|
|
4823
|
-
/** @name PalletCrosschainTransferAccountTransferTotals (
|
|
4934
|
+
/** @name PalletCrosschainTransferAccountTransferTotals (562) */
|
|
4824
4935
|
interface PalletCrosschainTransferAccountTransferTotals extends Struct {
|
|
4825
4936
|
readonly microgonsIn: u128;
|
|
4826
4937
|
readonly microgonsOut: u128;
|
|
@@ -4832,21 +4943,21 @@ declare module '@polkadot/types/lookup' {
|
|
|
4832
4943
|
readonly argonotTransfersOutCount: Compact<u32>;
|
|
4833
4944
|
}
|
|
4834
4945
|
|
|
4835
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (
|
|
4946
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncil (564) */
|
|
4836
4947
|
interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
|
|
4837
4948
|
readonly epochMicrogonsPerArgonot: u128;
|
|
4838
4949
|
readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
|
|
4839
4950
|
readonly totalWeight: u128;
|
|
4840
4951
|
}
|
|
4841
4952
|
|
|
4842
|
-
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (
|
|
4953
|
+
/** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (566) */
|
|
4843
4954
|
interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
|
|
4844
4955
|
readonly accountId: AccountId32;
|
|
4845
4956
|
readonly signer: H160;
|
|
4846
4957
|
readonly weight: u128;
|
|
4847
4958
|
}
|
|
4848
4959
|
|
|
4849
|
-
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (
|
|
4960
|
+
/** @name PalletCrosschainTransferCouncilApprovalQueueEntry (571) */
|
|
4850
4961
|
interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
|
|
4851
4962
|
readonly approvingCouncilHash: H256;
|
|
4852
4963
|
readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
|
|
@@ -4858,7 +4969,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4858
4969
|
readonly signatures: BTreeMap<H160, U8aFixed>;
|
|
4859
4970
|
}
|
|
4860
4971
|
|
|
4861
|
-
/** @name PalletCrosschainTransferMintingAuthority (
|
|
4972
|
+
/** @name PalletCrosschainTransferMintingAuthority (576) */
|
|
4862
4973
|
interface PalletCrosschainTransferMintingAuthority extends Struct {
|
|
4863
4974
|
readonly accountId: AccountId32;
|
|
4864
4975
|
readonly destinationChain: PalletCrosschainTransferSourceChain;
|
|
@@ -4875,7 +4986,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4875
4986
|
readonly deactivationApprovalQueueNonce: Option<u64>;
|
|
4876
4987
|
}
|
|
4877
4988
|
|
|
4878
|
-
/** @name PalletCrosschainTransferMintingAuthorityState (
|
|
4989
|
+
/** @name PalletCrosschainTransferMintingAuthorityState (577) */
|
|
4879
4990
|
interface PalletCrosschainTransferMintingAuthorityState extends Enum {
|
|
4880
4991
|
readonly isPendingActivation: boolean;
|
|
4881
4992
|
readonly isActive: boolean;
|
|
@@ -4883,7 +4994,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4883
4994
|
readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
|
|
4884
4995
|
}
|
|
4885
4996
|
|
|
4886
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (
|
|
4997
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (579) */
|
|
4887
4998
|
interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
|
|
4888
4999
|
readonly argonAccountId: AccountId32;
|
|
4889
5000
|
readonly argonTransferNonce: Compact<u64>;
|
|
@@ -4902,7 +5013,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
4902
5013
|
readonly state: PalletCrosschainTransferTransferOutTransferOutState;
|
|
4903
5014
|
}
|
|
4904
5015
|
|
|
4905
|
-
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (
|
|
5016
|
+
/** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (581) */
|
|
4906
5017
|
interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
|
|
4907
5018
|
readonly microgonCollateral: u128;
|
|
4908
5019
|
readonly micronotCollateral: u128;
|
|
@@ -4910,27 +5021,27 @@ declare module '@polkadot/types/lookup' {
|
|
|
4910
5021
|
readonly signature: U8aFixed;
|
|
4911
5022
|
}
|
|
4912
5023
|
|
|
4913
|
-
/** @name PalletCrosschainTransferTransferOutTransferOutState (
|
|
5024
|
+
/** @name PalletCrosschainTransferTransferOutTransferOutState (585) */
|
|
4914
5025
|
interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
|
|
4915
5026
|
readonly isStarted: boolean;
|
|
4916
5027
|
readonly isReady: boolean;
|
|
4917
5028
|
readonly type: 'Started' | 'Ready';
|
|
4918
5029
|
}
|
|
4919
5030
|
|
|
4920
|
-
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (
|
|
5031
|
+
/** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (587) */
|
|
4921
5032
|
interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
|
|
4922
5033
|
readonly transferId: H256;
|
|
4923
5034
|
readonly remainingCollateral: u128;
|
|
4924
5035
|
readonly remainingMintingAuthorityTip: u128;
|
|
4925
5036
|
}
|
|
4926
5037
|
|
|
4927
|
-
/** @name PalletCrosschainTransferSourceChainCirculation (
|
|
5038
|
+
/** @name PalletCrosschainTransferSourceChainCirculation (589) */
|
|
4928
5039
|
interface PalletCrosschainTransferSourceChainCirculation extends Struct {
|
|
4929
5040
|
readonly argonCirculation: u128;
|
|
4930
5041
|
readonly argonotCirculation: u128;
|
|
4931
5042
|
}
|
|
4932
5043
|
|
|
4933
|
-
/** @name PalletCrosschainTransferError (
|
|
5044
|
+
/** @name PalletCrosschainTransferError (590) */
|
|
4934
5045
|
interface PalletCrosschainTransferError extends Enum {
|
|
4935
5046
|
readonly isInvalidTransferToArgonActivity: boolean;
|
|
4936
5047
|
readonly isNoGatewayProofBlocksProvided: boolean;
|
|
@@ -5045,7 +5156,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
5045
5156
|
| 'CouncilSignerRotationPending';
|
|
5046
5157
|
}
|
|
5047
5158
|
|
|
5048
|
-
/** @name PalletBootstrapError (
|
|
5159
|
+
/** @name PalletBootstrapError (592) */
|
|
5049
5160
|
interface PalletBootstrapError extends Enum {
|
|
5050
5161
|
readonly isEncryptedPayloadTooLong: boolean;
|
|
5051
5162
|
readonly isInvalidRecoveryProof: boolean;
|
|
@@ -5056,45 +5167,45 @@ declare module '@polkadot/types/lookup' {
|
|
|
5056
5167
|
| 'EndpointOwnedByAnotherAccount';
|
|
5057
5168
|
}
|
|
5058
5169
|
|
|
5059
|
-
/** @name FrameSystemExtensionsAuthorizeCall (
|
|
5170
|
+
/** @name FrameSystemExtensionsAuthorizeCall (595) */
|
|
5060
5171
|
type FrameSystemExtensionsAuthorizeCall = Null;
|
|
5061
5172
|
|
|
5062
|
-
/** @name FrameSystemExtensionsCheckNonZeroSender (
|
|
5173
|
+
/** @name FrameSystemExtensionsCheckNonZeroSender (596) */
|
|
5063
5174
|
type FrameSystemExtensionsCheckNonZeroSender = Null;
|
|
5064
5175
|
|
|
5065
|
-
/** @name FrameSystemExtensionsCheckSpecVersion (
|
|
5176
|
+
/** @name FrameSystemExtensionsCheckSpecVersion (597) */
|
|
5066
5177
|
type FrameSystemExtensionsCheckSpecVersion = Null;
|
|
5067
5178
|
|
|
5068
|
-
/** @name FrameSystemExtensionsCheckTxVersion (
|
|
5179
|
+
/** @name FrameSystemExtensionsCheckTxVersion (598) */
|
|
5069
5180
|
type FrameSystemExtensionsCheckTxVersion = Null;
|
|
5070
5181
|
|
|
5071
|
-
/** @name FrameSystemExtensionsCheckGenesis (
|
|
5182
|
+
/** @name FrameSystemExtensionsCheckGenesis (599) */
|
|
5072
5183
|
type FrameSystemExtensionsCheckGenesis = Null;
|
|
5073
5184
|
|
|
5074
|
-
/** @name FrameSystemExtensionsCheckNonce (
|
|
5185
|
+
/** @name FrameSystemExtensionsCheckNonce (602) */
|
|
5075
5186
|
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
|
|
5076
5187
|
|
|
5077
|
-
/** @name FrameSystemExtensionsCheckWeight (
|
|
5188
|
+
/** @name FrameSystemExtensionsCheckWeight (603) */
|
|
5078
5189
|
type FrameSystemExtensionsCheckWeight = Null;
|
|
5079
5190
|
|
|
5080
|
-
/** @name PalletTransactionPaymentChargeTransactionPayment (
|
|
5191
|
+
/** @name PalletTransactionPaymentChargeTransactionPayment (604) */
|
|
5081
5192
|
interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
|
|
5082
5193
|
|
|
5083
|
-
/** @name FrameMetadataHashExtensionCheckMetadataHash (
|
|
5194
|
+
/** @name FrameMetadataHashExtensionCheckMetadataHash (605) */
|
|
5084
5195
|
interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
|
|
5085
5196
|
readonly mode: FrameMetadataHashExtensionMode;
|
|
5086
5197
|
}
|
|
5087
5198
|
|
|
5088
|
-
/** @name FrameMetadataHashExtensionMode (
|
|
5199
|
+
/** @name FrameMetadataHashExtensionMode (606) */
|
|
5089
5200
|
interface FrameMetadataHashExtensionMode extends Enum {
|
|
5090
5201
|
readonly isDisabled: boolean;
|
|
5091
5202
|
readonly isEnabled: boolean;
|
|
5092
5203
|
readonly type: 'Disabled' | 'Enabled';
|
|
5093
5204
|
}
|
|
5094
5205
|
|
|
5095
|
-
/** @name FrameSystemExtensionsWeightReclaim (
|
|
5206
|
+
/** @name FrameSystemExtensionsWeightReclaim (607) */
|
|
5096
5207
|
type FrameSystemExtensionsWeightReclaim = Null;
|
|
5097
5208
|
|
|
5098
|
-
/** @name ArgonRuntimeRuntime (
|
|
5209
|
+
/** @name ArgonRuntimeRuntime (609) */
|
|
5099
5210
|
type ArgonRuntimeRuntime = Null;
|
|
5100
5211
|
} // declare module
|