@argonprotocol/mainchain 1.4.9-dev.5b945a61 → 1.4.9-dev.5ffdfd6a
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 +13 -9
- package/browser/index.js +100 -22
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +123 -46
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +13 -9
- package/lib/index.d.ts +13 -9
- package/lib/index.js +99 -22
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-errors.ts +2 -2
- package/src/interfaces/augment-api-tx.ts +1 -0
- package/src/interfaces/lookup.ts +1 -0
- package/src/interfaces/types-lookup.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@argonprotocol/mainchain",
|
|
3
|
-
"version": "1.4.9-dev.
|
|
3
|
+
"version": "1.4.9-dev.5ffdfd6a",
|
|
4
4
|
"description": "A client for accessing the Argon mainchain apis.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
67
|
"@argonprotocol/ethereum-contracts": "workspace:*",
|
|
68
|
-
"@argonprotocol/testing": "1.4.9-dev.
|
|
68
|
+
"@argonprotocol/testing": "1.4.9-dev.5ffdfd6a",
|
|
69
69
|
"@polkadot/typegen": "^16.5.6",
|
|
70
70
|
"@substrate/ss58-registry": "^1.51.0",
|
|
71
71
|
"@types/node": "^20",
|
|
@@ -791,7 +791,7 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
791
791
|
**/
|
|
792
792
|
InvalidBidAmount: AugmentedError<ApiType>;
|
|
793
793
|
/**
|
|
794
|
-
* Mining slot bidding currently requires prior operational-account
|
|
794
|
+
* Mining slot bidding currently requires a prior operational-account upgrade.
|
|
795
795
|
**/
|
|
796
796
|
OperationalAccountRegistrationRequired: AugmentedError<ApiType>;
|
|
797
797
|
/**
|
|
@@ -1380,7 +1380,7 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
1380
1380
|
**/
|
|
1381
1381
|
NoVaultBitcoinPubkeysAvailable: AugmentedError<ApiType>;
|
|
1382
1382
|
/**
|
|
1383
|
-
* Vault creation currently requires prior operational-account
|
|
1383
|
+
* Vault creation currently requires a prior operational-account upgrade.
|
|
1384
1384
|
**/
|
|
1385
1385
|
OperationalAccountRegistrationRequired: AugmentedError<ApiType>;
|
|
1386
1386
|
/**
|
|
@@ -1157,6 +1157,7 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
1157
1157
|
accountBitcoinAmount?: any;
|
|
1158
1158
|
accountVaultBondAmount?: any;
|
|
1159
1159
|
vaultCreated?: any;
|
|
1160
|
+
isUpgradedToOperations?: any;
|
|
1160
1161
|
vaultBitcoinAmount?: any;
|
|
1161
1162
|
miningSeatCount?: any;
|
|
1162
1163
|
}
|
package/src/interfaces/lookup.ts
CHANGED
|
@@ -2758,6 +2758,7 @@ export default {
|
|
|
2758
2758
|
accountBitcoinAmount: 'Option<u128>',
|
|
2759
2759
|
accountVaultBondAmount: 'Option<u128>',
|
|
2760
2760
|
vaultCreated: 'Option<bool>',
|
|
2761
|
+
isUpgradedToOperations: 'Option<bool>',
|
|
2761
2762
|
vaultBitcoinAmount: 'Option<u128>',
|
|
2762
2763
|
miningSeatCount: 'Option<u32>',
|
|
2763
2764
|
},
|
|
@@ -3265,6 +3265,7 @@ declare module '@polkadot/types/lookup' {
|
|
|
3265
3265
|
readonly accountBitcoinAmount: Option<u128>;
|
|
3266
3266
|
readonly accountVaultBondAmount: Option<u128>;
|
|
3267
3267
|
readonly vaultCreated: Option<bool>;
|
|
3268
|
+
readonly isUpgradedToOperations: Option<bool>;
|
|
3268
3269
|
readonly vaultBitcoinAmount: Option<u128>;
|
|
3269
3270
|
readonly miningSeatCount: Option<u32>;
|
|
3270
3271
|
}
|