@argonprotocol/mainchain 1.4.0-dev.114a312e → 1.4.0-dev.2a93452e
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 +26 -1
- 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 +26 -1
- package/lib/index.d.ts +26 -1
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
package/browser/index.d.ts
CHANGED
|
@@ -191,6 +191,10 @@ declare module '@polkadot/api-base/types/consts' {
|
|
|
191
191
|
* The maximum number of UTXOs that can be watched in a block and/or expiring at same block
|
|
192
192
|
**/
|
|
193
193
|
maxPendingConfirmationUtxos: u32 & AugmentedConst<ApiType>;
|
|
194
|
+
/**
|
|
195
|
+
* The maximum number of expired pending funding entries cleaned up in a block
|
|
196
|
+
**/
|
|
197
|
+
maxPendingFundingExpirationsPerBlock: u32 & AugmentedConst<ApiType>;
|
|
194
198
|
};
|
|
195
199
|
blockRewards: {
|
|
196
200
|
/**
|
|
@@ -4131,6 +4135,11 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
4131
4135
|
**/
|
|
4132
4136
|
confirmedBitcoinBlockTip: AugmentedQuery<ApiType, () => Observable<Option<ArgonPrimitivesBitcoinBitcoinBlock>>, [
|
|
4133
4137
|
]>;
|
|
4138
|
+
/**
|
|
4139
|
+
* Pending funding entries that have expired and are awaiting bounded cleanup.
|
|
4140
|
+
**/
|
|
4141
|
+
expiredPendingFunding: AugmentedQuery<ApiType, () => Observable<BTreeMap<u64, ArgonPrimitivesBitcoinUtxoValue>>, [
|
|
4142
|
+
]>;
|
|
4134
4143
|
/**
|
|
4135
4144
|
* Check if the inherent was included
|
|
4136
4145
|
**/
|
|
@@ -5447,6 +5456,17 @@ declare module '@polkadot/api-base/types/submittable' {
|
|
|
5447
5456
|
u64,
|
|
5448
5457
|
ArgonPrimitivesBitcoinUtxoRef
|
|
5449
5458
|
]>;
|
|
5459
|
+
/**
|
|
5460
|
+
* Reject a pending candidate UTXO and materialize it as an orphan through the locks
|
|
5461
|
+
* pallet.
|
|
5462
|
+
**/
|
|
5463
|
+
rejectUtxoCandidate: AugmentedSubmittable<(utxoId: u64 | AnyNumber | Uint8Array, utxoRef: ArgonPrimitivesBitcoinUtxoRef | {
|
|
5464
|
+
txid?: any;
|
|
5465
|
+
outputIndex?: any;
|
|
5466
|
+
} | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
|
|
5467
|
+
u64,
|
|
5468
|
+
ArgonPrimitivesBitcoinUtxoRef
|
|
5469
|
+
]>;
|
|
5450
5470
|
/**
|
|
5451
5471
|
* Sets the most recent confirmed bitcoin block height (only executable by the Oracle
|
|
5452
5472
|
* Operator account)
|
|
@@ -11027,7 +11047,12 @@ declare module '@polkadot/types/lookup' {
|
|
|
11027
11047
|
readonly utxoId: u64;
|
|
11028
11048
|
readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
11029
11049
|
} & Struct;
|
|
11030
|
-
readonly
|
|
11050
|
+
readonly isRejectUtxoCandidate: boolean;
|
|
11051
|
+
readonly asRejectUtxoCandidate: {
|
|
11052
|
+
readonly utxoId: u64;
|
|
11053
|
+
readonly utxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
11054
|
+
} & Struct;
|
|
11055
|
+
readonly type: 'Sync' | 'SetConfirmedBlock' | 'SetOperator' | 'FundWithUtxoCandidate' | 'RejectUtxoCandidate';
|
|
11031
11056
|
}
|
|
11032
11057
|
/** @name ArgonPrimitivesInherentsBitcoinUtxoSync (207) */
|
|
11033
11058
|
interface ArgonPrimitivesInherentsBitcoinUtxoSync extends Struct {
|