@argonprotocol/mainchain 1.4.10-dev.479c016c → 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 +531 -283
- package/browser/index.js +55 -19
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +65 -29
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +531 -283
- package/lib/index.d.ts +531 -283
- package/lib/index.js +55 -19
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +7 -4
- package/src/interfaces/augment-api-errors.ts +26 -8
- package/src/interfaces/augment-api-events.ts +56 -8
- package/src/interfaces/augment-api-query.ts +55 -12
- package/src/interfaces/augment-api-runtime.ts +1 -0
- package/src/interfaces/augment-api-tx.ts +69 -11
- package/src/interfaces/augment-api.ts +1 -0
- package/src/interfaces/augment-types.ts +1 -0
- package/src/interfaces/lookup.ts +327 -223
- package/src/interfaces/registry.ts +15 -0
- package/src/interfaces/types-lookup.ts +355 -236
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
|
|
2
|
+
/* eslint-disable */
|
|
2
3
|
|
|
3
4
|
// import type lookup before we augment - in some environments
|
|
4
5
|
// this is required to allow for ambient/previous definitions
|
|
@@ -141,6 +142,12 @@ import type {
|
|
|
141
142
|
PalletBlockSealSpecCall,
|
|
142
143
|
PalletBlockSealSpecError,
|
|
143
144
|
PalletBlockSealSpecEvent,
|
|
145
|
+
PalletBootstrapCall,
|
|
146
|
+
PalletBootstrapEndpointPubkey,
|
|
147
|
+
PalletBootstrapError,
|
|
148
|
+
PalletBootstrapEvent,
|
|
149
|
+
PalletBootstrapRecoveryProof,
|
|
150
|
+
PalletBootstrapRecoveryPubkey,
|
|
144
151
|
PalletCrosschainTransferAccountTransferTotals,
|
|
145
152
|
PalletCrosschainTransferAssetKind,
|
|
146
153
|
PalletCrosschainTransferCall,
|
|
@@ -264,6 +271,7 @@ import type {
|
|
|
264
271
|
PalletTreasuryFrameArgonotBondParticipants,
|
|
265
272
|
PalletTreasuryFrameVaultCapital,
|
|
266
273
|
PalletTreasuryHoldReason,
|
|
274
|
+
PalletTreasuryVaultBondState,
|
|
267
275
|
PalletTreasuryVaultCapital,
|
|
268
276
|
PalletTxPauseCall,
|
|
269
277
|
PalletTxPauseError,
|
|
@@ -445,6 +453,12 @@ declare module '@polkadot/types/types/registry' {
|
|
|
445
453
|
PalletBlockSealSpecCall: PalletBlockSealSpecCall;
|
|
446
454
|
PalletBlockSealSpecError: PalletBlockSealSpecError;
|
|
447
455
|
PalletBlockSealSpecEvent: PalletBlockSealSpecEvent;
|
|
456
|
+
PalletBootstrapCall: PalletBootstrapCall;
|
|
457
|
+
PalletBootstrapEndpointPubkey: PalletBootstrapEndpointPubkey;
|
|
458
|
+
PalletBootstrapError: PalletBootstrapError;
|
|
459
|
+
PalletBootstrapEvent: PalletBootstrapEvent;
|
|
460
|
+
PalletBootstrapRecoveryProof: PalletBootstrapRecoveryProof;
|
|
461
|
+
PalletBootstrapRecoveryPubkey: PalletBootstrapRecoveryPubkey;
|
|
448
462
|
PalletCrosschainTransferAccountTransferTotals: PalletCrosschainTransferAccountTransferTotals;
|
|
449
463
|
PalletCrosschainTransferAssetKind: PalletCrosschainTransferAssetKind;
|
|
450
464
|
PalletCrosschainTransferCall: PalletCrosschainTransferCall;
|
|
@@ -568,6 +582,7 @@ declare module '@polkadot/types/types/registry' {
|
|
|
568
582
|
PalletTreasuryFrameArgonotBondParticipants: PalletTreasuryFrameArgonotBondParticipants;
|
|
569
583
|
PalletTreasuryFrameVaultCapital: PalletTreasuryFrameVaultCapital;
|
|
570
584
|
PalletTreasuryHoldReason: PalletTreasuryHoldReason;
|
|
585
|
+
PalletTreasuryVaultBondState: PalletTreasuryVaultBondState;
|
|
571
586
|
PalletTreasuryVaultCapital: PalletTreasuryVaultCapital;
|
|
572
587
|
PalletTxPauseCall: PalletTxPauseCall;
|
|
573
588
|
PalletTxPauseError: PalletTxPauseError;
|