@argonprotocol/mainchain 1.4.10 → 1.4.11-dev.1acff0b2
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 +4281 -381
- package/browser/index.js +149 -50
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +160 -61
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +4281 -381
- package/lib/index.d.ts +4281 -381
- package/lib/index.js +149 -50
- package/lib/index.js.map +1 -1
- package/package.json +7 -4
- package/src/interfaces/augment-api-consts.ts +17 -18
- package/src/interfaces/augment-api-errors.ts +73 -23
- package/src/interfaces/augment-api-events.ts +56 -8
- package/src/interfaces/augment-api-query.ts +99 -17
- package/src/interfaces/augment-api-runtime.ts +1 -0
- package/src/interfaces/augment-api-tx.ts +89 -41
- package/src/interfaces/augment-api.ts +1 -0
- package/src/interfaces/augment-types.ts +1 -0
- package/src/interfaces/lookup.ts +390 -262
- package/src/interfaces/registry.ts +21 -2
- package/src/interfaces/types-lookup.ts +433 -286
|
@@ -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
|
|
@@ -122,6 +123,7 @@ import type {
|
|
|
122
123
|
PalletBitcoinLocksCall,
|
|
123
124
|
PalletBitcoinLocksError,
|
|
124
125
|
PalletBitcoinLocksEvent,
|
|
126
|
+
PalletBitcoinLocksFeeCoupon,
|
|
125
127
|
PalletBitcoinLocksHoldReason,
|
|
126
128
|
PalletBitcoinLocksLockOptions,
|
|
127
129
|
PalletBitcoinLocksLockReleaseRequest,
|
|
@@ -141,6 +143,12 @@ import type {
|
|
|
141
143
|
PalletBlockSealSpecCall,
|
|
142
144
|
PalletBlockSealSpecError,
|
|
143
145
|
PalletBlockSealSpecEvent,
|
|
146
|
+
PalletBootstrapCall,
|
|
147
|
+
PalletBootstrapEndpointPubkey,
|
|
148
|
+
PalletBootstrapError,
|
|
149
|
+
PalletBootstrapEvent,
|
|
150
|
+
PalletBootstrapRecoveryProof,
|
|
151
|
+
PalletBootstrapRecoveryPubkey,
|
|
144
152
|
PalletCrosschainTransferAccountTransferTotals,
|
|
145
153
|
PalletCrosschainTransferAssetKind,
|
|
146
154
|
PalletCrosschainTransferCall,
|
|
@@ -235,6 +243,8 @@ import type {
|
|
|
235
243
|
PalletPriceIndexCall,
|
|
236
244
|
PalletPriceIndexCpiMeasurementBucket,
|
|
237
245
|
PalletPriceIndexError,
|
|
246
|
+
PalletPriceIndexEthereumPriceFrameAccumulator,
|
|
247
|
+
PalletPriceIndexEthereumPriceIndex,
|
|
238
248
|
PalletPriceIndexEvent,
|
|
239
249
|
PalletPriceIndexPriceIndex,
|
|
240
250
|
PalletProxyAnnouncement,
|
|
@@ -264,6 +274,7 @@ import type {
|
|
|
264
274
|
PalletTreasuryFrameArgonotBondParticipants,
|
|
265
275
|
PalletTreasuryFrameVaultCapital,
|
|
266
276
|
PalletTreasuryHoldReason,
|
|
277
|
+
PalletTreasuryVaultBondState,
|
|
267
278
|
PalletTreasuryVaultCapital,
|
|
268
279
|
PalletTxPauseCall,
|
|
269
280
|
PalletTxPauseError,
|
|
@@ -275,7 +286,6 @@ import type {
|
|
|
275
286
|
PalletVaultsError,
|
|
276
287
|
PalletVaultsEvent,
|
|
277
288
|
PalletVaultsHoldReason,
|
|
278
|
-
PalletVaultsRecentCapacityDrop,
|
|
279
289
|
PalletVaultsVaultConfig,
|
|
280
290
|
PalletVaultsVaultFrameRevenue,
|
|
281
291
|
SnowbridgeAmclBls381Big,
|
|
@@ -426,6 +436,7 @@ declare module '@polkadot/types/types/registry' {
|
|
|
426
436
|
PalletBitcoinLocksCall: PalletBitcoinLocksCall;
|
|
427
437
|
PalletBitcoinLocksError: PalletBitcoinLocksError;
|
|
428
438
|
PalletBitcoinLocksEvent: PalletBitcoinLocksEvent;
|
|
439
|
+
PalletBitcoinLocksFeeCoupon: PalletBitcoinLocksFeeCoupon;
|
|
429
440
|
PalletBitcoinLocksHoldReason: PalletBitcoinLocksHoldReason;
|
|
430
441
|
PalletBitcoinLocksLockOptions: PalletBitcoinLocksLockOptions;
|
|
431
442
|
PalletBitcoinLocksLockReleaseRequest: PalletBitcoinLocksLockReleaseRequest;
|
|
@@ -445,6 +456,12 @@ declare module '@polkadot/types/types/registry' {
|
|
|
445
456
|
PalletBlockSealSpecCall: PalletBlockSealSpecCall;
|
|
446
457
|
PalletBlockSealSpecError: PalletBlockSealSpecError;
|
|
447
458
|
PalletBlockSealSpecEvent: PalletBlockSealSpecEvent;
|
|
459
|
+
PalletBootstrapCall: PalletBootstrapCall;
|
|
460
|
+
PalletBootstrapEndpointPubkey: PalletBootstrapEndpointPubkey;
|
|
461
|
+
PalletBootstrapError: PalletBootstrapError;
|
|
462
|
+
PalletBootstrapEvent: PalletBootstrapEvent;
|
|
463
|
+
PalletBootstrapRecoveryProof: PalletBootstrapRecoveryProof;
|
|
464
|
+
PalletBootstrapRecoveryPubkey: PalletBootstrapRecoveryPubkey;
|
|
448
465
|
PalletCrosschainTransferAccountTransferTotals: PalletCrosschainTransferAccountTransferTotals;
|
|
449
466
|
PalletCrosschainTransferAssetKind: PalletCrosschainTransferAssetKind;
|
|
450
467
|
PalletCrosschainTransferCall: PalletCrosschainTransferCall;
|
|
@@ -539,6 +556,8 @@ declare module '@polkadot/types/types/registry' {
|
|
|
539
556
|
PalletPriceIndexCall: PalletPriceIndexCall;
|
|
540
557
|
PalletPriceIndexCpiMeasurementBucket: PalletPriceIndexCpiMeasurementBucket;
|
|
541
558
|
PalletPriceIndexError: PalletPriceIndexError;
|
|
559
|
+
PalletPriceIndexEthereumPriceFrameAccumulator: PalletPriceIndexEthereumPriceFrameAccumulator;
|
|
560
|
+
PalletPriceIndexEthereumPriceIndex: PalletPriceIndexEthereumPriceIndex;
|
|
542
561
|
PalletPriceIndexEvent: PalletPriceIndexEvent;
|
|
543
562
|
PalletPriceIndexPriceIndex: PalletPriceIndexPriceIndex;
|
|
544
563
|
PalletProxyAnnouncement: PalletProxyAnnouncement;
|
|
@@ -568,6 +587,7 @@ declare module '@polkadot/types/types/registry' {
|
|
|
568
587
|
PalletTreasuryFrameArgonotBondParticipants: PalletTreasuryFrameArgonotBondParticipants;
|
|
569
588
|
PalletTreasuryFrameVaultCapital: PalletTreasuryFrameVaultCapital;
|
|
570
589
|
PalletTreasuryHoldReason: PalletTreasuryHoldReason;
|
|
590
|
+
PalletTreasuryVaultBondState: PalletTreasuryVaultBondState;
|
|
571
591
|
PalletTreasuryVaultCapital: PalletTreasuryVaultCapital;
|
|
572
592
|
PalletTxPauseCall: PalletTxPauseCall;
|
|
573
593
|
PalletTxPauseError: PalletTxPauseError;
|
|
@@ -579,7 +599,6 @@ declare module '@polkadot/types/types/registry' {
|
|
|
579
599
|
PalletVaultsError: PalletVaultsError;
|
|
580
600
|
PalletVaultsEvent: PalletVaultsEvent;
|
|
581
601
|
PalletVaultsHoldReason: PalletVaultsHoldReason;
|
|
582
|
-
PalletVaultsRecentCapacityDrop: PalletVaultsRecentCapacityDrop;
|
|
583
602
|
PalletVaultsVaultConfig: PalletVaultsVaultConfig;
|
|
584
603
|
PalletVaultsVaultFrameRevenue: PalletVaultsVaultFrameRevenue;
|
|
585
604
|
SnowbridgeAmclBls381Big: SnowbridgeAmclBls381Big;
|