Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@oak-network/api-augment

Package Overview
Dependencies
Maintainers
3
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@oak-network/api-augment - npm Package Compare versions

Comparing version 2.0.7 to 2.1.0

6

index.d.ts

@@ -1,3 +0,3 @@

import "./interfaces/types-lookup";
import "./interfaces/augment-api";
import "./interfaces/augment-types";
import "./interfaces/types-lookup.js";
import "./interfaces/augment-api.js";
import "./interfaces/augment-types.js";

@@ -1,6 +0,4 @@

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
require("./interfaces/types-lookup");
require("./interfaces/augment-api");
require("./interfaces/augment-types");
import "./interfaces/types-lookup.js";
import "./interfaces/augment-api.js";
import "./interfaces/augment-types.js";
//# sourceMappingURL=index.js.map

@@ -7,3 +7,3 @@ import '@polkadot/api-base/types/consts';

import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, XcmV3MultiLocation } from '@polkadot/types/lookup';
export declare type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
declare module '@polkadot/api-base/types/consts' {

@@ -18,2 +18,10 @@ interface AugmentedConsts<ApiType extends ApiTypes> {

/**
* The maximum number of tasks across our entire system
**/
maxTasksOverall: u32 & AugmentedConst<ApiType>;
/**
* The maximum number of tasks that a single user can schedule
**/
maxTasksPerAccount: u32 & AugmentedConst<ApiType>;
/**
* The maximum number of tasks that can be scheduled for a time slot.

@@ -58,2 +66,10 @@ **/

/**
* Self chain location.
**/
selfLocation: XcmV3MultiLocation & AugmentedConst<ApiType>;
/**
* The minimum time interval tasks could schedule for. For example, if the value is 600, then only inputs that are multiples of 600 are allowed. In other words, tasks can only be scheduled at 0, 10, 20 ... minutes of each hour.
**/
slotSizeSeconds: u64 & AugmentedConst<ApiType>;
/**
* The maximum percentage of weight per block used for scheduled tasks.

@@ -69,6 +85,21 @@ **/

/**
* The minimum amount required to keep an account open.
* The minimum amount required to keep an account open. MUST BE GREATER THAN ZERO!
*
* If you *really* need it to be zero, you can enable the feature `insecure_zero_ed` for
* this pallet. However, you do so at your own risk: this will open up a major DoS vector.
* In case you have multiple sources of provider references, you may also get unexpected
* behaviour if you set this to zero.
*
* Bottom line: Do yourself a favour and make it at least one!
**/
existentialDeposit: u128 & AugmentedConst<ApiType>;
/**
* The maximum number of individual freeze locks that can exist on an account at any time.
**/
maxFreezes: u32 & AugmentedConst<ApiType>;
/**
* The maximum number of holds that can exist on an account at any time.
**/
maxHolds: u32 & AugmentedConst<ApiType>;
/**
* The maximum number of locks that should exist on an account.

@@ -134,2 +165,12 @@ * Not strictly enforced, but used for weight estimation.

};
council: {
/**
* The maximum weight of a dispatch call that can be proposed and executed.
**/
maxProposalWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
/**
* Generic const
**/
[key: string]: Codec;
};
currencies: {

@@ -289,2 +330,6 @@ getNativeCurrencyId: u32 & AugmentedConst<ApiType>;

/**
* Maximum candidates
**/
maxCandidates: u32 & AugmentedConst<ApiType>;
/**
* Maximum delegations per delegator

@@ -306,6 +351,2 @@ **/

/**
* Minimum stake required for any candidate to be in `SelectedCandidates` for the round
**/
minCollatorStk: u128 & AugmentedConst<ApiType>;
/**
* Minimum stake for any registered on-chain account to delegate

@@ -315,6 +356,2 @@ **/

/**
* Minimum stake for any registered on-chain account to be a delegator
**/
minDelegatorStk: u128 & AugmentedConst<ApiType>;
/**
* Minimum number of selected candidates every round

@@ -386,2 +423,6 @@ **/

* The maximum number of scheduled calls in the queue for a single block.
*
* NOTE:
* + Dependent pallets' benchmarks might require a higher limit for the setting. Set a
* higher limit under `runtime-benchmarks` feature.
**/

@@ -428,2 +469,12 @@ maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;

};
technicalCommittee: {
/**
* The maximum weight of a dispatch call that can be proposed and executed.
**/
maxProposalWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
/**
* Generic const
**/
[key: string]: Codec;
};
timestamp: {

@@ -536,2 +587,6 @@ /**

/**
* Self chain location.
**/
selfLocation: XcmV3MultiLocation & AugmentedConst<ApiType>;
/**
* Generic const

@@ -538,0 +593,0 @@ **/

@@ -1,8 +0,6 @@

"use strict";
// Auto-generated via `yarn polkadot-types-from-chain`, do not edit
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });
// import type lookup before we augment - in some environments
// this is required to allow for ambient/previous definitions
require("@polkadot/api-base/types/consts");
import '@polkadot/api-base/types/consts';
//# sourceMappingURL=augment-api-consts.js.map
import '@polkadot/api-base/types/errors';
import type { ApiTypes, AugmentedError } from '@polkadot/api-base/types';
export declare type __AugmentedError<ApiType extends ApiTypes> = AugmentedError<ApiType>;
export type __AugmentedError<ApiType extends ApiTypes> = AugmentedError<ApiType>;
declare module '@polkadot/api-base/types/errors' {

@@ -34,2 +34,3 @@ interface AugmentedErrors<ApiType extends ApiTypes> {

automationPrice: {
AssetAlreadyInitialized: AugmentedError<ApiType>;
/**

@@ -43,2 +44,3 @@ * Asset already supported

AssetLimitReached: AugmentedError<ApiType>;
AssetNotInitialized: AugmentedError<ApiType>;
/**

@@ -52,19 +54,19 @@ * Asset must be in triggerable range.

AssetNotSupported: AugmentedError<ApiType>;
AssetUpdatePayloadMalform: AugmentedError<ApiType>;
/**
* The version of the `VersionedMultiLocation` value used is not able
* to be interpreted.
**/
BadVersion: AugmentedError<ApiType>;
/**
* Block Time not set
**/
BlockTimeNotSet: AugmentedError<ApiType>;
CannotReanchor: AugmentedError<ApiType>;
/**
* Direction Not Supported
**/
DirectionNotSupported: AugmentedError<ApiType>;
/**
* Duplicate task
**/
DuplicateTask: AugmentedError<ApiType>;
FeePaymentError: AugmentedError<ApiType>;
/**
* The provided_id cannot be empty
**/
EmptyProvidedId: AugmentedError<ApiType>;
/**
* Insufficient Balance

@@ -82,5 +84,6 @@ **/

/**
* Time must end in a whole hour.
* Error when setting task expired less than the current block time
**/
InvalidTime: AugmentedError<ApiType>;
InvalidTaskExpiredAt: AugmentedError<ApiType>;
InvalidTaskId: AugmentedError<ApiType>;
/**

@@ -91,6 +94,15 @@ * Restrictions on Liquidity in Account

/**
* Maximum tasks reached for a given account
**/
MaxTasksPerAccountReached: AugmentedError<ApiType>;
/**
* Maximum tasks reached for the slot
**/
MaxTasksReached: AugmentedError<ApiType>;
OracleNotAuthorized: AugmentedError<ApiType>;
/**
* Error when failed to update task expiration storage
**/
TaskExpiredStorageFailedToUpdate: AugmentedError<ApiType>;
/**
* Failed to insert task

@@ -100,2 +112,11 @@ **/

/**
* Task Not Found When canceling
**/
TaskNotFound: AugmentedError<ApiType>;
/**
* Failed to remove task
**/
TaskRemoveFailure: AugmentedError<ApiType>;
UnsupportedFeePayment: AugmentedError<ApiType>;
/**
* Generic error

@@ -125,6 +146,2 @@ **/

/**
* The message cannot be empty.
**/
EmptyMessage: AugmentedError<ApiType>;
/**
* Incoverible currency ID.

@@ -138,7 +155,7 @@ **/

/**
* Amount has to be larger than 0.1 OAK.
* Invalid asset location.
**/
InvalidAmount: AugmentedError<ApiType>;
InvalidAssetLocation: AugmentedError<ApiType>;
/**
* Time must end in a whole hour.
* Time in seconds must be a multiple of SlotSizeSeconds
**/

@@ -159,2 +176,6 @@ InvalidTime: AugmentedError<ApiType>;

/**
* The task schedule_as does not match.
**/
TaskScheduleAsNotMatch: AugmentedError<ApiType>;
/**
* Time slot is full. No more tasks can be scheduled for this time.

@@ -171,6 +192,2 @@ **/

TooManyExecutionsTimes: AugmentedError<ApiType>;
/**
* Sender cannot transfer money to self.
**/
TransferToSelf: AugmentedError<ApiType>;
UnsupportedFeePayment: AugmentedError<ApiType>;

@@ -184,14 +201,18 @@ /**

/**
* Beneficiary account must pre-exist
* Beneficiary account must pre-exist.
**/
DeadAccount: AugmentedError<ApiType>;
/**
* Value too low to create account due to existential deposit
* Value too low to create account due to existential deposit.
**/
ExistentialDeposit: AugmentedError<ApiType>;
/**
* A vesting schedule already exists for this account
* A vesting schedule already exists for this account.
**/
ExistingVestingSchedule: AugmentedError<ApiType>;
/**
* Transfer/payment would kill account.
**/
Expendability: AugmentedError<ApiType>;
/**
* Balance too low to send value.

@@ -201,15 +222,19 @@ **/

/**
* Transfer/payment would kill account
* Account liquidity restrictions prevent withdrawal.
**/
KeepAlive: AugmentedError<ApiType>;
LiquidityRestrictions: AugmentedError<ApiType>;
/**
* Account liquidity restrictions prevent withdrawal
* Number of freezes exceed `MaxFreezes`.
**/
LiquidityRestrictions: AugmentedError<ApiType>;
TooManyFreezes: AugmentedError<ApiType>;
/**
* Number of named reserves exceed MaxReserves
* Number of holds exceed `MaxHolds`.
**/
TooManyHolds: AugmentedError<ApiType>;
/**
* Number of named reserves exceed `MaxReserves`.
**/
TooManyReserves: AugmentedError<ApiType>;
/**
* Vesting balance too high to send value
* Vesting balance too high to send value.
**/

@@ -405,2 +430,6 @@ VestingBalance: AugmentedError<ApiType>;

/**
* The preimage does not exist.
**/
PreimageNotExist: AugmentedError<ApiType>;
/**
* Proposal still blacklisted

@@ -606,2 +635,3 @@ **/

CandidateExists: AugmentedError<ApiType>;
CandidateLimitReached: AugmentedError<ApiType>;
CandidateNotLeaving: AugmentedError<ApiType>;

@@ -611,2 +641,3 @@ CannotDelegateIfLeaving: AugmentedError<ApiType>;

CannotGoOnlineIfLeaving: AugmentedError<ApiType>;
CannotSetAboveMaxCandidates: AugmentedError<ApiType>;
CannotSetBelowMin: AugmentedError<ApiType>;

@@ -634,7 +665,11 @@ DelegationBelowMin: AugmentedError<ApiType>;

PendingDelegationRevoke: AugmentedError<ApiType>;
RemovedCall: AugmentedError<ApiType>;
RoundLengthMustBeGreaterThanTotalSelectedCollators: AugmentedError<ApiType>;
TooLowCandidateAutoCompoundingDelegationCountToAutoCompound: AugmentedError<ApiType>;
TooLowCandidateAutoCompoundingDelegationCountToDelegate: AugmentedError<ApiType>;
TooLowCandidateAutoCompoundingDelegationCountToLeaveCandidates: AugmentedError<ApiType>;
TooLowCandidateCountToLeaveCandidates: AugmentedError<ApiType>;
TooLowCandidateCountWeightHint: AugmentedError<ApiType>;
TooLowCandidateCountWeightHintCancelLeaveCandidates: AugmentedError<ApiType>;
TooLowCandidateCountWeightHintGoOffline: AugmentedError<ApiType>;
TooLowCandidateCountWeightHintJoinCandidates: AugmentedError<ApiType>;

@@ -653,3 +688,3 @@ TooLowCandidateDelegationCountToDelegate: AugmentedError<ApiType>;

/**
* The inherent which supplies the host configuration did not run this block
* The inherent which supplies the host configuration did not run this block.
**/

@@ -666,7 +701,7 @@ HostConfigurationNotAvailable: AugmentedError<ApiType>;

/**
* Attempt to upgrade validation function while existing upgrade pending
* Attempt to upgrade validation function while existing upgrade pending.
**/
OverlappingUpgrades: AugmentedError<ApiType>;
/**
* Polkadot currently prohibits this parachain from upgrading its validation function
* Polkadot currently prohibits this parachain from upgrading its validation function.
**/

@@ -676,3 +711,3 @@ ProhibitedByPolkadot: AugmentedError<ApiType>;

* The supplied validation function has compiled into a blob larger than Polkadot is
* willing to run
* willing to run.
**/

@@ -685,3 +720,3 @@ TooBig: AugmentedError<ApiType>;

/**
* The inherent which supplies the validation data did not run this block
* The inherent which supplies the validation data did not run this block.
**/

@@ -733,3 +768,3 @@ ValidationDataNotAvailable: AugmentedError<ApiType>;

/**
* The unlock operation cannot succeed because there are still users of the lock.
* The unlock operation cannot succeed because there are still consumers of the lock.
**/

@@ -1162,3 +1197,5 @@ InUse: AugmentedError<ApiType>;

FeeOverflow: AugmentedError<ApiType>;
InvalidAssetLocation: AugmentedError<ApiType>;
TransactInfoNotFound: AugmentedError<ApiType>;
UnsupportedFeePayment: AugmentedError<ApiType>;
/**

@@ -1165,0 +1202,0 @@ * Either the instruction weight or the transact weight is too large.

@@ -1,8 +0,6 @@

"use strict";
// Auto-generated via `yarn polkadot-types-from-chain`, do not edit
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });
// import type lookup before we augment - in some environments
// this is required to allow for ambient/previous definitions
require("@polkadot/api-base/types/errors");
import '@polkadot/api-base/types/errors';
//# sourceMappingURL=augment-api-errors.js.map

@@ -1,8 +0,6 @@

"use strict";
// Auto-generated via `yarn polkadot-types-from-chain`, do not edit
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });
// import type lookup before we augment - in some environments
// this is required to allow for ambient/previous definitions
require("@polkadot/api-base/types/events");
import '@polkadot/api-base/types/events';
//# sourceMappingURL=augment-api-events.js.map

@@ -1,8 +0,6 @@

"use strict";
// Auto-generated via `yarn polkadot-types-from-chain`, do not edit
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });
// import type lookup before we augment - in some environments
// this is required to allow for ambient/previous definitions
require("@polkadot/api-base/types/storage");
import '@polkadot/api-base/types/storage';
//# sourceMappingURL=augment-api-query.js.map
import '@polkadot/rpc-core/types/jsonrpc';
import type { AutomationAction, AutomationFeeDetails, AutostakingResult } from '@oak-network/api-augment/interfaces/automationTime';
import type { AutomationFeeDetails, AutostakingResult } from '@oak-network/api-augment/interfaces/automationTime';
import type { AugmentedRpc } from '@polkadot/rpc-core/types';

@@ -9,3 +9,3 @@ import type { Metadata, StorageKey } from '@polkadot/types';

import type { EpochAuthorship } from '@polkadot/types/interfaces/babe';
import type { BeefySignedCommitment } from '@polkadot/types/interfaces/beefy';
import type { BeefyVersionedFinalityProof } from '@polkadot/types/interfaces/beefy';
import type { BlockHash } from '@polkadot/types/interfaces/chain';

@@ -20,11 +20,11 @@ import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';

import type { EncodedFinalityProofs, JustificationNotification, ReportedRoundStates } from '@polkadot/types/interfaces/grandpa';
import type { MmrLeafBatchProof, MmrLeafProof } from '@polkadot/types/interfaces/mmr';
import type { MmrHash, MmrLeafBatchProof } from '@polkadot/types/interfaces/mmr';
import type { StorageKind } from '@polkadot/types/interfaces/offchain';
import type { FeeDetails, RuntimeDispatchInfoV1 } from '@polkadot/types/interfaces/payment';
import type { RpcMethods } from '@polkadot/types/interfaces/rpc';
import type { AccountId, AccountId32, Balance, BlockNumber, H160, H256, H64, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';
import type { AccountId, AccountId32, BlockNumber, H160, H256, H64, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';
import type { MigrationStatusResult, ReadProof, RuntimeVersion, TraceBlockResponse } from '@polkadot/types/interfaces/state';
import type { ApplyExtrinsicResult, ChainProperties, ChainType, Health, NetworkState, NodeRole, PeerInfo, SyncState } from '@polkadot/types/interfaces/system';
import type { IExtrinsic, Observable } from '@polkadot/types/types';
export declare type __AugmentedRpc = AugmentedRpc<() => unknown>;
export type __AugmentedRpc = AugmentedRpc<() => unknown>;
declare module '@polkadot/rpc-core/types/jsonrpc' {

@@ -80,6 +80,2 @@ interface RpcInterface {

/**
* Retrieve automation fees
**/
getTimeAutomationFees: AugmentedRpc<(action: AutomationAction | 'NativeTransfer' | 'XCMP' | 'AutoCompoundDelegatedStake' | number | Uint8Array, executions: u32 | AnyNumber | Uint8Array) => Observable<Balance>>;
/**
* The transaction fee details

@@ -101,5 +97,5 @@ **/

/**
* Returns the block most recently finalized by BEEFY, alongside side its justification.
* Returns the block most recently finalized by BEEFY, alongside its justification.
**/
subscribeJustifications: AugmentedRpc<() => Observable<BeefySignedCommitment>>;
subscribeJustifications: AugmentedRpc<() => Observable<BeefyVersionedFinalityProof>>;
};

@@ -337,3 +333,3 @@ chain: {

**/
getTransactionCount: AugmentedRpc<(hash: H256 | string | Uint8Array, number?: BlockNumber | AnyNumber | Uint8Array) => Observable<U256>>;
getTransactionCount: AugmentedRpc<(address: H160 | string | Uint8Array, number?: BlockNumber | AnyNumber | Uint8Array) => Observable<U256>>;
/**

@@ -454,9 +450,25 @@ * Returns transaction receipt by transaction hash.

/**
* Generate MMR proof for the given leaf indices.
* Generate MMR proof for the given block numbers.
**/
generateBatchProof: AugmentedRpc<(leafIndices: Vec<u64> | (u64 | AnyNumber | Uint8Array)[], at?: BlockHash | string | Uint8Array) => Observable<MmrLeafProof>>;
generateProof: AugmentedRpc<(blockNumbers: Vec<u64> | (u64 | AnyNumber | Uint8Array)[], bestKnownBlockNumber?: u64 | AnyNumber | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<MmrLeafBatchProof>>;
/**
* Generate MMR proof for given leaf index.
* Get the MMR root hash for the current best block.
**/
generateProof: AugmentedRpc<(leafIndex: u64 | AnyNumber | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<MmrLeafBatchProof>>;
root: AugmentedRpc<(at?: BlockHash | string | Uint8Array) => Observable<MmrHash>>;
/**
* Verify an MMR proof
**/
verifyProof: AugmentedRpc<(proof: MmrLeafBatchProof | {
blockHash?: any;
leaves?: any;
proof?: any;
} | string | Uint8Array) => Observable<bool>>;
/**
* Verify an MMR proof statelessly given an mmr_root
**/
verifyProofStateless: AugmentedRpc<(root: MmrHash | string | Uint8Array, proof: MmrLeafBatchProof | {
blockHash?: any;
leaves?: any;
proof?: any;
} | string | Uint8Array) => Observable<bool>>;
};

@@ -463,0 +475,0 @@ net: {

@@ -1,8 +0,6 @@

"use strict";
// Auto-generated via `yarn polkadot-types-from-chain`, do not edit
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });
// import type lookup before we augment - in some environments
// this is required to allow for ambient/previous definitions
require("@polkadot/rpc-core/types/jsonrpc");
import '@polkadot/rpc-core/types/jsonrpc';
//# sourceMappingURL=augment-api-rpc.js.map
import '@polkadot/api-base/types/calls';
import type { AutomationAction, AutostakingResult } from '@oak-network/api-augment/interfaces/automationTime';
import type { AutostakingResult } from '@oak-network/api-augment/interfaces/automationTime';
import type { ApiTypes, AugmentedCall, DecoratedCallBase } from '@polkadot/api-base/types';

@@ -12,3 +12,4 @@ import type { Bytes, Null, Option, Vec, i128, u32, u64 } from '@polkadot/types-codec';

import type { OpaqueMetadata } from '@polkadot/types/interfaces/metadata';
import type { AccountId, Balance, Block, Hash, Header, Index, KeyTypeId, SlotDuration } from '@polkadot/types/interfaces/runtime';
import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
import type { AccountId, Balance, Block, Hash, Header, Index, KeyTypeId, SlotDuration, Weight } from '@polkadot/types/interfaces/runtime';
import type { RuntimeVersion } from '@polkadot/types/interfaces/state';

@@ -18,4 +19,4 @@ import type { ApplyExtrinsicResult } from '@polkadot/types/interfaces/system';

import type { IExtrinsic, Observable } from '@polkadot/types/types';
export declare type __AugmentedCall<ApiType extends ApiTypes> = AugmentedCall<ApiType>;
export declare type __DecoratedCallBase<ApiType extends ApiTypes> = DecoratedCallBase<ApiType>;
export type __AugmentedCall<ApiType extends ApiTypes> = AugmentedCall<ApiType>;
export type __DecoratedCallBase<ApiType extends ApiTypes> = DecoratedCallBase<ApiType>;
declare module '@polkadot/api-base/types/calls' {

@@ -60,6 +61,2 @@ interface AugmentedCalls<ApiType extends ApiTypes> {

/**
* Retrieve automation fees
**/
getTimeAutomationFees: AugmentedCall<ApiType, (action: AutomationAction | 'NativeTransfer' | 'XCMP' | 'AutoCompoundDelegatedStake' | number | Uint8Array, executions: u32 | AnyNumber | Uint8Array) => Observable<Balance>>;
/**
* Generic call

@@ -144,3 +141,3 @@ **/

};
/** 0x37e397fc7c91f5e4/1 */
/** 0x37e397fc7c91f5e4/2 */
metadata: {

@@ -152,2 +149,10 @@ /**

/**
* Returns the metadata at a given version.
**/
metadataAtVersion: AugmentedCall<ApiType, (version: u32 | AnyNumber | Uint8Array) => Observable<Option<OpaqueMetadata>>>;
/**
* Returns the supported metadata versions.
**/
metadataVersions: AugmentedCall<ApiType, () => Observable<Vec<u32>>>;
/**
* Generic call

@@ -200,2 +205,28 @@ **/

};
/** 0x37c8bb1350a9a2a8/4 */
transactionPaymentApi: {
/**
* The transaction fee details
**/
queryFeeDetails: AugmentedCall<ApiType, (uxt: Extrinsic | IExtrinsic | string | Uint8Array, len: u32 | AnyNumber | Uint8Array) => Observable<FeeDetails>>;
/**
* The transaction info
**/
queryInfo: AugmentedCall<ApiType, (uxt: Extrinsic | IExtrinsic | string | Uint8Array, len: u32 | AnyNumber | Uint8Array) => Observable<RuntimeDispatchInfo>>;
/**
* Query the output of the current LengthToFee given some input
**/
queryLengthToFee: AugmentedCall<ApiType, (length: u32 | AnyNumber | Uint8Array) => Observable<Balance>>;
/**
* Query the output of the current WeightToFee given some input
**/
queryWeightToFee: AugmentedCall<ApiType, (weight: Weight | {
refTime?: any;
proofSize?: any;
} | string | Uint8Array) => Observable<Balance>>;
/**
* Generic call
**/
[key: string]: DecoratedCallBase<ApiType>;
};
/** 0x8efeb658e7eac37d/1 */

@@ -202,0 +233,0 @@ xcmpHandlerApi: {

@@ -1,8 +0,6 @@

"use strict";
// Auto-generated via `yarn polkadot-types-from-chain`, do not edit
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });
// import type lookup before we augment - in some environments
// this is required to allow for ambient/previous definitions
require("@polkadot/api-base/types/calls");
import '@polkadot/api-base/types/calls';
//# sourceMappingURL=augment-api-runtime.js.map

@@ -1,8 +0,6 @@

"use strict";
// Auto-generated via `yarn polkadot-types-from-chain`, do not edit
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });
// import type lookup before we augment - in some environments
// this is required to allow for ambient/previous definitions
require("@polkadot/api-base/types/submittable");
import '@polkadot/api-base/types/submittable';
//# sourceMappingURL=augment-api-tx.js.map

@@ -1,7 +0,7 @@

import './augment-api-consts';
import './augment-api-errors';
import './augment-api-events';
import './augment-api-query';
import './augment-api-tx';
import './augment-api-rpc';
import './augment-api-runtime';
import './augment-api-consts.js';
import './augment-api-errors.js';
import './augment-api-events.js';
import './augment-api-query.js';
import './augment-api-tx.js';
import './augment-api-rpc.js';
import './augment-api-runtime.js';

@@ -1,12 +0,10 @@

"use strict";
// Auto-generated via `yarn polkadot-types-from-chain`, do not edit
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });
require("./augment-api-consts");
require("./augment-api-errors");
require("./augment-api-events");
require("./augment-api-query");
require("./augment-api-tx");
require("./augment-api-rpc");
require("./augment-api-runtime");
import './augment-api-consts.js';
import './augment-api-errors.js';
import './augment-api-events.js';
import './augment-api-query.js';
import './augment-api-tx.js';
import './augment-api-rpc.js';
import './augment-api-runtime.js';
//# sourceMappingURL=augment-api.js.map

@@ -1,8 +0,6 @@

"use strict";
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });
// import type lookup before we augment - in some environments
// this is required to allow for ambient/previous definitions
require("@polkadot/types/types/registry");
import '@polkadot/types/types/registry';
//# sourceMappingURL=augment-types.js.map

@@ -1,14 +0,4 @@

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const runtime_1 = require("./runtime");
import { runtime } from './runtime';
const automationTime = {
rpc: {
getTimeAutomationFees: {
description: 'Retrieve automation fees',
params: [
{ name: 'action', type: 'AutomationAction' },
{ name: 'executions', type: 'u32' },
],
type: 'Balance',
},
calculateOptimalAutostaking: {

@@ -38,9 +28,2 @@ description: 'Calculate the optimal period to restake',

types: {
AutomationAction: {
_enum: [
'NativeTransfer',
'XCMP',
'AutoCompoundDelegatedStake'
],
},
AutostakingResult: {

@@ -55,5 +38,5 @@ period: 'i32',

},
runtime: runtime_1.runtime,
runtime,
};
exports.default = automationTime;
export default automationTime;
//# sourceMappingURL=definitions.js.map

@@ -1,1 +0,1 @@

export * from './types';
export * from './types.js';

@@ -1,20 +0,4 @@

"use strict";
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
__exportStar(require("./types"), exports);
export * from './types.js';
//# sourceMappingURL=index.js.map

@@ -1,16 +0,5 @@

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.runtime = void 0;
exports.runtime = {
export const runtime = {
AutomationTimeApi: [
{
methods: {
get_time_automation_fees: {
description: 'Retrieve automation fees',
params: [
{ name: 'action', type: 'AutomationAction' },
{ name: 'executions', type: 'u32' },
],
type: 'Balance',
},
calculate_optimal_autostaking: {

@@ -17,0 +6,0 @@ description: 'Calculate the optimal period to restake',

@@ -1,10 +0,3 @@

import type { Enum, Struct, f64, i32 } from '@polkadot/types-codec';
import type { Struct, f64, i32 } from '@polkadot/types-codec';
import type { Balance } from '@polkadot/types/interfaces/runtime';
/** @name AutomationAction */
export interface AutomationAction extends Enum {
readonly isNativeTransfer: boolean;
readonly isXcmp: boolean;
readonly isAutoCompoundDelegatedStake: boolean;
readonly type: 'NativeTransfer' | 'Xcmp' | 'AutoCompoundDelegatedStake';
}
/** @name AutomationFeeDetails */

@@ -20,2 +13,2 @@ export interface AutomationFeeDetails extends Struct {

}
export declare type PHANTOM_AUTOMATIONTIME = 'automationTime';
export type PHANTOM_AUTOMATIONTIME = 'automationTime';

@@ -1,5 +0,4 @@

"use strict";
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });
export {};
//# sourceMappingURL=types.js.map

@@ -1,11 +0,3 @@

"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.xcmpHandler = exports.automationTime = void 0;
var definitions_1 = require("./automationTime/definitions");
Object.defineProperty(exports, "automationTime", { enumerable: true, get: function () { return __importDefault(definitions_1).default; } });
var definitions_2 = require("./xcmpHandler/definitions");
Object.defineProperty(exports, "xcmpHandler", { enumerable: true, get: function () { return __importDefault(definitions_2).default; } });
export { default as automationTime } from './automationTime/definitions';
export { default as xcmpHandler } from './xcmpHandler/definitions';
//# sourceMappingURL=definitions.js.map

@@ -1,1 +0,1 @@

export * from './types';
export * from './types.js';

@@ -1,20 +0,4 @@

"use strict";
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
__exportStar(require("./types"), exports);
export * from './types.js';
//# sourceMappingURL=index.js.map
import '@polkadot/types/types/registry';
import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OrmlAssetRegistryModuleCall, OrmlAssetRegistryModuleError, OrmlAssetRegistryModuleEvent, OrmlCurrenciesModuleCall, OrmlCurrenciesModuleError, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlTraitsAssetRegistryAssetMetadata, OrmlUnknownTokensModuleError, OrmlUnknownTokensModuleEvent, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAutomationPriceAction, PalletAutomationPriceAssetMetadatum, PalletAutomationPriceCall, PalletAutomationPriceDirection, PalletAutomationPriceError, PalletAutomationPriceEvent, PalletAutomationPriceTask, PalletAutomationTimeAction, PalletAutomationTimeAssetPayment, PalletAutomationTimeCall, PalletAutomationTimeError, PalletAutomationTimeEvent, PalletAutomationTimeMissedTaskV2, PalletAutomationTimeSchedule, PalletAutomationTimeScheduleParam, PalletAutomationTimeScheduledTasks, PalletAutomationTimeTask, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletBountiesBounty, PalletBountiesBountyStatus, PalletBountiesCall, PalletBountiesError, PalletBountiesEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletMembershipCall, PalletMembershipError, PalletMembershipEvent, PalletMultisigCall, PalletMultisigError, PalletMultisigEvent, PalletMultisigMultisig, PalletMultisigTimepoint, PalletParachainStakingAutoCompoundAutoCompoundConfig, PalletParachainStakingBond, PalletParachainStakingBondWithAutoCompound, PalletParachainStakingCall, PalletParachainStakingCandidateBondLessRequest, PalletParachainStakingCandidateMetadata, PalletParachainStakingCapacityStatus, PalletParachainStakingCollatorSnapshot, PalletParachainStakingCollatorStatus, PalletParachainStakingDelayedPayout, PalletParachainStakingDelegationRequestsCancelledScheduledRequest, PalletParachainStakingDelegationRequestsDelegationAction, PalletParachainStakingDelegationRequestsScheduledRequest, PalletParachainStakingDelegations, PalletParachainStakingDelegator, PalletParachainStakingDelegatorAdded, PalletParachainStakingDelegatorStatus, PalletParachainStakingError, PalletParachainStakingEvent, PalletParachainStakingInflationInflationInfo, PalletParachainStakingParachainBondConfig, PalletParachainStakingRoundInfo, PalletParachainStakingSetOrderedSet, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletProxyAnnouncement, PalletProxyCall, PalletProxyError, PalletProxyEvent, PalletProxyProxyDefinition, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletValveCall, PalletValveError, PalletValveEvent, PalletVestingError, PalletVestingEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PalletXcmpHandlerCall, PalletXcmpHandlerError, PalletXcmpHandlerEvent, PalletXcmpHandlerInstructionSequence, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, PrimitivesAssetsConversionRate, PrimitivesAssetsCustomMetadata, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, TuringRuntimeOriginCaller, TuringRuntimeProxyType, TuringRuntimeRuntime, TuringRuntimeSessionKeys, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3VecPalletInfo, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from '@polkadot/types/lookup';
import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OrmlAssetRegistryModuleCall, OrmlAssetRegistryModuleError, OrmlAssetRegistryModuleEvent, OrmlCurrenciesModuleCall, OrmlCurrenciesModuleError, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlTraitsAssetRegistryAssetMetadata, OrmlUnknownTokensModuleError, OrmlUnknownTokensModuleEvent, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAutomationPriceAction, PalletAutomationPriceAssetPayment, PalletAutomationPriceCall, PalletAutomationPriceError, PalletAutomationPriceEvent, PalletAutomationPricePriceData, PalletAutomationPriceRegistryInfo, PalletAutomationPriceStatType, PalletAutomationPriceTask, PalletAutomationPriceTaskCondition, PalletAutomationTimeAction, PalletAutomationTimeAssetPayment, PalletAutomationTimeCall, PalletAutomationTimeError, PalletAutomationTimeEvent, PalletAutomationTimeMissedTaskV2, PalletAutomationTimeSchedule, PalletAutomationTimeScheduleParam, PalletAutomationTimeScheduledTasks, PalletAutomationTimeTask, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletBountiesBounty, PalletBountiesBountyStatus, PalletBountiesCall, PalletBountiesError, PalletBountiesEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletMembershipCall, PalletMembershipError, PalletMembershipEvent, PalletMultisigCall, PalletMultisigError, PalletMultisigEvent, PalletMultisigMultisig, PalletMultisigTimepoint, PalletParachainStakingAutoCompoundAutoCompoundConfig, PalletParachainStakingBond, PalletParachainStakingBondWithAutoCompound, PalletParachainStakingCall, PalletParachainStakingCandidateBondLessRequest, PalletParachainStakingCandidateMetadata, PalletParachainStakingCapacityStatus, PalletParachainStakingCollatorSnapshot, PalletParachainStakingCollatorStatus, PalletParachainStakingDelayedPayout, PalletParachainStakingDelegationRequestsCancelledScheduledRequest, PalletParachainStakingDelegationRequestsDelegationAction, PalletParachainStakingDelegationRequestsScheduledRequest, PalletParachainStakingDelegations, PalletParachainStakingDelegator, PalletParachainStakingDelegatorAdded, PalletParachainStakingDelegatorStatus, PalletParachainStakingError, PalletParachainStakingEvent, PalletParachainStakingInflationInflationInfo, PalletParachainStakingParachainBondConfig, PalletParachainStakingRoundInfo, PalletParachainStakingSetBoundedOrderedSet, PalletParachainStakingSetOrderedSet, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletProxyAnnouncement, PalletProxyCall, PalletProxyError, PalletProxyEvent, PalletProxyProxyDefinition, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletTimestampCall, PalletTransactionPaymentChargeTransactionPayment, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletValveCall, PalletValveError, PalletValveEvent, PalletVestingError, PalletVestingEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PalletXcmpHandlerCall, PalletXcmpHandlerError, PalletXcmpHandlerEvent, PalletXcmpHandlerInstructionSequence, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4AbridgedHrmpChannel, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, PrimitivesAssetsConversionRate, PrimitivesAssetsCustomMetadata, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, TuringRuntimeOriginCaller, TuringRuntimeProxyType, TuringRuntimeRuntime, TuringRuntimeSessionKeys, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {

@@ -11,5 +11,7 @@ interface InterfaceTypes {

CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;
CumulusPalletParachainSystemCodeUpgradeAuthorization: CumulusPalletParachainSystemCodeUpgradeAuthorization;
CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;
CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;
CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;
CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize: CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize;
CumulusPalletXcmError: CumulusPalletXcmError;

@@ -69,8 +71,11 @@ CumulusPalletXcmEvent: CumulusPalletXcmEvent;

PalletAutomationPriceAction: PalletAutomationPriceAction;
PalletAutomationPriceAssetMetadatum: PalletAutomationPriceAssetMetadatum;
PalletAutomationPriceAssetPayment: PalletAutomationPriceAssetPayment;
PalletAutomationPriceCall: PalletAutomationPriceCall;
PalletAutomationPriceDirection: PalletAutomationPriceDirection;
PalletAutomationPriceError: PalletAutomationPriceError;
PalletAutomationPriceEvent: PalletAutomationPriceEvent;
PalletAutomationPricePriceData: PalletAutomationPricePriceData;
PalletAutomationPriceRegistryInfo: PalletAutomationPriceRegistryInfo;
PalletAutomationPriceStatType: PalletAutomationPriceStatType;
PalletAutomationPriceTask: PalletAutomationPriceTask;
PalletAutomationPriceTaskCondition: PalletAutomationPriceTaskCondition;
PalletAutomationTimeAction: PalletAutomationTimeAction;

@@ -91,2 +96,3 @@ PalletAutomationTimeAssetPayment: PalletAutomationTimeAssetPayment;

PalletBalancesEvent: PalletBalancesEvent;
PalletBalancesIdAmount: PalletBalancesIdAmount;
PalletBalancesReasons: PalletBalancesReasons;

@@ -109,2 +115,3 @@ PalletBalancesReserveData: PalletBalancesReserveData;

PalletDemocracyEvent: PalletDemocracyEvent;
PalletDemocracyMetadataOwner: PalletDemocracyMetadataOwner;
PalletDemocracyReferendumInfo: PalletDemocracyReferendumInfo;

@@ -156,2 +163,3 @@ PalletDemocracyReferendumStatus: PalletDemocracyReferendumStatus;

PalletParachainStakingRoundInfo: PalletParachainStakingRoundInfo;
PalletParachainStakingSetBoundedOrderedSet: PalletParachainStakingSetBoundedOrderedSet;
PalletParachainStakingSetOrderedSet: PalletParachainStakingSetOrderedSet;

@@ -205,6 +213,6 @@ PalletPreimageCall: PalletPreimageCall;

PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;
PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;
PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;
PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;
PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;
PolkadotPrimitivesV4AbridgedHostConfiguration: PolkadotPrimitivesV4AbridgedHostConfiguration;
PolkadotPrimitivesV4AbridgedHrmpChannel: PolkadotPrimitivesV4AbridgedHrmpChannel;
PolkadotPrimitivesV4PersistedValidationData: PolkadotPrimitivesV4PersistedValidationData;
PolkadotPrimitivesV4UpgradeRestriction: PolkadotPrimitivesV4UpgradeRestriction;
PrimitivesAssetsConversionRate: PrimitivesAssetsConversionRate;

@@ -277,3 +285,2 @@ PrimitivesAssetsCustomMetadata: PrimitivesAssetsCustomMetadata;

XcmV3TraitsOutcome: XcmV3TraitsOutcome;
XcmV3VecPalletInfo: XcmV3VecPalletInfo;
XcmV3WeightLimit: XcmV3WeightLimit;

@@ -280,0 +287,0 @@ XcmV3Xcm: XcmV3Xcm;

@@ -1,8 +0,6 @@

"use strict";
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });
// import type lookup before we augment - in some environments
// this is required to allow for ambient/previous definitions
require("@polkadot/types/types/registry");
import '@polkadot/types/types/registry';
//# sourceMappingURL=registry.js.map

@@ -1,8 +0,6 @@

"use strict";
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });
// import type lookup before we augment - in some environments
// this is required to allow for ambient/previous definitions
require("@polkadot/types/lookup");
import '@polkadot/types/lookup';
//# sourceMappingURL=types-lookup.js.map

@@ -1,2 +0,2 @@

export * from './automationTime/types';
export * from './xcmpHandler/types';
export * from './automationTime/types.js';
export * from './xcmpHandler/types.js';

@@ -1,21 +0,5 @@

"use strict";
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
__exportStar(require("./automationTime/types"), exports);
__exportStar(require("./xcmpHandler/types"), exports);
export * from './automationTime/types.js';
export * from './xcmpHandler/types.js';
//# sourceMappingURL=types.js.map

@@ -1,4 +0,2 @@

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const runtime_1 = require("./runtime");
import { runtime } from './runtime';
const xcmpHandler = {

@@ -22,5 +20,5 @@ rpc: {

types: {},
runtime: runtime_1.runtime,
runtime,
};
exports.default = xcmpHandler;
export default xcmpHandler;
//# sourceMappingURL=definitions.js.map

@@ -1,1 +0,1 @@

export * from './types';
export * from './types.js';

@@ -1,20 +0,4 @@

"use strict";
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
__exportStar(require("./types"), exports);
export * from './types.js';
//# sourceMappingURL=index.js.map

@@ -1,5 +0,2 @@

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.runtime = void 0;
exports.runtime = {
export const runtime = {
XcmpHandlerApi: [

@@ -6,0 +3,0 @@ {

@@ -1,1 +0,1 @@

export declare type PHANTOM_XCMPHANDLER = 'xcmpHandler';
export type PHANTOM_XCMPHANDLER = 'xcmpHandler';

@@ -1,5 +0,4 @@

"use strict";
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });
export {};
//# sourceMappingURL=types.js.map
{
"name": "@oak-network/api-augment",
"version": "2.0.7",
"version": "2.1.0",
"main": "./index.cjs",
"license": "Apache-2.0",
"type": "module",
"scripts": {},
"dependencies": {
"@polkadot/types": "^9.9.4"
"@polkadot/types": "^10.9.1"
},
"devDependencies": {
"@polkadot/typegen": "^9.9.4"
"@polkadot/typegen": "^10.9.1",
"@types/node": "^20.9.5"
},

@@ -13,0 +15,0 @@ "module": "./index.js",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc