@argonprotocol/mainchain 1.4.12-dev.2c3a5160 → 1.4.12-dev.d1c83d27
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 +341 -448
- package/browser/index.js +9 -6
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +31 -28
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +341 -448
- package/lib/index.d.ts +341 -448
- package/lib/index.js +9 -6
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +6 -20
- package/src/interfaces/augment-api-errors.ts +5 -13
- package/src/interfaces/augment-api-events.ts +6 -27
- package/src/interfaces/augment-api-query.ts +46 -47
- package/src/interfaces/augment-api-tx.ts +0 -31
- package/src/interfaces/lookup.ts +289 -320
- package/src/interfaces/registry.ts +2 -4
- package/src/interfaces/types-lookup.ts +294 -347
|
@@ -14,14 +14,13 @@ import type {
|
|
|
14
14
|
ArgonPrimitivesBitcoinBitcoinBlock,
|
|
15
15
|
ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey,
|
|
16
16
|
ArgonPrimitivesBitcoinBitcoinNetwork,
|
|
17
|
-
ArgonPrimitivesBitcoinBitcoinRejectedReason,
|
|
18
17
|
ArgonPrimitivesBitcoinBitcoinXPub,
|
|
19
18
|
ArgonPrimitivesBitcoinCompressedBitcoinPubkey,
|
|
20
19
|
ArgonPrimitivesBitcoinH256Le,
|
|
21
20
|
ArgonPrimitivesBitcoinNetworkKind,
|
|
22
21
|
ArgonPrimitivesBitcoinOpaqueBitcoinXpub,
|
|
22
|
+
ArgonPrimitivesBitcoinUtxoAddress,
|
|
23
23
|
ArgonPrimitivesBitcoinUtxoRef,
|
|
24
|
-
ArgonPrimitivesBitcoinUtxoValue,
|
|
25
24
|
ArgonPrimitivesBlockSealAppPublic,
|
|
26
25
|
ArgonPrimitivesBlockSealBlockPayout,
|
|
27
26
|
ArgonPrimitivesBlockSealBlockRewardType,
|
|
@@ -327,14 +326,13 @@ declare module '@polkadot/types/types/registry' {
|
|
|
327
326
|
ArgonPrimitivesBitcoinBitcoinBlock: ArgonPrimitivesBitcoinBitcoinBlock;
|
|
328
327
|
ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
329
328
|
ArgonPrimitivesBitcoinBitcoinNetwork: ArgonPrimitivesBitcoinBitcoinNetwork;
|
|
330
|
-
ArgonPrimitivesBitcoinBitcoinRejectedReason: ArgonPrimitivesBitcoinBitcoinRejectedReason;
|
|
331
329
|
ArgonPrimitivesBitcoinBitcoinXPub: ArgonPrimitivesBitcoinBitcoinXPub;
|
|
332
330
|
ArgonPrimitivesBitcoinCompressedBitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
333
331
|
ArgonPrimitivesBitcoinH256Le: ArgonPrimitivesBitcoinH256Le;
|
|
334
332
|
ArgonPrimitivesBitcoinNetworkKind: ArgonPrimitivesBitcoinNetworkKind;
|
|
335
333
|
ArgonPrimitivesBitcoinOpaqueBitcoinXpub: ArgonPrimitivesBitcoinOpaqueBitcoinXpub;
|
|
334
|
+
ArgonPrimitivesBitcoinUtxoAddress: ArgonPrimitivesBitcoinUtxoAddress;
|
|
336
335
|
ArgonPrimitivesBitcoinUtxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
337
|
-
ArgonPrimitivesBitcoinUtxoValue: ArgonPrimitivesBitcoinUtxoValue;
|
|
338
336
|
ArgonPrimitivesBlockSealAppPublic: ArgonPrimitivesBlockSealAppPublic;
|
|
339
337
|
ArgonPrimitivesBlockSealBlockPayout: ArgonPrimitivesBlockSealBlockPayout;
|
|
340
338
|
ArgonPrimitivesBlockSealBlockRewardType: ArgonPrimitivesBlockSealBlockRewardType;
|