@argonprotocol/mainchain 1.0.2 → 1.0.4
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-query.d.ts +4 -0
- package/lib/esm/interfaces/augment-api-query.d.ts +4 -0
- 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-query.d.ts +4 -0
- package/package.json +1 -1
|
@@ -710,6 +710,10 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
710
710
|
};
|
|
711
711
|
vaults: {
|
|
712
712
|
nextVaultId: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []>;
|
|
713
|
+
/**
|
|
714
|
+
* Vault bitcoin bonds pending verification
|
|
715
|
+
**/
|
|
716
|
+
pendingBitcoinsByVault: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<u128>, [u32]>;
|
|
713
717
|
/**
|
|
714
718
|
* Pending terms that will be committed at the given block number (must be a minimum of 1 slot
|
|
715
719
|
* change away)
|
|
@@ -710,6 +710,10 @@ declare module '@polkadot/api-base/types/storage' {
|
|
|
710
710
|
};
|
|
711
711
|
vaults: {
|
|
712
712
|
nextVaultId: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []>;
|
|
713
|
+
/**
|
|
714
|
+
* Vault bitcoin bonds pending verification
|
|
715
|
+
**/
|
|
716
|
+
pendingBitcoinsByVault: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<u128>, [u32]>;
|
|
713
717
|
/**
|
|
714
718
|
* Pending terms that will be committed at the given block number (must be a minimum of 1 slot
|
|
715
719
|
* change away)
|