@argonprotocol/mainchain 1.4.10-dev.f355ccc1 → 1.4.11-dev.645b1642
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 +4 -2
- package/browser/index.js +1 -1
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +1 -1
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +4 -2
- package/lib/index.d.ts +4 -2
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +2 -1
- package/src/interfaces/augment-api-query.ts +2 -1
package/browser/index.d.ts
CHANGED
|
@@ -185,7 +185,8 @@ declare module '@polkadot/api-base/types/consts' {
|
|
|
185
185
|
**/
|
|
186
186
|
maximumSatoshiThresholdFromExpected: u64 & AugmentedConst<ApiType>;
|
|
187
187
|
/**
|
|
188
|
-
* Maximum bitcoin blocks to
|
|
188
|
+
* Maximum bitcoin blocks to accept a UTXO for confirmation. Expired locks remain watched
|
|
189
|
+
* for this many additional blocks so late funding can be detected as orphaned.
|
|
189
190
|
**/
|
|
190
191
|
maxPendingConfirmationBlocks: u64 & AugmentedConst<ApiType>;
|
|
191
192
|
/**
|
|
@@ -4754,7 +4755,8 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4754
4755
|
confirmedBitcoinBlockTip: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesBitcoinBitcoinBlock>>, [
|
|
4755
4756
|
]>;
|
|
4756
4757
|
/**
|
|
4757
|
-
* Pending funding entries that have expired
|
|
4758
|
+
* Pending funding entries that have expired. These remain watched until their additional
|
|
4759
|
+
* orphan-detection window ends, then await bounded cleanup.
|
|
4758
4760
|
**/
|
|
4759
4761
|
expiredPendingFunding: AugmentedQuery<ApiType, () => Observable<BTreeMap<u64, ArgonPrimitivesBitcoinUtxoValue>>, [
|
|
4760
4762
|
]>;
|