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