@argonprotocol/mainchain 1.4.11-dev.825bb01a → 1.4.11-dev.f3bdc948
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 +195 -225
- package/browser/index.js +9 -5
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +9 -5
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +195 -225
- package/lib/index.d.ts +195 -225
- package/lib/index.js +9 -5
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-errors.ts +0 -20
- package/src/interfaces/lookup.ts +183 -193
- package/src/interfaces/types-lookup.ts +184 -199
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@argonprotocol/mainchain",
|
|
3
|
-
"version": "1.4.11-dev.
|
|
3
|
+
"version": "1.4.11-dev.f3bdc948",
|
|
4
4
|
"description": "A client for accessing the Argon mainchain apis.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"@argonprotocol/ethereum-contracts": "workspace:*",
|
|
71
|
-
"@argonprotocol/testing": "1.4.11-dev.
|
|
71
|
+
"@argonprotocol/testing": "1.4.11-dev.f3bdc948",
|
|
72
72
|
"@polkadot/typegen": "^16.5.6",
|
|
73
73
|
"@substrate/ss58-registry": "^1.51.0",
|
|
74
74
|
"@types/node": "^20",
|
|
@@ -110,26 +110,6 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
110
110
|
* Fee coupons can only be applied when initializing a lock.
|
|
111
111
|
**/
|
|
112
112
|
FeeCouponOnlyForInitialization: AugmentedError<ApiType>;
|
|
113
|
-
/**
|
|
114
|
-
* The fee coupon was issued for a different beneficiary.
|
|
115
|
-
**/
|
|
116
|
-
FeeCouponWrongAccount: AugmentedError<ApiType>;
|
|
117
|
-
/**
|
|
118
|
-
* The fee coupon was issued for a different chain.
|
|
119
|
-
**/
|
|
120
|
-
FeeCouponWrongChain: AugmentedError<ApiType>;
|
|
121
|
-
/**
|
|
122
|
-
* The fee coupon was issued for a different number of requested satoshis.
|
|
123
|
-
**/
|
|
124
|
-
FeeCouponWrongSatoshis: AugmentedError<ApiType>;
|
|
125
|
-
/**
|
|
126
|
-
* The fee coupon was issued for a different target price.
|
|
127
|
-
**/
|
|
128
|
-
FeeCouponWrongTargetPrice: AugmentedError<ApiType>;
|
|
129
|
-
/**
|
|
130
|
-
* The fee coupon was issued for a different vault.
|
|
131
|
-
**/
|
|
132
|
-
FeeCouponWrongVault: AugmentedError<ApiType>;
|
|
133
113
|
/**
|
|
134
114
|
* Cannot request an orphaned release for the funding UTXO
|
|
135
115
|
**/
|