@argonprotocol/mainchain 1.4.3-dev.5e4d8d6a → 1.4.3-dev.6de0a801
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/browser/index.d.ts +409 -1556
- package/browser/index.js +45 -11
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +45 -11
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +409 -1556
- package/lib/index.d.ts +409 -1556
- package/lib/index.js +45 -11
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +23 -29
- package/src/interfaces/augment-api-errors.ts +5 -3
- package/src/interfaces/augment-api-events.ts +167 -1272
- package/src/interfaces/augment-api-query.ts +148 -787
- package/src/interfaces/augment-api-rpc.ts +85 -597
- package/src/interfaces/augment-api-runtime.ts +24 -177
- package/src/interfaces/augment-api-tx.ts +275 -1400
- package/src/interfaces/augment-types.ts +46 -1352
- package/src/interfaces/ethereum/types.ts +1 -7
- package/src/interfaces/lookup.ts +371 -682
- package/src/interfaces/registry.ts +1 -275
- package/src/interfaces/types-lookup.ts +56 -698
package/browser/index.d.ts
CHANGED
|
@@ -1860,20 +1860,14 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
1860
1860
|
/**
|
|
1861
1861
|
* A balance was set by root.
|
|
1862
1862
|
**/
|
|
1863
|
-
BalanceSet: AugmentedEvent<ApiType, [
|
|
1864
|
-
who: AccountId32,
|
|
1865
|
-
free: u128
|
|
1866
|
-
], {
|
|
1863
|
+
BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128], {
|
|
1867
1864
|
who: AccountId32;
|
|
1868
1865
|
free: u128;
|
|
1869
1866
|
}>;
|
|
1870
1867
|
/**
|
|
1871
1868
|
* Some amount was burned from an account.
|
|
1872
1869
|
**/
|
|
1873
|
-
Burned: AugmentedEvent<ApiType, [
|
|
1874
|
-
who: AccountId32,
|
|
1875
|
-
amount: u128
|
|
1876
|
-
], {
|
|
1870
|
+
Burned: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
1877
1871
|
who: AccountId32;
|
|
1878
1872
|
amount: u128;
|
|
1879
1873
|
}>;
|
|
@@ -1886,11 +1880,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
1886
1880
|
/**
|
|
1887
1881
|
* Held balance was burned from an account.
|
|
1888
1882
|
**/
|
|
1889
|
-
BurnedHeld: AugmentedEvent<ApiType, [
|
|
1890
|
-
reason: ArgonRuntimeRuntimeHoldReason,
|
|
1891
|
-
who: AccountId32,
|
|
1892
|
-
amount: u128
|
|
1893
|
-
], {
|
|
1883
|
+
BurnedHeld: AugmentedEvent<ApiType, [reason: ArgonRuntimeRuntimeHoldReason, who: AccountId32, amount: u128], {
|
|
1894
1884
|
reason: ArgonRuntimeRuntimeHoldReason;
|
|
1895
1885
|
who: AccountId32;
|
|
1896
1886
|
amount: u128;
|
|
@@ -1898,10 +1888,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
1898
1888
|
/**
|
|
1899
1889
|
* Some amount was deposited (e.g. for transaction fees).
|
|
1900
1890
|
**/
|
|
1901
|
-
Deposit: AugmentedEvent<ApiType, [
|
|
1902
|
-
who: AccountId32,
|
|
1903
|
-
amount: u128
|
|
1904
|
-
], {
|
|
1891
|
+
Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
1905
1892
|
who: AccountId32;
|
|
1906
1893
|
amount: u128;
|
|
1907
1894
|
}>;
|
|
@@ -1909,41 +1896,28 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
1909
1896
|
* An account was removed whose balance was non-zero but below ExistentialDeposit,
|
|
1910
1897
|
* resulting in an outright loss.
|
|
1911
1898
|
**/
|
|
1912
|
-
DustLost: AugmentedEvent<ApiType, [
|
|
1913
|
-
account: AccountId32,
|
|
1914
|
-
amount: u128
|
|
1915
|
-
], {
|
|
1899
|
+
DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], {
|
|
1916
1900
|
account: AccountId32;
|
|
1917
1901
|
amount: u128;
|
|
1918
1902
|
}>;
|
|
1919
1903
|
/**
|
|
1920
1904
|
* An account was created with some free balance.
|
|
1921
1905
|
**/
|
|
1922
|
-
Endowed: AugmentedEvent<ApiType, [
|
|
1923
|
-
account: AccountId32,
|
|
1924
|
-
freeBalance: u128
|
|
1925
|
-
], {
|
|
1906
|
+
Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], {
|
|
1926
1907
|
account: AccountId32;
|
|
1927
1908
|
freeBalance: u128;
|
|
1928
1909
|
}>;
|
|
1929
1910
|
/**
|
|
1930
1911
|
* Some balance was frozen.
|
|
1931
1912
|
**/
|
|
1932
|
-
Frozen: AugmentedEvent<ApiType, [
|
|
1933
|
-
who: AccountId32,
|
|
1934
|
-
amount: u128
|
|
1935
|
-
], {
|
|
1913
|
+
Frozen: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
1936
1914
|
who: AccountId32;
|
|
1937
1915
|
amount: u128;
|
|
1938
1916
|
}>;
|
|
1939
1917
|
/**
|
|
1940
1918
|
* Some balance was placed on hold.
|
|
1941
1919
|
**/
|
|
1942
|
-
Held: AugmentedEvent<ApiType, [
|
|
1943
|
-
reason: ArgonRuntimeRuntimeHoldReason,
|
|
1944
|
-
who: AccountId32,
|
|
1945
|
-
amount: u128
|
|
1946
|
-
], {
|
|
1920
|
+
Held: AugmentedEvent<ApiType, [reason: ArgonRuntimeRuntimeHoldReason, who: AccountId32, amount: u128], {
|
|
1947
1921
|
reason: ArgonRuntimeRuntimeHoldReason;
|
|
1948
1922
|
who: AccountId32;
|
|
1949
1923
|
amount: u128;
|
|
@@ -1957,20 +1931,14 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
1957
1931
|
/**
|
|
1958
1932
|
* Some balance was locked.
|
|
1959
1933
|
**/
|
|
1960
|
-
Locked: AugmentedEvent<ApiType, [
|
|
1961
|
-
who: AccountId32,
|
|
1962
|
-
amount: u128
|
|
1963
|
-
], {
|
|
1934
|
+
Locked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
1964
1935
|
who: AccountId32;
|
|
1965
1936
|
amount: u128;
|
|
1966
1937
|
}>;
|
|
1967
1938
|
/**
|
|
1968
1939
|
* Some amount was minted into an account.
|
|
1969
1940
|
**/
|
|
1970
|
-
Minted: AugmentedEvent<ApiType, [
|
|
1971
|
-
who: AccountId32,
|
|
1972
|
-
amount: u128
|
|
1973
|
-
], {
|
|
1941
|
+
Minted: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
1974
1942
|
who: AccountId32;
|
|
1975
1943
|
amount: u128;
|
|
1976
1944
|
}>;
|
|
@@ -1983,11 +1951,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
1983
1951
|
/**
|
|
1984
1952
|
* Some balance was released from hold.
|
|
1985
1953
|
**/
|
|
1986
|
-
Released: AugmentedEvent<ApiType, [
|
|
1987
|
-
reason: ArgonRuntimeRuntimeHoldReason,
|
|
1988
|
-
who: AccountId32,
|
|
1989
|
-
amount: u128
|
|
1990
|
-
], {
|
|
1954
|
+
Released: AugmentedEvent<ApiType, [reason: ArgonRuntimeRuntimeHoldReason, who: AccountId32, amount: u128], {
|
|
1991
1955
|
reason: ArgonRuntimeRuntimeHoldReason;
|
|
1992
1956
|
who: AccountId32;
|
|
1993
1957
|
amount: u128;
|
|
@@ -2001,10 +1965,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2001
1965
|
/**
|
|
2002
1966
|
* Some balance was reserved (moved from free to reserved).
|
|
2003
1967
|
**/
|
|
2004
|
-
Reserved: AugmentedEvent<ApiType, [
|
|
2005
|
-
who: AccountId32,
|
|
2006
|
-
amount: u128
|
|
2007
|
-
], {
|
|
1968
|
+
Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
2008
1969
|
who: AccountId32;
|
|
2009
1970
|
amount: u128;
|
|
2010
1971
|
}>;
|
|
@@ -2012,12 +1973,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2012
1973
|
* Some balance was moved from the reserve of the first account to the second account.
|
|
2013
1974
|
* Final argument indicates the destination balance type.
|
|
2014
1975
|
**/
|
|
2015
|
-
ReserveRepatriated: AugmentedEvent<ApiType, [
|
|
2016
|
-
from: AccountId32,
|
|
2017
|
-
to: AccountId32,
|
|
2018
|
-
amount: u128,
|
|
2019
|
-
destinationStatus: FrameSupportTokensMiscBalanceStatus
|
|
2020
|
-
], {
|
|
1976
|
+
ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], {
|
|
2021
1977
|
from: AccountId32;
|
|
2022
1978
|
to: AccountId32;
|
|
2023
1979
|
amount: u128;
|
|
@@ -2026,61 +1982,42 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2026
1982
|
/**
|
|
2027
1983
|
* Some amount was restored into an account.
|
|
2028
1984
|
**/
|
|
2029
|
-
Restored: AugmentedEvent<ApiType, [
|
|
2030
|
-
who: AccountId32,
|
|
2031
|
-
amount: u128
|
|
2032
|
-
], {
|
|
1985
|
+
Restored: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
2033
1986
|
who: AccountId32;
|
|
2034
1987
|
amount: u128;
|
|
2035
1988
|
}>;
|
|
2036
1989
|
/**
|
|
2037
1990
|
* Some amount was removed from the account (e.g. for misbehavior).
|
|
2038
1991
|
**/
|
|
2039
|
-
Slashed: AugmentedEvent<ApiType, [
|
|
2040
|
-
who: AccountId32,
|
|
2041
|
-
amount: u128
|
|
2042
|
-
], {
|
|
1992
|
+
Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
2043
1993
|
who: AccountId32;
|
|
2044
1994
|
amount: u128;
|
|
2045
1995
|
}>;
|
|
2046
1996
|
/**
|
|
2047
1997
|
* Some amount was suspended from an account (it can be restored later).
|
|
2048
1998
|
**/
|
|
2049
|
-
Suspended: AugmentedEvent<ApiType, [
|
|
2050
|
-
who: AccountId32,
|
|
2051
|
-
amount: u128
|
|
2052
|
-
], {
|
|
1999
|
+
Suspended: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
2053
2000
|
who: AccountId32;
|
|
2054
2001
|
amount: u128;
|
|
2055
2002
|
}>;
|
|
2056
2003
|
/**
|
|
2057
2004
|
* Some balance was thawed.
|
|
2058
2005
|
**/
|
|
2059
|
-
Thawed: AugmentedEvent<ApiType, [
|
|
2060
|
-
who: AccountId32,
|
|
2061
|
-
amount: u128
|
|
2062
|
-
], {
|
|
2006
|
+
Thawed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
2063
2007
|
who: AccountId32;
|
|
2064
2008
|
amount: u128;
|
|
2065
2009
|
}>;
|
|
2066
2010
|
/**
|
|
2067
2011
|
* The `TotalIssuance` was forcefully changed.
|
|
2068
2012
|
**/
|
|
2069
|
-
TotalIssuanceForced: AugmentedEvent<ApiType, [
|
|
2070
|
-
old: u128,
|
|
2071
|
-
new_: u128
|
|
2072
|
-
], {
|
|
2013
|
+
TotalIssuanceForced: AugmentedEvent<ApiType, [old: u128, new_: u128], {
|
|
2073
2014
|
old: u128;
|
|
2074
2015
|
new_: u128;
|
|
2075
2016
|
}>;
|
|
2076
2017
|
/**
|
|
2077
2018
|
* Transfer succeeded.
|
|
2078
2019
|
**/
|
|
2079
|
-
Transfer: AugmentedEvent<ApiType, [
|
|
2080
|
-
from: AccountId32,
|
|
2081
|
-
to: AccountId32,
|
|
2082
|
-
amount: u128
|
|
2083
|
-
], {
|
|
2020
|
+
Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], {
|
|
2084
2021
|
from: AccountId32;
|
|
2085
2022
|
to: AccountId32;
|
|
2086
2023
|
amount: u128;
|
|
@@ -2088,12 +2025,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2088
2025
|
/**
|
|
2089
2026
|
* The `transferred` balance is placed on hold at the `dest` account.
|
|
2090
2027
|
**/
|
|
2091
|
-
TransferAndHold: AugmentedEvent<ApiType, [
|
|
2092
|
-
reason: ArgonRuntimeRuntimeHoldReason,
|
|
2093
|
-
source: AccountId32,
|
|
2094
|
-
dest: AccountId32,
|
|
2095
|
-
transferred: u128
|
|
2096
|
-
], {
|
|
2028
|
+
TransferAndHold: AugmentedEvent<ApiType, [reason: ArgonRuntimeRuntimeHoldReason, source: AccountId32, dest: AccountId32, transferred: u128], {
|
|
2097
2029
|
reason: ArgonRuntimeRuntimeHoldReason;
|
|
2098
2030
|
source: AccountId32;
|
|
2099
2031
|
dest: AccountId32;
|
|
@@ -2102,12 +2034,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2102
2034
|
/**
|
|
2103
2035
|
* A transfer of `amount` on hold from `source` to `dest` was initiated.
|
|
2104
2036
|
**/
|
|
2105
|
-
TransferOnHold: AugmentedEvent<ApiType, [
|
|
2106
|
-
reason: ArgonRuntimeRuntimeHoldReason,
|
|
2107
|
-
source: AccountId32,
|
|
2108
|
-
dest: AccountId32,
|
|
2109
|
-
amount: u128
|
|
2110
|
-
], {
|
|
2037
|
+
TransferOnHold: AugmentedEvent<ApiType, [reason: ArgonRuntimeRuntimeHoldReason, source: AccountId32, dest: AccountId32, amount: u128], {
|
|
2111
2038
|
reason: ArgonRuntimeRuntimeHoldReason;
|
|
2112
2039
|
source: AccountId32;
|
|
2113
2040
|
dest: AccountId32;
|
|
@@ -2120,20 +2047,14 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2120
2047
|
/**
|
|
2121
2048
|
* Some balance was unlocked.
|
|
2122
2049
|
**/
|
|
2123
|
-
Unlocked: AugmentedEvent<ApiType, [
|
|
2124
|
-
who: AccountId32,
|
|
2125
|
-
amount: u128
|
|
2126
|
-
], {
|
|
2050
|
+
Unlocked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
2127
2051
|
who: AccountId32;
|
|
2128
2052
|
amount: u128;
|
|
2129
2053
|
}>;
|
|
2130
2054
|
/**
|
|
2131
2055
|
* Some balance was unreserved (moved from reserved to free).
|
|
2132
2056
|
**/
|
|
2133
|
-
Unreserved: AugmentedEvent<ApiType, [
|
|
2134
|
-
who: AccountId32,
|
|
2135
|
-
amount: u128
|
|
2136
|
-
], {
|
|
2057
|
+
Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
2137
2058
|
who: AccountId32;
|
|
2138
2059
|
amount: u128;
|
|
2139
2060
|
}>;
|
|
@@ -2146,44 +2067,24 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2146
2067
|
/**
|
|
2147
2068
|
* Some amount was withdrawn from the account (e.g. for transaction fees).
|
|
2148
2069
|
**/
|
|
2149
|
-
Withdraw: AugmentedEvent<ApiType, [
|
|
2150
|
-
who: AccountId32,
|
|
2151
|
-
amount: u128
|
|
2152
|
-
], {
|
|
2070
|
+
Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
2153
2071
|
who: AccountId32;
|
|
2154
2072
|
amount: u128;
|
|
2155
2073
|
}>;
|
|
2156
2074
|
};
|
|
2157
2075
|
bitcoinLocks: {
|
|
2158
|
-
BitcoinCosignPastDue: AugmentedEvent<ApiType, [
|
|
2159
|
-
utxoId: u64,
|
|
2160
|
-
vaultId: u32,
|
|
2161
|
-
compensationAmount: u128,
|
|
2162
|
-
compensatedAccountId: AccountId32
|
|
2163
|
-
], {
|
|
2076
|
+
BitcoinCosignPastDue: AugmentedEvent<ApiType, [utxoId: u64, vaultId: u32, compensationAmount: u128, compensatedAccountId: AccountId32], {
|
|
2164
2077
|
utxoId: u64;
|
|
2165
2078
|
vaultId: u32;
|
|
2166
2079
|
compensationAmount: u128;
|
|
2167
2080
|
compensatedAccountId: AccountId32;
|
|
2168
2081
|
}>;
|
|
2169
|
-
BitcoinLockBurned: AugmentedEvent<ApiType, [
|
|
2170
|
-
utxoId: u64,
|
|
2171
|
-
vaultId: u32,
|
|
2172
|
-
wasUtxoSpent: bool
|
|
2173
|
-
], {
|
|
2082
|
+
BitcoinLockBurned: AugmentedEvent<ApiType, [utxoId: u64, vaultId: u32, wasUtxoSpent: bool], {
|
|
2174
2083
|
utxoId: u64;
|
|
2175
2084
|
vaultId: u32;
|
|
2176
2085
|
wasUtxoSpent: bool;
|
|
2177
2086
|
}>;
|
|
2178
|
-
BitcoinLockCreated: AugmentedEvent<ApiType, [
|
|
2179
|
-
utxoId: u64,
|
|
2180
|
-
vaultId: u32,
|
|
2181
|
-
liquidityPromised: u128,
|
|
2182
|
-
securitization: u128,
|
|
2183
|
-
lockedTargetPrice: u128,
|
|
2184
|
-
accountId: AccountId32,
|
|
2185
|
-
securityFee: u128
|
|
2186
|
-
], {
|
|
2087
|
+
BitcoinLockCreated: AugmentedEvent<ApiType, [utxoId: u64, vaultId: u32, liquidityPromised: u128, securitization: u128, lockedTargetPrice: u128, accountId: AccountId32, securityFee: u128], {
|
|
2187
2088
|
utxoId: u64;
|
|
2188
2089
|
vaultId: u32;
|
|
2189
2090
|
liquidityPromised: u128;
|
|
@@ -2192,16 +2093,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2192
2093
|
accountId: AccountId32;
|
|
2193
2094
|
securityFee: u128;
|
|
2194
2095
|
}>;
|
|
2195
|
-
BitcoinLockRatcheted: AugmentedEvent<ApiType, [
|
|
2196
|
-
utxoId: u64,
|
|
2197
|
-
vaultId: u32,
|
|
2198
|
-
liquidityPromised: u128,
|
|
2199
|
-
oldTargetPrice: u128,
|
|
2200
|
-
securityFee: u128,
|
|
2201
|
-
newTargetPrice: u128,
|
|
2202
|
-
amountBurned: u128,
|
|
2203
|
-
accountId: AccountId32
|
|
2204
|
-
], {
|
|
2096
|
+
BitcoinLockRatcheted: AugmentedEvent<ApiType, [utxoId: u64, vaultId: u32, liquidityPromised: u128, oldTargetPrice: u128, securityFee: u128, newTargetPrice: u128, amountBurned: u128, accountId: AccountId32], {
|
|
2205
2097
|
utxoId: u64;
|
|
2206
2098
|
vaultId: u32;
|
|
2207
2099
|
liquidityPromised: u128;
|
|
@@ -2211,101 +2103,59 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2211
2103
|
amountBurned: u128;
|
|
2212
2104
|
accountId: AccountId32;
|
|
2213
2105
|
}>;
|
|
2214
|
-
BitcoinSpentAfterRelease: AugmentedEvent<ApiType, [
|
|
2215
|
-
utxoId: u64,
|
|
2216
|
-
vaultId: u32
|
|
2217
|
-
], {
|
|
2106
|
+
BitcoinSpentAfterRelease: AugmentedEvent<ApiType, [utxoId: u64, vaultId: u32], {
|
|
2218
2107
|
utxoId: u64;
|
|
2219
2108
|
vaultId: u32;
|
|
2220
2109
|
}>;
|
|
2221
|
-
BitcoinUtxoCosigned: AugmentedEvent<ApiType, [
|
|
2222
|
-
utxoId: u64,
|
|
2223
|
-
vaultId: u32,
|
|
2224
|
-
signature: Bytes
|
|
2225
|
-
], {
|
|
2110
|
+
BitcoinUtxoCosigned: AugmentedEvent<ApiType, [utxoId: u64, vaultId: u32, signature: Bytes], {
|
|
2226
2111
|
utxoId: u64;
|
|
2227
2112
|
vaultId: u32;
|
|
2228
2113
|
signature: Bytes;
|
|
2229
2114
|
}>;
|
|
2230
|
-
BitcoinUtxoCosignRequested: AugmentedEvent<ApiType, [
|
|
2231
|
-
utxoId: u64,
|
|
2232
|
-
vaultId: u32
|
|
2233
|
-
], {
|
|
2115
|
+
BitcoinUtxoCosignRequested: AugmentedEvent<ApiType, [utxoId: u64, vaultId: u32], {
|
|
2234
2116
|
utxoId: u64;
|
|
2235
2117
|
vaultId: u32;
|
|
2236
2118
|
}>;
|
|
2237
2119
|
/**
|
|
2238
2120
|
* An error occurred while refunding an overdue cosigned bitcoin lock
|
|
2239
2121
|
**/
|
|
2240
|
-
CosignOverdueError: AugmentedEvent<ApiType, [
|
|
2241
|
-
utxoId: u64,
|
|
2242
|
-
error: SpRuntimeDispatchError
|
|
2243
|
-
], {
|
|
2122
|
+
CosignOverdueError: AugmentedEvent<ApiType, [utxoId: u64, error: SpRuntimeDispatchError], {
|
|
2244
2123
|
utxoId: u64;
|
|
2245
2124
|
error: SpRuntimeDispatchError;
|
|
2246
2125
|
}>;
|
|
2247
2126
|
/**
|
|
2248
2127
|
* An error occurred while completing a lock
|
|
2249
2128
|
**/
|
|
2250
|
-
LockExpirationError: AugmentedEvent<ApiType, [
|
|
2251
|
-
utxoId: u64,
|
|
2252
|
-
error: SpRuntimeDispatchError
|
|
2253
|
-
], {
|
|
2129
|
+
LockExpirationError: AugmentedEvent<ApiType, [utxoId: u64, error: SpRuntimeDispatchError], {
|
|
2254
2130
|
utxoId: u64;
|
|
2255
2131
|
error: SpRuntimeDispatchError;
|
|
2256
2132
|
}>;
|
|
2257
|
-
OrphanedUtxoCosigned: AugmentedEvent<ApiType, [
|
|
2258
|
-
utxoId: u64,
|
|
2259
|
-
utxoRef: ArgonPrimitivesBitcoinUtxoRef,
|
|
2260
|
-
vaultId: u32,
|
|
2261
|
-
accountId: AccountId32,
|
|
2262
|
-
signature: Bytes
|
|
2263
|
-
], {
|
|
2133
|
+
OrphanedUtxoCosigned: AugmentedEvent<ApiType, [utxoId: u64, utxoRef: ArgonPrimitivesBitcoinUtxoRef, vaultId: u32, accountId: AccountId32, signature: Bytes], {
|
|
2264
2134
|
utxoId: u64;
|
|
2265
2135
|
utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
2266
2136
|
vaultId: u32;
|
|
2267
2137
|
accountId: AccountId32;
|
|
2268
2138
|
signature: Bytes;
|
|
2269
2139
|
}>;
|
|
2270
|
-
OrphanedUtxoReceived: AugmentedEvent<ApiType, [
|
|
2271
|
-
utxoId: u64,
|
|
2272
|
-
utxoRef: ArgonPrimitivesBitcoinUtxoRef,
|
|
2273
|
-
vaultId: u32,
|
|
2274
|
-
satoshis: u64
|
|
2275
|
-
], {
|
|
2140
|
+
OrphanedUtxoReceived: AugmentedEvent<ApiType, [utxoId: u64, utxoRef: ArgonPrimitivesBitcoinUtxoRef, vaultId: u32, satoshis: u64], {
|
|
2276
2141
|
utxoId: u64;
|
|
2277
2142
|
utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
2278
2143
|
vaultId: u32;
|
|
2279
2144
|
satoshis: u64;
|
|
2280
2145
|
}>;
|
|
2281
|
-
OrphanedUtxoReleaseRequested: AugmentedEvent<ApiType, [
|
|
2282
|
-
utxoId: u64,
|
|
2283
|
-
utxoRef: ArgonPrimitivesBitcoinUtxoRef,
|
|
2284
|
-
vaultId: u32,
|
|
2285
|
-
accountId: AccountId32
|
|
2286
|
-
], {
|
|
2146
|
+
OrphanedUtxoReleaseRequested: AugmentedEvent<ApiType, [utxoId: u64, utxoRef: ArgonPrimitivesBitcoinUtxoRef, vaultId: u32, accountId: AccountId32], {
|
|
2287
2147
|
utxoId: u64;
|
|
2288
2148
|
utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
2289
2149
|
vaultId: u32;
|
|
2290
2150
|
accountId: AccountId32;
|
|
2291
2151
|
}>;
|
|
2292
|
-
SecuritizationIncreased: AugmentedEvent<ApiType, [
|
|
2293
|
-
utxoId: u64,
|
|
2294
|
-
vaultId: u32,
|
|
2295
|
-
newSatoshis: u64,
|
|
2296
|
-
accountId: AccountId32
|
|
2297
|
-
], {
|
|
2152
|
+
SecuritizationIncreased: AugmentedEvent<ApiType, [utxoId: u64, vaultId: u32, newSatoshis: u64, accountId: AccountId32], {
|
|
2298
2153
|
utxoId: u64;
|
|
2299
2154
|
vaultId: u32;
|
|
2300
2155
|
newSatoshis: u64;
|
|
2301
2156
|
accountId: AccountId32;
|
|
2302
2157
|
}>;
|
|
2303
|
-
UtxoFundedFromCandidate: AugmentedEvent<ApiType, [
|
|
2304
|
-
utxoId: u64,
|
|
2305
|
-
utxoRef: ArgonPrimitivesBitcoinUtxoRef,
|
|
2306
|
-
vaultId: u32,
|
|
2307
|
-
accountId: AccountId32
|
|
2308
|
-
], {
|
|
2158
|
+
UtxoFundedFromCandidate: AugmentedEvent<ApiType, [utxoId: u64, utxoRef: ArgonPrimitivesBitcoinUtxoRef, vaultId: u32, accountId: AccountId32], {
|
|
2309
2159
|
utxoId: u64;
|
|
2310
2160
|
utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
2311
2161
|
vaultId: u32;
|
|
@@ -2313,68 +2163,41 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2313
2163
|
}>;
|
|
2314
2164
|
};
|
|
2315
2165
|
bitcoinUtxos: {
|
|
2316
|
-
UtxoRejected: AugmentedEvent<ApiType, [
|
|
2317
|
-
utxoId: u64,
|
|
2318
|
-
utxoRef: ArgonPrimitivesBitcoinUtxoRef,
|
|
2319
|
-
rejectedReason: ArgonPrimitivesBitcoinBitcoinRejectedReason,
|
|
2320
|
-
satoshisReceived: u64
|
|
2321
|
-
], {
|
|
2166
|
+
UtxoRejected: AugmentedEvent<ApiType, [utxoId: u64, utxoRef: ArgonPrimitivesBitcoinUtxoRef, rejectedReason: ArgonPrimitivesBitcoinBitcoinRejectedReason, satoshisReceived: u64], {
|
|
2322
2167
|
utxoId: u64;
|
|
2323
2168
|
utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
2324
2169
|
rejectedReason: ArgonPrimitivesBitcoinBitcoinRejectedReason;
|
|
2325
2170
|
satoshisReceived: u64;
|
|
2326
2171
|
}>;
|
|
2327
|
-
UtxoRejectedError: AugmentedEvent<ApiType, [
|
|
2328
|
-
utxoId: u64,
|
|
2329
|
-
error: SpRuntimeDispatchError
|
|
2330
|
-
], {
|
|
2172
|
+
UtxoRejectedError: AugmentedEvent<ApiType, [utxoId: u64, error: SpRuntimeDispatchError], {
|
|
2331
2173
|
utxoId: u64;
|
|
2332
2174
|
error: SpRuntimeDispatchError;
|
|
2333
2175
|
}>;
|
|
2334
|
-
UtxoSpent: AugmentedEvent<ApiType, [
|
|
2335
|
-
utxoId: u64,
|
|
2336
|
-
blockHeight: u64
|
|
2337
|
-
], {
|
|
2176
|
+
UtxoSpent: AugmentedEvent<ApiType, [utxoId: u64, blockHeight: u64], {
|
|
2338
2177
|
utxoId: u64;
|
|
2339
2178
|
blockHeight: u64;
|
|
2340
2179
|
}>;
|
|
2341
|
-
UtxoSpentError: AugmentedEvent<ApiType, [
|
|
2342
|
-
utxoId: u64,
|
|
2343
|
-
error: SpRuntimeDispatchError
|
|
2344
|
-
], {
|
|
2180
|
+
UtxoSpentError: AugmentedEvent<ApiType, [utxoId: u64, error: SpRuntimeDispatchError], {
|
|
2345
2181
|
utxoId: u64;
|
|
2346
2182
|
error: SpRuntimeDispatchError;
|
|
2347
2183
|
}>;
|
|
2348
2184
|
UtxoUnwatched: AugmentedEvent<ApiType, [utxoId: u64], {
|
|
2349
2185
|
utxoId: u64;
|
|
2350
2186
|
}>;
|
|
2351
|
-
UtxoVerified: AugmentedEvent<ApiType, [
|
|
2352
|
-
utxoId: u64,
|
|
2353
|
-
satoshisReceived: u64
|
|
2354
|
-
], {
|
|
2187
|
+
UtxoVerified: AugmentedEvent<ApiType, [utxoId: u64, satoshisReceived: u64], {
|
|
2355
2188
|
utxoId: u64;
|
|
2356
2189
|
satoshisReceived: u64;
|
|
2357
2190
|
}>;
|
|
2358
|
-
UtxoVerifiedError: AugmentedEvent<ApiType, [
|
|
2359
|
-
utxoId: u64,
|
|
2360
|
-
error: SpRuntimeDispatchError
|
|
2361
|
-
], {
|
|
2191
|
+
UtxoVerifiedError: AugmentedEvent<ApiType, [utxoId: u64, error: SpRuntimeDispatchError], {
|
|
2362
2192
|
utxoId: u64;
|
|
2363
2193
|
error: SpRuntimeDispatchError;
|
|
2364
2194
|
}>;
|
|
2365
2195
|
};
|
|
2366
2196
|
blockRewards: {
|
|
2367
|
-
RewardCreated: AugmentedEvent<ApiType, [
|
|
2368
|
-
rewards: Vec<ArgonPrimitivesBlockSealBlockPayout>
|
|
2369
|
-
], {
|
|
2197
|
+
RewardCreated: AugmentedEvent<ApiType, [rewards: Vec<ArgonPrimitivesBlockSealBlockPayout>], {
|
|
2370
2198
|
rewards: Vec<ArgonPrimitivesBlockSealBlockPayout>;
|
|
2371
2199
|
}>;
|
|
2372
|
-
RewardCreateError: AugmentedEvent<ApiType, [
|
|
2373
|
-
accountId: AccountId32,
|
|
2374
|
-
argons: Option<u128>,
|
|
2375
|
-
ownership: Option<u128>,
|
|
2376
|
-
error: SpRuntimeDispatchError
|
|
2377
|
-
], {
|
|
2200
|
+
RewardCreateError: AugmentedEvent<ApiType, [accountId: AccountId32, argons: Option<u128>, ownership: Option<u128>, error: SpRuntimeDispatchError], {
|
|
2378
2201
|
accountId: AccountId32;
|
|
2379
2202
|
argons: Option<u128>;
|
|
2380
2203
|
ownership: Option<u128>;
|
|
@@ -2382,23 +2205,13 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2382
2205
|
}>;
|
|
2383
2206
|
};
|
|
2384
2207
|
blockSealSpec: {
|
|
2385
|
-
ComputeDifficultyAdjusted: AugmentedEvent<ApiType, [
|
|
2386
|
-
expectedBlockTime: u64,
|
|
2387
|
-
actualBlockTime: u64,
|
|
2388
|
-
startDifficulty: u128,
|
|
2389
|
-
newDifficulty: u128
|
|
2390
|
-
], {
|
|
2208
|
+
ComputeDifficultyAdjusted: AugmentedEvent<ApiType, [expectedBlockTime: u64, actualBlockTime: u64, startDifficulty: u128, newDifficulty: u128], {
|
|
2391
2209
|
expectedBlockTime: u64;
|
|
2392
2210
|
actualBlockTime: u64;
|
|
2393
2211
|
startDifficulty: u128;
|
|
2394
2212
|
newDifficulty: u128;
|
|
2395
2213
|
}>;
|
|
2396
|
-
VoteMinimumAdjusted: AugmentedEvent<ApiType, [
|
|
2397
|
-
expectedBlockVotes: u128,
|
|
2398
|
-
actualBlockVotes: u128,
|
|
2399
|
-
startVoteMinimum: u128,
|
|
2400
|
-
newVoteMinimum: u128
|
|
2401
|
-
], {
|
|
2214
|
+
VoteMinimumAdjusted: AugmentedEvent<ApiType, [expectedBlockVotes: u128, actualBlockVotes: u128, startVoteMinimum: u128, newVoteMinimum: u128], {
|
|
2402
2215
|
expectedBlockVotes: u128;
|
|
2403
2216
|
actualBlockVotes: u128;
|
|
2404
2217
|
startVoteMinimum: u128;
|
|
@@ -2409,10 +2222,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2409
2222
|
/**
|
|
2410
2223
|
* An inbound burn notice was accepted and settled locally.
|
|
2411
2224
|
**/
|
|
2412
|
-
BurnNoticeAccepted: AugmentedEvent<ApiType, [
|
|
2413
|
-
sourceChain: PalletCrosschainTransferSourceChain,
|
|
2414
|
-
notice: PalletCrosschainTransferBurnNotice
|
|
2415
|
-
], {
|
|
2225
|
+
BurnNoticeAccepted: AugmentedEvent<ApiType, [sourceChain: PalletCrosschainTransferSourceChain, notice: PalletCrosschainTransferBurnNotice], {
|
|
2416
2226
|
sourceChain: PalletCrosschainTransferSourceChain;
|
|
2417
2227
|
notice: PalletCrosschainTransferBurnNotice;
|
|
2418
2228
|
}>;
|
|
@@ -2428,10 +2238,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2428
2238
|
/**
|
|
2429
2239
|
* A domain was registered
|
|
2430
2240
|
**/
|
|
2431
|
-
DomainRegistered: AugmentedEvent<ApiType, [
|
|
2432
|
-
domainHash: H256,
|
|
2433
|
-
registration: PalletDomainsDomainRegistration
|
|
2434
|
-
], {
|
|
2241
|
+
DomainRegistered: AugmentedEvent<ApiType, [domainHash: H256, registration: PalletDomainsDomainRegistration], {
|
|
2435
2242
|
domainHash: H256;
|
|
2436
2243
|
registration: PalletDomainsDomainRegistration;
|
|
2437
2244
|
}>;
|
|
@@ -2439,21 +2246,14 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2439
2246
|
* A domain registration was canceled due to a conflicting registration in the same
|
|
2440
2247
|
* tick
|
|
2441
2248
|
**/
|
|
2442
|
-
DomainRegistrationCanceled: AugmentedEvent<ApiType, [
|
|
2443
|
-
domainHash: H256,
|
|
2444
|
-
registration: PalletDomainsDomainRegistration
|
|
2445
|
-
], {
|
|
2249
|
+
DomainRegistrationCanceled: AugmentedEvent<ApiType, [domainHash: H256, registration: PalletDomainsDomainRegistration], {
|
|
2446
2250
|
domainHash: H256;
|
|
2447
2251
|
registration: PalletDomainsDomainRegistration;
|
|
2448
2252
|
}>;
|
|
2449
2253
|
/**
|
|
2450
2254
|
* A domain registration failed due to an error
|
|
2451
2255
|
**/
|
|
2452
|
-
DomainRegistrationError: AugmentedEvent<ApiType, [
|
|
2453
|
-
domainHash: H256,
|
|
2454
|
-
accountId: AccountId32,
|
|
2455
|
-
error: SpRuntimeDispatchError
|
|
2456
|
-
], {
|
|
2256
|
+
DomainRegistrationError: AugmentedEvent<ApiType, [domainHash: H256, accountId: AccountId32, error: SpRuntimeDispatchError], {
|
|
2457
2257
|
domainHash: H256;
|
|
2458
2258
|
accountId: AccountId32;
|
|
2459
2259
|
error: SpRuntimeDispatchError;
|
|
@@ -2467,35 +2267,24 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2467
2267
|
/**
|
|
2468
2268
|
* A domain zone record was updated
|
|
2469
2269
|
**/
|
|
2470
|
-
ZoneRecordUpdated: AugmentedEvent<ApiType, [
|
|
2471
|
-
domainHash: H256,
|
|
2472
|
-
zoneRecord: ArgonPrimitivesDomainZoneRecord
|
|
2473
|
-
], {
|
|
2270
|
+
ZoneRecordUpdated: AugmentedEvent<ApiType, [domainHash: H256, zoneRecord: ArgonPrimitivesDomainZoneRecord], {
|
|
2474
2271
|
domainHash: H256;
|
|
2475
2272
|
zoneRecord: ArgonPrimitivesDomainZoneRecord;
|
|
2476
2273
|
}>;
|
|
2477
2274
|
};
|
|
2478
2275
|
ethereumVerifier: {
|
|
2479
|
-
BeaconHeaderImported: AugmentedEvent<ApiType, [
|
|
2480
|
-
blockHash: H256,
|
|
2481
|
-
slot: u64
|
|
2482
|
-
], {
|
|
2276
|
+
BeaconHeaderImported: AugmentedEvent<ApiType, [blockHash: H256, slot: u64], {
|
|
2483
2277
|
blockHash: H256;
|
|
2484
2278
|
slot: u64;
|
|
2485
2279
|
}>;
|
|
2486
|
-
ExecutionHeaderAnchorImported: AugmentedEvent<ApiType, [
|
|
2487
|
-
blockHash: H256,
|
|
2488
|
-
blockNumber: u64
|
|
2489
|
-
], {
|
|
2280
|
+
ExecutionHeaderAnchorImported: AugmentedEvent<ApiType, [blockHash: H256, blockNumber: u64], {
|
|
2490
2281
|
blockHash: H256;
|
|
2491
2282
|
blockNumber: u64;
|
|
2492
2283
|
}>;
|
|
2493
2284
|
/**
|
|
2494
2285
|
* Set OperatingMode
|
|
2495
2286
|
**/
|
|
2496
|
-
OperatingModeChanged: AugmentedEvent<ApiType, [
|
|
2497
|
-
mode: PalletEthereumVerifierBasicOperatingMode
|
|
2498
|
-
], {
|
|
2287
|
+
OperatingModeChanged: AugmentedEvent<ApiType, [mode: PalletEthereumVerifierBasicOperatingMode], {
|
|
2499
2288
|
mode: PalletEthereumVerifierBasicOperatingMode;
|
|
2500
2289
|
}>;
|
|
2501
2290
|
SyncCommitteeUpdated: AugmentedEvent<ApiType, [period: u64], {
|
|
@@ -2506,11 +2295,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2506
2295
|
/**
|
|
2507
2296
|
* A transaction fee was delegated
|
|
2508
2297
|
**/
|
|
2509
|
-
FeeDelegated: AugmentedEvent<ApiType, [
|
|
2510
|
-
origin: ArgonRuntimeOriginCaller,
|
|
2511
|
-
from: AccountId32,
|
|
2512
|
-
to: AccountId32
|
|
2513
|
-
], {
|
|
2298
|
+
FeeDelegated: AugmentedEvent<ApiType, [origin: ArgonRuntimeOriginCaller, from: AccountId32, to: AccountId32], {
|
|
2514
2299
|
origin: ArgonRuntimeOriginCaller;
|
|
2515
2300
|
from: AccountId32;
|
|
2516
2301
|
to: AccountId32;
|
|
@@ -2518,9 +2303,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2518
2303
|
/**
|
|
2519
2304
|
* A transaction fee was skipped.
|
|
2520
2305
|
**/
|
|
2521
|
-
FeeSkipped: AugmentedEvent<ApiType, [
|
|
2522
|
-
origin: ArgonRuntimeOriginCaller
|
|
2523
|
-
], {
|
|
2306
|
+
FeeSkipped: AugmentedEvent<ApiType, [origin: ArgonRuntimeOriginCaller], {
|
|
2524
2307
|
origin: ArgonRuntimeOriginCaller;
|
|
2525
2308
|
}>;
|
|
2526
2309
|
};
|
|
@@ -2528,9 +2311,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2528
2311
|
/**
|
|
2529
2312
|
* New authority set has been applied.
|
|
2530
2313
|
**/
|
|
2531
|
-
NewAuthorities: AugmentedEvent<ApiType, [
|
|
2532
|
-
authoritySet: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>
|
|
2533
|
-
], {
|
|
2314
|
+
NewAuthorities: AugmentedEvent<ApiType, [authoritySet: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>], {
|
|
2534
2315
|
authoritySet: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
|
|
2535
2316
|
}>;
|
|
2536
2317
|
/**
|
|
@@ -2547,11 +2328,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2547
2328
|
* A localchain transfer could not be cleaned up properly. Possible invalid transfer
|
|
2548
2329
|
* needing investigation.
|
|
2549
2330
|
**/
|
|
2550
|
-
PossibleInvalidLocalchainTransferAllowed: AugmentedEvent<ApiType, [
|
|
2551
|
-
transferId: u32,
|
|
2552
|
-
notaryId: u32,
|
|
2553
|
-
notebookNumber: u32
|
|
2554
|
-
], {
|
|
2331
|
+
PossibleInvalidLocalchainTransferAllowed: AugmentedEvent<ApiType, [transferId: u32, notaryId: u32, notebookNumber: u32], {
|
|
2555
2332
|
transferId: u32;
|
|
2556
2333
|
notaryId: u32;
|
|
2557
2334
|
notebookNumber: u32;
|
|
@@ -2559,12 +2336,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2559
2336
|
/**
|
|
2560
2337
|
* Taxation failed
|
|
2561
2338
|
**/
|
|
2562
|
-
TaxationError: AugmentedEvent<ApiType, [
|
|
2563
|
-
notaryId: u32,
|
|
2564
|
-
notebookNumber: u32,
|
|
2565
|
-
tax: u128,
|
|
2566
|
-
error: SpRuntimeDispatchError
|
|
2567
|
-
], {
|
|
2339
|
+
TaxationError: AugmentedEvent<ApiType, [notaryId: u32, notebookNumber: u32, tax: u128, error: SpRuntimeDispatchError], {
|
|
2568
2340
|
notaryId: u32;
|
|
2569
2341
|
notebookNumber: u32;
|
|
2570
2342
|
tax: u128;
|
|
@@ -2573,11 +2345,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2573
2345
|
/**
|
|
2574
2346
|
* Transfer from Localchain to Mainchain
|
|
2575
2347
|
**/
|
|
2576
|
-
TransferFromLocalchain: AugmentedEvent<ApiType, [
|
|
2577
|
-
accountId: AccountId32,
|
|
2578
|
-
amount: u128,
|
|
2579
|
-
notaryId: u32
|
|
2580
|
-
], {
|
|
2348
|
+
TransferFromLocalchain: AugmentedEvent<ApiType, [accountId: AccountId32, amount: u128, notaryId: u32], {
|
|
2581
2349
|
accountId: AccountId32;
|
|
2582
2350
|
amount: u128;
|
|
2583
2351
|
notaryId: u32;
|
|
@@ -2585,13 +2353,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2585
2353
|
/**
|
|
2586
2354
|
* A transfer into the mainchain failed
|
|
2587
2355
|
**/
|
|
2588
|
-
TransferFromLocalchainError: AugmentedEvent<ApiType, [
|
|
2589
|
-
accountId: AccountId32,
|
|
2590
|
-
amount: u128,
|
|
2591
|
-
notaryId: u32,
|
|
2592
|
-
notebookNumber: u32,
|
|
2593
|
-
error: SpRuntimeDispatchError
|
|
2594
|
-
], {
|
|
2356
|
+
TransferFromLocalchainError: AugmentedEvent<ApiType, [accountId: AccountId32, amount: u128, notaryId: u32, notebookNumber: u32, error: SpRuntimeDispatchError], {
|
|
2595
2357
|
accountId: AccountId32;
|
|
2596
2358
|
amount: u128;
|
|
2597
2359
|
notaryId: u32;
|
|
@@ -2601,13 +2363,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2601
2363
|
/**
|
|
2602
2364
|
* Funds sent to a localchain
|
|
2603
2365
|
**/
|
|
2604
|
-
TransferToLocalchain: AugmentedEvent<ApiType, [
|
|
2605
|
-
accountId: AccountId32,
|
|
2606
|
-
amount: u128,
|
|
2607
|
-
transferId: u32,
|
|
2608
|
-
notaryId: u32,
|
|
2609
|
-
expirationTick: u64
|
|
2610
|
-
], {
|
|
2366
|
+
TransferToLocalchain: AugmentedEvent<ApiType, [accountId: AccountId32, amount: u128, transferId: u32, notaryId: u32, expirationTick: u64], {
|
|
2611
2367
|
accountId: AccountId32;
|
|
2612
2368
|
amount: u128;
|
|
2613
2369
|
transferId: u32;
|
|
@@ -2617,11 +2373,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2617
2373
|
/**
|
|
2618
2374
|
* Transfer to localchain expired and rolled back
|
|
2619
2375
|
**/
|
|
2620
|
-
TransferToLocalchainExpired: AugmentedEvent<ApiType, [
|
|
2621
|
-
accountId: AccountId32,
|
|
2622
|
-
transferId: u32,
|
|
2623
|
-
notaryId: u32
|
|
2624
|
-
], {
|
|
2376
|
+
TransferToLocalchainExpired: AugmentedEvent<ApiType, [accountId: AccountId32, transferId: u32, notaryId: u32], {
|
|
2625
2377
|
accountId: AccountId32;
|
|
2626
2378
|
transferId: u32;
|
|
2627
2379
|
notaryId: u32;
|
|
@@ -2629,13 +2381,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2629
2381
|
/**
|
|
2630
2382
|
* An expired transfer to localchain failed to be refunded
|
|
2631
2383
|
**/
|
|
2632
|
-
TransferToLocalchainRefundError: AugmentedEvent<ApiType, [
|
|
2633
|
-
accountId: AccountId32,
|
|
2634
|
-
transferId: u32,
|
|
2635
|
-
notaryId: u32,
|
|
2636
|
-
notebookNumber: u32,
|
|
2637
|
-
error: SpRuntimeDispatchError
|
|
2638
|
-
], {
|
|
2384
|
+
TransferToLocalchainRefundError: AugmentedEvent<ApiType, [accountId: AccountId32, transferId: u32, notaryId: u32, notebookNumber: u32, error: SpRuntimeDispatchError], {
|
|
2639
2385
|
accountId: AccountId32;
|
|
2640
2386
|
transferId: u32;
|
|
2641
2387
|
notaryId: u32;
|
|
@@ -2650,51 +2396,30 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2650
2396
|
MiningBidsClosed: AugmentedEvent<ApiType, [frameId: u64], {
|
|
2651
2397
|
frameId: u64;
|
|
2652
2398
|
}>;
|
|
2653
|
-
MiningConfigurationUpdated: AugmentedEvent<ApiType, [
|
|
2654
|
-
ticksBeforeBidEndForVrfClose: u64,
|
|
2655
|
-
ticksBetweenSlots: u64,
|
|
2656
|
-
slotBiddingStartAfterTicks: u64
|
|
2657
|
-
], {
|
|
2399
|
+
MiningConfigurationUpdated: AugmentedEvent<ApiType, [ticksBeforeBidEndForVrfClose: u64, ticksBetweenSlots: u64, slotBiddingStartAfterTicks: u64], {
|
|
2658
2400
|
ticksBeforeBidEndForVrfClose: u64;
|
|
2659
2401
|
ticksBetweenSlots: u64;
|
|
2660
2402
|
slotBiddingStartAfterTicks: u64;
|
|
2661
2403
|
}>;
|
|
2662
|
-
NewMiners: AugmentedEvent<ApiType, [
|
|
2663
|
-
newMiners: Vec<ArgonPrimitivesBlockSealMiningRegistration>,
|
|
2664
|
-
releasedMiners: u32,
|
|
2665
|
-
frameId: u64
|
|
2666
|
-
], {
|
|
2404
|
+
NewMiners: AugmentedEvent<ApiType, [newMiners: Vec<ArgonPrimitivesBlockSealMiningRegistration>, releasedMiners: u32, frameId: u64], {
|
|
2667
2405
|
newMiners: Vec<ArgonPrimitivesBlockSealMiningRegistration>;
|
|
2668
2406
|
releasedMiners: u32;
|
|
2669
2407
|
frameId: u64;
|
|
2670
2408
|
}>;
|
|
2671
|
-
ReleaseBidError: AugmentedEvent<ApiType, [
|
|
2672
|
-
accountId: AccountId32,
|
|
2673
|
-
error: SpRuntimeDispatchError
|
|
2674
|
-
], {
|
|
2409
|
+
ReleaseBidError: AugmentedEvent<ApiType, [accountId: AccountId32, error: SpRuntimeDispatchError], {
|
|
2675
2410
|
accountId: AccountId32;
|
|
2676
2411
|
error: SpRuntimeDispatchError;
|
|
2677
2412
|
}>;
|
|
2678
|
-
ReleaseMinerSeatError: AugmentedEvent<ApiType, [
|
|
2679
|
-
accountId: AccountId32,
|
|
2680
|
-
error: SpRuntimeDispatchError
|
|
2681
|
-
], {
|
|
2413
|
+
ReleaseMinerSeatError: AugmentedEvent<ApiType, [accountId: AccountId32, error: SpRuntimeDispatchError], {
|
|
2682
2414
|
accountId: AccountId32;
|
|
2683
2415
|
error: SpRuntimeDispatchError;
|
|
2684
2416
|
}>;
|
|
2685
|
-
SlotBidderAdded: AugmentedEvent<ApiType, [
|
|
2686
|
-
accountId: AccountId32,
|
|
2687
|
-
bidAmount: u128,
|
|
2688
|
-
index: u32
|
|
2689
|
-
], {
|
|
2417
|
+
SlotBidderAdded: AugmentedEvent<ApiType, [accountId: AccountId32, bidAmount: u128, index: u32], {
|
|
2690
2418
|
accountId: AccountId32;
|
|
2691
2419
|
bidAmount: u128;
|
|
2692
2420
|
index: u32;
|
|
2693
2421
|
}>;
|
|
2694
|
-
SlotBidderDropped: AugmentedEvent<ApiType, [
|
|
2695
|
-
accountId: AccountId32,
|
|
2696
|
-
preservedArgonotHold: bool
|
|
2697
|
-
], {
|
|
2422
|
+
SlotBidderDropped: AugmentedEvent<ApiType, [accountId: AccountId32, preservedArgonotHold: bool], {
|
|
2698
2423
|
accountId: AccountId32;
|
|
2699
2424
|
preservedArgonotHold: bool;
|
|
2700
2425
|
}>;
|
|
@@ -2703,11 +2428,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2703
2428
|
/**
|
|
2704
2429
|
* Any bitcoins minted
|
|
2705
2430
|
**/
|
|
2706
|
-
BitcoinMint: AugmentedEvent<ApiType, [
|
|
2707
|
-
accountId: AccountId32,
|
|
2708
|
-
utxoId: Option<u64>,
|
|
2709
|
-
amount: u128
|
|
2710
|
-
], {
|
|
2431
|
+
BitcoinMint: AugmentedEvent<ApiType, [accountId: AccountId32, utxoId: Option<u64>, amount: u128], {
|
|
2711
2432
|
accountId: AccountId32;
|
|
2712
2433
|
utxoId: Option<u64>;
|
|
2713
2434
|
amount: u128;
|
|
@@ -2716,12 +2437,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2716
2437
|
* The amount of microgons minted for mining. NOTE: accounts below Existential Deposit
|
|
2717
2438
|
* will not be able to mint
|
|
2718
2439
|
**/
|
|
2719
|
-
MiningMint: AugmentedEvent<ApiType, [
|
|
2720
|
-
amount: u128,
|
|
2721
|
-
perMiner: u128,
|
|
2722
|
-
argonCpi: i128,
|
|
2723
|
-
liquidity: u128
|
|
2724
|
-
], {
|
|
2440
|
+
MiningMint: AugmentedEvent<ApiType, [amount: u128, perMiner: u128, argonCpi: i128, liquidity: u128], {
|
|
2725
2441
|
amount: u128;
|
|
2726
2442
|
perMiner: u128;
|
|
2727
2443
|
argonCpi: i128;
|
|
@@ -2731,13 +2447,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2731
2447
|
* Errors encountered while minting. Most often due to mint amount still below Existential
|
|
2732
2448
|
* Deposit
|
|
2733
2449
|
**/
|
|
2734
|
-
MintError: AugmentedEvent<ApiType, [
|
|
2735
|
-
mintType: PalletMintMintType,
|
|
2736
|
-
accountId: AccountId32,
|
|
2737
|
-
utxoId: Option<u64>,
|
|
2738
|
-
amount: u128,
|
|
2739
|
-
error: SpRuntimeDispatchError
|
|
2740
|
-
], {
|
|
2450
|
+
MintError: AugmentedEvent<ApiType, [mintType: PalletMintMintType, accountId: AccountId32, utxoId: Option<u64>, amount: u128, error: SpRuntimeDispatchError], {
|
|
2741
2451
|
mintType: PalletMintMintType;
|
|
2742
2452
|
accountId: AccountId32;
|
|
2743
2453
|
utxoId: Option<u64>;
|
|
@@ -2749,12 +2459,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2749
2459
|
/**
|
|
2750
2460
|
* The deposit for a multisig operation has been updated/poked.
|
|
2751
2461
|
**/
|
|
2752
|
-
DepositPoked: AugmentedEvent<ApiType, [
|
|
2753
|
-
who: AccountId32,
|
|
2754
|
-
callHash: U8aFixed,
|
|
2755
|
-
oldDeposit: u128,
|
|
2756
|
-
newDeposit: u128
|
|
2757
|
-
], {
|
|
2462
|
+
DepositPoked: AugmentedEvent<ApiType, [who: AccountId32, callHash: U8aFixed, oldDeposit: u128, newDeposit: u128], {
|
|
2758
2463
|
who: AccountId32;
|
|
2759
2464
|
callHash: U8aFixed;
|
|
2760
2465
|
oldDeposit: u128;
|
|
@@ -2763,12 +2468,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2763
2468
|
/**
|
|
2764
2469
|
* A multisig operation has been approved by someone.
|
|
2765
2470
|
**/
|
|
2766
|
-
MultisigApproval: AugmentedEvent<ApiType, [
|
|
2767
|
-
approving: AccountId32,
|
|
2768
|
-
timepoint: PalletMultisigTimepoint,
|
|
2769
|
-
multisig: AccountId32,
|
|
2770
|
-
callHash: U8aFixed
|
|
2771
|
-
], {
|
|
2471
|
+
MultisigApproval: AugmentedEvent<ApiType, [approving: AccountId32, timepoint: PalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed], {
|
|
2772
2472
|
approving: AccountId32;
|
|
2773
2473
|
timepoint: PalletMultisigTimepoint;
|
|
2774
2474
|
multisig: AccountId32;
|
|
@@ -2777,12 +2477,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2777
2477
|
/**
|
|
2778
2478
|
* A multisig operation has been cancelled.
|
|
2779
2479
|
**/
|
|
2780
|
-
MultisigCancelled: AugmentedEvent<ApiType, [
|
|
2781
|
-
cancelling: AccountId32,
|
|
2782
|
-
timepoint: PalletMultisigTimepoint,
|
|
2783
|
-
multisig: AccountId32,
|
|
2784
|
-
callHash: U8aFixed
|
|
2785
|
-
], {
|
|
2480
|
+
MultisigCancelled: AugmentedEvent<ApiType, [cancelling: AccountId32, timepoint: PalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed], {
|
|
2786
2481
|
cancelling: AccountId32;
|
|
2787
2482
|
timepoint: PalletMultisigTimepoint;
|
|
2788
2483
|
multisig: AccountId32;
|
|
@@ -2791,13 +2486,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2791
2486
|
/**
|
|
2792
2487
|
* A multisig operation has been executed.
|
|
2793
2488
|
**/
|
|
2794
|
-
MultisigExecuted: AugmentedEvent<ApiType, [
|
|
2795
|
-
approving: AccountId32,
|
|
2796
|
-
timepoint: PalletMultisigTimepoint,
|
|
2797
|
-
multisig: AccountId32,
|
|
2798
|
-
callHash: U8aFixed,
|
|
2799
|
-
result: Result<Null, SpRuntimeDispatchError>
|
|
2800
|
-
], {
|
|
2489
|
+
MultisigExecuted: AugmentedEvent<ApiType, [approving: AccountId32, timepoint: PalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed, result: Result<Null, SpRuntimeDispatchError>], {
|
|
2801
2490
|
approving: AccountId32;
|
|
2802
2491
|
timepoint: PalletMultisigTimepoint;
|
|
2803
2492
|
multisig: AccountId32;
|
|
@@ -2807,11 +2496,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2807
2496
|
/**
|
|
2808
2497
|
* A new multisig operation has begun.
|
|
2809
2498
|
**/
|
|
2810
|
-
NewMultisig: AugmentedEvent<ApiType, [
|
|
2811
|
-
approving: AccountId32,
|
|
2812
|
-
multisig: AccountId32,
|
|
2813
|
-
callHash: U8aFixed
|
|
2814
|
-
], {
|
|
2499
|
+
NewMultisig: AugmentedEvent<ApiType, [approving: AccountId32, multisig: AccountId32, callHash: U8aFixed], {
|
|
2815
2500
|
approving: AccountId32;
|
|
2816
2501
|
multisig: AccountId32;
|
|
2817
2502
|
callHash: U8aFixed;
|
|
@@ -2821,29 +2506,20 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2821
2506
|
/**
|
|
2822
2507
|
* A notary proposal has been accepted
|
|
2823
2508
|
**/
|
|
2824
|
-
NotaryActivated: AugmentedEvent<ApiType, [
|
|
2825
|
-
notary: ArgonPrimitivesNotaryNotaryRecord
|
|
2826
|
-
], {
|
|
2509
|
+
NotaryActivated: AugmentedEvent<ApiType, [notary: ArgonPrimitivesNotaryNotaryRecord], {
|
|
2827
2510
|
notary: ArgonPrimitivesNotaryNotaryRecord;
|
|
2828
2511
|
}>;
|
|
2829
2512
|
/**
|
|
2830
2513
|
* Notary metadata updated
|
|
2831
2514
|
**/
|
|
2832
|
-
NotaryMetaUpdated: AugmentedEvent<ApiType, [
|
|
2833
|
-
notaryId: u32,
|
|
2834
|
-
meta: ArgonPrimitivesNotaryNotaryMeta
|
|
2835
|
-
], {
|
|
2515
|
+
NotaryMetaUpdated: AugmentedEvent<ApiType, [notaryId: u32, meta: ArgonPrimitivesNotaryNotaryMeta], {
|
|
2836
2516
|
notaryId: u32;
|
|
2837
2517
|
meta: ArgonPrimitivesNotaryNotaryMeta;
|
|
2838
2518
|
}>;
|
|
2839
2519
|
/**
|
|
2840
2520
|
* Error updating queued notary info
|
|
2841
2521
|
**/
|
|
2842
|
-
NotaryMetaUpdateError: AugmentedEvent<ApiType, [
|
|
2843
|
-
notaryId: u32,
|
|
2844
|
-
error: SpRuntimeDispatchError,
|
|
2845
|
-
meta: ArgonPrimitivesNotaryNotaryMeta
|
|
2846
|
-
], {
|
|
2522
|
+
NotaryMetaUpdateError: AugmentedEvent<ApiType, [notaryId: u32, error: SpRuntimeDispatchError, meta: ArgonPrimitivesNotaryNotaryMeta], {
|
|
2847
2523
|
notaryId: u32;
|
|
2848
2524
|
error: SpRuntimeDispatchError;
|
|
2849
2525
|
meta: ArgonPrimitivesNotaryNotaryMeta;
|
|
@@ -2851,11 +2527,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2851
2527
|
/**
|
|
2852
2528
|
* Notary metadata queued for update
|
|
2853
2529
|
**/
|
|
2854
|
-
NotaryMetaUpdateQueued: AugmentedEvent<ApiType, [
|
|
2855
|
-
notaryId: u32,
|
|
2856
|
-
meta: ArgonPrimitivesNotaryNotaryMeta,
|
|
2857
|
-
effectiveTick: u64
|
|
2858
|
-
], {
|
|
2530
|
+
NotaryMetaUpdateQueued: AugmentedEvent<ApiType, [notaryId: u32, meta: ArgonPrimitivesNotaryNotaryMeta, effectiveTick: u64], {
|
|
2859
2531
|
notaryId: u32;
|
|
2860
2532
|
meta: ArgonPrimitivesNotaryNotaryMeta;
|
|
2861
2533
|
effectiveTick: u64;
|
|
@@ -2863,39 +2535,24 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2863
2535
|
/**
|
|
2864
2536
|
* A user has proposed operating as a notary
|
|
2865
2537
|
**/
|
|
2866
|
-
NotaryProposed: AugmentedEvent<ApiType, [
|
|
2867
|
-
operatorAccount: AccountId32,
|
|
2868
|
-
meta: ArgonPrimitivesNotaryNotaryMeta,
|
|
2869
|
-
expires: u32
|
|
2870
|
-
], {
|
|
2538
|
+
NotaryProposed: AugmentedEvent<ApiType, [operatorAccount: AccountId32, meta: ArgonPrimitivesNotaryNotaryMeta, expires: u32], {
|
|
2871
2539
|
operatorAccount: AccountId32;
|
|
2872
2540
|
meta: ArgonPrimitivesNotaryNotaryMeta;
|
|
2873
2541
|
expires: u32;
|
|
2874
2542
|
}>;
|
|
2875
2543
|
};
|
|
2876
2544
|
notebook: {
|
|
2877
|
-
NotebookAuditFailure: AugmentedEvent<ApiType, [
|
|
2878
|
-
notaryId: u32,
|
|
2879
|
-
notebookNumber: u32,
|
|
2880
|
-
notebookHash: H256,
|
|
2881
|
-
firstFailureReason: ArgonNotaryAuditErrorVerifyError
|
|
2882
|
-
], {
|
|
2545
|
+
NotebookAuditFailure: AugmentedEvent<ApiType, [notaryId: u32, notebookNumber: u32, notebookHash: H256, firstFailureReason: ArgonNotaryAuditErrorVerifyError], {
|
|
2883
2546
|
notaryId: u32;
|
|
2884
2547
|
notebookNumber: u32;
|
|
2885
2548
|
notebookHash: H256;
|
|
2886
2549
|
firstFailureReason: ArgonNotaryAuditErrorVerifyError;
|
|
2887
2550
|
}>;
|
|
2888
|
-
NotebookReadyForReprocess: AugmentedEvent<ApiType, [
|
|
2889
|
-
notaryId: u32,
|
|
2890
|
-
notebookNumber: u32
|
|
2891
|
-
], {
|
|
2551
|
+
NotebookReadyForReprocess: AugmentedEvent<ApiType, [notaryId: u32, notebookNumber: u32], {
|
|
2892
2552
|
notaryId: u32;
|
|
2893
2553
|
notebookNumber: u32;
|
|
2894
2554
|
}>;
|
|
2895
|
-
NotebookSubmitted: AugmentedEvent<ApiType, [
|
|
2896
|
-
notaryId: u32,
|
|
2897
|
-
notebookNumber: u32
|
|
2898
|
-
], {
|
|
2555
|
+
NotebookSubmitted: AugmentedEvent<ApiType, [notaryId: u32, notebookNumber: u32], {
|
|
2899
2556
|
notaryId: u32;
|
|
2900
2557
|
notebookNumber: u32;
|
|
2901
2558
|
}>;
|
|
@@ -2904,31 +2561,20 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2904
2561
|
/**
|
|
2905
2562
|
* Account has become operational.
|
|
2906
2563
|
**/
|
|
2907
|
-
AccountWentOperational: AugmentedEvent<ApiType, [
|
|
2908
|
-
account: AccountId32
|
|
2909
|
-
], {
|
|
2564
|
+
AccountWentOperational: AugmentedEvent<ApiType, [account: AccountId32], {
|
|
2910
2565
|
account: AccountId32;
|
|
2911
2566
|
}>;
|
|
2912
2567
|
/**
|
|
2913
2568
|
* A sponsor updated the encrypted server payload for a sponsee.
|
|
2914
2569
|
**/
|
|
2915
|
-
EncryptedServerUpdated: AugmentedEvent<ApiType, [
|
|
2916
|
-
sponsor: AccountId32,
|
|
2917
|
-
sponsee: AccountId32
|
|
2918
|
-
], {
|
|
2570
|
+
EncryptedServerUpdated: AugmentedEvent<ApiType, [sponsor: AccountId32, sponsee: AccountId32], {
|
|
2919
2571
|
sponsor: AccountId32;
|
|
2920
2572
|
sponsee: AccountId32;
|
|
2921
2573
|
}>;
|
|
2922
2574
|
/**
|
|
2923
2575
|
* An operational account was registered with its linked accounts.
|
|
2924
2576
|
**/
|
|
2925
|
-
OperationalAccountRegistered: AugmentedEvent<ApiType, [
|
|
2926
|
-
operationalAccount: AccountId32,
|
|
2927
|
-
vaultAccount: AccountId32,
|
|
2928
|
-
miningFundingAccount: AccountId32,
|
|
2929
|
-
miningBotAccount: AccountId32,
|
|
2930
|
-
sponsor: Option<AccountId32>
|
|
2931
|
-
], {
|
|
2577
|
+
OperationalAccountRegistered: AugmentedEvent<ApiType, [operationalAccount: AccountId32, vaultAccount: AccountId32, miningFundingAccount: AccountId32, miningBotAccount: AccountId32, sponsor: Option<AccountId32>], {
|
|
2932
2578
|
operationalAccount: AccountId32;
|
|
2933
2579
|
vaultAccount: AccountId32;
|
|
2934
2580
|
miningFundingAccount: AccountId32;
|
|
@@ -2938,15 +2584,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2938
2584
|
/**
|
|
2939
2585
|
* Operational progress was forced by root.
|
|
2940
2586
|
**/
|
|
2941
|
-
OperationalProgressForced: AugmentedEvent<ApiType, [
|
|
2942
|
-
account: AccountId32,
|
|
2943
|
-
updateOperationalProgress: bool,
|
|
2944
|
-
hasUniswapTransfer: bool,
|
|
2945
|
-
vaultCreated: bool,
|
|
2946
|
-
hasTreasuryPoolParticipation: bool,
|
|
2947
|
-
observedBitcoinTotal: u128,
|
|
2948
|
-
observedMiningSeatTotal: u32
|
|
2949
|
-
], {
|
|
2587
|
+
OperationalProgressForced: AugmentedEvent<ApiType, [account: AccountId32, updateOperationalProgress: bool, hasUniswapTransfer: bool, vaultCreated: bool, hasTreasuryPoolParticipation: bool, observedBitcoinTotal: u128, observedMiningSeatTotal: u32], {
|
|
2950
2588
|
account: AccountId32;
|
|
2951
2589
|
updateOperationalProgress: bool;
|
|
2952
2590
|
hasUniswapTransfer: bool;
|
|
@@ -2958,11 +2596,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2958
2596
|
/**
|
|
2959
2597
|
* A reward is earned for an operational account, but not yet claimed.
|
|
2960
2598
|
**/
|
|
2961
|
-
OperationalRewardEarned: AugmentedEvent<ApiType, [
|
|
2962
|
-
account: AccountId32,
|
|
2963
|
-
rewardKind: ArgonPrimitivesProvidersOperationalRewardKind,
|
|
2964
|
-
amount: u128
|
|
2965
|
-
], {
|
|
2599
|
+
OperationalRewardEarned: AugmentedEvent<ApiType, [account: AccountId32, rewardKind: ArgonPrimitivesProvidersOperationalRewardKind, amount: u128], {
|
|
2966
2600
|
account: AccountId32;
|
|
2967
2601
|
rewardKind: ArgonPrimitivesProvidersOperationalRewardKind;
|
|
2968
2602
|
amount: u128;
|
|
@@ -2970,12 +2604,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2970
2604
|
/**
|
|
2971
2605
|
* Claimable operational rewards were paid to a managed account.
|
|
2972
2606
|
**/
|
|
2973
|
-
OperationalRewardsClaimed: AugmentedEvent<ApiType, [
|
|
2974
|
-
operationalAccount: AccountId32,
|
|
2975
|
-
claimant: AccountId32,
|
|
2976
|
-
amount: u128,
|
|
2977
|
-
remainingPending: u128
|
|
2978
|
-
], {
|
|
2607
|
+
OperationalRewardsClaimed: AugmentedEvent<ApiType, [operationalAccount: AccountId32, claimant: AccountId32, amount: u128, remainingPending: u128], {
|
|
2979
2608
|
operationalAccount: AccountId32;
|
|
2980
2609
|
claimant: AccountId32;
|
|
2981
2610
|
amount: u128;
|
|
@@ -2984,10 +2613,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2984
2613
|
/**
|
|
2985
2614
|
* Reward config values were updated.
|
|
2986
2615
|
**/
|
|
2987
|
-
RewardsConfigUpdated: AugmentedEvent<ApiType, [
|
|
2988
|
-
operationalReferralReward: u128,
|
|
2989
|
-
referralBonusReward: u128
|
|
2990
|
-
], {
|
|
2616
|
+
RewardsConfigUpdated: AugmentedEvent<ApiType, [operationalReferralReward: u128, referralBonusReward: u128], {
|
|
2991
2617
|
operationalReferralReward: u128;
|
|
2992
2618
|
referralBonusReward: u128;
|
|
2993
2619
|
}>;
|
|
@@ -2996,20 +2622,14 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
2996
2622
|
/**
|
|
2997
2623
|
* A balance was set by root.
|
|
2998
2624
|
**/
|
|
2999
|
-
BalanceSet: AugmentedEvent<ApiType, [
|
|
3000
|
-
who: AccountId32,
|
|
3001
|
-
free: u128
|
|
3002
|
-
], {
|
|
2625
|
+
BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128], {
|
|
3003
2626
|
who: AccountId32;
|
|
3004
2627
|
free: u128;
|
|
3005
2628
|
}>;
|
|
3006
2629
|
/**
|
|
3007
2630
|
* Some amount was burned from an account.
|
|
3008
2631
|
**/
|
|
3009
|
-
Burned: AugmentedEvent<ApiType, [
|
|
3010
|
-
who: AccountId32,
|
|
3011
|
-
amount: u128
|
|
3012
|
-
], {
|
|
2632
|
+
Burned: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
3013
2633
|
who: AccountId32;
|
|
3014
2634
|
amount: u128;
|
|
3015
2635
|
}>;
|
|
@@ -3022,11 +2642,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3022
2642
|
/**
|
|
3023
2643
|
* Held balance was burned from an account.
|
|
3024
2644
|
**/
|
|
3025
|
-
BurnedHeld: AugmentedEvent<ApiType, [
|
|
3026
|
-
reason: ArgonRuntimeRuntimeHoldReason,
|
|
3027
|
-
who: AccountId32,
|
|
3028
|
-
amount: u128
|
|
3029
|
-
], {
|
|
2645
|
+
BurnedHeld: AugmentedEvent<ApiType, [reason: ArgonRuntimeRuntimeHoldReason, who: AccountId32, amount: u128], {
|
|
3030
2646
|
reason: ArgonRuntimeRuntimeHoldReason;
|
|
3031
2647
|
who: AccountId32;
|
|
3032
2648
|
amount: u128;
|
|
@@ -3034,10 +2650,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3034
2650
|
/**
|
|
3035
2651
|
* Some amount was deposited (e.g. for transaction fees).
|
|
3036
2652
|
**/
|
|
3037
|
-
Deposit: AugmentedEvent<ApiType, [
|
|
3038
|
-
who: AccountId32,
|
|
3039
|
-
amount: u128
|
|
3040
|
-
], {
|
|
2653
|
+
Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
3041
2654
|
who: AccountId32;
|
|
3042
2655
|
amount: u128;
|
|
3043
2656
|
}>;
|
|
@@ -3045,41 +2658,28 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3045
2658
|
* An account was removed whose balance was non-zero but below ExistentialDeposit,
|
|
3046
2659
|
* resulting in an outright loss.
|
|
3047
2660
|
**/
|
|
3048
|
-
DustLost: AugmentedEvent<ApiType, [
|
|
3049
|
-
account: AccountId32,
|
|
3050
|
-
amount: u128
|
|
3051
|
-
], {
|
|
2661
|
+
DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], {
|
|
3052
2662
|
account: AccountId32;
|
|
3053
2663
|
amount: u128;
|
|
3054
2664
|
}>;
|
|
3055
2665
|
/**
|
|
3056
2666
|
* An account was created with some free balance.
|
|
3057
2667
|
**/
|
|
3058
|
-
Endowed: AugmentedEvent<ApiType, [
|
|
3059
|
-
account: AccountId32,
|
|
3060
|
-
freeBalance: u128
|
|
3061
|
-
], {
|
|
2668
|
+
Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], {
|
|
3062
2669
|
account: AccountId32;
|
|
3063
2670
|
freeBalance: u128;
|
|
3064
2671
|
}>;
|
|
3065
2672
|
/**
|
|
3066
2673
|
* Some balance was frozen.
|
|
3067
2674
|
**/
|
|
3068
|
-
Frozen: AugmentedEvent<ApiType, [
|
|
3069
|
-
who: AccountId32,
|
|
3070
|
-
amount: u128
|
|
3071
|
-
], {
|
|
2675
|
+
Frozen: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
3072
2676
|
who: AccountId32;
|
|
3073
2677
|
amount: u128;
|
|
3074
2678
|
}>;
|
|
3075
2679
|
/**
|
|
3076
2680
|
* Some balance was placed on hold.
|
|
3077
2681
|
**/
|
|
3078
|
-
Held: AugmentedEvent<ApiType, [
|
|
3079
|
-
reason: ArgonRuntimeRuntimeHoldReason,
|
|
3080
|
-
who: AccountId32,
|
|
3081
|
-
amount: u128
|
|
3082
|
-
], {
|
|
2682
|
+
Held: AugmentedEvent<ApiType, [reason: ArgonRuntimeRuntimeHoldReason, who: AccountId32, amount: u128], {
|
|
3083
2683
|
reason: ArgonRuntimeRuntimeHoldReason;
|
|
3084
2684
|
who: AccountId32;
|
|
3085
2685
|
amount: u128;
|
|
@@ -3093,20 +2693,14 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3093
2693
|
/**
|
|
3094
2694
|
* Some balance was locked.
|
|
3095
2695
|
**/
|
|
3096
|
-
Locked: AugmentedEvent<ApiType, [
|
|
3097
|
-
who: AccountId32,
|
|
3098
|
-
amount: u128
|
|
3099
|
-
], {
|
|
2696
|
+
Locked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
3100
2697
|
who: AccountId32;
|
|
3101
2698
|
amount: u128;
|
|
3102
2699
|
}>;
|
|
3103
2700
|
/**
|
|
3104
2701
|
* Some amount was minted into an account.
|
|
3105
2702
|
**/
|
|
3106
|
-
Minted: AugmentedEvent<ApiType, [
|
|
3107
|
-
who: AccountId32,
|
|
3108
|
-
amount: u128
|
|
3109
|
-
], {
|
|
2703
|
+
Minted: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
3110
2704
|
who: AccountId32;
|
|
3111
2705
|
amount: u128;
|
|
3112
2706
|
}>;
|
|
@@ -3119,11 +2713,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3119
2713
|
/**
|
|
3120
2714
|
* Some balance was released from hold.
|
|
3121
2715
|
**/
|
|
3122
|
-
Released: AugmentedEvent<ApiType, [
|
|
3123
|
-
reason: ArgonRuntimeRuntimeHoldReason,
|
|
3124
|
-
who: AccountId32,
|
|
3125
|
-
amount: u128
|
|
3126
|
-
], {
|
|
2716
|
+
Released: AugmentedEvent<ApiType, [reason: ArgonRuntimeRuntimeHoldReason, who: AccountId32, amount: u128], {
|
|
3127
2717
|
reason: ArgonRuntimeRuntimeHoldReason;
|
|
3128
2718
|
who: AccountId32;
|
|
3129
2719
|
amount: u128;
|
|
@@ -3137,10 +2727,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3137
2727
|
/**
|
|
3138
2728
|
* Some balance was reserved (moved from free to reserved).
|
|
3139
2729
|
**/
|
|
3140
|
-
Reserved: AugmentedEvent<ApiType, [
|
|
3141
|
-
who: AccountId32,
|
|
3142
|
-
amount: u128
|
|
3143
|
-
], {
|
|
2730
|
+
Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
3144
2731
|
who: AccountId32;
|
|
3145
2732
|
amount: u128;
|
|
3146
2733
|
}>;
|
|
@@ -3148,12 +2735,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3148
2735
|
* Some balance was moved from the reserve of the first account to the second account.
|
|
3149
2736
|
* Final argument indicates the destination balance type.
|
|
3150
2737
|
**/
|
|
3151
|
-
ReserveRepatriated: AugmentedEvent<ApiType, [
|
|
3152
|
-
from: AccountId32,
|
|
3153
|
-
to: AccountId32,
|
|
3154
|
-
amount: u128,
|
|
3155
|
-
destinationStatus: FrameSupportTokensMiscBalanceStatus
|
|
3156
|
-
], {
|
|
2738
|
+
ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], {
|
|
3157
2739
|
from: AccountId32;
|
|
3158
2740
|
to: AccountId32;
|
|
3159
2741
|
amount: u128;
|
|
@@ -3162,61 +2744,42 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3162
2744
|
/**
|
|
3163
2745
|
* Some amount was restored into an account.
|
|
3164
2746
|
**/
|
|
3165
|
-
Restored: AugmentedEvent<ApiType, [
|
|
3166
|
-
who: AccountId32,
|
|
3167
|
-
amount: u128
|
|
3168
|
-
], {
|
|
2747
|
+
Restored: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
3169
2748
|
who: AccountId32;
|
|
3170
2749
|
amount: u128;
|
|
3171
2750
|
}>;
|
|
3172
2751
|
/**
|
|
3173
2752
|
* Some amount was removed from the account (e.g. for misbehavior).
|
|
3174
2753
|
**/
|
|
3175
|
-
Slashed: AugmentedEvent<ApiType, [
|
|
3176
|
-
who: AccountId32,
|
|
3177
|
-
amount: u128
|
|
3178
|
-
], {
|
|
2754
|
+
Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
3179
2755
|
who: AccountId32;
|
|
3180
2756
|
amount: u128;
|
|
3181
2757
|
}>;
|
|
3182
2758
|
/**
|
|
3183
2759
|
* Some amount was suspended from an account (it can be restored later).
|
|
3184
2760
|
**/
|
|
3185
|
-
Suspended: AugmentedEvent<ApiType, [
|
|
3186
|
-
who: AccountId32,
|
|
3187
|
-
amount: u128
|
|
3188
|
-
], {
|
|
2761
|
+
Suspended: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
3189
2762
|
who: AccountId32;
|
|
3190
2763
|
amount: u128;
|
|
3191
2764
|
}>;
|
|
3192
2765
|
/**
|
|
3193
2766
|
* Some balance was thawed.
|
|
3194
2767
|
**/
|
|
3195
|
-
Thawed: AugmentedEvent<ApiType, [
|
|
3196
|
-
who: AccountId32,
|
|
3197
|
-
amount: u128
|
|
3198
|
-
], {
|
|
2768
|
+
Thawed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
3199
2769
|
who: AccountId32;
|
|
3200
2770
|
amount: u128;
|
|
3201
2771
|
}>;
|
|
3202
2772
|
/**
|
|
3203
2773
|
* The `TotalIssuance` was forcefully changed.
|
|
3204
2774
|
**/
|
|
3205
|
-
TotalIssuanceForced: AugmentedEvent<ApiType, [
|
|
3206
|
-
old: u128,
|
|
3207
|
-
new_: u128
|
|
3208
|
-
], {
|
|
2775
|
+
TotalIssuanceForced: AugmentedEvent<ApiType, [old: u128, new_: u128], {
|
|
3209
2776
|
old: u128;
|
|
3210
2777
|
new_: u128;
|
|
3211
2778
|
}>;
|
|
3212
2779
|
/**
|
|
3213
2780
|
* Transfer succeeded.
|
|
3214
2781
|
**/
|
|
3215
|
-
Transfer: AugmentedEvent<ApiType, [
|
|
3216
|
-
from: AccountId32,
|
|
3217
|
-
to: AccountId32,
|
|
3218
|
-
amount: u128
|
|
3219
|
-
], {
|
|
2782
|
+
Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], {
|
|
3220
2783
|
from: AccountId32;
|
|
3221
2784
|
to: AccountId32;
|
|
3222
2785
|
amount: u128;
|
|
@@ -3224,12 +2787,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3224
2787
|
/**
|
|
3225
2788
|
* The `transferred` balance is placed on hold at the `dest` account.
|
|
3226
2789
|
**/
|
|
3227
|
-
TransferAndHold: AugmentedEvent<ApiType, [
|
|
3228
|
-
reason: ArgonRuntimeRuntimeHoldReason,
|
|
3229
|
-
source: AccountId32,
|
|
3230
|
-
dest: AccountId32,
|
|
3231
|
-
transferred: u128
|
|
3232
|
-
], {
|
|
2790
|
+
TransferAndHold: AugmentedEvent<ApiType, [reason: ArgonRuntimeRuntimeHoldReason, source: AccountId32, dest: AccountId32, transferred: u128], {
|
|
3233
2791
|
reason: ArgonRuntimeRuntimeHoldReason;
|
|
3234
2792
|
source: AccountId32;
|
|
3235
2793
|
dest: AccountId32;
|
|
@@ -3238,12 +2796,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3238
2796
|
/**
|
|
3239
2797
|
* A transfer of `amount` on hold from `source` to `dest` was initiated.
|
|
3240
2798
|
**/
|
|
3241
|
-
TransferOnHold: AugmentedEvent<ApiType, [
|
|
3242
|
-
reason: ArgonRuntimeRuntimeHoldReason,
|
|
3243
|
-
source: AccountId32,
|
|
3244
|
-
dest: AccountId32,
|
|
3245
|
-
amount: u128
|
|
3246
|
-
], {
|
|
2799
|
+
TransferOnHold: AugmentedEvent<ApiType, [reason: ArgonRuntimeRuntimeHoldReason, source: AccountId32, dest: AccountId32, amount: u128], {
|
|
3247
2800
|
reason: ArgonRuntimeRuntimeHoldReason;
|
|
3248
2801
|
source: AccountId32;
|
|
3249
2802
|
dest: AccountId32;
|
|
@@ -3256,20 +2809,14 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3256
2809
|
/**
|
|
3257
2810
|
* Some balance was unlocked.
|
|
3258
2811
|
**/
|
|
3259
|
-
Unlocked: AugmentedEvent<ApiType, [
|
|
3260
|
-
who: AccountId32,
|
|
3261
|
-
amount: u128
|
|
3262
|
-
], {
|
|
2812
|
+
Unlocked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
3263
2813
|
who: AccountId32;
|
|
3264
2814
|
amount: u128;
|
|
3265
2815
|
}>;
|
|
3266
2816
|
/**
|
|
3267
2817
|
* Some balance was unreserved (moved from reserved to free).
|
|
3268
2818
|
**/
|
|
3269
|
-
Unreserved: AugmentedEvent<ApiType, [
|
|
3270
|
-
who: AccountId32,
|
|
3271
|
-
amount: u128
|
|
3272
|
-
], {
|
|
2819
|
+
Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
3273
2820
|
who: AccountId32;
|
|
3274
2821
|
amount: u128;
|
|
3275
2822
|
}>;
|
|
@@ -3282,10 +2829,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3282
2829
|
/**
|
|
3283
2830
|
* Some amount was withdrawn from the account (e.g. for transaction fees).
|
|
3284
2831
|
**/
|
|
3285
|
-
Withdraw: AugmentedEvent<ApiType, [
|
|
3286
|
-
who: AccountId32,
|
|
3287
|
-
amount: u128
|
|
3288
|
-
], {
|
|
2832
|
+
Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], {
|
|
3289
2833
|
who: AccountId32;
|
|
3290
2834
|
amount: u128;
|
|
3291
2835
|
}>;
|
|
@@ -3295,9 +2839,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3295
2839
|
* Event emitted when a new price index is submitted
|
|
3296
2840
|
**/
|
|
3297
2841
|
NewIndex: AugmentedEvent<ApiType, []>;
|
|
3298
|
-
OperatorChanged: AugmentedEvent<ApiType, [
|
|
3299
|
-
operatorId: AccountId32
|
|
3300
|
-
], {
|
|
2842
|
+
OperatorChanged: AugmentedEvent<ApiType, [operatorId: AccountId32], {
|
|
3301
2843
|
operatorId: AccountId32;
|
|
3302
2844
|
}>;
|
|
3303
2845
|
};
|
|
@@ -3305,11 +2847,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3305
2847
|
/**
|
|
3306
2848
|
* An announcement was placed to make a call in the future.
|
|
3307
2849
|
**/
|
|
3308
|
-
Announced: AugmentedEvent<ApiType, [
|
|
3309
|
-
real: AccountId32,
|
|
3310
|
-
proxy: AccountId32,
|
|
3311
|
-
callHash: H256
|
|
3312
|
-
], {
|
|
2850
|
+
Announced: AugmentedEvent<ApiType, [real: AccountId32, proxy: AccountId32, callHash: H256], {
|
|
3313
2851
|
real: AccountId32;
|
|
3314
2852
|
proxy: AccountId32;
|
|
3315
2853
|
callHash: H256;
|
|
@@ -3317,12 +2855,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3317
2855
|
/**
|
|
3318
2856
|
* A deposit stored for proxies or announcements was poked / updated.
|
|
3319
2857
|
**/
|
|
3320
|
-
DepositPoked: AugmentedEvent<ApiType, [
|
|
3321
|
-
who: AccountId32,
|
|
3322
|
-
kind: PalletProxyDepositKind,
|
|
3323
|
-
oldDeposit: u128,
|
|
3324
|
-
newDeposit: u128
|
|
3325
|
-
], {
|
|
2858
|
+
DepositPoked: AugmentedEvent<ApiType, [who: AccountId32, kind: PalletProxyDepositKind, oldDeposit: u128, newDeposit: u128], {
|
|
3326
2859
|
who: AccountId32;
|
|
3327
2860
|
kind: PalletProxyDepositKind;
|
|
3328
2861
|
oldDeposit: u128;
|
|
@@ -3331,12 +2864,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3331
2864
|
/**
|
|
3332
2865
|
* A proxy was added.
|
|
3333
2866
|
**/
|
|
3334
|
-
ProxyAdded: AugmentedEvent<ApiType, [
|
|
3335
|
-
delegator: AccountId32,
|
|
3336
|
-
delegatee: AccountId32,
|
|
3337
|
-
proxyType: ArgonRuntimeProxyType,
|
|
3338
|
-
delay: u32
|
|
3339
|
-
], {
|
|
2867
|
+
ProxyAdded: AugmentedEvent<ApiType, [delegator: AccountId32, delegatee: AccountId32, proxyType: ArgonRuntimeProxyType, delay: u32], {
|
|
3340
2868
|
delegator: AccountId32;
|
|
3341
2869
|
delegatee: AccountId32;
|
|
3342
2870
|
proxyType: ArgonRuntimeProxyType;
|
|
@@ -3345,20 +2873,13 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3345
2873
|
/**
|
|
3346
2874
|
* A proxy was executed correctly, with the given.
|
|
3347
2875
|
**/
|
|
3348
|
-
ProxyExecuted: AugmentedEvent<ApiType, [
|
|
3349
|
-
result: Result<Null, SpRuntimeDispatchError>
|
|
3350
|
-
], {
|
|
2876
|
+
ProxyExecuted: AugmentedEvent<ApiType, [result: Result<Null, SpRuntimeDispatchError>], {
|
|
3351
2877
|
result: Result<Null, SpRuntimeDispatchError>;
|
|
3352
2878
|
}>;
|
|
3353
2879
|
/**
|
|
3354
2880
|
* A proxy was removed.
|
|
3355
2881
|
**/
|
|
3356
|
-
ProxyRemoved: AugmentedEvent<ApiType, [
|
|
3357
|
-
delegator: AccountId32,
|
|
3358
|
-
delegatee: AccountId32,
|
|
3359
|
-
proxyType: ArgonRuntimeProxyType,
|
|
3360
|
-
delay: u32
|
|
3361
|
-
], {
|
|
2882
|
+
ProxyRemoved: AugmentedEvent<ApiType, [delegator: AccountId32, delegatee: AccountId32, proxyType: ArgonRuntimeProxyType, delay: u32], {
|
|
3362
2883
|
delegator: AccountId32;
|
|
3363
2884
|
delegatee: AccountId32;
|
|
3364
2885
|
proxyType: ArgonRuntimeProxyType;
|
|
@@ -3368,14 +2889,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3368
2889
|
* A pure account has been created by new proxy with given
|
|
3369
2890
|
* disambiguation index and proxy type.
|
|
3370
2891
|
**/
|
|
3371
|
-
PureCreated: AugmentedEvent<ApiType, [
|
|
3372
|
-
pure: AccountId32,
|
|
3373
|
-
who: AccountId32,
|
|
3374
|
-
proxyType: ArgonRuntimeProxyType,
|
|
3375
|
-
disambiguationIndex: u16,
|
|
3376
|
-
at: u32,
|
|
3377
|
-
extrinsicIndex: u32
|
|
3378
|
-
], {
|
|
2892
|
+
PureCreated: AugmentedEvent<ApiType, [pure: AccountId32, who: AccountId32, proxyType: ArgonRuntimeProxyType, disambiguationIndex: u16, at: u32, extrinsicIndex: u32], {
|
|
3379
2893
|
pure: AccountId32;
|
|
3380
2894
|
who: AccountId32;
|
|
3381
2895
|
proxyType: ArgonRuntimeProxyType;
|
|
@@ -3386,12 +2900,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3386
2900
|
/**
|
|
3387
2901
|
* A pure proxy was killed by its spawner.
|
|
3388
2902
|
**/
|
|
3389
|
-
PureKilled: AugmentedEvent<ApiType, [
|
|
3390
|
-
pure: AccountId32,
|
|
3391
|
-
spawner: AccountId32,
|
|
3392
|
-
proxyType: ArgonRuntimeProxyType,
|
|
3393
|
-
disambiguationIndex: u16
|
|
3394
|
-
], {
|
|
2903
|
+
PureKilled: AugmentedEvent<ApiType, [pure: AccountId32, spawner: AccountId32, proxyType: ArgonRuntimeProxyType, disambiguationIndex: u16], {
|
|
3395
2904
|
pure: AccountId32;
|
|
3396
2905
|
spawner: AccountId32;
|
|
3397
2906
|
proxyType: ArgonRuntimeProxyType;
|
|
@@ -3402,10 +2911,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3402
2911
|
/**
|
|
3403
2912
|
* The sudo key has been updated.
|
|
3404
2913
|
**/
|
|
3405
|
-
KeyChanged: AugmentedEvent<ApiType, [
|
|
3406
|
-
old: Option<AccountId32>,
|
|
3407
|
-
new_: AccountId32
|
|
3408
|
-
], {
|
|
2914
|
+
KeyChanged: AugmentedEvent<ApiType, [old: Option<AccountId32>, new_: AccountId32], {
|
|
3409
2915
|
old: Option<AccountId32>;
|
|
3410
2916
|
new_: AccountId32;
|
|
3411
2917
|
}>;
|
|
@@ -3416,17 +2922,13 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3416
2922
|
/**
|
|
3417
2923
|
* A sudo call just took place.
|
|
3418
2924
|
**/
|
|
3419
|
-
Sudid: AugmentedEvent<ApiType, [
|
|
3420
|
-
sudoResult: Result<Null, SpRuntimeDispatchError>
|
|
3421
|
-
], {
|
|
2925
|
+
Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], {
|
|
3422
2926
|
sudoResult: Result<Null, SpRuntimeDispatchError>;
|
|
3423
2927
|
}>;
|
|
3424
2928
|
/**
|
|
3425
2929
|
* A [sudo_as](Pallet::sudo_as) call just took place.
|
|
3426
2930
|
**/
|
|
3427
|
-
SudoAsDone: AugmentedEvent<ApiType, [
|
|
3428
|
-
sudoResult: Result<Null, SpRuntimeDispatchError>
|
|
3429
|
-
], {
|
|
2931
|
+
SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], {
|
|
3430
2932
|
sudoResult: Result<Null, SpRuntimeDispatchError>;
|
|
3431
2933
|
}>;
|
|
3432
2934
|
};
|
|
@@ -3438,19 +2940,14 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3438
2940
|
/**
|
|
3439
2941
|
* An extrinsic failed.
|
|
3440
2942
|
**/
|
|
3441
|
-
ExtrinsicFailed: AugmentedEvent<ApiType, [
|
|
3442
|
-
dispatchError: SpRuntimeDispatchError,
|
|
3443
|
-
dispatchInfo: FrameSystemDispatchEventInfo
|
|
3444
|
-
], {
|
|
2943
|
+
ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSystemDispatchEventInfo], {
|
|
3445
2944
|
dispatchError: SpRuntimeDispatchError;
|
|
3446
2945
|
dispatchInfo: FrameSystemDispatchEventInfo;
|
|
3447
2946
|
}>;
|
|
3448
2947
|
/**
|
|
3449
2948
|
* An extrinsic completed successfully.
|
|
3450
2949
|
**/
|
|
3451
|
-
ExtrinsicSuccess: AugmentedEvent<ApiType, [
|
|
3452
|
-
dispatchInfo: FrameSystemDispatchEventInfo
|
|
3453
|
-
], {
|
|
2950
|
+
ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSystemDispatchEventInfo], {
|
|
3454
2951
|
dispatchInfo: FrameSystemDispatchEventInfo;
|
|
3455
2952
|
}>;
|
|
3456
2953
|
/**
|
|
@@ -3468,30 +2965,21 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3468
2965
|
/**
|
|
3469
2966
|
* An invalid authorized upgrade was rejected while trying to apply it.
|
|
3470
2967
|
**/
|
|
3471
|
-
RejectedInvalidAuthorizedUpgrade: AugmentedEvent<ApiType, [
|
|
3472
|
-
codeHash: H256,
|
|
3473
|
-
error: SpRuntimeDispatchError
|
|
3474
|
-
], {
|
|
2968
|
+
RejectedInvalidAuthorizedUpgrade: AugmentedEvent<ApiType, [codeHash: H256, error: SpRuntimeDispatchError], {
|
|
3475
2969
|
codeHash: H256;
|
|
3476
2970
|
error: SpRuntimeDispatchError;
|
|
3477
2971
|
}>;
|
|
3478
2972
|
/**
|
|
3479
2973
|
* On on-chain remark happened.
|
|
3480
2974
|
**/
|
|
3481
|
-
Remarked: AugmentedEvent<ApiType, [
|
|
3482
|
-
sender: AccountId32,
|
|
3483
|
-
hash_: H256
|
|
3484
|
-
], {
|
|
2975
|
+
Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], {
|
|
3485
2976
|
sender: AccountId32;
|
|
3486
2977
|
hash_: H256;
|
|
3487
2978
|
}>;
|
|
3488
2979
|
/**
|
|
3489
2980
|
* An upgrade was authorized.
|
|
3490
2981
|
**/
|
|
3491
|
-
UpgradeAuthorized: AugmentedEvent<ApiType, [
|
|
3492
|
-
codeHash: H256,
|
|
3493
|
-
checkVersion: bool
|
|
3494
|
-
], {
|
|
2982
|
+
UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256, checkVersion: bool], {
|
|
3495
2983
|
codeHash: H256;
|
|
3496
2984
|
checkVersion: bool;
|
|
3497
2985
|
}>;
|
|
@@ -3501,11 +2989,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3501
2989
|
* A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,
|
|
3502
2990
|
* has been paid by `who`.
|
|
3503
2991
|
**/
|
|
3504
|
-
TransactionFeePaid: AugmentedEvent<ApiType, [
|
|
3505
|
-
who: AccountId32,
|
|
3506
|
-
actualFee: u128,
|
|
3507
|
-
tip: u128
|
|
3508
|
-
], {
|
|
2992
|
+
TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], {
|
|
3509
2993
|
who: AccountId32;
|
|
3510
2994
|
actualFee: u128;
|
|
3511
2995
|
tip: u128;
|
|
@@ -3515,12 +2999,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3515
2999
|
/**
|
|
3516
3000
|
* A bond purchase entered a vault's accepted list.
|
|
3517
3001
|
**/
|
|
3518
|
-
BondLotPurchased: AugmentedEvent<ApiType, [
|
|
3519
|
-
vaultId: u32,
|
|
3520
|
-
bondLotId: u64,
|
|
3521
|
-
accountId: AccountId32,
|
|
3522
|
-
bonds: u32
|
|
3523
|
-
], {
|
|
3002
|
+
BondLotPurchased: AugmentedEvent<ApiType, [vaultId: u32, bondLotId: u64, accountId: AccountId32, bonds: u32], {
|
|
3524
3003
|
vaultId: u32;
|
|
3525
3004
|
bondLotId: u64;
|
|
3526
3005
|
accountId: AccountId32;
|
|
@@ -3529,13 +3008,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3529
3008
|
/**
|
|
3530
3009
|
* A bond lot was released.
|
|
3531
3010
|
**/
|
|
3532
|
-
BondLotReleased: AugmentedEvent<ApiType, [
|
|
3533
|
-
frameId: u64,
|
|
3534
|
-
vaultId: u32,
|
|
3535
|
-
bondLotId: u64,
|
|
3536
|
-
accountId: AccountId32,
|
|
3537
|
-
bonds: u32
|
|
3538
|
-
], {
|
|
3011
|
+
BondLotReleased: AugmentedEvent<ApiType, [frameId: u64, vaultId: u32, bondLotId: u64, accountId: AccountId32, bonds: u32], {
|
|
3539
3012
|
frameId: u64;
|
|
3540
3013
|
vaultId: u32;
|
|
3541
3014
|
bondLotId: u64;
|
|
@@ -3545,14 +3018,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3545
3018
|
/**
|
|
3546
3019
|
* A bond lot was removed from future frames and scheduled for release.
|
|
3547
3020
|
**/
|
|
3548
|
-
BondLotReleaseScheduled: AugmentedEvent<ApiType, [
|
|
3549
|
-
vaultId: u32,
|
|
3550
|
-
bondLotId: u64,
|
|
3551
|
-
accountId: AccountId32,
|
|
3552
|
-
bonds: u32,
|
|
3553
|
-
releaseFrameId: u64,
|
|
3554
|
-
reason: PalletTreasuryBondReleaseReason
|
|
3555
|
-
], {
|
|
3021
|
+
BondLotReleaseScheduled: AugmentedEvent<ApiType, [vaultId: u32, bondLotId: u64, accountId: AccountId32, bonds: u32, releaseFrameId: u64, reason: PalletTreasuryBondReleaseReason], {
|
|
3556
3022
|
vaultId: u32;
|
|
3557
3023
|
bondLotId: u64;
|
|
3558
3024
|
accountId: AccountId32;
|
|
@@ -3563,14 +3029,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3563
3029
|
/**
|
|
3564
3030
|
* An error occurred while paying frame earnings for a bond lot.
|
|
3565
3031
|
**/
|
|
3566
|
-
CouldNotDistributeEarningsToBondLot: AugmentedEvent<ApiType, [
|
|
3567
|
-
frameId: u64,
|
|
3568
|
-
vaultId: u32,
|
|
3569
|
-
bondLotId: u64,
|
|
3570
|
-
accountId: AccountId32,
|
|
3571
|
-
amount: u128,
|
|
3572
|
-
dispatchError: SpRuntimeDispatchError
|
|
3573
|
-
], {
|
|
3032
|
+
CouldNotDistributeEarningsToBondLot: AugmentedEvent<ApiType, [frameId: u64, vaultId: u32, bondLotId: u64, accountId: AccountId32, amount: u128, dispatchError: SpRuntimeDispatchError], {
|
|
3574
3033
|
frameId: u64;
|
|
3575
3034
|
vaultId: u32;
|
|
3576
3035
|
bondLotId: u64;
|
|
@@ -3581,14 +3040,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3581
3040
|
/**
|
|
3582
3041
|
* An error occurred while releasing a bond lot.
|
|
3583
3042
|
**/
|
|
3584
|
-
CouldNotReleaseBondLot: AugmentedEvent<ApiType, [
|
|
3585
|
-
frameId: u64,
|
|
3586
|
-
vaultId: u32,
|
|
3587
|
-
bondLotId: u64,
|
|
3588
|
-
amount: u128,
|
|
3589
|
-
accountId: AccountId32,
|
|
3590
|
-
dispatchError: SpRuntimeDispatchError
|
|
3591
|
-
], {
|
|
3043
|
+
CouldNotReleaseBondLot: AugmentedEvent<ApiType, [frameId: u64, vaultId: u32, bondLotId: u64, amount: u128, accountId: AccountId32, dispatchError: SpRuntimeDispatchError], {
|
|
3592
3044
|
frameId: u64;
|
|
3593
3045
|
vaultId: u32;
|
|
3594
3046
|
bondLotId: u64;
|
|
@@ -3599,11 +3051,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3599
3051
|
/**
|
|
3600
3052
|
* An error occurred while moving bid-pool funds into treasury reserves.
|
|
3601
3053
|
**/
|
|
3602
|
-
CouldNotTransferToTreasuryReserves: AugmentedEvent<ApiType, [
|
|
3603
|
-
frameId: u64,
|
|
3604
|
-
amount: u128,
|
|
3605
|
-
dispatchError: SpRuntimeDispatchError
|
|
3606
|
-
], {
|
|
3054
|
+
CouldNotTransferToTreasuryReserves: AugmentedEvent<ApiType, [frameId: u64, amount: u128, dispatchError: SpRuntimeDispatchError], {
|
|
3607
3055
|
frameId: u64;
|
|
3608
3056
|
amount: u128;
|
|
3609
3057
|
dispatchError: SpRuntimeDispatchError;
|
|
@@ -3611,12 +3059,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3611
3059
|
/**
|
|
3612
3060
|
* Frame earnings were distributed.
|
|
3613
3061
|
**/
|
|
3614
|
-
FrameEarningsDistributed: AugmentedEvent<ApiType, [
|
|
3615
|
-
frameId: u64,
|
|
3616
|
-
bidPoolDistributed: u128,
|
|
3617
|
-
treasuryReserves: u128,
|
|
3618
|
-
participatingVaults: u32
|
|
3619
|
-
], {
|
|
3062
|
+
FrameEarningsDistributed: AugmentedEvent<ApiType, [frameId: u64, bidPoolDistributed: u128, treasuryReserves: u128, participatingVaults: u32], {
|
|
3620
3063
|
frameId: u64;
|
|
3621
3064
|
bidPoolDistributed: u128;
|
|
3622
3065
|
treasuryReserves: u128;
|
|
@@ -3625,11 +3068,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3625
3068
|
/**
|
|
3626
3069
|
* The current frame's vault capital was locked in.
|
|
3627
3070
|
**/
|
|
3628
|
-
FrameVaultCapitalLocked: AugmentedEvent<ApiType, [
|
|
3629
|
-
frameId: u64,
|
|
3630
|
-
totalEligibleBonds: u128,
|
|
3631
|
-
participatingVaults: u32
|
|
3632
|
-
], {
|
|
3071
|
+
FrameVaultCapitalLocked: AugmentedEvent<ApiType, [frameId: u64, totalEligibleBonds: u128, participatingVaults: u32], {
|
|
3633
3072
|
frameId: u64;
|
|
3634
3073
|
totalEligibleBonds: u128;
|
|
3635
3074
|
participatingVaults: u32;
|
|
@@ -3639,17 +3078,13 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3639
3078
|
/**
|
|
3640
3079
|
* This pallet, or a specific call is now paused.
|
|
3641
3080
|
**/
|
|
3642
|
-
CallPaused: AugmentedEvent<ApiType, [
|
|
3643
|
-
fullName: ITuple<[Bytes, Bytes]>
|
|
3644
|
-
], {
|
|
3081
|
+
CallPaused: AugmentedEvent<ApiType, [fullName: ITuple<[Bytes, Bytes]>], {
|
|
3645
3082
|
fullName: ITuple<[Bytes, Bytes]>;
|
|
3646
3083
|
}>;
|
|
3647
3084
|
/**
|
|
3648
3085
|
* This pallet, or a specific call is now unpaused.
|
|
3649
3086
|
**/
|
|
3650
|
-
CallUnpaused: AugmentedEvent<ApiType, [
|
|
3651
|
-
fullName: ITuple<[Bytes, Bytes]>
|
|
3652
|
-
], {
|
|
3087
|
+
CallUnpaused: AugmentedEvent<ApiType, [fullName: ITuple<[Bytes, Bytes]>], {
|
|
3653
3088
|
fullName: ITuple<[Bytes, Bytes]>;
|
|
3654
3089
|
}>;
|
|
3655
3090
|
};
|
|
@@ -3666,27 +3101,20 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3666
3101
|
* Batch of dispatches did not complete fully. Index of first failing dispatch given, as
|
|
3667
3102
|
* well as the error.
|
|
3668
3103
|
**/
|
|
3669
|
-
BatchInterrupted: AugmentedEvent<ApiType, [
|
|
3670
|
-
index: u32,
|
|
3671
|
-
error: SpRuntimeDispatchError
|
|
3672
|
-
], {
|
|
3104
|
+
BatchInterrupted: AugmentedEvent<ApiType, [index: u32, error: SpRuntimeDispatchError], {
|
|
3673
3105
|
index: u32;
|
|
3674
3106
|
error: SpRuntimeDispatchError;
|
|
3675
3107
|
}>;
|
|
3676
3108
|
/**
|
|
3677
3109
|
* A call was dispatched.
|
|
3678
3110
|
**/
|
|
3679
|
-
DispatchedAs: AugmentedEvent<ApiType, [
|
|
3680
|
-
result: Result<Null, SpRuntimeDispatchError>
|
|
3681
|
-
], {
|
|
3111
|
+
DispatchedAs: AugmentedEvent<ApiType, [result: Result<Null, SpRuntimeDispatchError>], {
|
|
3682
3112
|
result: Result<Null, SpRuntimeDispatchError>;
|
|
3683
3113
|
}>;
|
|
3684
3114
|
/**
|
|
3685
3115
|
* The fallback call was dispatched.
|
|
3686
3116
|
**/
|
|
3687
|
-
IfElseFallbackCalled: AugmentedEvent<ApiType, [
|
|
3688
|
-
mainError: SpRuntimeDispatchError
|
|
3689
|
-
], {
|
|
3117
|
+
IfElseFallbackCalled: AugmentedEvent<ApiType, [mainError: SpRuntimeDispatchError], {
|
|
3690
3118
|
mainError: SpRuntimeDispatchError;
|
|
3691
3119
|
}>;
|
|
3692
3120
|
/**
|
|
@@ -3700,28 +3128,16 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3700
3128
|
/**
|
|
3701
3129
|
* A single item within a Batch of dispatches has completed with error.
|
|
3702
3130
|
**/
|
|
3703
|
-
ItemFailed: AugmentedEvent<ApiType, [
|
|
3704
|
-
error: SpRuntimeDispatchError
|
|
3705
|
-
], {
|
|
3131
|
+
ItemFailed: AugmentedEvent<ApiType, [error: SpRuntimeDispatchError], {
|
|
3706
3132
|
error: SpRuntimeDispatchError;
|
|
3707
3133
|
}>;
|
|
3708
3134
|
};
|
|
3709
3135
|
vaults: {
|
|
3710
|
-
FundLockCanceled: AugmentedEvent<ApiType, [
|
|
3711
|
-
vaultId: u32,
|
|
3712
|
-
amount: u128
|
|
3713
|
-
], {
|
|
3136
|
+
FundLockCanceled: AugmentedEvent<ApiType, [vaultId: u32, amount: u128], {
|
|
3714
3137
|
vaultId: u32;
|
|
3715
3138
|
amount: u128;
|
|
3716
3139
|
}>;
|
|
3717
|
-
FundsLocked: AugmentedEvent<ApiType, [
|
|
3718
|
-
vaultId: u32,
|
|
3719
|
-
locker: AccountId32,
|
|
3720
|
-
liquidityPromised: u128,
|
|
3721
|
-
isRatchet: bool,
|
|
3722
|
-
feeRevenue: u128,
|
|
3723
|
-
didUseFeeCoupon: bool
|
|
3724
|
-
], {
|
|
3140
|
+
FundsLocked: AugmentedEvent<ApiType, [vaultId: u32, locker: AccountId32, liquidityPromised: u128, isRatchet: bool, feeRevenue: u128, didUseFeeCoupon: bool], {
|
|
3725
3141
|
vaultId: u32;
|
|
3726
3142
|
locker: AccountId32;
|
|
3727
3143
|
liquidityPromised: u128;
|
|
@@ -3729,46 +3145,26 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3729
3145
|
feeRevenue: u128;
|
|
3730
3146
|
didUseFeeCoupon: bool;
|
|
3731
3147
|
}>;
|
|
3732
|
-
FundsReleased: AugmentedEvent<ApiType, [
|
|
3733
|
-
vaultId: u32,
|
|
3734
|
-
securitization: u128
|
|
3735
|
-
], {
|
|
3148
|
+
FundsReleased: AugmentedEvent<ApiType, [vaultId: u32, securitization: u128], {
|
|
3736
3149
|
vaultId: u32;
|
|
3737
3150
|
securitization: u128;
|
|
3738
3151
|
}>;
|
|
3739
|
-
FundsReleasedError: AugmentedEvent<ApiType, [
|
|
3740
|
-
vaultId: u32,
|
|
3741
|
-
error: SpRuntimeDispatchError
|
|
3742
|
-
], {
|
|
3152
|
+
FundsReleasedError: AugmentedEvent<ApiType, [vaultId: u32, error: SpRuntimeDispatchError], {
|
|
3743
3153
|
vaultId: u32;
|
|
3744
3154
|
error: SpRuntimeDispatchError;
|
|
3745
3155
|
}>;
|
|
3746
|
-
FundsScheduledForRelease: AugmentedEvent<ApiType, [
|
|
3747
|
-
vaultId: u32,
|
|
3748
|
-
securitization: u128,
|
|
3749
|
-
releaseHeight: u64
|
|
3750
|
-
], {
|
|
3156
|
+
FundsScheduledForRelease: AugmentedEvent<ApiType, [vaultId: u32, securitization: u128, releaseHeight: u64], {
|
|
3751
3157
|
vaultId: u32;
|
|
3752
3158
|
securitization: u128;
|
|
3753
3159
|
releaseHeight: u64;
|
|
3754
3160
|
}>;
|
|
3755
|
-
LostBitcoinCompensated: AugmentedEvent<ApiType, [
|
|
3756
|
-
vaultId: u32,
|
|
3757
|
-
beneficiary: AccountId32,
|
|
3758
|
-
toBeneficiary: u128,
|
|
3759
|
-
burned: u128
|
|
3760
|
-
], {
|
|
3161
|
+
LostBitcoinCompensated: AugmentedEvent<ApiType, [vaultId: u32, beneficiary: AccountId32, toBeneficiary: u128, burned: u128], {
|
|
3761
3162
|
vaultId: u32;
|
|
3762
3163
|
beneficiary: AccountId32;
|
|
3763
3164
|
toBeneficiary: u128;
|
|
3764
3165
|
burned: u128;
|
|
3765
3166
|
}>;
|
|
3766
|
-
TreasuryRecordingError: AugmentedEvent<ApiType, [
|
|
3767
|
-
vaultId: u32,
|
|
3768
|
-
frameId: u64,
|
|
3769
|
-
vaultEarnings: u128,
|
|
3770
|
-
error: SpRuntimeDispatchError
|
|
3771
|
-
], {
|
|
3167
|
+
TreasuryRecordingError: AugmentedEvent<ApiType, [vaultId: u32, frameId: u64, vaultEarnings: u128, error: SpRuntimeDispatchError], {
|
|
3772
3168
|
vaultId: u32;
|
|
3773
3169
|
frameId: u64;
|
|
3774
3170
|
vaultEarnings: u128;
|
|
@@ -3777,11 +3173,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3777
3173
|
VaultBitcoinXpubChange: AugmentedEvent<ApiType, [vaultId: u32], {
|
|
3778
3174
|
vaultId: u32;
|
|
3779
3175
|
}>;
|
|
3780
|
-
VaultClosed: AugmentedEvent<ApiType, [
|
|
3781
|
-
vaultId: u32,
|
|
3782
|
-
securitizationRemaining: u128,
|
|
3783
|
-
securitizationReleased: u128
|
|
3784
|
-
], {
|
|
3176
|
+
VaultClosed: AugmentedEvent<ApiType, [vaultId: u32, securitizationRemaining: u128, securitizationReleased: u128], {
|
|
3785
3177
|
vaultId: u32;
|
|
3786
3178
|
securitizationRemaining: u128;
|
|
3787
3179
|
securitizationReleased: u128;
|
|
@@ -3789,32 +3181,18 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3789
3181
|
/**
|
|
3790
3182
|
* The vault collected revenue and cosigned all pending bitcoin locks
|
|
3791
3183
|
**/
|
|
3792
|
-
VaultCollected: AugmentedEvent<ApiType, [
|
|
3793
|
-
vaultId: u32,
|
|
3794
|
-
revenue: u128
|
|
3795
|
-
], {
|
|
3184
|
+
VaultCollected: AugmentedEvent<ApiType, [vaultId: u32, revenue: u128], {
|
|
3796
3185
|
vaultId: u32;
|
|
3797
3186
|
revenue: u128;
|
|
3798
3187
|
}>;
|
|
3799
|
-
VaultCreated: AugmentedEvent<ApiType, [
|
|
3800
|
-
vaultId: u32,
|
|
3801
|
-
securitization: u128,
|
|
3802
|
-
securitizationRatio: u128,
|
|
3803
|
-
operatorAccountId: AccountId32,
|
|
3804
|
-
openedTick: u64
|
|
3805
|
-
], {
|
|
3188
|
+
VaultCreated: AugmentedEvent<ApiType, [vaultId: u32, securitization: u128, securitizationRatio: u128, operatorAccountId: AccountId32, openedTick: u64], {
|
|
3806
3189
|
vaultId: u32;
|
|
3807
3190
|
securitization: u128;
|
|
3808
3191
|
securitizationRatio: u128;
|
|
3809
3192
|
operatorAccountId: AccountId32;
|
|
3810
3193
|
openedTick: u64;
|
|
3811
3194
|
}>;
|
|
3812
|
-
VaultModified: AugmentedEvent<ApiType, [
|
|
3813
|
-
vaultId: u32,
|
|
3814
|
-
securitization: u128,
|
|
3815
|
-
securitizationTarget: u128,
|
|
3816
|
-
securitizationRatio: u128
|
|
3817
|
-
], {
|
|
3195
|
+
VaultModified: AugmentedEvent<ApiType, [vaultId: u32, securitization: u128, securitizationTarget: u128, securitizationRatio: u128], {
|
|
3818
3196
|
vaultId: u32;
|
|
3819
3197
|
securitization: u128;
|
|
3820
3198
|
securitizationTarget: u128;
|
|
@@ -3823,11 +3201,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3823
3201
|
/**
|
|
3824
3202
|
* Vault revenue was not collected within the required window, so has been burned
|
|
3825
3203
|
**/
|
|
3826
|
-
VaultRevenueUncollected: AugmentedEvent<ApiType, [
|
|
3827
|
-
vaultId: u32,
|
|
3828
|
-
frameId: u64,
|
|
3829
|
-
amount: u128
|
|
3830
|
-
], {
|
|
3204
|
+
VaultRevenueUncollected: AugmentedEvent<ApiType, [vaultId: u32, frameId: u64, amount: u128], {
|
|
3831
3205
|
vaultId: u32;
|
|
3832
3206
|
frameId: u64;
|
|
3833
3207
|
amount: u128;
|
|
@@ -3835,10 +3209,7 @@ declare module '@polkadot/api-base/types/events' {
|
|
|
3835
3209
|
VaultTermsChanged: AugmentedEvent<ApiType, [vaultId: u32], {
|
|
3836
3210
|
vaultId: u32;
|
|
3837
3211
|
}>;
|
|
3838
|
-
VaultTermsChangeScheduled: AugmentedEvent<ApiType, [
|
|
3839
|
-
vaultId: u32,
|
|
3840
|
-
changeTick: u64
|
|
3841
|
-
], {
|
|
3212
|
+
VaultTermsChangeScheduled: AugmentedEvent<ApiType, [vaultId: u32, changeTick: u64], {
|
|
3842
3213
|
vaultId: u32;
|
|
3843
3214
|
changeTick: u64;
|
|
3844
3215
|
}>;
|
|
@@ -3881,21 +3252,15 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
3881
3252
|
* `Balances` pallet, which uses a `StorageMap` to store balances data only.
|
|
3882
3253
|
* NOTE: This is only used in the case that this pallet is used to store balances.
|
|
3883
3254
|
**/
|
|
3884
|
-
account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PalletBalancesAccountData>, [
|
|
3885
|
-
AccountId32
|
|
3886
|
-
]>;
|
|
3255
|
+
account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PalletBalancesAccountData>, [AccountId32]>;
|
|
3887
3256
|
/**
|
|
3888
3257
|
* Freeze locks on account balances.
|
|
3889
3258
|
**/
|
|
3890
|
-
freezes: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<FrameSupportTokensMiscIdAmountRuntimeFreezeReason>>, [
|
|
3891
|
-
AccountId32
|
|
3892
|
-
]>;
|
|
3259
|
+
freezes: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<FrameSupportTokensMiscIdAmountRuntimeFreezeReason>>, [AccountId32]>;
|
|
3893
3260
|
/**
|
|
3894
3261
|
* Holds on account balances.
|
|
3895
3262
|
**/
|
|
3896
|
-
holds: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<FrameSupportTokensMiscIdAmountRuntimeHoldReason>>, [
|
|
3897
|
-
AccountId32
|
|
3898
|
-
]>;
|
|
3263
|
+
holds: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<FrameSupportTokensMiscIdAmountRuntimeHoldReason>>, [AccountId32]>;
|
|
3899
3264
|
/**
|
|
3900
3265
|
* The total units of outstanding deactivated balance in the system.
|
|
3901
3266
|
**/
|
|
@@ -3906,17 +3271,13 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
3906
3271
|
*
|
|
3907
3272
|
* Use of locks is deprecated in favour of freezes. See `https://github.com/paritytech/substrate/pull/12951/`
|
|
3908
3273
|
**/
|
|
3909
|
-
locks: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesBalanceLock>>, [
|
|
3910
|
-
AccountId32
|
|
3911
|
-
]>;
|
|
3274
|
+
locks: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesBalanceLock>>, [AccountId32]>;
|
|
3912
3275
|
/**
|
|
3913
3276
|
* Named reserves on some account balances.
|
|
3914
3277
|
*
|
|
3915
3278
|
* Use of reserves is deprecated in favour of holds. See `https://github.com/paritytech/substrate/pull/12951/`
|
|
3916
3279
|
**/
|
|
3917
|
-
reserves: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesReserveData>>, [
|
|
3918
|
-
AccountId32
|
|
3919
|
-
]>;
|
|
3280
|
+
reserves: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesReserveData>>, [AccountId32]>;
|
|
3920
3281
|
/**
|
|
3921
3282
|
* The total units issued in the system.
|
|
3922
3283
|
**/
|
|
@@ -3926,39 +3287,28 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
3926
3287
|
/**
|
|
3927
3288
|
* Utxos that have been requested to be cosigned for releasing
|
|
3928
3289
|
**/
|
|
3929
|
-
lockCosignDueByFrame: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeSet<u64>>, [
|
|
3930
|
-
u64
|
|
3931
|
-
]>;
|
|
3290
|
+
lockCosignDueByFrame: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeSet<u64>>, [u64]>;
|
|
3932
3291
|
/**
|
|
3933
3292
|
* Expiration of bitcoin locks by bitcoin height. Funds are burned since the user did not
|
|
3934
3293
|
* unlock it. Bitcoin will go to vault
|
|
3935
3294
|
**/
|
|
3936
|
-
lockExpirationsByBitcoinHeight: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeSet<u64>>, [
|
|
3937
|
-
u64
|
|
3938
|
-
]>;
|
|
3295
|
+
lockExpirationsByBitcoinHeight: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeSet<u64>>, [u64]>;
|
|
3939
3296
|
/**
|
|
3940
3297
|
* Stores the block number where a release was cosigned by the vault.
|
|
3941
3298
|
**/
|
|
3942
|
-
lockReleaseCosignHeightById: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [
|
|
3943
|
-
u64
|
|
3944
|
-
]>;
|
|
3299
|
+
lockReleaseCosignHeightById: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u64]>;
|
|
3945
3300
|
/**
|
|
3946
3301
|
* Stores bitcoin locks that have requested to be released
|
|
3947
3302
|
**/
|
|
3948
|
-
lockReleaseRequestsByUtxoId: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<PalletBitcoinLocksLockReleaseRequest>>, [
|
|
3949
|
-
u64
|
|
3950
|
-
]>;
|
|
3303
|
+
lockReleaseRequestsByUtxoId: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<PalletBitcoinLocksLockReleaseRequest>>, [u64]>;
|
|
3951
3304
|
/**
|
|
3952
3305
|
* Stores bitcoin utxos that have requested to be released
|
|
3953
3306
|
**/
|
|
3954
|
-
locksByUtxoId: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<PalletBitcoinLocksLockedBitcoin>>, [
|
|
3955
|
-
u64
|
|
3956
|
-
]>;
|
|
3307
|
+
locksByUtxoId: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<PalletBitcoinLocksLockedBitcoin>>, [u64]>;
|
|
3957
3308
|
/**
|
|
3958
3309
|
* History of target microgons per btc.
|
|
3959
3310
|
**/
|
|
3960
|
-
microgonPerBtcHistory: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[u64, u128]>>>, [
|
|
3961
|
-
]>;
|
|
3311
|
+
microgonPerBtcHistory: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[u64, u128]>>>, []>;
|
|
3962
3312
|
/**
|
|
3963
3313
|
* The minimum number of satoshis that can be locked
|
|
3964
3314
|
**/
|
|
@@ -3967,49 +3317,36 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
3967
3317
|
/**
|
|
3968
3318
|
* Expiration of orphaned utxo refs by user account
|
|
3969
3319
|
**/
|
|
3970
|
-
orphanedUtxoExpirationByFrame: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeSet<ITuple<[AccountId32, ArgonPrimitivesBitcoinUtxoRef]>>>, [
|
|
3971
|
-
u64
|
|
3972
|
-
]>;
|
|
3320
|
+
orphanedUtxoExpirationByFrame: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeSet<ITuple<[AccountId32, ArgonPrimitivesBitcoinUtxoRef]>>>, [u64]>;
|
|
3973
3321
|
/**
|
|
3974
3322
|
* Mismatched utxos that were sent with invalid amounts to a locked bitcoin
|
|
3975
3323
|
**/
|
|
3976
3324
|
orphanedUtxosByAccount: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: ArgonPrimitivesBitcoinUtxoRef | {
|
|
3977
3325
|
txid?: any;
|
|
3978
3326
|
outputIndex?: any;
|
|
3979
|
-
} | string | Uint8Array) => Observable<Option<PalletBitcoinLocksOrphanedUtxo>>, [
|
|
3980
|
-
AccountId32,
|
|
3981
|
-
ArgonPrimitivesBitcoinUtxoRef
|
|
3982
|
-
]>;
|
|
3327
|
+
} | string | Uint8Array) => Observable<Option<PalletBitcoinLocksOrphanedUtxo>>, [AccountId32, ArgonPrimitivesBitcoinUtxoRef]>;
|
|
3983
3328
|
/**
|
|
3984
3329
|
* Index of active UTXO IDs per vault
|
|
3985
3330
|
**/
|
|
3986
|
-
utxoIdsByVaultId: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u64 | AnyNumber | Uint8Array) => Observable<Option<Null>>, [
|
|
3987
|
-
u32,
|
|
3988
|
-
u64
|
|
3989
|
-
]>;
|
|
3331
|
+
utxoIdsByVaultId: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u64 | AnyNumber | Uint8Array) => Observable<Option<Null>>, [u32, u64]>;
|
|
3990
3332
|
};
|
|
3991
3333
|
bitcoinUtxos: {
|
|
3992
3334
|
/**
|
|
3993
3335
|
* The genesis set bitcoin network that this chain is tied to
|
|
3994
3336
|
**/
|
|
3995
|
-
bitcoinNetwork: AugmentedQuery<ApiType, () => Observable<ArgonPrimitivesBitcoinBitcoinNetwork>, [
|
|
3996
|
-
]>;
|
|
3337
|
+
bitcoinNetwork: AugmentedQuery<ApiType, () => Observable<ArgonPrimitivesBitcoinBitcoinNetwork>, []>;
|
|
3997
3338
|
/**
|
|
3998
3339
|
* Candidate UTXOs associated with a lock (mismatches, extra funding, etc.).
|
|
3999
3340
|
**/
|
|
4000
|
-
candidateUtxoRefsByUtxoId: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeMap<ArgonPrimitivesBitcoinUtxoRef, u64>>, [
|
|
4001
|
-
u64
|
|
4002
|
-
]>;
|
|
3341
|
+
candidateUtxoRefsByUtxoId: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeMap<ArgonPrimitivesBitcoinUtxoRef, u64>>, [u64]>;
|
|
4003
3342
|
/**
|
|
4004
3343
|
* An oracle-provided confirmed bitcoin block (eg, 6 blocks back)
|
|
4005
3344
|
**/
|
|
4006
|
-
confirmedBitcoinBlockTip: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesBitcoinBitcoinBlock>>, [
|
|
4007
|
-
]>;
|
|
3345
|
+
confirmedBitcoinBlockTip: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesBitcoinBitcoinBlock>>, []>;
|
|
4008
3346
|
/**
|
|
4009
3347
|
* Pending funding entries that have expired and are awaiting bounded cleanup.
|
|
4010
3348
|
**/
|
|
4011
|
-
expiredPendingFunding: AugmentedQuery<ApiType, () => Observable<BTreeMap<u64, ArgonPrimitivesBitcoinUtxoValue>>, [
|
|
4012
|
-
]>;
|
|
3349
|
+
expiredPendingFunding: AugmentedQuery<ApiType, () => Observable<BTreeMap<u64, ArgonPrimitivesBitcoinUtxoValue>>, []>;
|
|
4013
3350
|
/**
|
|
4014
3351
|
* Check if the inherent was included
|
|
4015
3352
|
**/
|
|
@@ -4022,25 +3359,20 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4022
3359
|
lockedUtxos: AugmentedQuery<ApiType, (arg: ArgonPrimitivesBitcoinUtxoRef | {
|
|
4023
3360
|
txid?: any;
|
|
4024
3361
|
outputIndex?: any;
|
|
4025
|
-
} | string | Uint8Array) => Observable<Option<ArgonPrimitivesBitcoinUtxoValue>>, [
|
|
4026
|
-
ArgonPrimitivesBitcoinUtxoRef
|
|
4027
|
-
]>;
|
|
3362
|
+
} | string | Uint8Array) => Observable<Option<ArgonPrimitivesBitcoinUtxoValue>>, [ArgonPrimitivesBitcoinUtxoRef]>;
|
|
4028
3363
|
/**
|
|
4029
3364
|
* Bitcoin locks that are pending full funding on the bitcoin network
|
|
4030
3365
|
**/
|
|
4031
|
-
locksPendingFunding: AugmentedQuery<ApiType, () => Observable<BTreeMap<u64, ArgonPrimitivesBitcoinUtxoValue>>, [
|
|
4032
|
-
]>;
|
|
3366
|
+
locksPendingFunding: AugmentedQuery<ApiType, () => Observable<BTreeMap<u64, ArgonPrimitivesBitcoinUtxoValue>>, []>;
|
|
4033
3367
|
/**
|
|
4034
3368
|
* Bitcoin Oracle Operator Account
|
|
4035
3369
|
**/
|
|
4036
3370
|
oracleOperatorAccount: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []>;
|
|
4037
|
-
previousBitcoinBlockTip: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesBitcoinBitcoinBlock>>, [
|
|
4038
|
-
]>;
|
|
3371
|
+
previousBitcoinBlockTip: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesBitcoinBitcoinBlock>>, []>;
|
|
4039
3372
|
/**
|
|
4040
3373
|
* The last synched bitcoin block
|
|
4041
3374
|
**/
|
|
4042
|
-
synchedBitcoinBlock: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesBitcoinBitcoinBlock>>, [
|
|
4043
|
-
]>;
|
|
3375
|
+
synchedBitcoinBlock: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesBitcoinBitcoinBlock>>, []>;
|
|
4044
3376
|
/**
|
|
4045
3377
|
* Stores if parent block had a confirmed bitcoin block
|
|
4046
3378
|
**/
|
|
@@ -4048,9 +3380,7 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4048
3380
|
/**
|
|
4049
3381
|
* A mapping of utxo id to the confirmed utxo reference
|
|
4050
3382
|
**/
|
|
4051
|
-
utxoIdToFundingUtxoRef: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<ArgonPrimitivesBitcoinUtxoRef>>, [
|
|
4052
|
-
u64
|
|
4053
|
-
]>;
|
|
3383
|
+
utxoIdToFundingUtxoRef: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<ArgonPrimitivesBitcoinUtxoRef>>, [u64]>;
|
|
4054
3384
|
};
|
|
4055
3385
|
blockRewards: {
|
|
4056
3386
|
/**
|
|
@@ -4070,9 +3400,7 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4070
3400
|
/**
|
|
4071
3401
|
* Historical payouts by block number
|
|
4072
3402
|
**/
|
|
4073
|
-
payoutsByBlock: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ArgonPrimitivesBlockSealBlockPayout>>, [
|
|
4074
|
-
u32
|
|
4075
|
-
]>;
|
|
3403
|
+
payoutsByBlock: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ArgonPrimitivesBlockSealBlockPayout>>, [u32]>;
|
|
4076
3404
|
};
|
|
4077
3405
|
blockSeal: {
|
|
4078
3406
|
/**
|
|
@@ -4084,8 +3412,7 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4084
3412
|
* Is the block from a vote seal?
|
|
4085
3413
|
**/
|
|
4086
3414
|
isBlockFromVoteSeal: AugmentedQuery<ApiType, () => Observable<bool>, []>;
|
|
4087
|
-
lastBlockSealerInfo: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesProvidersBlockSealerInfo>>, [
|
|
4088
|
-
]>;
|
|
3415
|
+
lastBlockSealerInfo: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesProvidersBlockSealerInfo>>, []>;
|
|
4089
3416
|
lastTickWithVoteSeal: AugmentedQuery<ApiType, () => Observable<u64>, []>;
|
|
4090
3417
|
/**
|
|
4091
3418
|
* The calculated parent voting key for a block. Refers to the Notebook BlockVote Revealed
|
|
@@ -4095,8 +3422,7 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4095
3422
|
/**
|
|
4096
3423
|
* Ensures only a single inherent is applied
|
|
4097
3424
|
**/
|
|
4098
|
-
tempSealInherent: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesInherentsBlockSealInherent>>, [
|
|
4099
|
-
]>;
|
|
3425
|
+
tempSealInherent: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesInherentsBlockSealInherent>>, []>;
|
|
4100
3426
|
/**
|
|
4101
3427
|
* The count of votes in the last 3 ticks
|
|
4102
3428
|
**/
|
|
@@ -4131,13 +3457,11 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4131
3457
|
/**
|
|
4132
3458
|
* Temporary store the vote digest
|
|
4133
3459
|
**/
|
|
4134
|
-
tempBlockVoteDigest: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesDigestsBlockVoteDigest>>, [
|
|
4135
|
-
]>;
|
|
3460
|
+
tempBlockVoteDigest: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesDigestsBlockVoteDigest>>, []>;
|
|
4136
3461
|
/**
|
|
4137
3462
|
* Temporary store of any current tick notebooks included in this block (vs tick)
|
|
4138
3463
|
**/
|
|
4139
|
-
tempCurrentTickNotebooksInBlock: AugmentedQuery<ApiType, () => Observable<Vec<ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails>>, [
|
|
4140
|
-
]>;
|
|
3464
|
+
tempCurrentTickNotebooksInBlock: AugmentedQuery<ApiType, () => Observable<Vec<ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails>>, []>;
|
|
4141
3465
|
/**
|
|
4142
3466
|
* Keeps the last 3 vote minimums. The first one applies to the current block.
|
|
4143
3467
|
**/
|
|
@@ -4147,15 +3471,11 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4147
3471
|
/**
|
|
4148
3472
|
* Config accepted for each supported source chain.
|
|
4149
3473
|
**/
|
|
4150
|
-
chainConfigBySourceChain: AugmentedQuery<ApiType, (arg: PalletCrosschainTransferSourceChain | 'Ethereum' | number | Uint8Array) => Observable<Option<PalletCrosschainTransferChainConfig>>, [
|
|
4151
|
-
PalletCrosschainTransferSourceChain
|
|
4152
|
-
]>;
|
|
3474
|
+
chainConfigBySourceChain: AugmentedQuery<ApiType, (arg: PalletCrosschainTransferSourceChain | 'Ethereum' | number | Uint8Array) => Observable<Option<PalletCrosschainTransferChainConfig>>, [PalletCrosschainTransferSourceChain]>;
|
|
4153
3475
|
/**
|
|
4154
3476
|
* Accounts whose recent-transfer evidence expires at a given tick.
|
|
4155
3477
|
**/
|
|
4156
|
-
inboundTransfersExpiringAt: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<AccountId32>>, [
|
|
4157
|
-
u64
|
|
4158
|
-
]>;
|
|
3478
|
+
inboundTransfersExpiringAt: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<AccountId32>>, [u64]>;
|
|
4159
3479
|
/**
|
|
4160
3480
|
* Latest tick whose recent-transfer expiration bucket was cleaned up.
|
|
4161
3481
|
**/
|
|
@@ -4163,45 +3483,29 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4163
3483
|
/**
|
|
4164
3484
|
* Latest accepted nonce for each `(source_chain, from)` pair.
|
|
4165
3485
|
**/
|
|
4166
|
-
nonceBySourceAccount: AugmentedQuery<ApiType, (arg: ITuple<[PalletCrosschainTransferSourceChain, H160]> | [
|
|
4167
|
-
PalletCrosschainTransferSourceChain | 'Ethereum' | number | Uint8Array,
|
|
4168
|
-
H160 | string | Uint8Array
|
|
4169
|
-
]) => Observable<Option<u64>>, [
|
|
4170
|
-
ITuple<[PalletCrosschainTransferSourceChain, H160]>
|
|
4171
|
-
]>;
|
|
3486
|
+
nonceBySourceAccount: AugmentedQuery<ApiType, (arg: ITuple<[PalletCrosschainTransferSourceChain, H160]> | [PalletCrosschainTransferSourceChain | 'Ethereum' | number | Uint8Array, H160 | string | Uint8Array]) => Observable<Option<u64>>, [ITuple<[PalletCrosschainTransferSourceChain, H160]>]>;
|
|
4172
3487
|
/**
|
|
4173
3488
|
* Count of still-retained qualifying Argon transfers for each local account.
|
|
4174
3489
|
**/
|
|
4175
|
-
recentArgonTransfersByAccount: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<u32>, [
|
|
4176
|
-
AccountId32
|
|
4177
|
-
]>;
|
|
3490
|
+
recentArgonTransfersByAccount: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<u32>, [AccountId32]>;
|
|
4178
3491
|
};
|
|
4179
3492
|
digests: {
|
|
4180
|
-
tempDigests: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesDigestsDigestset>>, [
|
|
4181
|
-
]>;
|
|
3493
|
+
tempDigests: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesDigestsDigestset>>, []>;
|
|
4182
3494
|
};
|
|
4183
3495
|
domains: {
|
|
4184
|
-
expiringDomainsByBlock: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<H256>>, [
|
|
4185
|
-
|
|
4186
|
-
]>;
|
|
4187
|
-
registeredDomains: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<PalletDomainsDomainRegistration>>, [
|
|
4188
|
-
H256
|
|
4189
|
-
]>;
|
|
4190
|
-
zoneRecordsByDomain: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<ArgonPrimitivesDomainZoneRecord>>, [
|
|
4191
|
-
H256
|
|
4192
|
-
]>;
|
|
3496
|
+
expiringDomainsByBlock: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<H256>>, [u64]>;
|
|
3497
|
+
registeredDomains: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<PalletDomainsDomainRegistration>>, [H256]>;
|
|
3498
|
+
zoneRecordsByDomain: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<ArgonPrimitivesDomainZoneRecord>>, [H256]>;
|
|
4193
3499
|
};
|
|
4194
3500
|
ethereumVerifier: {
|
|
4195
3501
|
/**
|
|
4196
3502
|
* Chain-configured beacon preset expected by clients that submit verifier updates.
|
|
4197
3503
|
**/
|
|
4198
|
-
beaconPreset: AugmentedQuery<ApiType, () => Observable<ArgonPrimitivesEthereumEthereumBeaconPreset>, [
|
|
4199
|
-
]>;
|
|
3504
|
+
beaconPreset: AugmentedQuery<ApiType, () => Observable<ArgonPrimitivesEthereumEthereumBeaconPreset>, []>;
|
|
4200
3505
|
/**
|
|
4201
3506
|
* Sync committee for current period
|
|
4202
3507
|
**/
|
|
4203
|
-
currentSyncCommittee: AugmentedQuery<ApiType, () => Observable<PalletEthereumVerifierSyncCommitteePrepared>, [
|
|
4204
|
-
]>;
|
|
3508
|
+
currentSyncCommittee: AugmentedQuery<ApiType, () => Observable<PalletEthereumVerifierSyncCommitteePrepared>, []>;
|
|
4205
3509
|
/**
|
|
4206
3510
|
* Execution header anchors: current position in ring buffer.
|
|
4207
3511
|
**/
|
|
@@ -4209,21 +3513,15 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4209
3513
|
/**
|
|
4210
3514
|
* Execution header anchors: mapping of ring buffer index to a pruning candidate.
|
|
4211
3515
|
**/
|
|
4212
|
-
executionHeaderAnchorMapping: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<H256>, [
|
|
4213
|
-
u32
|
|
4214
|
-
]>;
|
|
3516
|
+
executionHeaderAnchorMapping: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<H256>, [u32]>;
|
|
4215
3517
|
/**
|
|
4216
3518
|
* Retained execution-layer header anchors by execution block hash.
|
|
4217
3519
|
**/
|
|
4218
|
-
executionHeaderAnchors: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<PalletEthereumVerifierExecutionHeaderAnchor>>, [
|
|
4219
|
-
H256
|
|
4220
|
-
]>;
|
|
3520
|
+
executionHeaderAnchors: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<PalletEthereumVerifierExecutionHeaderAnchor>>, [H256]>;
|
|
4221
3521
|
/**
|
|
4222
3522
|
* Beacon state by finalized block root
|
|
4223
3523
|
**/
|
|
4224
|
-
finalizedBeaconState: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<PalletEthereumVerifierFinalizedBeaconHeaderState>>, [
|
|
4225
|
-
H256
|
|
4226
|
-
]>;
|
|
3524
|
+
finalizedBeaconState: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<PalletEthereumVerifierFinalizedBeaconHeaderState>>, [H256]>;
|
|
4227
3525
|
/**
|
|
4228
3526
|
* Finalized Headers: Current position in ring buffer
|
|
4229
3527
|
**/
|
|
@@ -4231,14 +3529,11 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4231
3529
|
/**
|
|
4232
3530
|
* Finalized Headers: Mapping of ring buffer index to a pruning candidate
|
|
4233
3531
|
**/
|
|
4234
|
-
finalizedBeaconStateMapping: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<H256>, [
|
|
4235
|
-
u32
|
|
4236
|
-
]>;
|
|
3532
|
+
finalizedBeaconStateMapping: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<H256>, [u32]>;
|
|
4237
3533
|
/**
|
|
4238
3534
|
* Fork-version schedule used for sync-committee signing domains and beacon state paths.
|
|
4239
3535
|
**/
|
|
4240
|
-
forkVersionSchedule: AugmentedQuery<ApiType, () => Observable<Option<PalletEthereumVerifierForkVersions>>, [
|
|
4241
|
-
]>;
|
|
3536
|
+
forkVersionSchedule: AugmentedQuery<ApiType, () => Observable<Option<PalletEthereumVerifierForkVersions>>, []>;
|
|
4242
3537
|
/**
|
|
4243
3538
|
* Latest imported checkpoint root
|
|
4244
3539
|
**/
|
|
@@ -4246,8 +3541,7 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4246
3541
|
/**
|
|
4247
3542
|
* Latest retained execution-layer anchor block hash.
|
|
4248
3543
|
**/
|
|
4249
|
-
latestExecutionHeaderAnchorBlockHash: AugmentedQuery<ApiType, () => Observable<Option<H256>>, [
|
|
4250
|
-
]>;
|
|
3544
|
+
latestExecutionHeaderAnchorBlockHash: AugmentedQuery<ApiType, () => Observable<Option<H256>>, []>;
|
|
4251
3545
|
/**
|
|
4252
3546
|
* Latest imported finalized block root
|
|
4253
3547
|
**/
|
|
@@ -4259,21 +3553,18 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4259
3553
|
/**
|
|
4260
3554
|
* Sync committee for next period
|
|
4261
3555
|
**/
|
|
4262
|
-
nextSyncCommittee: AugmentedQuery<ApiType, () => Observable<PalletEthereumVerifierSyncCommitteePrepared>, [
|
|
4263
|
-
]>;
|
|
3556
|
+
nextSyncCommittee: AugmentedQuery<ApiType, () => Observable<PalletEthereumVerifierSyncCommitteePrepared>, []>;
|
|
4264
3557
|
/**
|
|
4265
3558
|
* The current operating mode of the pallet.
|
|
4266
3559
|
**/
|
|
4267
|
-
operatingMode: AugmentedQuery<ApiType, () => Observable<PalletEthereumVerifierBasicOperatingMode>, [
|
|
4268
|
-
]>;
|
|
3560
|
+
operatingMode: AugmentedQuery<ApiType, () => Observable<PalletEthereumVerifierBasicOperatingMode>, []>;
|
|
4269
3561
|
validatorsRoot: AugmentedQuery<ApiType, () => Observable<H256>, []>;
|
|
4270
3562
|
};
|
|
4271
3563
|
grandpa: {
|
|
4272
3564
|
/**
|
|
4273
3565
|
* The current list of authorities.
|
|
4274
3566
|
**/
|
|
4275
|
-
authorities: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>>, [
|
|
4276
|
-
]>;
|
|
3567
|
+
authorities: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>>, []>;
|
|
4277
3568
|
/**
|
|
4278
3569
|
* The number of changes (both in terms of keys and underlying economic responsibilities)
|
|
4279
3570
|
* in the "set" of Grandpa validators from genesis.
|
|
@@ -4286,8 +3577,7 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4286
3577
|
/**
|
|
4287
3578
|
* Pending change: (signaled at, scheduled change).
|
|
4288
3579
|
**/
|
|
4289
|
-
pendingChange: AugmentedQuery<ApiType, () => Observable<Option<PalletGrandpaStoredPendingChange>>, [
|
|
4290
|
-
]>;
|
|
3580
|
+
pendingChange: AugmentedQuery<ApiType, () => Observable<Option<PalletGrandpaStoredPendingChange>>, []>;
|
|
4291
3581
|
/**
|
|
4292
3582
|
* A mapping from grandpa set ID to the index of the *most recent* session for which its
|
|
4293
3583
|
* members were responsible.
|
|
@@ -4300,9 +3590,7 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4300
3590
|
*
|
|
4301
3591
|
* TWOX-NOTE: `SetId` is not under user control.
|
|
4302
3592
|
**/
|
|
4303
|
-
setIdSession: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [
|
|
4304
|
-
u64
|
|
4305
|
-
]>;
|
|
3593
|
+
setIdSession: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u64]>;
|
|
4306
3594
|
/**
|
|
4307
3595
|
* `true` if we are currently stalled.
|
|
4308
3596
|
**/
|
|
@@ -4321,22 +3609,15 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4321
3609
|
* transfers for that notary remain frozen by design until a notary-switch recovery path is
|
|
4322
3610
|
* executed.
|
|
4323
3611
|
**/
|
|
4324
|
-
expiringTransfersOutByNotary: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u64 | AnyNumber | Uint8Array) => Observable<Vec<u32>>, [
|
|
4325
|
-
u32,
|
|
4326
|
-
u64
|
|
4327
|
-
]>;
|
|
3612
|
+
expiringTransfersOutByNotary: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u64 | AnyNumber | Uint8Array) => Observable<Vec<u32>>, [u32, u64]>;
|
|
4328
3613
|
nextTransferId: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []>;
|
|
4329
|
-
pendingTransfersOut: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<PalletLocalchainTransferQueuedTransferOut>>, [
|
|
4330
|
-
u32
|
|
4331
|
-
]>;
|
|
3614
|
+
pendingTransfersOut: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<PalletLocalchainTransferQueuedTransferOut>>, [u32]>;
|
|
4332
3615
|
};
|
|
4333
3616
|
miningSlot: {
|
|
4334
3617
|
/**
|
|
4335
3618
|
* Lookup by account id to the corresponding index in MinersByCohort and MinerNoncesByCohort
|
|
4336
3619
|
**/
|
|
4337
|
-
accountIndexLookup: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<ITuple<[u64, u32]>>>, [
|
|
4338
|
-
AccountId32
|
|
4339
|
-
]>;
|
|
3620
|
+
accountIndexLookup: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<ITuple<[u64, u32]>>>, [AccountId32]>;
|
|
4340
3621
|
activeMinersCount: AugmentedQuery<ApiType, () => Observable<u16>, []>;
|
|
4341
3622
|
/**
|
|
4342
3623
|
* Argonots that must be locked to take a Miner role
|
|
@@ -4350,8 +3631,7 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4350
3631
|
* The cohort set to go into effect in the next slot. The Vec has all
|
|
4351
3632
|
* registrants with their bid amount
|
|
4352
3633
|
**/
|
|
4353
|
-
bidsForNextSlotCohort: AugmentedQuery<ApiType, () => Observable<Vec<ArgonPrimitivesBlockSealMiningRegistration>>, [
|
|
4354
|
-
]>;
|
|
3634
|
+
bidsForNextSlotCohort: AugmentedQuery<ApiType, () => Observable<Vec<ArgonPrimitivesBlockSealMiningRegistration>>, []>;
|
|
4355
3635
|
/**
|
|
4356
3636
|
* The number of reward ticks remaining in the frame
|
|
4357
3637
|
**/
|
|
@@ -4368,8 +3648,7 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4368
3648
|
/**
|
|
4369
3649
|
* The number of bids per slot for the last 10 slots (newest first)
|
|
4370
3650
|
**/
|
|
4371
|
-
historicalBidsPerSlot: AugmentedQuery<ApiType, () => Observable<Vec<ArgonPrimitivesBlockSealMiningBidStats>>, [
|
|
4372
|
-
]>;
|
|
3651
|
+
historicalBidsPerSlot: AugmentedQuery<ApiType, () => Observable<Vec<ArgonPrimitivesBlockSealMiningBidStats>>, []>;
|
|
4373
3652
|
/**
|
|
4374
3653
|
* Is the next slot still open for bids
|
|
4375
3654
|
**/
|
|
@@ -4379,19 +3658,15 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4379
3658
|
* block. It's a blake2 256 hash of the miner account id and the block hash at time of
|
|
4380
3659
|
* activation.
|
|
4381
3660
|
**/
|
|
4382
|
-
minerNonceScoringByCohort: AugmentedQuery<ApiType, () => Observable<BTreeMap<u64, Vec<PalletMiningSlotMinerNonceScoring>>>, [
|
|
4383
|
-
]>;
|
|
3661
|
+
minerNonceScoringByCohort: AugmentedQuery<ApiType, () => Observable<BTreeMap<u64, Vec<PalletMiningSlotMinerNonceScoring>>>, []>;
|
|
4384
3662
|
/**
|
|
4385
3663
|
* Miners that are active in the current block (post initialize) by their starting frame
|
|
4386
3664
|
**/
|
|
4387
|
-
minersByCohort: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<ArgonPrimitivesBlockSealMiningRegistration>>, [
|
|
4388
|
-
u64
|
|
4389
|
-
]>;
|
|
3665
|
+
minersByCohort: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<ArgonPrimitivesBlockSealMiningRegistration>>, [u64]>;
|
|
4390
3666
|
/**
|
|
4391
3667
|
* The mining slot configuration set in genesis
|
|
4392
3668
|
**/
|
|
4393
|
-
miningConfig: AugmentedQuery<ApiType, () => Observable<ArgonPrimitivesBlockSealMiningSlotConfig>, [
|
|
4394
|
-
]>;
|
|
3669
|
+
miningConfig: AugmentedQuery<ApiType, () => Observable<ArgonPrimitivesBlockSealMiningSlotConfig>, []>;
|
|
4395
3670
|
/**
|
|
4396
3671
|
* Is a new frame started in this block
|
|
4397
3672
|
**/
|
|
@@ -4408,24 +3683,20 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4408
3683
|
/**
|
|
4409
3684
|
* The miners released in the last block (only kept for a single block)
|
|
4410
3685
|
**/
|
|
4411
|
-
releasedMinersByAccountId: AugmentedQuery<ApiType, () => Observable<BTreeMap<AccountId32, ArgonPrimitivesBlockSealMiningRegistration>>, [
|
|
4412
|
-
]>;
|
|
3686
|
+
releasedMinersByAccountId: AugmentedQuery<ApiType, () => Observable<BTreeMap<AccountId32, ArgonPrimitivesBlockSealMiningRegistration>>, []>;
|
|
4413
3687
|
/**
|
|
4414
3688
|
* The upcoming changes scheduled for cohort size by frame.
|
|
4415
3689
|
* Capacity of 11 allows for 10 frames worth of scheduled changes plus one working slot
|
|
4416
3690
|
* to schedule a new change during frame finalization.
|
|
4417
3691
|
**/
|
|
4418
|
-
scheduledCohortSizeChangeByFrame: AugmentedQuery<ApiType, () => Observable<BTreeMap<u64, u32>>, [
|
|
4419
|
-
]>;
|
|
3692
|
+
scheduledCohortSizeChangeByFrame: AugmentedQuery<ApiType, () => Observable<BTreeMap<u64, u32>>, []>;
|
|
4420
3693
|
/**
|
|
4421
3694
|
* Temporary store the frame info digest
|
|
4422
3695
|
**/
|
|
4423
|
-
tempFrameInfoDigest: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesDigestsFrameInfo>>, [
|
|
4424
|
-
]>;
|
|
3696
|
+
tempFrameInfoDigest: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesDigestsFrameInfo>>, []>;
|
|
4425
3697
|
};
|
|
4426
3698
|
mint: {
|
|
4427
|
-
blockMintAction: AugmentedQuery<ApiType, () => Observable<ITuple<[u32, PalletMintMintAction]>>, [
|
|
4428
|
-
]>;
|
|
3699
|
+
blockMintAction: AugmentedQuery<ApiType, () => Observable<ITuple<[u32, PalletMintMintAction]>>, []>;
|
|
4429
3700
|
/**
|
|
4430
3701
|
* The amount of argons minted per mining cohort (ie, grouped by starting frame id)
|
|
4431
3702
|
**/
|
|
@@ -4443,37 +3714,24 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4443
3714
|
* a) CPI >= 0 and
|
|
4444
3715
|
* b) the aggregate minted Bitcoins <= the aggregate minted microgons from mining
|
|
4445
3716
|
**/
|
|
4446
|
-
pendingMintUtxos: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[u64, AccountId32, u128]>>>, [
|
|
4447
|
-
]>;
|
|
3717
|
+
pendingMintUtxos: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[u64, AccountId32, u128]>>>, []>;
|
|
4448
3718
|
};
|
|
4449
3719
|
multisig: {
|
|
4450
3720
|
/**
|
|
4451
3721
|
* The set of open multisig operations.
|
|
4452
3722
|
**/
|
|
4453
|
-
multisigs: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: U8aFixed | string | Uint8Array) => Observable<Option<PalletMultisigMultisig>>, [
|
|
4454
|
-
AccountId32,
|
|
4455
|
-
U8aFixed
|
|
4456
|
-
]>;
|
|
3723
|
+
multisigs: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: U8aFixed | string | Uint8Array) => Observable<Option<PalletMultisigMultisig>>, [AccountId32, U8aFixed]>;
|
|
4457
3724
|
};
|
|
4458
3725
|
notaries: {
|
|
4459
|
-
activeNotaries: AugmentedQuery<ApiType, () => Observable<Vec<ArgonPrimitivesNotaryNotaryRecord>>, [
|
|
4460
|
-
]>;
|
|
4461
|
-
expiringProposals: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<AccountId32>>, [
|
|
4462
|
-
u32
|
|
4463
|
-
]>;
|
|
3726
|
+
activeNotaries: AugmentedQuery<ApiType, () => Observable<Vec<ArgonPrimitivesNotaryNotaryRecord>>, []>;
|
|
3727
|
+
expiringProposals: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<AccountId32>>, [u32]>;
|
|
4464
3728
|
nextNotaryId: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []>;
|
|
4465
|
-
notaryKeyHistory: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[u64, U8aFixed]>>>, [
|
|
4466
|
-
|
|
4467
|
-
]>;
|
|
4468
|
-
proposedNotaries: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<ITuple<[ArgonPrimitivesNotaryNotaryMeta, u32]>>>, [
|
|
4469
|
-
AccountId32
|
|
4470
|
-
]>;
|
|
3729
|
+
notaryKeyHistory: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[u64, U8aFixed]>>>, [u32]>;
|
|
3730
|
+
proposedNotaries: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<ITuple<[ArgonPrimitivesNotaryNotaryMeta, u32]>>>, [AccountId32]>;
|
|
4471
3731
|
/**
|
|
4472
3732
|
* Metadata changes to be activated at the given tick
|
|
4473
3733
|
**/
|
|
4474
|
-
queuedNotaryMetaChanges: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeMap<u32, ArgonPrimitivesNotaryNotaryMeta>>, [
|
|
4475
|
-
u64
|
|
4476
|
-
]>;
|
|
3734
|
+
queuedNotaryMetaChanges: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeMap<u32, ArgonPrimitivesNotaryNotaryMeta>>, [u64]>;
|
|
4477
3735
|
};
|
|
4478
3736
|
notebook: {
|
|
4479
3737
|
/**
|
|
@@ -4484,15 +3742,11 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4484
3742
|
accountOriginLastChangedNotebookByNotary: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: ArgonPrimitivesBalanceChangeAccountOrigin | {
|
|
4485
3743
|
notebookNumber?: any;
|
|
4486
3744
|
accountUid?: any;
|
|
4487
|
-
} | string | Uint8Array) => Observable<Option<u32>>, [
|
|
4488
|
-
u32,
|
|
4489
|
-
ArgonPrimitivesBalanceChangeAccountOrigin
|
|
4490
|
-
]>;
|
|
3745
|
+
} | string | Uint8Array) => Observable<Option<u32>>, [u32, ArgonPrimitivesBalanceChangeAccountOrigin]>;
|
|
4491
3746
|
/**
|
|
4492
3747
|
* The notebooks included in this block
|
|
4493
3748
|
**/
|
|
4494
|
-
blockNotebooks: AugmentedQuery<ApiType, () => Observable<ArgonPrimitivesDigestsNotebookDigest>, [
|
|
4495
|
-
]>;
|
|
3749
|
+
blockNotebooks: AugmentedQuery<ApiType, () => Observable<ArgonPrimitivesDigestsNotebookDigest>, []>;
|
|
4496
3750
|
/**
|
|
4497
3751
|
* Check if the inherent was included
|
|
4498
3752
|
**/
|
|
@@ -4501,49 +3755,33 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4501
3755
|
* List of last few notebook details by notary. The bool is whether the notebook is eligible
|
|
4502
3756
|
* for votes (received at correct tick and audit passed)
|
|
4503
3757
|
**/
|
|
4504
|
-
lastNotebookDetailsByNotary: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[ArgonPrimitivesNotaryNotaryNotebookKeyDetails, bool]>>>, [
|
|
4505
|
-
u32
|
|
4506
|
-
]>;
|
|
3758
|
+
lastNotebookDetailsByNotary: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[ArgonPrimitivesNotaryNotaryNotebookKeyDetails, bool]>>>, [u32]>;
|
|
4507
3759
|
/**
|
|
4508
3760
|
* Notaries ready to start reprocessing at a given notebook number
|
|
4509
3761
|
**/
|
|
4510
|
-
lockedNotaryReadyForReprocess: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [
|
|
4511
|
-
u32
|
|
4512
|
-
]>;
|
|
3762
|
+
lockedNotaryReadyForReprocess: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u32]>;
|
|
4513
3763
|
/**
|
|
4514
3764
|
* Notaries locked for failing audits
|
|
4515
3765
|
**/
|
|
4516
|
-
notariesLockedForFailedAudit: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[u32, u64, ArgonNotaryAuditErrorVerifyError]>>>, [
|
|
4517
|
-
u32
|
|
4518
|
-
]>;
|
|
3766
|
+
notariesLockedForFailedAudit: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[u32, u64, ArgonNotaryAuditErrorVerifyError]>>>, [u32]>;
|
|
4519
3767
|
/**
|
|
4520
3768
|
* Double storage map of notary id + notebook # to the change root
|
|
4521
3769
|
**/
|
|
4522
|
-
notebookChangedAccountsRootByNotary: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<H256>>, [
|
|
4523
|
-
u32,
|
|
4524
|
-
u32
|
|
4525
|
-
]>;
|
|
3770
|
+
notebookChangedAccountsRootByNotary: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<H256>>, [u32, u32]>;
|
|
4526
3771
|
};
|
|
4527
3772
|
operationalAccounts: {
|
|
4528
3773
|
/**
|
|
4529
3774
|
* Referral codes that have already been linked, keyed to their proof expiration frame.
|
|
4530
3775
|
**/
|
|
4531
|
-
consumedReferralCodes: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<u64>>, [
|
|
4532
|
-
U8aFixed
|
|
4533
|
-
]>;
|
|
3776
|
+
consumedReferralCodes: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<u64>>, [U8aFixed]>;
|
|
4534
3777
|
/**
|
|
4535
3778
|
* Referral codes to clear after their referral proof expiration frame.
|
|
4536
3779
|
**/
|
|
4537
|
-
consumedReferralCodesByExpiration: AugmentedQuery<ApiType, (arg1: u64 | AnyNumber | Uint8Array, arg2: U8aFixed | string | Uint8Array) => Observable<Option<Null>>, [
|
|
4538
|
-
u64,
|
|
4539
|
-
U8aFixed
|
|
4540
|
-
]>;
|
|
3780
|
+
consumedReferralCodesByExpiration: AugmentedQuery<ApiType, (arg1: u64 | AnyNumber | Uint8Array, arg2: U8aFixed | string | Uint8Array) => Observable<Option<Null>>, [u64, U8aFixed]>;
|
|
4541
3781
|
/**
|
|
4542
3782
|
* Opaque encrypted sponsor server payload keyed by the sponsee operational account.
|
|
4543
3783
|
**/
|
|
4544
|
-
encryptedServerBySponsee: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<Bytes>>, [
|
|
4545
|
-
AccountId32
|
|
4546
|
-
]>;
|
|
3784
|
+
encryptedServerBySponsee: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<Bytes>>, [AccountId32]>;
|
|
4547
3785
|
/**
|
|
4548
3786
|
* Oldest referral expiration frame that still has cleanup work to resume.
|
|
4549
3787
|
**/
|
|
@@ -4551,20 +3789,15 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4551
3789
|
/**
|
|
4552
3790
|
* Reverse lookup of any linked account to its operational account id.
|
|
4553
3791
|
**/
|
|
4554
|
-
operationalAccountBySubAccount: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<AccountId32>>, [
|
|
4555
|
-
AccountId32
|
|
4556
|
-
]>;
|
|
3792
|
+
operationalAccountBySubAccount: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<AccountId32>>, [AccountId32]>;
|
|
4557
3793
|
/**
|
|
4558
3794
|
* Registered operational accounts keyed by the primary account id.
|
|
4559
3795
|
**/
|
|
4560
|
-
operationalAccounts: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PalletOperationalAccountsOperationalAccount>>, [
|
|
4561
|
-
AccountId32
|
|
4562
|
-
]>;
|
|
3796
|
+
operationalAccounts: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PalletOperationalAccountsOperationalAccount>>, [AccountId32]>;
|
|
4563
3797
|
/**
|
|
4564
3798
|
* Configured reward amounts for operational accounts.
|
|
4565
3799
|
**/
|
|
4566
|
-
rewards: AugmentedQuery<ApiType, () => Observable<PalletOperationalAccountsRewardsConfig>, [
|
|
4567
|
-
]>;
|
|
3800
|
+
rewards: AugmentedQuery<ApiType, () => Observable<PalletOperationalAccountsRewardsConfig>, []>;
|
|
4568
3801
|
};
|
|
4569
3802
|
ownership: {
|
|
4570
3803
|
/**
|
|
@@ -4593,21 +3826,15 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4593
3826
|
* `Balances` pallet, which uses a `StorageMap` to store balances data only.
|
|
4594
3827
|
* NOTE: This is only used in the case that this pallet is used to store balances.
|
|
4595
3828
|
**/
|
|
4596
|
-
account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PalletBalancesAccountData>, [
|
|
4597
|
-
AccountId32
|
|
4598
|
-
]>;
|
|
3829
|
+
account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PalletBalancesAccountData>, [AccountId32]>;
|
|
4599
3830
|
/**
|
|
4600
3831
|
* Freeze locks on account balances.
|
|
4601
3832
|
**/
|
|
4602
|
-
freezes: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<FrameSupportTokensMiscIdAmountRuntimeFreezeReason>>, [
|
|
4603
|
-
AccountId32
|
|
4604
|
-
]>;
|
|
3833
|
+
freezes: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<FrameSupportTokensMiscIdAmountRuntimeFreezeReason>>, [AccountId32]>;
|
|
4605
3834
|
/**
|
|
4606
3835
|
* Holds on account balances.
|
|
4607
3836
|
**/
|
|
4608
|
-
holds: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<FrameSupportTokensMiscIdAmountRuntimeHoldReason>>, [
|
|
4609
|
-
AccountId32
|
|
4610
|
-
]>;
|
|
3837
|
+
holds: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<FrameSupportTokensMiscIdAmountRuntimeHoldReason>>, [AccountId32]>;
|
|
4611
3838
|
/**
|
|
4612
3839
|
* The total units of outstanding deactivated balance in the system.
|
|
4613
3840
|
**/
|
|
@@ -4618,17 +3845,13 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4618
3845
|
*
|
|
4619
3846
|
* Use of locks is deprecated in favour of freezes. See `https://github.com/paritytech/substrate/pull/12951/`
|
|
4620
3847
|
**/
|
|
4621
|
-
locks: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesBalanceLock>>, [
|
|
4622
|
-
AccountId32
|
|
4623
|
-
]>;
|
|
3848
|
+
locks: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesBalanceLock>>, [AccountId32]>;
|
|
4624
3849
|
/**
|
|
4625
3850
|
* Named reserves on some account balances.
|
|
4626
3851
|
*
|
|
4627
3852
|
* Use of reserves is deprecated in favour of holds. See `https://github.com/paritytech/substrate/pull/12951/`
|
|
4628
3853
|
**/
|
|
4629
|
-
reserves: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesReserveData>>, [
|
|
4630
|
-
AccountId32
|
|
4631
|
-
]>;
|
|
3854
|
+
reserves: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesReserveData>>, [AccountId32]>;
|
|
4632
3855
|
/**
|
|
4633
3856
|
* The total units issued in the system.
|
|
4634
3857
|
**/
|
|
@@ -4642,8 +3865,7 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4642
3865
|
/**
|
|
4643
3866
|
* Tracks the average cpi data every 60 ticks
|
|
4644
3867
|
**/
|
|
4645
|
-
historicArgonCPI: AugmentedQuery<ApiType, () => Observable<Vec<PalletPriceIndexCpiMeasurementBucket>>, [
|
|
4646
|
-
]>;
|
|
3868
|
+
historicArgonCPI: AugmentedQuery<ApiType, () => Observable<Vec<PalletPriceIndexCpiMeasurementBucket>>, []>;
|
|
4647
3869
|
/**
|
|
4648
3870
|
* Stores the last valid price index
|
|
4649
3871
|
**/
|
|
@@ -4657,16 +3879,12 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4657
3879
|
/**
|
|
4658
3880
|
* The announcements made by the proxy (key).
|
|
4659
3881
|
**/
|
|
4660
|
-
announcements: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<ITuple<[Vec<PalletProxyAnnouncement>, u128]>>, [
|
|
4661
|
-
AccountId32
|
|
4662
|
-
]>;
|
|
3882
|
+
announcements: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<ITuple<[Vec<PalletProxyAnnouncement>, u128]>>, [AccountId32]>;
|
|
4663
3883
|
/**
|
|
4664
3884
|
* The set of account proxies. Maps the account which has delegated to the accounts
|
|
4665
3885
|
* which are being delegated to, together with the amount held on deposit.
|
|
4666
3886
|
**/
|
|
4667
|
-
proxies: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<ITuple<[Vec<PalletProxyProxyDefinition>, u128]>>, [
|
|
4668
|
-
AccountId32
|
|
4669
|
-
]>;
|
|
3887
|
+
proxies: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<ITuple<[Vec<PalletProxyProxyDefinition>, u128]>>, [AccountId32]>;
|
|
4670
3888
|
};
|
|
4671
3889
|
sudo: {
|
|
4672
3890
|
/**
|
|
@@ -4678,20 +3896,15 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4678
3896
|
/**
|
|
4679
3897
|
* The full account information for a particular account ID.
|
|
4680
3898
|
**/
|
|
4681
|
-
account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<FrameSystemAccountInfo>, [
|
|
4682
|
-
AccountId32
|
|
4683
|
-
]>;
|
|
3899
|
+
account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<FrameSystemAccountInfo>, [AccountId32]>;
|
|
4684
3900
|
/**
|
|
4685
3901
|
* `Some` if a code upgrade has been authorized.
|
|
4686
3902
|
**/
|
|
4687
|
-
authorizedUpgrade: AugmentedQuery<ApiType, () => Observable<Option<FrameSystemCodeUpgradeAuthorization>>, [
|
|
4688
|
-
]>;
|
|
3903
|
+
authorizedUpgrade: AugmentedQuery<ApiType, () => Observable<Option<FrameSystemCodeUpgradeAuthorization>>, []>;
|
|
4689
3904
|
/**
|
|
4690
3905
|
* Map of block numbers to block hashes.
|
|
4691
3906
|
**/
|
|
4692
|
-
blockHash: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<H256>, [
|
|
4693
|
-
u32
|
|
4694
|
-
]>;
|
|
3907
|
+
blockHash: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<H256>, [u32]>;
|
|
4695
3908
|
/**
|
|
4696
3909
|
* Total size (in bytes) of the current block.
|
|
4697
3910
|
*
|
|
@@ -4705,8 +3918,7 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4705
3918
|
/**
|
|
4706
3919
|
* The current weight for the block.
|
|
4707
3920
|
**/
|
|
4708
|
-
blockWeight: AugmentedQuery<ApiType, () => Observable<FrameSupportDispatchPerDispatchClassWeight>, [
|
|
4709
|
-
]>;
|
|
3921
|
+
blockWeight: AugmentedQuery<ApiType, () => Observable<FrameSupportDispatchPerDispatchClassWeight>, []>;
|
|
4710
3922
|
/**
|
|
4711
3923
|
* Digest of the current block, also part of the block header.
|
|
4712
3924
|
**/
|
|
@@ -4737,9 +3949,7 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4737
3949
|
* the `EventIndex` then in case if the topic has the same contents on the next block
|
|
4738
3950
|
* no notification will be triggered thus the event might be lost.
|
|
4739
3951
|
**/
|
|
4740
|
-
eventTopics: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Vec<ITuple<[u32, u32]>>>, [
|
|
4741
|
-
H256
|
|
4742
|
-
]>;
|
|
3952
|
+
eventTopics: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Vec<ITuple<[u32, u32]>>>, [H256]>;
|
|
4743
3953
|
/**
|
|
4744
3954
|
* The execution phase of the block.
|
|
4745
3955
|
**/
|
|
@@ -4751,9 +3961,7 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4751
3961
|
/**
|
|
4752
3962
|
* Extrinsics data for the current block (maps an extrinsic's index to its data).
|
|
4753
3963
|
**/
|
|
4754
|
-
extrinsicData: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Bytes>, [
|
|
4755
|
-
u32
|
|
4756
|
-
]>;
|
|
3964
|
+
extrinsicData: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Bytes>, [u32]>;
|
|
4757
3965
|
/**
|
|
4758
3966
|
* The weight reclaimed for the extrinsic.
|
|
4759
3967
|
*
|
|
@@ -4763,8 +3971,7 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4763
3971
|
* Logic doing some post dispatch weight reduction must update this storage to avoid duplicate
|
|
4764
3972
|
* reduction.
|
|
4765
3973
|
**/
|
|
4766
|
-
extrinsicWeightReclaimed: AugmentedQuery<ApiType, () => Observable<SpWeightsWeightV2Weight>, [
|
|
4767
|
-
]>;
|
|
3974
|
+
extrinsicWeightReclaimed: AugmentedQuery<ApiType, () => Observable<SpWeightsWeightV2Weight>, []>;
|
|
4768
3975
|
/**
|
|
4769
3976
|
* Whether all inherents have been applied.
|
|
4770
3977
|
**/
|
|
@@ -4772,8 +3979,7 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4772
3979
|
/**
|
|
4773
3980
|
* Stores the `spec_version` and `spec_name` of when the last runtime upgrade happened.
|
|
4774
3981
|
**/
|
|
4775
|
-
lastRuntimeUpgrade: AugmentedQuery<ApiType, () => Observable<Option<FrameSystemLastRuntimeUpgradeInfo>>, [
|
|
4776
|
-
]>;
|
|
3982
|
+
lastRuntimeUpgrade: AugmentedQuery<ApiType, () => Observable<Option<FrameSystemLastRuntimeUpgradeInfo>>, []>;
|
|
4777
3983
|
/**
|
|
4778
3984
|
* The current block number being processed. Set by `execute_block`.
|
|
4779
3985
|
**/
|
|
@@ -4801,9 +4007,7 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4801
4007
|
* Blocks from the last 100 ticks. Trimmed in on_initialize.
|
|
4802
4008
|
* NOTE: cannot include the current block hash until next block
|
|
4803
4009
|
**/
|
|
4804
|
-
recentBlocksAtTicks: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<H256>>, [
|
|
4805
|
-
u64
|
|
4806
|
-
]>;
|
|
4010
|
+
recentBlocksAtTicks: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<H256>>, [u64]>;
|
|
4807
4011
|
};
|
|
4808
4012
|
timestamp: {
|
|
4809
4013
|
/**
|
|
@@ -4820,45 +4024,35 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4820
4024
|
};
|
|
4821
4025
|
transactionPayment: {
|
|
4822
4026
|
nextFeeMultiplier: AugmentedQuery<ApiType, () => Observable<u128>, []>;
|
|
4823
|
-
storageVersion: AugmentedQuery<ApiType, () => Observable<PalletTransactionPaymentReleases>, [
|
|
4824
|
-
]>;
|
|
4027
|
+
storageVersion: AugmentedQuery<ApiType, () => Observable<PalletTransactionPaymentReleases>, []>;
|
|
4825
4028
|
/**
|
|
4826
4029
|
* The `OnChargeTransaction` stores the withdrawn tx fee here.
|
|
4827
4030
|
*
|
|
4828
4031
|
* Use `withdraw_txfee` and `remaining_txfee` to access from outside the crate.
|
|
4829
4032
|
**/
|
|
4830
|
-
txPaymentCredit: AugmentedQuery<ApiType, () => Observable<Option<FrameSupportTokensFungibleImbalance>>, [
|
|
4831
|
-
]>;
|
|
4033
|
+
txPaymentCredit: AugmentedQuery<ApiType, () => Observable<Option<FrameSupportTokensFungibleImbalance>>, []>;
|
|
4832
4034
|
};
|
|
4833
4035
|
treasury: {
|
|
4834
4036
|
/**
|
|
4835
4037
|
* The stored state for each bond lot.
|
|
4836
4038
|
**/
|
|
4837
|
-
bondLotById: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<PalletTreasuryBondLot>>, [
|
|
4838
|
-
u64
|
|
4839
|
-
]>;
|
|
4039
|
+
bondLotById: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<PalletTreasuryBondLot>>, [u64]>;
|
|
4840
4040
|
/**
|
|
4841
4041
|
* The bond lot ids that belong to an account.
|
|
4842
4042
|
**/
|
|
4843
|
-
bondLotIdsByAccount: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: u64 | AnyNumber | Uint8Array) => Observable<Option<Null>>, [
|
|
4844
|
-
AccountId32,
|
|
4845
|
-
u64
|
|
4846
|
-
]>;
|
|
4043
|
+
bondLotIdsByAccount: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: u64 | AnyNumber | Uint8Array) => Observable<Option<Null>>, [AccountId32, u64]>;
|
|
4847
4044
|
/**
|
|
4848
4045
|
* The accepted bond lots for a vault.
|
|
4849
4046
|
*
|
|
4850
4047
|
* Lots are kept in descending bond order, then lower `bond_lot_id` first for ties.
|
|
4851
4048
|
**/
|
|
4852
|
-
bondLotsByVault: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<PalletTreasuryBondLotSummary>>, [
|
|
4853
|
-
u32
|
|
4854
|
-
]>;
|
|
4049
|
+
bondLotsByVault: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<PalletTreasuryBondLotSummary>>, [u32]>;
|
|
4855
4050
|
/**
|
|
4856
4051
|
* The vault capital locked for the current frame.
|
|
4857
4052
|
*
|
|
4858
4053
|
* Payout uses this to see which vaults and bond lots are participating in the frame.
|
|
4859
4054
|
**/
|
|
4860
|
-
currentFrameVaultCapital: AugmentedQuery<ApiType, () => Observable<Option<PalletTreasuryFrameVaultCapital>>, [
|
|
4861
|
-
]>;
|
|
4055
|
+
currentFrameVaultCapital: AugmentedQuery<ApiType, () => Observable<Option<PalletTreasuryFrameVaultCapital>>, []>;
|
|
4862
4056
|
/**
|
|
4863
4057
|
* The next bond lot id.
|
|
4864
4058
|
**/
|
|
@@ -4870,90 +4064,63 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4870
4064
|
/**
|
|
4871
4065
|
* Bond lots to release at the given frame.
|
|
4872
4066
|
**/
|
|
4873
|
-
pendingBondReleasesByFrame: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<u64>>, [
|
|
4874
|
-
u64
|
|
4875
|
-
]>;
|
|
4067
|
+
pendingBondReleasesByFrame: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<u64>>, [u64]>;
|
|
4876
4068
|
};
|
|
4877
4069
|
txPause: {
|
|
4878
4070
|
/**
|
|
4879
4071
|
* The set of calls that are explicitly paused.
|
|
4880
4072
|
**/
|
|
4881
|
-
pausedCalls: AugmentedQuery<ApiType, (arg: ITuple<[Bytes, Bytes]> | [Bytes | string | Uint8Array, Bytes | string | Uint8Array]) => Observable<Option<Null>>, [
|
|
4882
|
-
ITuple<[Bytes, Bytes]>
|
|
4883
|
-
]>;
|
|
4073
|
+
pausedCalls: AugmentedQuery<ApiType, (arg: ITuple<[Bytes, Bytes]> | [Bytes | string | Uint8Array, Bytes | string | Uint8Array]) => Observable<Option<Null>>, [ITuple<[Bytes, Bytes]>]>;
|
|
4884
4074
|
};
|
|
4885
4075
|
vaults: {
|
|
4886
4076
|
/**
|
|
4887
4077
|
* The last collect frame of each vault
|
|
4888
4078
|
**/
|
|
4889
|
-
lastCollectFrameByVaultId: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<u64>>, [
|
|
4890
|
-
u32
|
|
4891
|
-
]>;
|
|
4079
|
+
lastCollectFrameByVaultId: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<u64>>, [u32]>;
|
|
4892
4080
|
nextVaultId: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []>;
|
|
4893
4081
|
/**
|
|
4894
4082
|
* Orphaned Bitcoin Utxos pending cosign by vault id
|
|
4895
4083
|
**/
|
|
4896
|
-
orphanedUtxoAccountsByVaultId: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<u32>, [
|
|
4897
|
-
u32,
|
|
4898
|
-
AccountId32
|
|
4899
|
-
]>;
|
|
4084
|
+
orphanedUtxoAccountsByVaultId: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<u32>, [u32, AccountId32]>;
|
|
4900
4085
|
/**
|
|
4901
4086
|
* Bitcoin Locks pending cosign by vault id
|
|
4902
4087
|
**/
|
|
4903
|
-
pendingCosignByVaultId: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<BTreeSet<u64>>, [
|
|
4904
|
-
u32
|
|
4905
|
-
]>;
|
|
4088
|
+
pendingCosignByVaultId: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<BTreeSet<u64>>, [u32]>;
|
|
4906
4089
|
/**
|
|
4907
4090
|
* Pending terms that will be committed at the given block number (must be a minimum of 1 slot
|
|
4908
4091
|
* change away)
|
|
4909
4092
|
**/
|
|
4910
|
-
pendingTermsModificationsByTick: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<u32>>, [
|
|
4911
|
-
u64
|
|
4912
|
-
]>;
|
|
4093
|
+
pendingTermsModificationsByTick: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Vec<u32>>, [u64]>;
|
|
4913
4094
|
/**
|
|
4914
4095
|
* Recent reductions in `available_for_lock`, grouped by vault.
|
|
4915
4096
|
**/
|
|
4916
|
-
recentCapacityDropsByVault: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<PalletVaultsRecentCapacityDrop>>, [
|
|
4917
|
-
u32
|
|
4918
|
-
]>;
|
|
4097
|
+
recentCapacityDropsByVault: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<PalletVaultsRecentCapacityDrop>>, [u32]>;
|
|
4919
4098
|
/**
|
|
4920
4099
|
* Tracks revenue from Bitcoin Locks and Treasury Pools for the trailing frames for each vault
|
|
4921
4100
|
* (a frame is a "mining day" in Argon). Newest frames are first. Frames are removed after the
|
|
4922
4101
|
* collect expiration window (`RevenueCollectionExpirationFrames`).
|
|
4923
4102
|
**/
|
|
4924
|
-
revenuePerFrameByVault: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<PalletVaultsVaultFrameRevenue>>, [
|
|
4925
|
-
u32
|
|
4926
|
-
]>;
|
|
4103
|
+
revenuePerFrameByVault: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<PalletVaultsVaultFrameRevenue>>, [u32]>;
|
|
4927
4104
|
/**
|
|
4928
4105
|
* The vaults that have funds releasing at a given bitcoin height
|
|
4929
4106
|
**/
|
|
4930
|
-
vaultFundsReleasingByHeight: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeSet<u32>>, [
|
|
4931
|
-
u64
|
|
4932
|
-
]>;
|
|
4107
|
+
vaultFundsReleasingByHeight: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeSet<u32>>, [u64]>;
|
|
4933
4108
|
/**
|
|
4934
4109
|
* Vaults by owner
|
|
4935
4110
|
**/
|
|
4936
|
-
vaultIdByOperator: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<u32>>, [
|
|
4937
|
-
AccountId32
|
|
4938
|
-
]>;
|
|
4111
|
+
vaultIdByOperator: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<u32>>, [AccountId32]>;
|
|
4939
4112
|
/**
|
|
4940
4113
|
* Vaults by id
|
|
4941
4114
|
**/
|
|
4942
|
-
vaultsById: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<ArgonPrimitivesVault>>, [
|
|
4943
|
-
u32
|
|
4944
|
-
]>;
|
|
4115
|
+
vaultsById: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<ArgonPrimitivesVault>>, [u32]>;
|
|
4945
4116
|
/**
|
|
4946
4117
|
* Vaults whose temporary operational minimum may be released at a given tick.
|
|
4947
4118
|
**/
|
|
4948
|
-
vaultsReleasingOperationalMinimumByTick: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeSet<u32>>, [
|
|
4949
|
-
u64
|
|
4950
|
-
]>;
|
|
4119
|
+
vaultsReleasingOperationalMinimumByTick: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<BTreeSet<u32>>, [u64]>;
|
|
4951
4120
|
/**
|
|
4952
4121
|
* Vault Bitcoin Xpub and current child counter by VaultId
|
|
4953
4122
|
**/
|
|
4954
|
-
vaultXPubById: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[ArgonPrimitivesBitcoinBitcoinXPub, u32]>>>, [
|
|
4955
|
-
u32
|
|
4956
|
-
]>;
|
|
4123
|
+
vaultXPubById: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[ArgonPrimitivesBitcoinBitcoinXPub, u32]>>>, [u32]>;
|
|
4957
4124
|
};
|
|
4958
4125
|
}
|
|
4959
4126
|
}
|
|
@@ -4970,10 +4137,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
4970
4137
|
* Unlike sending funds to a _burn_ address, which merely makes the funds inaccessible,
|
|
4971
4138
|
* this `burn` operation will reduce total issuance by the amount _burned_.
|
|
4972
4139
|
**/
|
|
4973
|
-
burn: AugmentedSubmittable<(value: Compact<u128> | AnyNumber | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
4974
|
-
Compact<u128>,
|
|
4975
|
-
bool
|
|
4976
|
-
]>;
|
|
4140
|
+
burn: AugmentedSubmittable<(value: Compact<u128> | AnyNumber | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, bool]>;
|
|
4977
4141
|
/**
|
|
4978
4142
|
* Adjust the total issuance in a saturating way.
|
|
4979
4143
|
*
|
|
@@ -4981,10 +4145,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
4981
4145
|
*
|
|
4982
4146
|
* # Example
|
|
4983
4147
|
**/
|
|
4984
|
-
forceAdjustTotalIssuance: AugmentedSubmittable<(direction: PalletBalancesAdjustmentDirection | 'Increase' | 'Decrease' | number | Uint8Array, delta: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
4985
|
-
PalletBalancesAdjustmentDirection,
|
|
4986
|
-
Compact<u128>
|
|
4987
|
-
]>;
|
|
4148
|
+
forceAdjustTotalIssuance: AugmentedSubmittable<(direction: PalletBalancesAdjustmentDirection | 'Increase' | 'Decrease' | number | Uint8Array, delta: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletBalancesAdjustmentDirection, Compact<u128>]>;
|
|
4988
4149
|
/**
|
|
4989
4150
|
* Set the regular balance of a given account.
|
|
4990
4151
|
*
|
|
@@ -5000,10 +4161,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5000
4161
|
Address32: any;
|
|
5001
4162
|
} | {
|
|
5002
4163
|
Address20: any;
|
|
5003
|
-
} | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5004
|
-
MultiAddress,
|
|
5005
|
-
Compact<u128>
|
|
5006
|
-
]>;
|
|
4164
|
+
} | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
|
|
5007
4165
|
/**
|
|
5008
4166
|
* Exactly as `transfer_allow_death`, except the origin must be root and the source account
|
|
5009
4167
|
* may be specified.
|
|
@@ -5028,11 +4186,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5028
4186
|
Address32: any;
|
|
5029
4187
|
} | {
|
|
5030
4188
|
Address20: any;
|
|
5031
|
-
} | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5032
|
-
MultiAddress,
|
|
5033
|
-
MultiAddress,
|
|
5034
|
-
Compact<u128>
|
|
5035
|
-
]>;
|
|
4189
|
+
} | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Compact<u128>]>;
|
|
5036
4190
|
/**
|
|
5037
4191
|
* Unreserve some balance from a user by force.
|
|
5038
4192
|
*
|
|
@@ -5048,10 +4202,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5048
4202
|
Address32: any;
|
|
5049
4203
|
} | {
|
|
5050
4204
|
Address20: any;
|
|
5051
|
-
} | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5052
|
-
MultiAddress,
|
|
5053
|
-
u128
|
|
5054
|
-
]>;
|
|
4205
|
+
} | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u128]>;
|
|
5055
4206
|
/**
|
|
5056
4207
|
* Transfer the entire transferable balance from the caller account.
|
|
5057
4208
|
*
|
|
@@ -5079,10 +4230,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5079
4230
|
Address32: any;
|
|
5080
4231
|
} | {
|
|
5081
4232
|
Address20: any;
|
|
5082
|
-
} | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5083
|
-
MultiAddress,
|
|
5084
|
-
bool
|
|
5085
|
-
]>;
|
|
4233
|
+
} | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, bool]>;
|
|
5086
4234
|
/**
|
|
5087
4235
|
* Transfer some liquid free balance to another account.
|
|
5088
4236
|
*
|
|
@@ -5102,10 +4250,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5102
4250
|
Address32: any;
|
|
5103
4251
|
} | {
|
|
5104
4252
|
Address20: any;
|
|
5105
|
-
} | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5106
|
-
MultiAddress,
|
|
5107
|
-
Compact<u128>
|
|
5108
|
-
]>;
|
|
4253
|
+
} | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
|
|
5109
4254
|
/**
|
|
5110
4255
|
* Same as the [`transfer_allow_death`] call, but with a check that the transfer will not
|
|
5111
4256
|
* kill the origin account.
|
|
@@ -5124,10 +4269,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5124
4269
|
Address32: any;
|
|
5125
4270
|
} | {
|
|
5126
4271
|
Address20: any;
|
|
5127
|
-
} | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5128
|
-
MultiAddress,
|
|
5129
|
-
Compact<u128>
|
|
5130
|
-
]>;
|
|
4272
|
+
} | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
|
|
5131
4273
|
/**
|
|
5132
4274
|
* Upgrade a specified account.
|
|
5133
4275
|
*
|
|
@@ -5138,14 +4280,10 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5138
4280
|
* be upgraded. (We let some not have to be upgraded just in order to allow for the
|
|
5139
4281
|
* possibility of churn).
|
|
5140
4282
|
**/
|
|
5141
|
-
upgradeAccounts: AugmentedSubmittable<(who: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
|
|
5142
|
-
Vec<AccountId32>
|
|
5143
|
-
]>;
|
|
4283
|
+
upgradeAccounts: AugmentedSubmittable<(who: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>]>;
|
|
5144
4284
|
};
|
|
5145
4285
|
bitcoinLocks: {
|
|
5146
|
-
adminModifyMinimumLockedSats: AugmentedSubmittable<(satoshis: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5147
|
-
u64
|
|
5148
|
-
]>;
|
|
4286
|
+
adminModifyMinimumLockedSats: AugmentedSubmittable<(satoshis: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
|
|
5149
4287
|
/**
|
|
5150
4288
|
* NOTE: The `signature` parameter is NOT verified on-chain. The orphan record does
|
|
5151
4289
|
* not retain the cosign script args needed for verification (they are cleaned up
|
|
@@ -5158,11 +4296,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5158
4296
|
cosignOrphanedUtxoRelease: AugmentedSubmittable<(orphanOwner: AccountId32 | string | Uint8Array, utxoRef: ArgonPrimitivesBitcoinUtxoRef | {
|
|
5159
4297
|
txid?: any;
|
|
5160
4298
|
outputIndex?: any;
|
|
5161
|
-
} | string | Uint8Array, signature: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5162
|
-
AccountId32,
|
|
5163
|
-
ArgonPrimitivesBitcoinUtxoRef,
|
|
5164
|
-
Bytes
|
|
5165
|
-
]>;
|
|
4299
|
+
} | string | Uint8Array, signature: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, ArgonPrimitivesBitcoinUtxoRef, Bytes]>;
|
|
5166
4300
|
/**
|
|
5167
4301
|
* Submitted by a Vault operator to cosign the release of a bitcoin utxo. The Bitcoin owner
|
|
5168
4302
|
* release fee will be burned, and the lock will be allowed to expire without a penalty.
|
|
@@ -5170,14 +4304,8 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5170
4304
|
* This is submitted as a no-fee transaction off chain to allow keys to remain in cold
|
|
5171
4305
|
* wallets.
|
|
5172
4306
|
**/
|
|
5173
|
-
cosignRelease: AugmentedSubmittable<(utxoId: u64 | AnyNumber | Uint8Array, signature: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5174
|
-
|
|
5175
|
-
Bytes
|
|
5176
|
-
]>;
|
|
5177
|
-
increaseSecuritization: AugmentedSubmittable<(utxoId: u64 | AnyNumber | Uint8Array, newSatoshis: Compact<u64> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5178
|
-
u64,
|
|
5179
|
-
Compact<u64>
|
|
5180
|
-
]>;
|
|
4307
|
+
cosignRelease: AugmentedSubmittable<(utxoId: u64 | AnyNumber | Uint8Array, signature: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, Bytes]>;
|
|
4308
|
+
increaseSecuritization: AugmentedSubmittable<(utxoId: u64 | AnyNumber | Uint8Array, newSatoshis: Compact<u64> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, Compact<u64>]>;
|
|
5181
4309
|
/**
|
|
5182
4310
|
* Initialize a bitcoin lock. This will create a LockedBitcoin for the submitting account
|
|
5183
4311
|
* and log the Bitcoin Script hash to Events.
|
|
@@ -5190,21 +4318,10 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5190
4318
|
**/
|
|
5191
4319
|
initialize: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, satoshis: Compact<u64> | AnyNumber | Uint8Array, bitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey | string | Uint8Array, options: Option<PalletBitcoinLocksLockOptions> | null | Uint8Array | PalletBitcoinLocksLockOptions | {
|
|
5192
4320
|
V1: any;
|
|
5193
|
-
} | string) => SubmittableExtrinsic<ApiType>, [
|
|
5194
|
-
u32,
|
|
5195
|
-
Compact<u64>,
|
|
5196
|
-
ArgonPrimitivesBitcoinCompressedBitcoinPubkey,
|
|
5197
|
-
Option<PalletBitcoinLocksLockOptions>
|
|
5198
|
-
]>;
|
|
4321
|
+
} | string) => SubmittableExtrinsic<ApiType>, [u32, Compact<u64>, ArgonPrimitivesBitcoinCompressedBitcoinPubkey, Option<PalletBitcoinLocksLockOptions>]>;
|
|
5199
4322
|
initializeFor: AugmentedSubmittable<(accountId: AccountId32 | string | Uint8Array, vaultId: u32 | AnyNumber | Uint8Array, satoshis: Compact<u64> | AnyNumber | Uint8Array, bitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey | string | Uint8Array, options: Option<PalletBitcoinLocksLockOptions> | null | Uint8Array | PalletBitcoinLocksLockOptions | {
|
|
5200
4323
|
V1: any;
|
|
5201
|
-
} | string) => SubmittableExtrinsic<ApiType>, [
|
|
5202
|
-
AccountId32,
|
|
5203
|
-
u32,
|
|
5204
|
-
Compact<u64>,
|
|
5205
|
-
ArgonPrimitivesBitcoinCompressedBitcoinPubkey,
|
|
5206
|
-
Option<PalletBitcoinLocksLockOptions>
|
|
5207
|
-
]>;
|
|
4324
|
+
} | string) => SubmittableExtrinsic<ApiType>, [AccountId32, u32, Compact<u64>, ArgonPrimitivesBitcoinCompressedBitcoinPubkey, Option<PalletBitcoinLocksLockOptions>]>;
|
|
5208
4325
|
/**
|
|
5209
4326
|
* Ratcheting allows a user to change the lock price of their bitcoin lock. This is
|
|
5210
4327
|
* functionally the same as releasing and re-initializing, but it allows a user to skip
|
|
@@ -5223,18 +4340,11 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5223
4340
|
**/
|
|
5224
4341
|
ratchet: AugmentedSubmittable<(utxoId: u64 | AnyNumber | Uint8Array, options: Option<PalletBitcoinLocksLockOptions> | null | Uint8Array | PalletBitcoinLocksLockOptions | {
|
|
5225
4342
|
V1: any;
|
|
5226
|
-
} | string) => SubmittableExtrinsic<ApiType>, [
|
|
5227
|
-
u64,
|
|
5228
|
-
Option<PalletBitcoinLocksLockOptions>
|
|
5229
|
-
]>;
|
|
4343
|
+
} | string) => SubmittableExtrinsic<ApiType>, [u64, Option<PalletBitcoinLocksLockOptions>]>;
|
|
5230
4344
|
requestOrphanedUtxoRelease: AugmentedSubmittable<(utxoRef: ArgonPrimitivesBitcoinUtxoRef | {
|
|
5231
4345
|
txid?: any;
|
|
5232
4346
|
outputIndex?: any;
|
|
5233
|
-
} | string | Uint8Array, toScriptPubkey: Bytes | string | Uint8Array, bitcoinNetworkFee: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5234
|
-
ArgonPrimitivesBitcoinUtxoRef,
|
|
5235
|
-
Bytes,
|
|
5236
|
-
u64
|
|
5237
|
-
]>;
|
|
4347
|
+
} | string | Uint8Array, toScriptPubkey: Bytes | string | Uint8Array, bitcoinNetworkFee: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [ArgonPrimitivesBitcoinUtxoRef, Bytes, u64]>;
|
|
5238
4348
|
/**
|
|
5239
4349
|
* Submitted by a Bitcoin holder to trigger the release of their Utxo out of the cosign
|
|
5240
4350
|
* script. A transaction spending the UTXO should be pre-created so that the sighash
|
|
@@ -5243,11 +4353,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5243
4353
|
*
|
|
5244
4354
|
* Owner must submit a script pubkey and also a fee to pay to the bitcoin network.
|
|
5245
4355
|
**/
|
|
5246
|
-
requestRelease: AugmentedSubmittable<(utxoId: u64 | AnyNumber | Uint8Array, toScriptPubkey: Bytes | string | Uint8Array, bitcoinNetworkFee: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5247
|
-
u64,
|
|
5248
|
-
Bytes,
|
|
5249
|
-
u64
|
|
5250
|
-
]>;
|
|
4356
|
+
requestRelease: AugmentedSubmittable<(utxoId: u64 | AnyNumber | Uint8Array, toScriptPubkey: Bytes | string | Uint8Array, bitcoinNetworkFee: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, Bytes, u64]>;
|
|
5251
4357
|
};
|
|
5252
4358
|
bitcoinUtxos: {
|
|
5253
4359
|
/**
|
|
@@ -5258,10 +4364,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5258
4364
|
fundWithUtxoCandidate: AugmentedSubmittable<(utxoId: u64 | AnyNumber | Uint8Array, utxoRef: ArgonPrimitivesBitcoinUtxoRef | {
|
|
5259
4365
|
txid?: any;
|
|
5260
4366
|
outputIndex?: any;
|
|
5261
|
-
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5262
|
-
u64,
|
|
5263
|
-
ArgonPrimitivesBitcoinUtxoRef
|
|
5264
|
-
]>;
|
|
4367
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, ArgonPrimitivesBitcoinUtxoRef]>;
|
|
5265
4368
|
/**
|
|
5266
4369
|
* Reject a pending candidate UTXO and materialize it as an orphan through the locks
|
|
5267
4370
|
* pallet.
|
|
@@ -5269,10 +4372,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5269
4372
|
rejectUtxoCandidate: AugmentedSubmittable<(utxoId: u64 | AnyNumber | Uint8Array, utxoRef: ArgonPrimitivesBitcoinUtxoRef | {
|
|
5270
4373
|
txid?: any;
|
|
5271
4374
|
outputIndex?: any;
|
|
5272
|
-
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5273
|
-
u64,
|
|
5274
|
-
ArgonPrimitivesBitcoinUtxoRef
|
|
5275
|
-
]>;
|
|
4375
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, ArgonPrimitivesBitcoinUtxoRef]>;
|
|
5276
4376
|
/**
|
|
5277
4377
|
* Sets the most recent confirmed bitcoin block height (only executable by the Oracle
|
|
5278
4378
|
* Operator account)
|
|
@@ -5280,19 +4380,14 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5280
4380
|
* # Arguments
|
|
5281
4381
|
* * `bitcoin_height` - the latest bitcoin block height to be confirmed
|
|
5282
4382
|
**/
|
|
5283
|
-
setConfirmedBlock: AugmentedSubmittable<(bitcoinHeight: u64 | AnyNumber | Uint8Array, bitcoinBlockHash: ArgonPrimitivesBitcoinH256Le | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5284
|
-
u64,
|
|
5285
|
-
ArgonPrimitivesBitcoinH256Le
|
|
5286
|
-
]>;
|
|
4383
|
+
setConfirmedBlock: AugmentedSubmittable<(bitcoinHeight: u64 | AnyNumber | Uint8Array, bitcoinBlockHash: ArgonPrimitivesBitcoinH256Le | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, ArgonPrimitivesBitcoinH256Le]>;
|
|
5287
4384
|
/**
|
|
5288
4385
|
* Sets the oracle operator account id (only executable by the Root account)
|
|
5289
4386
|
*
|
|
5290
4387
|
* # Arguments
|
|
5291
4388
|
* * `account_id` - the account id of the operator
|
|
5292
4389
|
**/
|
|
5293
|
-
setOperator: AugmentedSubmittable<(accountId: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5294
|
-
AccountId32
|
|
5295
|
-
]>;
|
|
4390
|
+
setOperator: AugmentedSubmittable<(accountId: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
|
|
5296
4391
|
/**
|
|
5297
4392
|
* Submitted when a bitcoin UTXO has been moved or confirmed.
|
|
5298
4393
|
**/
|
|
@@ -5300,51 +4395,35 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5300
4395
|
spent?: any;
|
|
5301
4396
|
funded?: any;
|
|
5302
4397
|
syncToBlock?: any;
|
|
5303
|
-
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5304
|
-
ArgonPrimitivesInherentsBitcoinUtxoSync
|
|
5305
|
-
]>;
|
|
4398
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [ArgonPrimitivesInherentsBitcoinUtxoSync]>;
|
|
5306
4399
|
};
|
|
5307
4400
|
blockRewards: {
|
|
5308
|
-
setBlockRewardsPaused: AugmentedSubmittable<(paused: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5309
|
-
bool
|
|
5310
|
-
]>;
|
|
4401
|
+
setBlockRewardsPaused: AugmentedSubmittable<(paused: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [bool]>;
|
|
5311
4402
|
};
|
|
5312
4403
|
blockSeal: {
|
|
5313
4404
|
apply: AugmentedSubmittable<(seal: ArgonPrimitivesInherentsBlockSealInherent | {
|
|
5314
4405
|
Vote: any;
|
|
5315
4406
|
} | {
|
|
5316
4407
|
Compute: any;
|
|
5317
|
-
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5318
|
-
ArgonPrimitivesInherentsBlockSealInherent
|
|
5319
|
-
]>;
|
|
4408
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [ArgonPrimitivesInherentsBlockSealInherent]>;
|
|
5320
4409
|
};
|
|
5321
4410
|
blockSealSpec: {
|
|
5322
|
-
configure: AugmentedSubmittable<(voteMinimum: Option<u128> | null | Uint8Array | u128 | AnyNumber, computeDifficulty: Option<u128> | null | Uint8Array | u128 | AnyNumber) => SubmittableExtrinsic<ApiType>, [
|
|
5323
|
-
Option<u128>,
|
|
5324
|
-
Option<u128>
|
|
5325
|
-
]>;
|
|
4411
|
+
configure: AugmentedSubmittable<(voteMinimum: Option<u128> | null | Uint8Array | u128 | AnyNumber, computeDifficulty: Option<u128> | null | Uint8Array | u128 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u128>, Option<u128>]>;
|
|
5326
4412
|
};
|
|
5327
4413
|
crosschainTransfer: {
|
|
5328
4414
|
proveTransfer: AugmentedSubmittable<(proof: PalletCrosschainTransferTransferProof | {
|
|
5329
4415
|
Ethereum: any;
|
|
5330
|
-
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5331
|
-
PalletCrosschainTransferTransferProof
|
|
5332
|
-
]>;
|
|
4416
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletCrosschainTransferTransferProof]>;
|
|
5333
4417
|
setChainConfig: AugmentedSubmittable<(config: PalletCrosschainTransferChainConfig | {
|
|
5334
4418
|
Ethereum: any;
|
|
5335
|
-
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5336
|
-
PalletCrosschainTransferChainConfig
|
|
5337
|
-
]>;
|
|
4419
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletCrosschainTransferChainConfig]>;
|
|
5338
4420
|
};
|
|
5339
4421
|
domains: {
|
|
5340
4422
|
setZoneRecord: AugmentedSubmittable<(domainHash: H256 | string | Uint8Array, zoneRecord: ArgonPrimitivesDomainZoneRecord | {
|
|
5341
4423
|
paymentAccount?: any;
|
|
5342
4424
|
notaryId?: any;
|
|
5343
4425
|
versions?: any;
|
|
5344
|
-
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5345
|
-
H256,
|
|
5346
|
-
ArgonPrimitivesDomainZoneRecord
|
|
5347
|
-
]>;
|
|
4426
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256, ArgonPrimitivesDomainZoneRecord]>;
|
|
5348
4427
|
};
|
|
5349
4428
|
ethereumVerifier: {
|
|
5350
4429
|
/**
|
|
@@ -5364,10 +4443,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5364
4443
|
deneb?: any;
|
|
5365
4444
|
electra?: any;
|
|
5366
4445
|
fulu?: any;
|
|
5367
|
-
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5368
|
-
PalletEthereumVerifierCheckpointUpdate,
|
|
5369
|
-
PalletEthereumVerifierForkVersions
|
|
5370
|
-
]>;
|
|
4446
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletEthereumVerifierCheckpointUpdate, PalletEthereumVerifierForkVersions]>;
|
|
5371
4447
|
/**
|
|
5372
4448
|
* Imports a proven execution header anchor against already-retained beacon state.
|
|
5373
4449
|
**/
|
|
@@ -5375,15 +4451,11 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5375
4451
|
header?: any;
|
|
5376
4452
|
executionHeader?: any;
|
|
5377
4453
|
executionBranch?: any;
|
|
5378
|
-
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5379
|
-
PalletEthereumVerifierExecutionProof
|
|
5380
|
-
]>;
|
|
4454
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletEthereumVerifierExecutionProof]>;
|
|
5381
4455
|
/**
|
|
5382
4456
|
* Halt or resume all pallet operations. May only be called by root.
|
|
5383
4457
|
**/
|
|
5384
|
-
setOperatingMode: AugmentedSubmittable<(mode: PalletEthereumVerifierBasicOperatingMode | 'Normal' | 'Halted' | number | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5385
|
-
PalletEthereumVerifierBasicOperatingMode
|
|
5386
|
-
]>;
|
|
4458
|
+
setOperatingMode: AugmentedSubmittable<(mode: PalletEthereumVerifierBasicOperatingMode | 'Normal' | 'Halted' | number | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletEthereumVerifierBasicOperatingMode]>;
|
|
5387
4459
|
/**
|
|
5388
4460
|
* Submits a new finalized beacon header update. The update may contain the next
|
|
5389
4461
|
* sync committee.
|
|
@@ -5395,9 +4467,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5395
4467
|
nextSyncCommitteeUpdate?: any;
|
|
5396
4468
|
finalizedHeader?: any;
|
|
5397
4469
|
finalityBranch?: any;
|
|
5398
|
-
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5399
|
-
PalletEthereumVerifierUpdate
|
|
5400
|
-
]>;
|
|
4470
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletEthereumVerifierUpdate]>;
|
|
5401
4471
|
};
|
|
5402
4472
|
grandpa: {
|
|
5403
4473
|
/**
|
|
@@ -5414,10 +4484,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5414
4484
|
*
|
|
5415
4485
|
* Only callable by root.
|
|
5416
4486
|
**/
|
|
5417
|
-
noteStalled: AugmentedSubmittable<(delay: u32 | AnyNumber | Uint8Array, bestFinalizedBlockNumber: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5418
|
-
u32,
|
|
5419
|
-
u32
|
|
5420
|
-
]>;
|
|
4487
|
+
noteStalled: AugmentedSubmittable<(delay: u32 | AnyNumber | Uint8Array, bestFinalizedBlockNumber: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
|
|
5421
4488
|
/**
|
|
5422
4489
|
* Report voter equivocation/misbehavior. This method will verify the
|
|
5423
4490
|
* equivocation proof and validate the given key ownership proof
|
|
@@ -5427,10 +4494,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5427
4494
|
reportEquivocation: AugmentedSubmittable<(equivocationProof: SpConsensusGrandpaEquivocationProof | {
|
|
5428
4495
|
setId?: any;
|
|
5429
4496
|
equivocation?: any;
|
|
5430
|
-
} | string | Uint8Array, keyOwnerProof: SpCoreVoid | null) => SubmittableExtrinsic<ApiType>, [
|
|
5431
|
-
SpConsensusGrandpaEquivocationProof,
|
|
5432
|
-
SpCoreVoid
|
|
5433
|
-
]>;
|
|
4497
|
+
} | string | Uint8Array, keyOwnerProof: SpCoreVoid | null) => SubmittableExtrinsic<ApiType>, [SpConsensusGrandpaEquivocationProof, SpCoreVoid]>;
|
|
5434
4498
|
/**
|
|
5435
4499
|
* Report voter equivocation/misbehavior. This method will verify the
|
|
5436
4500
|
* equivocation proof and validate the given key ownership proof
|
|
@@ -5445,16 +4509,10 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5445
4509
|
reportEquivocationUnsigned: AugmentedSubmittable<(equivocationProof: SpConsensusGrandpaEquivocationProof | {
|
|
5446
4510
|
setId?: any;
|
|
5447
4511
|
equivocation?: any;
|
|
5448
|
-
} | string | Uint8Array, keyOwnerProof: SpCoreVoid | null) => SubmittableExtrinsic<ApiType>, [
|
|
5449
|
-
SpConsensusGrandpaEquivocationProof,
|
|
5450
|
-
SpCoreVoid
|
|
5451
|
-
]>;
|
|
4512
|
+
} | string | Uint8Array, keyOwnerProof: SpCoreVoid | null) => SubmittableExtrinsic<ApiType>, [SpConsensusGrandpaEquivocationProof, SpCoreVoid]>;
|
|
5452
4513
|
};
|
|
5453
4514
|
localchainTransfer: {
|
|
5454
|
-
sendToLocalchain: AugmentedSubmittable<(amount: Compact<u128> | AnyNumber | Uint8Array, notaryId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5455
|
-
Compact<u128>,
|
|
5456
|
-
u32
|
|
5457
|
-
]>;
|
|
4515
|
+
sendToLocalchain: AugmentedSubmittable<(amount: Compact<u128> | AnyNumber | Uint8Array, notaryId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, u32]>;
|
|
5458
4516
|
};
|
|
5459
4517
|
miningSlot: {
|
|
5460
4518
|
/**
|
|
@@ -5484,18 +4542,11 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5484
4542
|
bid: AugmentedSubmittable<(bid: u128 | AnyNumber | Uint8Array, keys: ArgonRuntimeSessionKeys | {
|
|
5485
4543
|
grandpa?: any;
|
|
5486
4544
|
blockSealAuthority?: any;
|
|
5487
|
-
} | string | Uint8Array, miningAccountId: Option<AccountId32> | null | Uint8Array | AccountId32 | string) => SubmittableExtrinsic<ApiType>, [
|
|
5488
|
-
u128,
|
|
5489
|
-
ArgonRuntimeSessionKeys,
|
|
5490
|
-
Option<AccountId32>
|
|
5491
|
-
]>;
|
|
4545
|
+
} | string | Uint8Array, miningAccountId: Option<AccountId32> | null | Uint8Array | AccountId32 | string) => SubmittableExtrinsic<ApiType>, [u128, ArgonRuntimeSessionKeys, Option<AccountId32>]>;
|
|
5492
4546
|
/**
|
|
5493
4547
|
* Admin function to update the mining slot delay.
|
|
5494
4548
|
**/
|
|
5495
|
-
configureMiningSlotDelay: AugmentedSubmittable<(miningSlotDelay: Option<u64> | null | Uint8Array | u64 | AnyNumber, ticksBeforeBidEndForVrfClose: Option<u64> | null | Uint8Array | u64 | AnyNumber) => SubmittableExtrinsic<ApiType>, [
|
|
5496
|
-
Option<u64>,
|
|
5497
|
-
Option<u64>
|
|
5498
|
-
]>;
|
|
4549
|
+
configureMiningSlotDelay: AugmentedSubmittable<(miningSlotDelay: Option<u64> | null | Uint8Array | u64 | AnyNumber, ticksBeforeBidEndForVrfClose: Option<u64> | null | Uint8Array | u64 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u64>, Option<u64>]>;
|
|
5499
4550
|
};
|
|
5500
4551
|
mint: {};
|
|
5501
4552
|
multisig: {
|
|
@@ -5545,13 +4596,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5545
4596
|
} | string, callHash: U8aFixed | string | Uint8Array, maxWeight: SpWeightsWeightV2Weight | {
|
|
5546
4597
|
refTime?: any;
|
|
5547
4598
|
proofSize?: any;
|
|
5548
|
-
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5549
|
-
u16,
|
|
5550
|
-
Vec<AccountId32>,
|
|
5551
|
-
Option<PalletMultisigTimepoint>,
|
|
5552
|
-
U8aFixed,
|
|
5553
|
-
SpWeightsWeightV2Weight
|
|
5554
|
-
]>;
|
|
4599
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Vec<AccountId32>, Option<PalletMultisigTimepoint>, U8aFixed, SpWeightsWeightV2Weight]>;
|
|
5555
4600
|
/**
|
|
5556
4601
|
* Register approval for a dispatch to be made from a deterministic composite account if
|
|
5557
4602
|
* approved by a total of `threshold - 1` of `other_signatories`.
|
|
@@ -5602,13 +4647,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5602
4647
|
} | string, call: Call | IMethod | string | Uint8Array, maxWeight: SpWeightsWeightV2Weight | {
|
|
5603
4648
|
refTime?: any;
|
|
5604
4649
|
proofSize?: any;
|
|
5605
|
-
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5606
|
-
u16,
|
|
5607
|
-
Vec<AccountId32>,
|
|
5608
|
-
Option<PalletMultisigTimepoint>,
|
|
5609
|
-
Call,
|
|
5610
|
-
SpWeightsWeightV2Weight
|
|
5611
|
-
]>;
|
|
4650
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Vec<AccountId32>, Option<PalletMultisigTimepoint>, Call, SpWeightsWeightV2Weight]>;
|
|
5612
4651
|
/**
|
|
5613
4652
|
* Immediately dispatch a multi-signature call using a single approval from the caller.
|
|
5614
4653
|
*
|
|
@@ -5623,10 +4662,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5623
4662
|
* ## Complexity
|
|
5624
4663
|
* O(Z + C) where Z is the length of the call and C its execution weight.
|
|
5625
4664
|
**/
|
|
5626
|
-
asMultiThreshold1: AugmentedSubmittable<(otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5627
|
-
Vec<AccountId32>,
|
|
5628
|
-
Call
|
|
5629
|
-
]>;
|
|
4665
|
+
asMultiThreshold1: AugmentedSubmittable<(otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>, Call]>;
|
|
5630
4666
|
/**
|
|
5631
4667
|
* Cancel a pre-existing, on-going multisig transaction. Any deposit reserved previously
|
|
5632
4668
|
* for this operation will be unreserved on success.
|
|
@@ -5653,12 +4689,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5653
4689
|
cancelAsMulti: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], timepoint: PalletMultisigTimepoint | {
|
|
5654
4690
|
height?: any;
|
|
5655
4691
|
index?: any;
|
|
5656
|
-
} | string | Uint8Array, callHash: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5657
|
-
u16,
|
|
5658
|
-
Vec<AccountId32>,
|
|
5659
|
-
PalletMultisigTimepoint,
|
|
5660
|
-
U8aFixed
|
|
5661
|
-
]>;
|
|
4692
|
+
} | string | Uint8Array, callHash: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Vec<AccountId32>, PalletMultisigTimepoint, U8aFixed]>;
|
|
5662
4693
|
/**
|
|
5663
4694
|
* Poke the deposit reserved for an existing multisig operation.
|
|
5664
4695
|
*
|
|
@@ -5674,23 +4705,15 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5674
4705
|
*
|
|
5675
4706
|
* Emits `DepositPoked` if successful.
|
|
5676
4707
|
**/
|
|
5677
|
-
pokeDeposit: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], callHash: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5678
|
-
u16,
|
|
5679
|
-
Vec<AccountId32>,
|
|
5680
|
-
U8aFixed
|
|
5681
|
-
]>;
|
|
4708
|
+
pokeDeposit: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], callHash: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Vec<AccountId32>, U8aFixed]>;
|
|
5682
4709
|
};
|
|
5683
4710
|
notaries: {
|
|
5684
|
-
activate: AugmentedSubmittable<(operatorAccount: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5685
|
-
AccountId32
|
|
5686
|
-
]>;
|
|
4711
|
+
activate: AugmentedSubmittable<(operatorAccount: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
|
|
5687
4712
|
propose: AugmentedSubmittable<(meta: ArgonPrimitivesNotaryNotaryMeta | {
|
|
5688
4713
|
name?: any;
|
|
5689
4714
|
public?: any;
|
|
5690
4715
|
hosts?: any;
|
|
5691
|
-
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5692
|
-
ArgonPrimitivesNotaryNotaryMeta
|
|
5693
|
-
]>;
|
|
4716
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [ArgonPrimitivesNotaryNotaryMeta]>;
|
|
5694
4717
|
/**
|
|
5695
4718
|
* Update the metadata of a notary, to be effective at the given tick height, which must be
|
|
5696
4719
|
* >= MetaChangesTickDelay ticks in the future.
|
|
@@ -5699,22 +4722,14 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5699
4722
|
name?: any;
|
|
5700
4723
|
public?: any;
|
|
5701
4724
|
hosts?: any;
|
|
5702
|
-
} | string | Uint8Array, effectiveTick: Compact<u64> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5703
|
-
Compact<u32>,
|
|
5704
|
-
ArgonPrimitivesNotaryNotaryMeta,
|
|
5705
|
-
Compact<u64>
|
|
5706
|
-
]>;
|
|
4725
|
+
} | string | Uint8Array, effectiveTick: Compact<u64> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, ArgonPrimitivesNotaryNotaryMeta, Compact<u64>]>;
|
|
5707
4726
|
};
|
|
5708
4727
|
notebook: {
|
|
5709
4728
|
submit: AugmentedSubmittable<(notebooks: Vec<ArgonPrimitivesNotebookSignedNotebookHeader> | (ArgonPrimitivesNotebookSignedNotebookHeader | {
|
|
5710
4729
|
header?: any;
|
|
5711
4730
|
signature?: any;
|
|
5712
|
-
} | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
|
|
5713
|
-
|
|
5714
|
-
]>;
|
|
5715
|
-
unlock: AugmentedSubmittable<(notaryId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5716
|
-
u32
|
|
5717
|
-
]>;
|
|
4731
|
+
} | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<ArgonPrimitivesNotebookSignedNotebookHeader>]>;
|
|
4732
|
+
unlock: AugmentedSubmittable<(notaryId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
|
|
5718
4733
|
};
|
|
5719
4734
|
operationalAccounts: {
|
|
5720
4735
|
/**
|
|
@@ -5724,9 +4739,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5724
4739
|
/**
|
|
5725
4740
|
* Claim pending operational rewards to any managed account.
|
|
5726
4741
|
**/
|
|
5727
|
-
claimRewards: AugmentedSubmittable<(amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5728
|
-
u128
|
|
5729
|
-
]>;
|
|
4742
|
+
claimRewards: AugmentedSubmittable<(amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u128]>;
|
|
5730
4743
|
/**
|
|
5731
4744
|
* Force-update operational progress markers for an account.
|
|
5732
4745
|
**/
|
|
@@ -5736,11 +4749,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5736
4749
|
hasTreasuryPoolParticipation?: any;
|
|
5737
4750
|
observedBitcoinTotal?: any;
|
|
5738
4751
|
observedMiningSeatTotal?: any;
|
|
5739
|
-
} | string | Uint8Array, updateOperationalProgress: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5740
|
-
AccountId32,
|
|
5741
|
-
PalletOperationalAccountsOperationalProgressPatch,
|
|
5742
|
-
bool
|
|
5743
|
-
]>;
|
|
4752
|
+
} | string | Uint8Array, updateOperationalProgress: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, PalletOperationalAccountsOperationalProgressPatch, bool]>;
|
|
5744
4753
|
/**
|
|
5745
4754
|
* Register vault, mining funding, and bot accounts for an operational account.
|
|
5746
4755
|
* Any account in the registration may submit the transaction.
|
|
@@ -5748,23 +4757,15 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5748
4757
|
**/
|
|
5749
4758
|
register: AugmentedSubmittable<(registration: PalletOperationalAccountsRegistration | {
|
|
5750
4759
|
V1: any;
|
|
5751
|
-
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5752
|
-
PalletOperationalAccountsRegistration
|
|
5753
|
-
]>;
|
|
4760
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletOperationalAccountsRegistration]>;
|
|
5754
4761
|
/**
|
|
5755
4762
|
* Store an opaque encrypted sponsor server payload for a sponsored operational account.
|
|
5756
4763
|
**/
|
|
5757
|
-
setEncryptedServerForSponsee: AugmentedSubmittable<(sponsee: AccountId32 | string | Uint8Array, encryptedServer: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5758
|
-
AccountId32,
|
|
5759
|
-
Bytes
|
|
5760
|
-
]>;
|
|
4764
|
+
setEncryptedServerForSponsee: AugmentedSubmittable<(sponsee: AccountId32 | string | Uint8Array, encryptedServer: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, Bytes]>;
|
|
5761
4765
|
/**
|
|
5762
4766
|
* Update reward amounts for operational accounts.
|
|
5763
4767
|
**/
|
|
5764
|
-
setRewardConfig: AugmentedSubmittable<(operationalReferralReward: u128 | AnyNumber | Uint8Array, referralBonusReward: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5765
|
-
u128,
|
|
5766
|
-
u128
|
|
5767
|
-
]>;
|
|
4768
|
+
setRewardConfig: AugmentedSubmittable<(operationalReferralReward: u128 | AnyNumber | Uint8Array, referralBonusReward: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u128, u128]>;
|
|
5768
4769
|
};
|
|
5769
4770
|
ownership: {
|
|
5770
4771
|
/**
|
|
@@ -5776,10 +4777,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5776
4777
|
* Unlike sending funds to a _burn_ address, which merely makes the funds inaccessible,
|
|
5777
4778
|
* this `burn` operation will reduce total issuance by the amount _burned_.
|
|
5778
4779
|
**/
|
|
5779
|
-
burn: AugmentedSubmittable<(value: Compact<u128> | AnyNumber | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5780
|
-
Compact<u128>,
|
|
5781
|
-
bool
|
|
5782
|
-
]>;
|
|
4780
|
+
burn: AugmentedSubmittable<(value: Compact<u128> | AnyNumber | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, bool]>;
|
|
5783
4781
|
/**
|
|
5784
4782
|
* Adjust the total issuance in a saturating way.
|
|
5785
4783
|
*
|
|
@@ -5787,10 +4785,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5787
4785
|
*
|
|
5788
4786
|
* # Example
|
|
5789
4787
|
**/
|
|
5790
|
-
forceAdjustTotalIssuance: AugmentedSubmittable<(direction: PalletBalancesAdjustmentDirection | 'Increase' | 'Decrease' | number | Uint8Array, delta: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5791
|
-
PalletBalancesAdjustmentDirection,
|
|
5792
|
-
Compact<u128>
|
|
5793
|
-
]>;
|
|
4788
|
+
forceAdjustTotalIssuance: AugmentedSubmittable<(direction: PalletBalancesAdjustmentDirection | 'Increase' | 'Decrease' | number | Uint8Array, delta: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletBalancesAdjustmentDirection, Compact<u128>]>;
|
|
5794
4789
|
/**
|
|
5795
4790
|
* Set the regular balance of a given account.
|
|
5796
4791
|
*
|
|
@@ -5806,10 +4801,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5806
4801
|
Address32: any;
|
|
5807
4802
|
} | {
|
|
5808
4803
|
Address20: any;
|
|
5809
|
-
} | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5810
|
-
MultiAddress,
|
|
5811
|
-
Compact<u128>
|
|
5812
|
-
]>;
|
|
4804
|
+
} | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
|
|
5813
4805
|
/**
|
|
5814
4806
|
* Exactly as `transfer_allow_death`, except the origin must be root and the source account
|
|
5815
4807
|
* may be specified.
|
|
@@ -5834,11 +4826,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5834
4826
|
Address32: any;
|
|
5835
4827
|
} | {
|
|
5836
4828
|
Address20: any;
|
|
5837
|
-
} | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5838
|
-
MultiAddress,
|
|
5839
|
-
MultiAddress,
|
|
5840
|
-
Compact<u128>
|
|
5841
|
-
]>;
|
|
4829
|
+
} | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Compact<u128>]>;
|
|
5842
4830
|
/**
|
|
5843
4831
|
* Unreserve some balance from a user by force.
|
|
5844
4832
|
*
|
|
@@ -5854,10 +4842,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5854
4842
|
Address32: any;
|
|
5855
4843
|
} | {
|
|
5856
4844
|
Address20: any;
|
|
5857
|
-
} | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5858
|
-
MultiAddress,
|
|
5859
|
-
u128
|
|
5860
|
-
]>;
|
|
4845
|
+
} | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u128]>;
|
|
5861
4846
|
/**
|
|
5862
4847
|
* Transfer the entire transferable balance from the caller account.
|
|
5863
4848
|
*
|
|
@@ -5885,10 +4870,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5885
4870
|
Address32: any;
|
|
5886
4871
|
} | {
|
|
5887
4872
|
Address20: any;
|
|
5888
|
-
} | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5889
|
-
MultiAddress,
|
|
5890
|
-
bool
|
|
5891
|
-
]>;
|
|
4873
|
+
} | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, bool]>;
|
|
5892
4874
|
/**
|
|
5893
4875
|
* Transfer some liquid free balance to another account.
|
|
5894
4876
|
*
|
|
@@ -5908,10 +4890,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5908
4890
|
Address32: any;
|
|
5909
4891
|
} | {
|
|
5910
4892
|
Address20: any;
|
|
5911
|
-
} | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5912
|
-
MultiAddress,
|
|
5913
|
-
Compact<u128>
|
|
5914
|
-
]>;
|
|
4893
|
+
} | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
|
|
5915
4894
|
/**
|
|
5916
4895
|
* Same as the [`transfer_allow_death`] call, but with a check that the transfer will not
|
|
5917
4896
|
* kill the origin account.
|
|
@@ -5930,10 +4909,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5930
4909
|
Address32: any;
|
|
5931
4910
|
} | {
|
|
5932
4911
|
Address20: any;
|
|
5933
|
-
} | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5934
|
-
MultiAddress,
|
|
5935
|
-
Compact<u128>
|
|
5936
|
-
]>;
|
|
4912
|
+
} | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
|
|
5937
4913
|
/**
|
|
5938
4914
|
* Upgrade a specified account.
|
|
5939
4915
|
*
|
|
@@ -5944,9 +4920,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5944
4920
|
* be upgraded. (We let some not have to be upgraded just in order to allow for the
|
|
5945
4921
|
* possibility of churn).
|
|
5946
4922
|
**/
|
|
5947
|
-
upgradeAccounts: AugmentedSubmittable<(who: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
|
|
5948
|
-
Vec<AccountId32>
|
|
5949
|
-
]>;
|
|
4923
|
+
upgradeAccounts: AugmentedSubmittable<(who: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>]>;
|
|
5950
4924
|
};
|
|
5951
4925
|
priceIndex: {
|
|
5952
4926
|
/**
|
|
@@ -5955,9 +4929,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5955
4929
|
* # Arguments
|
|
5956
4930
|
* * `account_id` - the account id of the operator
|
|
5957
4931
|
**/
|
|
5958
|
-
setOperator: AugmentedSubmittable<(accountId: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5959
|
-
AccountId32
|
|
5960
|
-
]>;
|
|
4932
|
+
setOperator: AugmentedSubmittable<(accountId: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
|
|
5961
4933
|
/**
|
|
5962
4934
|
* Submit the latest price index. Only valid for the configured operator account
|
|
5963
4935
|
**/
|
|
@@ -5968,9 +4940,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5968
4940
|
argonUsdTargetPrice?: any;
|
|
5969
4941
|
argonTimeWeightedAverageLiquidity?: any;
|
|
5970
4942
|
tick?: any;
|
|
5971
|
-
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5972
|
-
PalletPriceIndexPriceIndex
|
|
5973
|
-
]>;
|
|
4943
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletPriceIndexPriceIndex]>;
|
|
5974
4944
|
};
|
|
5975
4945
|
proxy: {
|
|
5976
4946
|
/**
|
|
@@ -5994,11 +4964,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5994
4964
|
Address32: any;
|
|
5995
4965
|
} | {
|
|
5996
4966
|
Address20: any;
|
|
5997
|
-
} | string | Uint8Array, proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | 'BitcoinInitializeFor' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5998
|
-
MultiAddress,
|
|
5999
|
-
ArgonRuntimeProxyType,
|
|
6000
|
-
u32
|
|
6001
|
-
]>;
|
|
4967
|
+
} | string | Uint8Array, proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | 'BitcoinInitializeFor' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, ArgonRuntimeProxyType, u32]>;
|
|
6002
4968
|
/**
|
|
6003
4969
|
* Publish the hash of a proxy-call that will be made in the future.
|
|
6004
4970
|
*
|
|
@@ -6026,10 +4992,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6026
4992
|
Address32: any;
|
|
6027
4993
|
} | {
|
|
6028
4994
|
Address20: any;
|
|
6029
|
-
} | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6030
|
-
MultiAddress,
|
|
6031
|
-
H256
|
|
6032
|
-
]>;
|
|
4995
|
+
} | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, H256]>;
|
|
6033
4996
|
/**
|
|
6034
4997
|
* Spawn a fresh new account that is guaranteed to be otherwise inaccessible, and
|
|
6035
4998
|
* initialize it with a proxy of `proxy_type` for `origin` sender.
|
|
@@ -6050,11 +5013,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6050
5013
|
*
|
|
6051
5014
|
* Fails if there are insufficient funds to pay for deposit.
|
|
6052
5015
|
**/
|
|
6053
|
-
createPure: AugmentedSubmittable<(proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | 'BitcoinInitializeFor' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array, index: u16 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6054
|
-
ArgonRuntimeProxyType,
|
|
6055
|
-
u32,
|
|
6056
|
-
u16
|
|
6057
|
-
]>;
|
|
5016
|
+
createPure: AugmentedSubmittable<(proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | 'BitcoinInitializeFor' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array, index: u16 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [ArgonRuntimeProxyType, u32, u16]>;
|
|
6058
5017
|
/**
|
|
6059
5018
|
* Removes a previously spawned pure proxy.
|
|
6060
5019
|
*
|
|
@@ -6083,13 +5042,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6083
5042
|
Address32: any;
|
|
6084
5043
|
} | {
|
|
6085
5044
|
Address20: any;
|
|
6086
|
-
} | string | Uint8Array, proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | 'BitcoinInitializeFor' | number | Uint8Array, index: u16 | AnyNumber | Uint8Array, height: Compact<u32> | AnyNumber | Uint8Array, extIndex: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6087
|
-
MultiAddress,
|
|
6088
|
-
ArgonRuntimeProxyType,
|
|
6089
|
-
u16,
|
|
6090
|
-
Compact<u32>,
|
|
6091
|
-
Compact<u32>
|
|
6092
|
-
]>;
|
|
5045
|
+
} | string | Uint8Array, proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | 'BitcoinInitializeFor' | number | Uint8Array, index: u16 | AnyNumber | Uint8Array, height: Compact<u32> | AnyNumber | Uint8Array, extIndex: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, ArgonRuntimeProxyType, u16, Compact<u32>, Compact<u32>]>;
|
|
6093
5046
|
/**
|
|
6094
5047
|
* Poke / Adjust deposits made for proxies and announcements based on current values.
|
|
6095
5048
|
* This can be used by accounts to possibly lower their locked amount.
|
|
@@ -6122,11 +5075,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6122
5075
|
Address32: any;
|
|
6123
5076
|
} | {
|
|
6124
5077
|
Address20: any;
|
|
6125
|
-
} | string | Uint8Array, forceProxyType: Option<ArgonRuntimeProxyType> | null | Uint8Array | ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | 'BitcoinInitializeFor' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6126
|
-
MultiAddress,
|
|
6127
|
-
Option<ArgonRuntimeProxyType>,
|
|
6128
|
-
Call
|
|
6129
|
-
]>;
|
|
5078
|
+
} | string | Uint8Array, forceProxyType: Option<ArgonRuntimeProxyType> | null | Uint8Array | ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | 'BitcoinInitializeFor' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Option<ArgonRuntimeProxyType>, Call]>;
|
|
6130
5079
|
/**
|
|
6131
5080
|
* Dispatch the given `call` from an account that the sender is authorized for through
|
|
6132
5081
|
* `add_proxy`.
|
|
@@ -6160,12 +5109,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6160
5109
|
Address32: any;
|
|
6161
5110
|
} | {
|
|
6162
5111
|
Address20: any;
|
|
6163
|
-
} | string | Uint8Array, forceProxyType: Option<ArgonRuntimeProxyType> | null | Uint8Array | ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | 'BitcoinInitializeFor' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6164
|
-
MultiAddress,
|
|
6165
|
-
MultiAddress,
|
|
6166
|
-
Option<ArgonRuntimeProxyType>,
|
|
6167
|
-
Call
|
|
6168
|
-
]>;
|
|
5112
|
+
} | string | Uint8Array, forceProxyType: Option<ArgonRuntimeProxyType> | null | Uint8Array | ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | 'BitcoinInitializeFor' | number, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Option<ArgonRuntimeProxyType>, Call]>;
|
|
6169
5113
|
/**
|
|
6170
5114
|
* Remove the given announcement of a delegate.
|
|
6171
5115
|
*
|
|
@@ -6188,10 +5132,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6188
5132
|
Address32: any;
|
|
6189
5133
|
} | {
|
|
6190
5134
|
Address20: any;
|
|
6191
|
-
} | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6192
|
-
MultiAddress,
|
|
6193
|
-
H256
|
|
6194
|
-
]>;
|
|
5135
|
+
} | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, H256]>;
|
|
6195
5136
|
/**
|
|
6196
5137
|
* Remove a given announcement.
|
|
6197
5138
|
*
|
|
@@ -6214,10 +5155,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6214
5155
|
Address32: any;
|
|
6215
5156
|
} | {
|
|
6216
5157
|
Address20: any;
|
|
6217
|
-
} | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6218
|
-
MultiAddress,
|
|
6219
|
-
H256
|
|
6220
|
-
]>;
|
|
5158
|
+
} | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, H256]>;
|
|
6221
5159
|
/**
|
|
6222
5160
|
* Unregister all proxy accounts for the sender.
|
|
6223
5161
|
*
|
|
@@ -6246,11 +5184,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6246
5184
|
Address32: any;
|
|
6247
5185
|
} | {
|
|
6248
5186
|
Address20: any;
|
|
6249
|
-
} | string | Uint8Array, proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | 'BitcoinInitializeFor' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6250
|
-
MultiAddress,
|
|
6251
|
-
ArgonRuntimeProxyType,
|
|
6252
|
-
u32
|
|
6253
|
-
]>;
|
|
5187
|
+
} | string | Uint8Array, proxyType: ArgonRuntimeProxyType | 'Any' | 'NonTransfer' | 'PriceIndex' | 'MiningBid' | 'MiningBidRealPaysFee' | 'Bitcoin' | 'VaultAdmin' | 'BitcoinInitializeFor' | number | Uint8Array, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, ArgonRuntimeProxyType, u32]>;
|
|
6254
5188
|
};
|
|
6255
5189
|
sudo: {
|
|
6256
5190
|
/**
|
|
@@ -6273,15 +5207,11 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6273
5207
|
Address32: any;
|
|
6274
5208
|
} | {
|
|
6275
5209
|
Address20: any;
|
|
6276
|
-
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6277
|
-
MultiAddress
|
|
6278
|
-
]>;
|
|
5210
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
|
|
6279
5211
|
/**
|
|
6280
5212
|
* Authenticates the sudo key and dispatches a function call with `Root` origin.
|
|
6281
5213
|
**/
|
|
6282
|
-
sudo: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6283
|
-
Call
|
|
6284
|
-
]>;
|
|
5214
|
+
sudo: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call]>;
|
|
6285
5215
|
/**
|
|
6286
5216
|
* Authenticates the sudo key and dispatches a function call with `Signed` origin from
|
|
6287
5217
|
* a given account.
|
|
@@ -6298,10 +5228,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6298
5228
|
Address32: any;
|
|
6299
5229
|
} | {
|
|
6300
5230
|
Address20: any;
|
|
6301
|
-
} | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6302
|
-
MultiAddress,
|
|
6303
|
-
Call
|
|
6304
|
-
]>;
|
|
5231
|
+
} | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Call]>;
|
|
6305
5232
|
/**
|
|
6306
5233
|
* Authenticates the sudo key and dispatches a function call with `Root` origin.
|
|
6307
5234
|
* This function does not check the weight of the call, and instead allows the
|
|
@@ -6312,10 +5239,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6312
5239
|
sudoUncheckedWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: SpWeightsWeightV2Weight | {
|
|
6313
5240
|
refTime?: any;
|
|
6314
5241
|
proofSize?: any;
|
|
6315
|
-
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6316
|
-
Call,
|
|
6317
|
-
SpWeightsWeightV2Weight
|
|
6318
|
-
]>;
|
|
5242
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, SpWeightsWeightV2Weight]>;
|
|
6319
5243
|
};
|
|
6320
5244
|
system: {
|
|
6321
5245
|
/**
|
|
@@ -6329,18 +5253,14 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6329
5253
|
*
|
|
6330
5254
|
* All origins are allowed.
|
|
6331
5255
|
**/
|
|
6332
|
-
applyAuthorizedUpgrade: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6333
|
-
Bytes
|
|
6334
|
-
]>;
|
|
5256
|
+
applyAuthorizedUpgrade: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
|
|
6335
5257
|
/**
|
|
6336
5258
|
* Authorize an upgrade to a given `code_hash` for the runtime. The runtime can be supplied
|
|
6337
5259
|
* later.
|
|
6338
5260
|
*
|
|
6339
5261
|
* This call requires Root origin.
|
|
6340
5262
|
**/
|
|
6341
|
-
authorizeUpgrade: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6342
|
-
H256
|
|
6343
|
-
]>;
|
|
5263
|
+
authorizeUpgrade: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256]>;
|
|
6344
5264
|
/**
|
|
6345
5265
|
* Authorize an upgrade to a given `code_hash` for the runtime. The runtime can be supplied
|
|
6346
5266
|
* later.
|
|
@@ -6351,66 +5271,47 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6351
5271
|
*
|
|
6352
5272
|
* This call requires Root origin.
|
|
6353
5273
|
**/
|
|
6354
|
-
authorizeUpgradeWithoutChecks: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6355
|
-
H256
|
|
6356
|
-
]>;
|
|
5274
|
+
authorizeUpgradeWithoutChecks: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256]>;
|
|
6357
5275
|
/**
|
|
6358
5276
|
* Kill all storage items with a key that starts with the given prefix.
|
|
6359
5277
|
*
|
|
6360
5278
|
* **NOTE:** We rely on the Root origin to provide us the number of subkeys under
|
|
6361
5279
|
* the prefix we are removing to accurately calculate the weight of this function.
|
|
6362
5280
|
**/
|
|
6363
|
-
killPrefix: AugmentedSubmittable<(prefix: Bytes | string | Uint8Array, subkeys: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6364
|
-
Bytes,
|
|
6365
|
-
u32
|
|
6366
|
-
]>;
|
|
5281
|
+
killPrefix: AugmentedSubmittable<(prefix: Bytes | string | Uint8Array, subkeys: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes, u32]>;
|
|
6367
5282
|
/**
|
|
6368
5283
|
* Kill some items from storage.
|
|
6369
5284
|
**/
|
|
6370
|
-
killStorage: AugmentedSubmittable<(keys: Vec<Bytes> | (Bytes | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
|
|
6371
|
-
Vec<Bytes>
|
|
6372
|
-
]>;
|
|
5285
|
+
killStorage: AugmentedSubmittable<(keys: Vec<Bytes> | (Bytes | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Bytes>]>;
|
|
6373
5286
|
/**
|
|
6374
5287
|
* Make some on-chain remark.
|
|
6375
5288
|
*
|
|
6376
5289
|
* Can be executed by every `origin`.
|
|
6377
5290
|
**/
|
|
6378
|
-
remark: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6379
|
-
Bytes
|
|
6380
|
-
]>;
|
|
5291
|
+
remark: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
|
|
6381
5292
|
/**
|
|
6382
5293
|
* Make some on-chain remark and emit event.
|
|
6383
5294
|
**/
|
|
6384
|
-
remarkWithEvent: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6385
|
-
Bytes
|
|
6386
|
-
]>;
|
|
5295
|
+
remarkWithEvent: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
|
|
6387
5296
|
/**
|
|
6388
5297
|
* Set the new runtime code.
|
|
6389
5298
|
**/
|
|
6390
|
-
setCode: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6391
|
-
Bytes
|
|
6392
|
-
]>;
|
|
5299
|
+
setCode: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
|
|
6393
5300
|
/**
|
|
6394
5301
|
* Set the new runtime code without doing any checks of the given `code`.
|
|
6395
5302
|
*
|
|
6396
5303
|
* Note that runtime upgrades will not run if this is called with a not-increasing spec
|
|
6397
5304
|
* version!
|
|
6398
5305
|
**/
|
|
6399
|
-
setCodeWithoutChecks: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6400
|
-
Bytes
|
|
6401
|
-
]>;
|
|
5306
|
+
setCodeWithoutChecks: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
|
|
6402
5307
|
/**
|
|
6403
5308
|
* Set the number of pages in the WebAssembly environment's heap.
|
|
6404
5309
|
**/
|
|
6405
|
-
setHeapPages: AugmentedSubmittable<(pages: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6406
|
-
u64
|
|
6407
|
-
]>;
|
|
5310
|
+
setHeapPages: AugmentedSubmittable<(pages: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
|
|
6408
5311
|
/**
|
|
6409
5312
|
* Set some items of storage.
|
|
6410
5313
|
**/
|
|
6411
|
-
setStorage: AugmentedSubmittable<(items: Vec<ITuple<[Bytes, Bytes]>> | [Bytes | string | Uint8Array, Bytes | string | Uint8Array][]) => SubmittableExtrinsic<ApiType>, [
|
|
6412
|
-
Vec<ITuple<[Bytes, Bytes]>>
|
|
6413
|
-
]>;
|
|
5314
|
+
setStorage: AugmentedSubmittable<(items: Vec<ITuple<[Bytes, Bytes]>> | ([Bytes | string | Uint8Array, Bytes | string | Uint8Array])[]) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[Bytes, Bytes]>>]>;
|
|
6414
5315
|
};
|
|
6415
5316
|
ticks: {};
|
|
6416
5317
|
timestamp: {
|
|
@@ -6435,9 +5336,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6435
5336
|
* `on_finalize`)
|
|
6436
5337
|
* - 1 event handler `on_timestamp_set`. Must be `O(1)`.
|
|
6437
5338
|
**/
|
|
6438
|
-
set: AugmentedSubmittable<(now: Compact<u64> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6439
|
-
Compact<u64>
|
|
6440
|
-
]>;
|
|
5339
|
+
set: AugmentedSubmittable<(now: Compact<u64> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u64>]>;
|
|
6441
5340
|
};
|
|
6442
5341
|
treasury: {
|
|
6443
5342
|
/**
|
|
@@ -6445,18 +5344,13 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6445
5344
|
*
|
|
6446
5345
|
* The purchase either enters the accepted list or fails.
|
|
6447
5346
|
**/
|
|
6448
|
-
buyBonds: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, bonds: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6449
|
-
u32,
|
|
6450
|
-
u32
|
|
6451
|
-
]>;
|
|
5347
|
+
buyBonds: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, bonds: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
|
|
6452
5348
|
/**
|
|
6453
5349
|
* Liquidate one full bond lot.
|
|
6454
5350
|
*
|
|
6455
5351
|
* The lot stops participating right away and is released after the delay.
|
|
6456
5352
|
**/
|
|
6457
|
-
liquidateBondLot: AugmentedSubmittable<(bondLotId: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6458
|
-
u64
|
|
6459
|
-
]>;
|
|
5353
|
+
liquidateBondLot: AugmentedSubmittable<(bondLotId: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
|
|
6460
5354
|
};
|
|
6461
5355
|
txPause: {
|
|
6462
5356
|
/**
|
|
@@ -6465,18 +5359,14 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6465
5359
|
* Can only be called by [`Config::PauseOrigin`].
|
|
6466
5360
|
* Emits an [`Event::CallPaused`] event on success.
|
|
6467
5361
|
**/
|
|
6468
|
-
pause: AugmentedSubmittable<(fullName: ITuple<[Bytes, Bytes]> | [Bytes | string | Uint8Array, Bytes | string | Uint8Array]) => SubmittableExtrinsic<ApiType>, [
|
|
6469
|
-
ITuple<[Bytes, Bytes]>
|
|
6470
|
-
]>;
|
|
5362
|
+
pause: AugmentedSubmittable<(fullName: ITuple<[Bytes, Bytes]> | [Bytes | string | Uint8Array, Bytes | string | Uint8Array]) => SubmittableExtrinsic<ApiType>, [ITuple<[Bytes, Bytes]>]>;
|
|
6471
5363
|
/**
|
|
6472
5364
|
* Un-pause a call.
|
|
6473
5365
|
*
|
|
6474
5366
|
* Can only be called by [`Config::UnpauseOrigin`].
|
|
6475
5367
|
* Emits an [`Event::CallUnpaused`] event on success.
|
|
6476
5368
|
**/
|
|
6477
|
-
unpause: AugmentedSubmittable<(ident: ITuple<[Bytes, Bytes]> | [Bytes | string | Uint8Array, Bytes | string | Uint8Array]) => SubmittableExtrinsic<ApiType>, [
|
|
6478
|
-
ITuple<[Bytes, Bytes]>
|
|
6479
|
-
]>;
|
|
5369
|
+
unpause: AugmentedSubmittable<(ident: ITuple<[Bytes, Bytes]> | [Bytes | string | Uint8Array, Bytes | string | Uint8Array]) => SubmittableExtrinsic<ApiType>, [ITuple<[Bytes, Bytes]>]>;
|
|
6480
5370
|
};
|
|
6481
5371
|
utility: {
|
|
6482
5372
|
/**
|
|
@@ -6494,10 +5384,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6494
5384
|
*
|
|
6495
5385
|
* The dispatch origin for this call must be _Signed_.
|
|
6496
5386
|
**/
|
|
6497
|
-
asDerivative: AugmentedSubmittable<(index: u16 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6498
|
-
u16,
|
|
6499
|
-
Call
|
|
6500
|
-
]>;
|
|
5387
|
+
asDerivative: AugmentedSubmittable<(index: u16 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Call]>;
|
|
6501
5388
|
/**
|
|
6502
5389
|
* Send a batch of dispatch calls.
|
|
6503
5390
|
*
|
|
@@ -6518,9 +5405,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6518
5405
|
* and the error of the failed call. If all were successful, then the `BatchCompleted`
|
|
6519
5406
|
* event is deposited.
|
|
6520
5407
|
**/
|
|
6521
|
-
batch: AugmentedSubmittable<(calls: Vec<Call> | (Call | IMethod | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
|
|
6522
|
-
Vec<Call>
|
|
6523
|
-
]>;
|
|
5408
|
+
batch: AugmentedSubmittable<(calls: Vec<Call> | (Call | IMethod | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Call>]>;
|
|
6524
5409
|
/**
|
|
6525
5410
|
* Send a batch of dispatch calls and atomically execute them.
|
|
6526
5411
|
* The whole transaction will rollback and fail if any of the calls failed.
|
|
@@ -6536,9 +5421,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6536
5421
|
* ## Complexity
|
|
6537
5422
|
* - O(C) where C is the number of calls to be batched.
|
|
6538
5423
|
**/
|
|
6539
|
-
batchAll: AugmentedSubmittable<(calls: Vec<Call> | (Call | IMethod | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
|
|
6540
|
-
Vec<Call>
|
|
6541
|
-
]>;
|
|
5424
|
+
batchAll: AugmentedSubmittable<(calls: Vec<Call> | (Call | IMethod | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Call>]>;
|
|
6542
5425
|
/**
|
|
6543
5426
|
* Dispatches a function call with a provided origin.
|
|
6544
5427
|
*
|
|
@@ -6549,10 +5432,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6549
5432
|
**/
|
|
6550
5433
|
dispatchAs: AugmentedSubmittable<(asOrigin: ArgonRuntimeOriginCaller | {
|
|
6551
5434
|
system: any;
|
|
6552
|
-
} | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6553
|
-
ArgonRuntimeOriginCaller,
|
|
6554
|
-
Call
|
|
6555
|
-
]>;
|
|
5435
|
+
} | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [ArgonRuntimeOriginCaller, Call]>;
|
|
6556
5436
|
/**
|
|
6557
5437
|
* Dispatches a function call with a provided origin.
|
|
6558
5438
|
*
|
|
@@ -6562,10 +5442,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6562
5442
|
**/
|
|
6563
5443
|
dispatchAsFallible: AugmentedSubmittable<(asOrigin: ArgonRuntimeOriginCaller | {
|
|
6564
5444
|
system: any;
|
|
6565
|
-
} | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6566
|
-
ArgonRuntimeOriginCaller,
|
|
6567
|
-
Call
|
|
6568
|
-
]>;
|
|
5445
|
+
} | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [ArgonRuntimeOriginCaller, Call]>;
|
|
6569
5446
|
/**
|
|
6570
5447
|
* Send a batch of dispatch calls.
|
|
6571
5448
|
* Unlike `batch`, it allows errors and won't interrupt.
|
|
@@ -6581,9 +5458,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6581
5458
|
* ## Complexity
|
|
6582
5459
|
* - O(C) where C is the number of calls to be batched.
|
|
6583
5460
|
**/
|
|
6584
|
-
forceBatch: AugmentedSubmittable<(calls: Vec<Call> | (Call | IMethod | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [
|
|
6585
|
-
Vec<Call>
|
|
6586
|
-
]>;
|
|
5461
|
+
forceBatch: AugmentedSubmittable<(calls: Vec<Call> | (Call | IMethod | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Call>]>;
|
|
6587
5462
|
/**
|
|
6588
5463
|
* Dispatch a fallback call in the event the main call fails to execute.
|
|
6589
5464
|
* May be called from any origin except `None`.
|
|
@@ -6609,10 +5484,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6609
5484
|
* - Some use cases might involve submitting a `batch` type call in either main, fallback
|
|
6610
5485
|
* or both.
|
|
6611
5486
|
**/
|
|
6612
|
-
ifElse: AugmentedSubmittable<(main: Call | IMethod | string | Uint8Array, fallback: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6613
|
-
Call,
|
|
6614
|
-
Call
|
|
6615
|
-
]>;
|
|
5487
|
+
ifElse: AugmentedSubmittable<(main: Call | IMethod | string | Uint8Array, fallback: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, Call]>;
|
|
6616
5488
|
/**
|
|
6617
5489
|
* Dispatch a function call with a specified weight.
|
|
6618
5490
|
*
|
|
@@ -6624,31 +5496,22 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6624
5496
|
withWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: SpWeightsWeightV2Weight | {
|
|
6625
5497
|
refTime?: any;
|
|
6626
5498
|
proofSize?: any;
|
|
6627
|
-
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6628
|
-
Call,
|
|
6629
|
-
SpWeightsWeightV2Weight
|
|
6630
|
-
]>;
|
|
5499
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, SpWeightsWeightV2Weight]>;
|
|
6631
5500
|
};
|
|
6632
5501
|
vaults: {
|
|
6633
5502
|
/**
|
|
6634
5503
|
* Stop offering additional bitcoin locks from this vault. Will not affect existing
|
|
6635
5504
|
* locks. As funds are returned, they will be released to the vault owner.
|
|
6636
5505
|
**/
|
|
6637
|
-
close: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6638
|
-
|
|
6639
|
-
]>;
|
|
6640
|
-
collect: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6641
|
-
u32
|
|
6642
|
-
]>;
|
|
5506
|
+
close: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
|
|
5507
|
+
collect: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
|
|
6643
5508
|
create: AugmentedSubmittable<(vaultConfig: PalletVaultsVaultConfig | {
|
|
6644
5509
|
terms?: any;
|
|
6645
5510
|
name?: any;
|
|
6646
5511
|
securitization?: any;
|
|
6647
5512
|
bitcoinXpubkey?: any;
|
|
6648
5513
|
securitizationRatio?: any;
|
|
6649
|
-
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6650
|
-
PalletVaultsVaultConfig
|
|
6651
|
-
]>;
|
|
5514
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletVaultsVaultConfig]>;
|
|
6652
5515
|
/**
|
|
6653
5516
|
* Modify funds allocated by the vault. This will not affect issued bitcoin locks, but will
|
|
6654
5517
|
* affect the amount of funds available for new ones.
|
|
@@ -6659,11 +5522,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6659
5522
|
* funds in this vault as bitcoin locks are released. To stop issuing any more bitcoin
|
|
6660
5523
|
* locks, use the `close` api.
|
|
6661
5524
|
**/
|
|
6662
|
-
modifyFunding: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, securitization: u128 | AnyNumber | Uint8Array, securitizationRatio: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6663
|
-
u32,
|
|
6664
|
-
u128,
|
|
6665
|
-
u128
|
|
6666
|
-
]>;
|
|
5525
|
+
modifyFunding: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, securitization: u128 | AnyNumber | Uint8Array, securitizationRatio: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u128, u128]>;
|
|
6667
5526
|
/**
|
|
6668
5527
|
* Change the terms of this vault. The change will be applied at the next mining slot
|
|
6669
5528
|
* change that is at least `MinTermsModificationBlockDelay` blocks away.
|
|
@@ -6672,25 +5531,15 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
6672
5531
|
bitcoinAnnualPercentRate?: any;
|
|
6673
5532
|
bitcoinBaseFee?: any;
|
|
6674
5533
|
treasuryProfitSharing?: any;
|
|
6675
|
-
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6676
|
-
u32,
|
|
6677
|
-
ArgonPrimitivesVaultVaultTerms
|
|
6678
|
-
]>;
|
|
5534
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, ArgonPrimitivesVaultVaultTerms]>;
|
|
6679
5535
|
/**
|
|
6680
5536
|
* Replace the bitcoin xpubkey for this vault. This will not affect existing bitcoin locks,
|
|
6681
5537
|
* but will be used for any locks after this point. Will be rejected if already
|
|
6682
5538
|
* used.
|
|
6683
5539
|
**/
|
|
6684
|
-
replaceBitcoinXpub: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, bitcoinXpub: ArgonPrimitivesBitcoinOpaqueBitcoinXpub | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
6685
|
-
|
|
6686
|
-
|
|
6687
|
-
]>;
|
|
6688
|
-
setBitcoinLockDelegate: AugmentedSubmittable<(delegateAccountId: Option<AccountId32> | null | Uint8Array | AccountId32 | string) => SubmittableExtrinsic<ApiType>, [
|
|
6689
|
-
Option<AccountId32>
|
|
6690
|
-
]>;
|
|
6691
|
-
setName: AugmentedSubmittable<(name: Option<Bytes> | null | Uint8Array | Bytes | string) => SubmittableExtrinsic<ApiType>, [
|
|
6692
|
-
Option<Bytes>
|
|
6693
|
-
]>;
|
|
5540
|
+
replaceBitcoinXpub: AugmentedSubmittable<(vaultId: u32 | AnyNumber | Uint8Array, bitcoinXpub: ArgonPrimitivesBitcoinOpaqueBitcoinXpub | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, ArgonPrimitivesBitcoinOpaqueBitcoinXpub]>;
|
|
5541
|
+
setBitcoinLockDelegate: AugmentedSubmittable<(delegateAccountId: Option<AccountId32> | null | Uint8Array | AccountId32 | string) => SubmittableExtrinsic<ApiType>, [Option<AccountId32>]>;
|
|
5542
|
+
setName: AugmentedSubmittable<(name: Option<Bytes> | null | Uint8Array | Bytes | string) => SubmittableExtrinsic<ApiType>, [Option<Bytes>]>;
|
|
6694
5543
|
};
|
|
6695
5544
|
}
|
|
6696
5545
|
}
|
|
@@ -6912,7 +5761,7 @@ declare module '@polkadot/rpc-core/types/jsonrpc' {
|
|
|
6912
5761
|
/**
|
|
6913
5762
|
* Returns fee history for given block count & reward percentiles
|
|
6914
5763
|
**/
|
|
6915
|
-
feeHistory: AugmentedRpc<(blockCount: U256 | AnyNumber | Uint8Array, newestBlock: BlockNumber | AnyNumber | Uint8Array, rewardPercentiles: Option<Vec<f64>> | null | Uint8Array | Vec<f64> | f64[]) => Observable<EthFeeHistory>>;
|
|
5764
|
+
feeHistory: AugmentedRpc<(blockCount: U256 | AnyNumber | Uint8Array, newestBlock: BlockNumber | AnyNumber | Uint8Array, rewardPercentiles: Option<Vec<f64>> | null | Uint8Array | Vec<f64> | (f64)[]) => Observable<EthFeeHistory>>;
|
|
6916
5765
|
/**
|
|
6917
5766
|
* Returns current gas price.
|
|
6918
5767
|
**/
|
|
@@ -12507,6 +11356,20 @@ declare function getFrameInfoFromHeader(header: Header): {
|
|
|
12507
11356
|
frameRewardTicksRemaining: number;
|
|
12508
11357
|
} | undefined;
|
|
12509
11358
|
|
|
11359
|
+
declare class PriceIndex {
|
|
11360
|
+
btcUsdPrice?: BigNumber;
|
|
11361
|
+
argonotUsdPrice?: BigNumber;
|
|
11362
|
+
argonUsdPrice?: BigNumber;
|
|
11363
|
+
argonUsdTargetPrice?: BigNumber;
|
|
11364
|
+
argonTimeWeightedAverageLiquidity?: BigNumber;
|
|
11365
|
+
lastUpdatedTick?: number;
|
|
11366
|
+
load(client: ArgonClient | ApiDecoration<'promise'>): Promise<this>;
|
|
11367
|
+
getSatoshiPriceInMarketMicrogons(satoshis: bigint | number): bigint;
|
|
11368
|
+
getSatoshiPriceInTargetMicrogons(satoshis: bigint | number): bigint;
|
|
11369
|
+
get rValue(): BigNumber;
|
|
11370
|
+
get argonCpi(): BigNumber;
|
|
11371
|
+
}
|
|
11372
|
+
|
|
12510
11373
|
interface ArgonPrimitivesVaultV144 extends Struct {
|
|
12511
11374
|
readonly operatorAccountId: AccountId32;
|
|
12512
11375
|
readonly securitization: Compact<u128>;
|
|
@@ -12546,6 +11409,9 @@ declare class Vault {
|
|
|
12546
11409
|
load(vault: ArgonPrimitivesVault | ArgonPrimitivesVaultV144): void;
|
|
12547
11410
|
availableBitcoinSpace(): bigint;
|
|
12548
11411
|
availableSecuritization(): bigint;
|
|
11412
|
+
availableBondSpace(priceIndex: PriceIndex, bondLots?: Iterable<{
|
|
11413
|
+
activeBonds: number;
|
|
11414
|
+
}>, bondFullCapacityPerFrame?: boolean): bigint;
|
|
12549
11415
|
getRelockCapacity(): bigint;
|
|
12550
11416
|
securitizationRatioBN(): BigNumber;
|
|
12551
11417
|
activatedSecuritization(): bigint;
|
|
@@ -12586,20 +11452,6 @@ declare function fromFixedNumber(value: bigint, decimals?: number): BigNumber;
|
|
|
12586
11452
|
declare const FIXED_U128_DECIMALS = 18;
|
|
12587
11453
|
declare const PERMILL_DECIMALS = 6;
|
|
12588
11454
|
|
|
12589
|
-
declare class PriceIndex {
|
|
12590
|
-
btcUsdPrice?: BigNumber;
|
|
12591
|
-
argonotUsdPrice?: BigNumber;
|
|
12592
|
-
argonUsdPrice?: BigNumber;
|
|
12593
|
-
argonUsdTargetPrice?: BigNumber;
|
|
12594
|
-
argonTimeWeightedAverageLiquidity?: BigNumber;
|
|
12595
|
-
lastUpdatedTick?: number;
|
|
12596
|
-
load(client: ArgonClient | ApiDecoration<'promise'>): Promise<this>;
|
|
12597
|
-
getSatoshiPriceInMarketMicrogons(satoshis: bigint | number): bigint;
|
|
12598
|
-
getSatoshiPriceInTargetMicrogons(satoshis: bigint | number): bigint;
|
|
12599
|
-
get rValue(): BigNumber;
|
|
12600
|
-
get argonCpi(): BigNumber;
|
|
12601
|
-
}
|
|
12602
|
-
|
|
12603
11455
|
declare const SATS_PER_BTC = 100000000n;
|
|
12604
11456
|
type IQueryableClient = ArgonClient | ApiDecoration<'promise'>;
|
|
12605
11457
|
type UtxoRefLike = ArgonPrimitivesBitcoinUtxoRef | {
|
|
@@ -12690,6 +11542,7 @@ declare class BitcoinLock implements IBitcoinLock {
|
|
|
12690
11542
|
static getUtxoIdFromEvents(client: IQueryableClient, events: GenericEvent$1[]): Promise<number | undefined>;
|
|
12691
11543
|
static calculateRedemptionAmountFromSatoshis(priceIndex: PriceIndex, satoshis: bigint, lockedTargetPrice?: bigint): bigint;
|
|
12692
11544
|
static calculateRedemptionAmount(priceIndex: PriceIndex, btcMicrogonsAtTarget: bigint, maxMicrogonsAtTarget?: bigint): bigint;
|
|
11545
|
+
private static redemptionMultiplierBn;
|
|
12693
11546
|
static getConfig(client: IQueryableClient): Promise<IBitcoinLockConfig>;
|
|
12694
11547
|
static getBitcoinConfirmedBlockHeight(client: IQueryableClient): Promise<number>;
|
|
12695
11548
|
static submitVaultSignature(args: {
|
|
@@ -12760,7 +11613,7 @@ declare class BitcoinLock implements IBitcoinLock {
|
|
|
12760
11613
|
createdAtHeight: number;
|
|
12761
11614
|
txResult: TxResult;
|
|
12762
11615
|
}>;
|
|
12763
|
-
static
|
|
11616
|
+
static satoshisRequiredForRedemptionAmount(priceIndex: PriceIndex, redemptionAmount: bigint): bigint;
|
|
12764
11617
|
}
|
|
12765
11618
|
interface IBitcoinLockConfig {
|
|
12766
11619
|
lockReleaseCosignDeadlineFrames: number;
|