@argonprotocol/mainchain 1.4.9-dev.c62e171b → 1.4.9-dev.fab648f5
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 +261 -233
- package/browser/index.js +100 -22
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +123 -46
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +261 -233
- package/lib/index.d.ts +261 -233
- package/lib/index.js +99 -22
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +31 -23
- package/src/interfaces/augment-api-errors.ts +27 -15
- package/src/interfaces/augment-api-events.ts +31 -21
- package/src/interfaces/augment-api-query.ts +25 -47
- package/src/interfaces/augment-api-runtime.ts +0 -1
- package/src/interfaces/augment-api-tx.ts +13 -13
- package/src/interfaces/augment-api.ts +0 -1
- package/src/interfaces/augment-types.ts +0 -1
- package/src/interfaces/lookup.ts +125 -112
- package/src/interfaces/registry.ts +4 -3
- package/src/interfaces/types-lookup.ts +140 -120
|
@@ -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
|
|
@@ -142,6 +141,7 @@ import type {
|
|
|
142
141
|
PalletBlockSealSpecCall,
|
|
143
142
|
PalletBlockSealSpecError,
|
|
144
143
|
PalletBlockSealSpecEvent,
|
|
144
|
+
PalletCrosschainTransferAccountTransferTotals,
|
|
145
145
|
PalletCrosschainTransferAssetKind,
|
|
146
146
|
PalletCrosschainTransferCall,
|
|
147
147
|
PalletCrosschainTransferChainConfig,
|
|
@@ -227,10 +227,10 @@ import type {
|
|
|
227
227
|
PalletOperationalAccountsOpaqueEncryptionPubkey,
|
|
228
228
|
PalletOperationalAccountsOperationalAccount,
|
|
229
229
|
PalletOperationalAccountsOperationalProgressPatch,
|
|
230
|
-
PalletOperationalAccountsReferralProof,
|
|
231
230
|
PalletOperationalAccountsRegistration,
|
|
232
231
|
PalletOperationalAccountsRegistrationV1,
|
|
233
232
|
PalletOperationalAccountsRewardsConfig,
|
|
233
|
+
PalletOperationalAccountsUpstreamAccessProof,
|
|
234
234
|
PalletPriceIndexArgonotAverageFrameAccumulator,
|
|
235
235
|
PalletPriceIndexCall,
|
|
236
236
|
PalletPriceIndexCpiMeasurementBucket,
|
|
@@ -445,6 +445,7 @@ declare module '@polkadot/types/types/registry' {
|
|
|
445
445
|
PalletBlockSealSpecCall: PalletBlockSealSpecCall;
|
|
446
446
|
PalletBlockSealSpecError: PalletBlockSealSpecError;
|
|
447
447
|
PalletBlockSealSpecEvent: PalletBlockSealSpecEvent;
|
|
448
|
+
PalletCrosschainTransferAccountTransferTotals: PalletCrosschainTransferAccountTransferTotals;
|
|
448
449
|
PalletCrosschainTransferAssetKind: PalletCrosschainTransferAssetKind;
|
|
449
450
|
PalletCrosschainTransferCall: PalletCrosschainTransferCall;
|
|
450
451
|
PalletCrosschainTransferChainConfig: PalletCrosschainTransferChainConfig;
|
|
@@ -530,10 +531,10 @@ declare module '@polkadot/types/types/registry' {
|
|
|
530
531
|
PalletOperationalAccountsOpaqueEncryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
|
|
531
532
|
PalletOperationalAccountsOperationalAccount: PalletOperationalAccountsOperationalAccount;
|
|
532
533
|
PalletOperationalAccountsOperationalProgressPatch: PalletOperationalAccountsOperationalProgressPatch;
|
|
533
|
-
PalletOperationalAccountsReferralProof: PalletOperationalAccountsReferralProof;
|
|
534
534
|
PalletOperationalAccountsRegistration: PalletOperationalAccountsRegistration;
|
|
535
535
|
PalletOperationalAccountsRegistrationV1: PalletOperationalAccountsRegistrationV1;
|
|
536
536
|
PalletOperationalAccountsRewardsConfig: PalletOperationalAccountsRewardsConfig;
|
|
537
|
+
PalletOperationalAccountsUpstreamAccessProof: PalletOperationalAccountsUpstreamAccessProof;
|
|
537
538
|
PalletPriceIndexArgonotAverageFrameAccumulator: PalletPriceIndexArgonotAverageFrameAccumulator;
|
|
538
539
|
PalletPriceIndexCall: PalletPriceIndexCall;
|
|
539
540
|
PalletPriceIndexCpiMeasurementBucket: PalletPriceIndexCpiMeasurementBucket;
|