@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.
@@ -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 type: 'NoPermissions' | 'NoBitcoinConfirmedBlock' | 'InsufficientBitcoinAmount' | 'NoBitcoinPricesAvailable' | 'ScriptPubkeyConflict' | 'UtxoNotLocked' | 'RedemptionsUnavailable' | 'InvalidBitcoinSyncHeight' | 'BitcoinHeightNotConfirmed' | 'MaxUtxosExceeded' | 'InvalidBitcoinScript';
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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@argonprotocol/mainchain",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "A client for accessing the Argon mainchain apis.",
5
5
  "repository": {
6
6
  "type": "git",