@argonprotocol/mainchain 1.4.11 → 1.4.12-dev.2afa6e4a
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/README.md +0 -10
- package/browser/index.d.ts +4494 -1121
- package/browser/index.js +15 -1294
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +17 -1297
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +4494 -1121
- package/lib/index.d.ts +4494 -1121
- package/lib/index.js +19 -1299
- package/lib/index.js.map +1 -1
- package/package.json +7 -5
- package/src/interfaces/augment-api-consts.ts +20 -33
- package/src/interfaces/augment-api-errors.ts +139 -37
- package/src/interfaces/augment-api-events.ts +150 -92
- package/src/interfaces/augment-api-query.ts +128 -60
- package/src/interfaces/augment-api-runtime.ts +0 -1
- package/src/interfaces/augment-api-tx.ts +83 -125
- package/src/interfaces/augment-api.ts +0 -1
- package/src/interfaces/augment-types.ts +0 -1
- package/src/interfaces/lookup.ts +429 -367
- package/src/interfaces/registry.ts +12 -7
- package/src/interfaces/types-lookup.ts +503 -437
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
|
|
2
|
-
/* eslint-disable */
|
|
3
2
|
|
|
4
3
|
// import type lookup before we augment - in some environments
|
|
5
4
|
// this is required to allow for ambient/previous definitions
|
|
@@ -14,14 +13,13 @@ import type {
|
|
|
14
13
|
ArgonPrimitivesBitcoinBitcoinBlock,
|
|
15
14
|
ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey,
|
|
16
15
|
ArgonPrimitivesBitcoinBitcoinNetwork,
|
|
17
|
-
ArgonPrimitivesBitcoinBitcoinRejectedReason,
|
|
18
16
|
ArgonPrimitivesBitcoinBitcoinXPub,
|
|
19
17
|
ArgonPrimitivesBitcoinCompressedBitcoinPubkey,
|
|
20
18
|
ArgonPrimitivesBitcoinH256Le,
|
|
21
19
|
ArgonPrimitivesBitcoinNetworkKind,
|
|
22
20
|
ArgonPrimitivesBitcoinOpaqueBitcoinXpub,
|
|
21
|
+
ArgonPrimitivesBitcoinUtxoAddress,
|
|
23
22
|
ArgonPrimitivesBitcoinUtxoRef,
|
|
24
|
-
ArgonPrimitivesBitcoinUtxoValue,
|
|
25
23
|
ArgonPrimitivesBlockSealAppPublic,
|
|
26
24
|
ArgonPrimitivesBlockSealBlockPayout,
|
|
27
25
|
ArgonPrimitivesBlockSealBlockRewardType,
|
|
@@ -120,9 +118,14 @@ import type {
|
|
|
120
118
|
PalletBalancesReasons,
|
|
121
119
|
PalletBalancesReserveData,
|
|
122
120
|
PalletBalancesUnexpectedKind,
|
|
121
|
+
PalletBitcoinFissionsCall,
|
|
122
|
+
PalletBitcoinFissionsError,
|
|
123
|
+
PalletBitcoinFissionsEvent,
|
|
124
|
+
PalletBitcoinFissionsFission,
|
|
123
125
|
PalletBitcoinLocksCall,
|
|
124
126
|
PalletBitcoinLocksError,
|
|
125
127
|
PalletBitcoinLocksEvent,
|
|
128
|
+
PalletBitcoinLocksFeeCoupon,
|
|
126
129
|
PalletBitcoinLocksHoldReason,
|
|
127
130
|
PalletBitcoinLocksLockOptions,
|
|
128
131
|
PalletBitcoinLocksLockReleaseRequest,
|
|
@@ -285,7 +288,6 @@ import type {
|
|
|
285
288
|
PalletVaultsError,
|
|
286
289
|
PalletVaultsEvent,
|
|
287
290
|
PalletVaultsHoldReason,
|
|
288
|
-
PalletVaultsRecentCapacityDrop,
|
|
289
291
|
PalletVaultsVaultConfig,
|
|
290
292
|
PalletVaultsVaultFrameRevenue,
|
|
291
293
|
SnowbridgeAmclBls381Big,
|
|
@@ -327,14 +329,13 @@ declare module '@polkadot/types/types/registry' {
|
|
|
327
329
|
ArgonPrimitivesBitcoinBitcoinBlock: ArgonPrimitivesBitcoinBitcoinBlock;
|
|
328
330
|
ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
|
|
329
331
|
ArgonPrimitivesBitcoinBitcoinNetwork: ArgonPrimitivesBitcoinBitcoinNetwork;
|
|
330
|
-
ArgonPrimitivesBitcoinBitcoinRejectedReason: ArgonPrimitivesBitcoinBitcoinRejectedReason;
|
|
331
332
|
ArgonPrimitivesBitcoinBitcoinXPub: ArgonPrimitivesBitcoinBitcoinXPub;
|
|
332
333
|
ArgonPrimitivesBitcoinCompressedBitcoinPubkey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
|
|
333
334
|
ArgonPrimitivesBitcoinH256Le: ArgonPrimitivesBitcoinH256Le;
|
|
334
335
|
ArgonPrimitivesBitcoinNetworkKind: ArgonPrimitivesBitcoinNetworkKind;
|
|
335
336
|
ArgonPrimitivesBitcoinOpaqueBitcoinXpub: ArgonPrimitivesBitcoinOpaqueBitcoinXpub;
|
|
337
|
+
ArgonPrimitivesBitcoinUtxoAddress: ArgonPrimitivesBitcoinUtxoAddress;
|
|
336
338
|
ArgonPrimitivesBitcoinUtxoRef: ArgonPrimitivesBitcoinUtxoRef;
|
|
337
|
-
ArgonPrimitivesBitcoinUtxoValue: ArgonPrimitivesBitcoinUtxoValue;
|
|
338
339
|
ArgonPrimitivesBlockSealAppPublic: ArgonPrimitivesBlockSealAppPublic;
|
|
339
340
|
ArgonPrimitivesBlockSealBlockPayout: ArgonPrimitivesBlockSealBlockPayout;
|
|
340
341
|
ArgonPrimitivesBlockSealBlockRewardType: ArgonPrimitivesBlockSealBlockRewardType;
|
|
@@ -433,9 +434,14 @@ declare module '@polkadot/types/types/registry' {
|
|
|
433
434
|
PalletBalancesReasons: PalletBalancesReasons;
|
|
434
435
|
PalletBalancesReserveData: PalletBalancesReserveData;
|
|
435
436
|
PalletBalancesUnexpectedKind: PalletBalancesUnexpectedKind;
|
|
437
|
+
PalletBitcoinFissionsCall: PalletBitcoinFissionsCall;
|
|
438
|
+
PalletBitcoinFissionsError: PalletBitcoinFissionsError;
|
|
439
|
+
PalletBitcoinFissionsEvent: PalletBitcoinFissionsEvent;
|
|
440
|
+
PalletBitcoinFissionsFission: PalletBitcoinFissionsFission;
|
|
436
441
|
PalletBitcoinLocksCall: PalletBitcoinLocksCall;
|
|
437
442
|
PalletBitcoinLocksError: PalletBitcoinLocksError;
|
|
438
443
|
PalletBitcoinLocksEvent: PalletBitcoinLocksEvent;
|
|
444
|
+
PalletBitcoinLocksFeeCoupon: PalletBitcoinLocksFeeCoupon;
|
|
439
445
|
PalletBitcoinLocksHoldReason: PalletBitcoinLocksHoldReason;
|
|
440
446
|
PalletBitcoinLocksLockOptions: PalletBitcoinLocksLockOptions;
|
|
441
447
|
PalletBitcoinLocksLockReleaseRequest: PalletBitcoinLocksLockReleaseRequest;
|
|
@@ -598,7 +604,6 @@ declare module '@polkadot/types/types/registry' {
|
|
|
598
604
|
PalletVaultsError: PalletVaultsError;
|
|
599
605
|
PalletVaultsEvent: PalletVaultsEvent;
|
|
600
606
|
PalletVaultsHoldReason: PalletVaultsHoldReason;
|
|
601
|
-
PalletVaultsRecentCapacityDrop: PalletVaultsRecentCapacityDrop;
|
|
602
607
|
PalletVaultsVaultConfig: PalletVaultsVaultConfig;
|
|
603
608
|
PalletVaultsVaultFrameRevenue: PalletVaultsVaultFrameRevenue;
|
|
604
609
|
SnowbridgeAmclBls381Big: SnowbridgeAmclBls381Big;
|