@argonprotocol/mainchain 1.4.10-dev.925a902e → 1.4.10-dev.a229760e
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 +500 -281
- package/browser/index.js +54 -18
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +64 -28
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +500 -281
- package/lib/index.d.ts +500 -281
- package/lib/index.js +54 -18
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +6 -4
- package/src/interfaces/augment-api-errors.ts +22 -8
- package/src/interfaces/augment-api-events.ts +40 -8
- package/src/interfaces/augment-api-query.ts +44 -12
- package/src/interfaces/augment-api-tx.ts +69 -11
- package/src/interfaces/lookup.ts +318 -223
- package/src/interfaces/registry.ts +14 -0
- package/src/interfaces/types-lookup.ts +345 -235
|
@@ -142,6 +142,12 @@ import type {
|
|
|
142
142
|
PalletBlockSealSpecCall,
|
|
143
143
|
PalletBlockSealSpecError,
|
|
144
144
|
PalletBlockSealSpecEvent,
|
|
145
|
+
PalletBootstrapCall,
|
|
146
|
+
PalletBootstrapEndpointPubkey,
|
|
147
|
+
PalletBootstrapError,
|
|
148
|
+
PalletBootstrapEvent,
|
|
149
|
+
PalletBootstrapRecoveryProof,
|
|
150
|
+
PalletBootstrapRecoveryPubkey,
|
|
145
151
|
PalletCrosschainTransferAccountTransferTotals,
|
|
146
152
|
PalletCrosschainTransferAssetKind,
|
|
147
153
|
PalletCrosschainTransferCall,
|
|
@@ -265,6 +271,7 @@ import type {
|
|
|
265
271
|
PalletTreasuryFrameArgonotBondParticipants,
|
|
266
272
|
PalletTreasuryFrameVaultCapital,
|
|
267
273
|
PalletTreasuryHoldReason,
|
|
274
|
+
PalletTreasuryVaultBondState,
|
|
268
275
|
PalletTreasuryVaultCapital,
|
|
269
276
|
PalletTxPauseCall,
|
|
270
277
|
PalletTxPauseError,
|
|
@@ -446,6 +453,12 @@ declare module '@polkadot/types/types/registry' {
|
|
|
446
453
|
PalletBlockSealSpecCall: PalletBlockSealSpecCall;
|
|
447
454
|
PalletBlockSealSpecError: PalletBlockSealSpecError;
|
|
448
455
|
PalletBlockSealSpecEvent: PalletBlockSealSpecEvent;
|
|
456
|
+
PalletBootstrapCall: PalletBootstrapCall;
|
|
457
|
+
PalletBootstrapEndpointPubkey: PalletBootstrapEndpointPubkey;
|
|
458
|
+
PalletBootstrapError: PalletBootstrapError;
|
|
459
|
+
PalletBootstrapEvent: PalletBootstrapEvent;
|
|
460
|
+
PalletBootstrapRecoveryProof: PalletBootstrapRecoveryProof;
|
|
461
|
+
PalletBootstrapRecoveryPubkey: PalletBootstrapRecoveryPubkey;
|
|
449
462
|
PalletCrosschainTransferAccountTransferTotals: PalletCrosschainTransferAccountTransferTotals;
|
|
450
463
|
PalletCrosschainTransferAssetKind: PalletCrosschainTransferAssetKind;
|
|
451
464
|
PalletCrosschainTransferCall: PalletCrosschainTransferCall;
|
|
@@ -569,6 +582,7 @@ declare module '@polkadot/types/types/registry' {
|
|
|
569
582
|
PalletTreasuryFrameArgonotBondParticipants: PalletTreasuryFrameArgonotBondParticipants;
|
|
570
583
|
PalletTreasuryFrameVaultCapital: PalletTreasuryFrameVaultCapital;
|
|
571
584
|
PalletTreasuryHoldReason: PalletTreasuryHoldReason;
|
|
585
|
+
PalletTreasuryVaultBondState: PalletTreasuryVaultBondState;
|
|
572
586
|
PalletTreasuryVaultCapital: PalletTreasuryVaultCapital;
|
|
573
587
|
PalletTxPauseCall: PalletTxPauseCall;
|
|
574
588
|
PalletTxPauseError: PalletTxPauseError;
|