@argonprotocol/mainchain 1.4.9-dev.fdaf0dc8 → 1.4.10-dev.459cb75f
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 +280 -280
- package/browser/index.js +119 -24
- package/browser/index.js.map +1 -1
- package/lib/index.cjs +142 -48
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +280 -280
- package/lib/index.d.ts +280 -280
- package/lib/index.js +118 -24
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/src/interfaces/augment-api-consts.ts +26 -25
- package/src/interfaces/augment-api-errors.ts +26 -30
- package/src/interfaces/augment-api-events.ts +29 -21
- package/src/interfaces/augment-api-query.ts +12 -2
- package/src/interfaces/augment-api-tx.ts +5 -12
- package/src/interfaces/lookup.ts +173 -170
- package/src/interfaces/registry.ts +2 -0
- package/src/interfaces/types-lookup.ts +189 -191
|
@@ -231,6 +231,7 @@ import type {
|
|
|
231
231
|
PalletOperationalAccountsRegistration,
|
|
232
232
|
PalletOperationalAccountsRegistrationV1,
|
|
233
233
|
PalletOperationalAccountsRewardsConfig,
|
|
234
|
+
PalletOperationalAccountsUpstreamAccessProof,
|
|
234
235
|
PalletPriceIndexArgonotAverageFrameAccumulator,
|
|
235
236
|
PalletPriceIndexCall,
|
|
236
237
|
PalletPriceIndexCpiMeasurementBucket,
|
|
@@ -534,6 +535,7 @@ declare module '@polkadot/types/types/registry' {
|
|
|
534
535
|
PalletOperationalAccountsRegistration: PalletOperationalAccountsRegistration;
|
|
535
536
|
PalletOperationalAccountsRegistrationV1: PalletOperationalAccountsRegistrationV1;
|
|
536
537
|
PalletOperationalAccountsRewardsConfig: PalletOperationalAccountsRewardsConfig;
|
|
538
|
+
PalletOperationalAccountsUpstreamAccessProof: PalletOperationalAccountsUpstreamAccessProof;
|
|
537
539
|
PalletPriceIndexArgonotAverageFrameAccumulator: PalletPriceIndexArgonotAverageFrameAccumulator;
|
|
538
540
|
PalletPriceIndexCall: PalletPriceIndexCall;
|
|
539
541
|
PalletPriceIndexCpiMeasurementBucket: PalletPriceIndexCpiMeasurementBucket;
|