@argonprotocol/mainchain 1.0.13 → 1.0.14
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/lib/cjs/interfaces/augment-api-errors.d.ts +4 -0
- package/lib/cjs/interfaces/lookup.js +1 -0
- package/lib/cjs/interfaces/lookup.js.map +1 -1
- package/lib/cjs/interfaces/types-lookup.d.ts +2 -1
- package/lib/esm/interfaces/augment-api-errors.d.ts +4 -0
- package/lib/esm/interfaces/lookup.js +1 -0
- package/lib/esm/interfaces/lookup.js.map +1 -1
- package/lib/esm/interfaces/types-lookup.d.ts +2 -1
- package/lib/tsconfig-cjs.tsbuildinfo +1 -1
- package/lib/tsconfig-types.tsbuildinfo +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/types/interfaces/augment-api-errors.d.ts +4 -0
- package/lib/types/interfaces/types-lookup.d.ts +2 -1
- package/package.json +1 -1
|
@@ -132,6 +132,10 @@ declare module '@polkadot/api-base/types/errors' {
|
|
|
132
132
|
* Bitcoin height not confirmed yet
|
|
133
133
|
**/
|
|
134
134
|
BitcoinHeightNotConfirmed: AugmentedError<ApiType>;
|
|
135
|
+
/**
|
|
136
|
+
* Duplicated UtxoId. Already in use
|
|
137
|
+
**/
|
|
138
|
+
DuplicateUtxoId: AugmentedError<ApiType>;
|
|
135
139
|
/**
|
|
136
140
|
* Insufficient bitcoin amount
|
|
137
141
|
**/
|
|
@@ -2482,7 +2482,8 @@ declare module '@polkadot/types/lookup' {
|
|
|
2482
2482
|
readonly isBitcoinHeightNotConfirmed: boolean;
|
|
2483
2483
|
readonly isMaxUtxosExceeded: boolean;
|
|
2484
2484
|
readonly isInvalidBitcoinScript: boolean;
|
|
2485
|
-
readonly
|
|
2485
|
+
readonly isDuplicateUtxoId: boolean;
|
|
2486
|
+
readonly type: 'NoPermissions' | 'NoBitcoinConfirmedBlock' | 'InsufficientBitcoinAmount' | 'NoBitcoinPricesAvailable' | 'ScriptPubkeyConflict' | 'UtxoNotLocked' | 'RedemptionsUnavailable' | 'InvalidBitcoinSyncHeight' | 'BitcoinHeightNotConfirmed' | 'MaxUtxosExceeded' | 'InvalidBitcoinScript' | 'DuplicateUtxoId';
|
|
2486
2487
|
}
|
|
2487
2488
|
/** @name ArgonPrimitivesVault (348) */
|
|
2488
2489
|
interface ArgonPrimitivesVault extends Struct {
|