@argonprotocol/mainchain 1.4.0-dev.97b012d5 → 1.4.0-dev.a15e4b6f

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.
@@ -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
  **/