git.delta.rocks / unique-network / refs/commits / 449e5b522d1b

difftreelog

source

tests/src/interfaces/augment-api-tx.ts54.3 KiBsourcehistory
1// Auto-generated via `yarn polkadot-types-from-chain`, do not edit2/* eslint-disable */34import type { ApiTypes } from '@polkadot/api-base/types';5import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';6import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';7import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';8import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletCommonAccountBasicCrossAccountIdRepr, UpDataStructsAccessMode, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsMetaUpdatePermission, UpDataStructsSchemaVersion, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';910declare module '@polkadot/api-base/types/submittable' {11  export interface AugmentedSubmittables<ApiType extends ApiTypes> {12    balances: {13      /**14       * Exactly as `transfer`, except the origin must be root and the source account may be15       * specified.16       * # <weight>17       * - Same as transfer, but additional read and write because the source account is not18       * assumed to be in the overlay.19       * # </weight>20       **/21      forceTransfer: AugmentedSubmittable<(source: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Compact<u128>]>;22      /**23       * Unreserve some balance from a user by force.24       * 25       * Can only be called by ROOT.26       **/27      forceUnreserve: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u128]>;28      /**29       * Set the balances of a given account.30       * 31       * This will alter `FreeBalance` and `ReservedBalance` in storage. it will32       * also alter the total issuance of the system (`TotalIssuance`) appropriately.33       * If the new free or reserved balance is below the existential deposit,34       * it will reset the account nonce (`frame_system::AccountNonce`).35       * 36       * The dispatch origin for this call is `root`.37       **/38      setBalance: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array, newReserved: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>, Compact<u128>]>;39      /**40       * Transfer some liquid free balance to another account.41       * 42       * `transfer` will set the `FreeBalance` of the sender and receiver.43       * If the sender's account is below the existential deposit as a result44       * of the transfer, the account will be reaped.45       * 46       * The dispatch origin for this call must be `Signed` by the transactor.47       * 48       * # <weight>49       * - Dependent on arguments but not critical, given proper implementations for input config50       * types. See related functions below.51       * - It contains a limited number of reads and writes internally and no complex52       * computation.53       * 54       * Related functions:55       * 56       * - `ensure_can_withdraw` is always called internally but has a bounded complexity.57       * - Transferring balances to accounts that did not exist before will cause58       * `T::OnNewAccount::on_new_account` to be called.59       * - Removing enough funds from an account will trigger `T::DustRemoval::on_unbalanced`.60       * - `transfer_keep_alive` works the same way as `transfer`, but has an additional check61       * that the transfer will not kill the origin account.62       * ---------------------------------63       * - Origin account is already in memory, so no DB operations for them.64       * # </weight>65       **/66      transfer: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;67      /**68       * Transfer the entire transferable balance from the caller account.69       * 70       * NOTE: This function only attempts to transfer _transferable_ balances. This means that71       * any locked, reserved, or existential deposits (when `keep_alive` is `true`), will not be72       * transferred by this function. To ensure that this function results in a killed account,73       * you might need to prepare the account by removing any reference counters, storage74       * deposits, etc...75       * 76       * The dispatch origin of this call must be Signed.77       * 78       * - `dest`: The recipient of the transfer.79       * - `keep_alive`: A boolean to determine if the `transfer_all` operation should send all80       * of the funds the account has, causing the sender account to be killed (false), or81       * transfer everything except at least the existential deposit, which will guarantee to82       * keep the sender account alive (true). # <weight>83       * - O(1). Just like transfer, but reading the user's transferable balance first.84       * #</weight>85       **/86      transferAll: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, bool]>;87      /**88       * Same as the [`transfer`] call, but with a check that the transfer will not kill the89       * origin account.90       * 91       * 99% of the time you want [`transfer`] instead.92       * 93       * [`transfer`]: struct.Pallet.html#method.transfer94       **/95      transferKeepAlive: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;96      /**97       * Generic tx98       **/99      [key: string]: SubmittableExtrinsicFunction<ApiType>;100    };101    charging: {102      /**103       * Generic tx104       **/105      [key: string]: SubmittableExtrinsicFunction<ApiType>;106    };107    cumulusXcm: {108      /**109       * Generic tx110       **/111      [key: string]: SubmittableExtrinsicFunction<ApiType>;112    };113    dmpQueue: {114      /**115       * Service a single overweight message.116       * 117       * - `origin`: Must pass `ExecuteOverweightOrigin`.118       * - `index`: The index of the overweight message to service.119       * - `weight_limit`: The amount of weight that message execution may take.120       * 121       * Errors:122       * - `Unknown`: Message of `index` is unknown.123       * - `OverLimit`: Message execution may use greater than `weight_limit`.124       * 125       * Events:126       * - `OverweightServiced`: On success.127       **/128      serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, u64]>;129      /**130       * Generic tx131       **/132      [key: string]: SubmittableExtrinsicFunction<ApiType>;133    };134    ethereum: {135      /**136       * Transact an Ethereum transaction.137       **/138      transact: AugmentedSubmittable<(transaction: EthereumTransactionTransactionV2 | { Legacy: any } | { EIP2930: any } | { EIP1559: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [EthereumTransactionTransactionV2]>;139      /**140       * Generic tx141       **/142      [key: string]: SubmittableExtrinsicFunction<ApiType>;143    };144    evm: {145      /**146       * Issue an EVM call operation. This is similar to a message call transaction in Ethereum.147       **/148      call: AugmentedSubmittable<(source: H160 | string | Uint8Array, target: H160 | string | Uint8Array, input: Bytes | string | Uint8Array, value: U256 | AnyNumber | Uint8Array, gasLimit: u64 | AnyNumber | Uint8Array, maxFeePerGas: U256 | AnyNumber | Uint8Array, maxPriorityFeePerGas: Option<U256> | null | object | string | Uint8Array, nonce: Option<U256> | null | object | string | Uint8Array, accessList: Vec<ITuple<[H160, Vec<H256>]>> | ([H160 | string | Uint8Array, Vec<H256> | (H256 | string | Uint8Array)[]])[]) => SubmittableExtrinsic<ApiType>, [H160, H160, Bytes, U256, u64, U256, Option<U256>, Option<U256>, Vec<ITuple<[H160, Vec<H256>]>>]>;149      /**150       * Issue an EVM create operation. This is similar to a contract creation transaction in151       * Ethereum.152       **/153      create: AugmentedSubmittable<(source: H160 | string | Uint8Array, init: Bytes | string | Uint8Array, value: U256 | AnyNumber | Uint8Array, gasLimit: u64 | AnyNumber | Uint8Array, maxFeePerGas: U256 | AnyNumber | Uint8Array, maxPriorityFeePerGas: Option<U256> | null | object | string | Uint8Array, nonce: Option<U256> | null | object | string | Uint8Array, accessList: Vec<ITuple<[H160, Vec<H256>]>> | ([H160 | string | Uint8Array, Vec<H256> | (H256 | string | Uint8Array)[]])[]) => SubmittableExtrinsic<ApiType>, [H160, Bytes, U256, u64, U256, Option<U256>, Option<U256>, Vec<ITuple<[H160, Vec<H256>]>>]>;154      /**155       * Issue an EVM create2 operation.156       **/157      create2: AugmentedSubmittable<(source: H160 | string | Uint8Array, init: Bytes | string | Uint8Array, salt: H256 | string | Uint8Array, value: U256 | AnyNumber | Uint8Array, gasLimit: u64 | AnyNumber | Uint8Array, maxFeePerGas: U256 | AnyNumber | Uint8Array, maxPriorityFeePerGas: Option<U256> | null | object | string | Uint8Array, nonce: Option<U256> | null | object | string | Uint8Array, accessList: Vec<ITuple<[H160, Vec<H256>]>> | ([H160 | string | Uint8Array, Vec<H256> | (H256 | string | Uint8Array)[]])[]) => SubmittableExtrinsic<ApiType>, [H160, Bytes, H256, U256, u64, U256, Option<U256>, Option<U256>, Vec<ITuple<[H160, Vec<H256>]>>]>;158      /**159       * Withdraw balance from EVM into currency/balances pallet.160       **/161      withdraw: AugmentedSubmittable<(address: H160 | string | Uint8Array, value: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [H160, u128]>;162      /**163       * Generic tx164       **/165      [key: string]: SubmittableExtrinsicFunction<ApiType>;166    };167    evmMigration: {168      begin: AugmentedSubmittable<(address: H160 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H160]>;169      finish: AugmentedSubmittable<(address: H160 | string | Uint8Array, code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H160, Bytes]>;170      setData: AugmentedSubmittable<(address: H160 | string | Uint8Array, data: Vec<ITuple<[H256, H256]>> | ([H256 | string | Uint8Array, H256 | string | Uint8Array])[]) => SubmittableExtrinsic<ApiType>, [H160, Vec<ITuple<[H256, H256]>>]>;171      /**172       * Generic tx173       **/174      [key: string]: SubmittableExtrinsicFunction<ApiType>;175    };176    inflation: {177      /**178       * This method sets the inflation start date. Can be only called once.179       * Inflation start block can be backdated and will catch up. The method will create Treasury180       * account if it does not exist and perform the first inflation deposit.181       * 182       * # Permissions183       * 184       * * Root185       * 186       * # Arguments187       * 188       * * inflation_start_relay_block: The relay chain block at which inflation should start189       **/190      startInflation: AugmentedSubmittable<(inflationStartRelayBlock: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;191      /**192       * Generic tx193       **/194      [key: string]: SubmittableExtrinsicFunction<ApiType>;195    };196    parachainSystem: {197      authorizeUpgrade: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256]>;198      enactAuthorizedUpgrade: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;199      /**200       * Set the current validation data.201       * 202       * This should be invoked exactly once per block. It will panic at the finalization203       * phase if the call was not invoked.204       * 205       * The dispatch origin for this call must be `Inherent`206       * 207       * As a side effect, this function upgrades the current validation function208       * if the appropriate time has come.209       **/210      setValidationData: AugmentedSubmittable<(data: CumulusPrimitivesParachainInherentParachainInherentData | { validationData?: any; relayChainState?: any; downwardMessages?: any; horizontalMessages?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [CumulusPrimitivesParachainInherentParachainInherentData]>;211      sudoSendUpwardMessage: AugmentedSubmittable<(message: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;212      /**213       * Generic tx214       **/215      [key: string]: SubmittableExtrinsicFunction<ApiType>;216    };217    polkadotXcm: {218      /**219       * Execute an XCM message from a local, signed, origin.220       * 221       * An event is deposited indicating whether `msg` could be executed completely or only222       * partially.223       * 224       * No more than `max_weight` will be used in its attempted execution. If this is less than the225       * maximum amount of weight that the message could take to be executed, then no execution226       * attempt will be made.227       * 228       * NOTE: A successful return to this does *not* imply that the `msg` was executed successfully229       * to completion; only that *some* of it was executed.230       **/231      execute: AugmentedSubmittable<(message: XcmVersionedXcm | { V0: any } | { V1: any } | { V2: any } | string | Uint8Array, maxWeight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedXcm, u64]>;232      /**233       * Set a safe XCM version (the version that XCM should be encoded with if the most recent234       * version a destination can accept is unknown).235       * 236       * - `origin`: Must be Root.237       * - `maybe_xcm_version`: The default XCM encoding version, or `None` to disable.238       **/239      forceDefaultXcmVersion: AugmentedSubmittable<(maybeXcmVersion: Option<u32> | null | object | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Option<u32>]>;240      /**241       * Ask a location to notify us regarding their XCM version and any changes to it.242       * 243       * - `origin`: Must be Root.244       * - `location`: The location to which we should subscribe for XCM version notifications.245       **/246      forceSubscribeVersionNotify: AugmentedSubmittable<(location: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation]>;247      /**248       * Require that a particular destination should no longer notify us regarding any XCM249       * version changes.250       * 251       * - `origin`: Must be Root.252       * - `location`: The location to which we are currently subscribed for XCM version253       * notifications which we no longer desire.254       **/255      forceUnsubscribeVersionNotify: AugmentedSubmittable<(location: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation]>;256      /**257       * Extoll that a particular destination can be communicated with through a particular258       * version of XCM.259       * 260       * - `origin`: Must be Root.261       * - `location`: The destination that is being described.262       * - `xcm_version`: The latest version of XCM that `location` supports.263       **/264      forceXcmVersion: AugmentedSubmittable<(location: XcmV1MultiLocation | { parents?: any; interior?: any } | string | Uint8Array, xcmVersion: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmV1MultiLocation, u32]>;265      /**266       * Transfer some assets from the local chain to the sovereign account of a destination chain and forward267       * a notification XCM.268       * 269       * Fee payment on the destination side is made from the first asset listed in the `assets` vector.270       * 271       * - `origin`: Must be capable of withdrawing the `assets` and executing XCM.272       * - `dest`: Destination context for the assets. Will typically be `X2(Parent, Parachain(..))` to send273       * from parachain to parachain, or `X1(Parachain(..))` to send from relay to parachain.274       * - `beneficiary`: A beneficiary location for the assets in the context of `dest`. Will generally be275       * an `AccountId32` value.276       * - `assets`: The assets to be withdrawn. This should include the assets used to pay the fee on the277       * `dest` side.278       * - `fee_asset_item`: The index into `assets` of the item which should be used to pay279       * fees.280       * - `weight_limit`: The remote-side weight limit, if any, for the XCM fee purchase.281       **/282      limitedReserveTransferAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V0: any } | { V1: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array, weightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32, XcmV2WeightLimit]>;283      /**284       * Teleport some assets from the local chain to some destination chain.285       * 286       * Fee payment on the destination side is made from the first asset listed in the `assets` vector.287       * 288       * - `origin`: Must be capable of withdrawing the `assets` and executing XCM.289       * - `dest`: Destination context for the assets. Will typically be `X2(Parent, Parachain(..))` to send290       * from parachain to parachain, or `X1(Parachain(..))` to send from relay to parachain.291       * - `beneficiary`: A beneficiary location for the assets in the context of `dest`. Will generally be292       * an `AccountId32` value.293       * - `assets`: The assets to be withdrawn. The first item should be the currency used to to pay the fee on the294       * `dest` side. May not be empty.295       * - `fee_asset_item`: The index into `assets` of the item which should be used to pay296       * fees.297       * - `weight_limit`: The remote-side weight limit, if any, for the XCM fee purchase.298       **/299      limitedTeleportAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V0: any } | { V1: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array, weightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32, XcmV2WeightLimit]>;300      /**301       * Transfer some assets from the local chain to the sovereign account of a destination chain and forward302       * a notification XCM.303       * 304       * Fee payment on the destination side is made from the first asset listed in the `assets` vector and305       * fee-weight is calculated locally and thus remote weights are assumed to be equal to306       * local weights.307       * 308       * - `origin`: Must be capable of withdrawing the `assets` and executing XCM.309       * - `dest`: Destination context for the assets. Will typically be `X2(Parent, Parachain(..))` to send310       * from parachain to parachain, or `X1(Parachain(..))` to send from relay to parachain.311       * - `beneficiary`: A beneficiary location for the assets in the context of `dest`. Will generally be312       * an `AccountId32` value.313       * - `assets`: The assets to be withdrawn. This should include the assets used to pay the fee on the314       * `dest` side.315       * - `fee_asset_item`: The index into `assets` of the item which should be used to pay316       * fees.317       **/318      reserveTransferAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V0: any } | { V1: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32]>;319      send: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, message: XcmVersionedXcm | { V0: any } | { V1: any } | { V2: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedXcm]>;320      /**321       * Teleport some assets from the local chain to some destination chain.322       * 323       * Fee payment on the destination side is made from the first asset listed in the `assets` vector and324       * fee-weight is calculated locally and thus remote weights are assumed to be equal to325       * local weights.326       * 327       * - `origin`: Must be capable of withdrawing the `assets` and executing XCM.328       * - `dest`: Destination context for the assets. Will typically be `X2(Parent, Parachain(..))` to send329       * from parachain to parachain, or `X1(Parachain(..))` to send from relay to parachain.330       * - `beneficiary`: A beneficiary location for the assets in the context of `dest`. Will generally be331       * an `AccountId32` value.332       * - `assets`: The assets to be withdrawn. The first item should be the currency used to to pay the fee on the333       * `dest` side. May not be empty.334       * - `fee_asset_item`: The index into `assets` of the item which should be used to pay335       * fees.336       **/337      teleportAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V0: any } | { V1: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32]>;338      /**339       * Generic tx340       **/341      [key: string]: SubmittableExtrinsicFunction<ApiType>;342    };343    sudo: {344      /**345       * Authenticates the current sudo key and sets the given AccountId (`new`) as the new sudo346       * key.347       * 348       * The dispatch origin for this call must be _Signed_.349       * 350       * # <weight>351       * - O(1).352       * - Limited storage reads.353       * - One DB change.354       * # </weight>355       **/356      setKey: AugmentedSubmittable<(updated: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;357      /**358       * Authenticates the sudo key and dispatches a function call with `Root` origin.359       * 360       * The dispatch origin for this call must be _Signed_.361       * 362       * # <weight>363       * - O(1).364       * - Limited storage reads.365       * - One DB write (event).366       * - Weight of derivative `call` execution + 10,000.367       * # </weight>368       **/369      sudo: AugmentedSubmittable<(call: Call | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call]>;370      /**371       * Authenticates the sudo key and dispatches a function call with `Signed` origin from372       * a given account.373       * 374       * The dispatch origin for this call must be _Signed_.375       * 376       * # <weight>377       * - O(1).378       * - Limited storage reads.379       * - One DB write (event).380       * - Weight of derivative `call` execution + 10,000.381       * # </weight>382       **/383      sudoAs: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, call: Call | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Call]>;384      /**385       * Authenticates the sudo key and dispatches a function call with `Root` origin.386       * This function does not check the weight of the call, and instead allows the387       * Sudo user to specify the weight of the call.388       * 389       * The dispatch origin for this call must be _Signed_.390       * 391       * # <weight>392       * - O(1).393       * - The weight of this call is defined by the caller.394       * # </weight>395       **/396      sudoUncheckedWeight: AugmentedSubmittable<(call: Call | string | Uint8Array, weight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, u64]>;397      /**398       * Generic tx399       **/400      [key: string]: SubmittableExtrinsicFunction<ApiType>;401    };402    system: {403      /**404       * A dispatch that will fill the block weight up to the given ratio.405       **/406      fillBlock: AugmentedSubmittable<(ratio: Perbill | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Perbill]>;407      /**408       * Kill all storage items with a key that starts with the given prefix.409       * 410       * **NOTE:** We rely on the Root origin to provide us the number of subkeys under411       * the prefix we are removing to accurately calculate the weight of this function.412       **/413      killPrefix: AugmentedSubmittable<(prefix: Bytes | string | Uint8Array, subkeys: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes, u32]>;414      /**415       * Kill some items from storage.416       **/417      killStorage: AugmentedSubmittable<(keys: Vec<Bytes> | (Bytes | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Bytes>]>;418      /**419       * Make some on-chain remark.420       * 421       * # <weight>422       * - `O(1)`423       * # </weight>424       **/425      remark: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;426      /**427       * Make some on-chain remark and emit event.428       **/429      remarkWithEvent: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;430      /**431       * Set the new runtime code.432       * 433       * # <weight>434       * - `O(C + S)` where `C` length of `code` and `S` complexity of `can_set_code`435       * - 1 call to `can_set_code`: `O(S)` (calls `sp_io::misc::runtime_version` which is436       * expensive).437       * - 1 storage write (codec `O(C)`).438       * - 1 digest item.439       * - 1 event.440       * The weight of this function is dependent on the runtime, but generally this is very441       * expensive. We will treat this as a full block.442       * # </weight>443       **/444      setCode: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;445      /**446       * Set the new runtime code without doing any checks of the given `code`.447       * 448       * # <weight>449       * - `O(C)` where `C` length of `code`450       * - 1 storage write (codec `O(C)`).451       * - 1 digest item.452       * - 1 event.453       * The weight of this function is dependent on the runtime. We will treat this as a full454       * block. # </weight>455       **/456      setCodeWithoutChecks: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;457      /**458       * Set the number of pages in the WebAssembly environment's heap.459       **/460      setHeapPages: AugmentedSubmittable<(pages: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;461      /**462       * Set some items of storage.463       **/464      setStorage: AugmentedSubmittable<(items: Vec<ITuple<[Bytes, Bytes]>> | ([Bytes | string | Uint8Array, Bytes | string | Uint8Array])[]) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[Bytes, Bytes]>>]>;465      /**466       * Generic tx467       **/468      [key: string]: SubmittableExtrinsicFunction<ApiType>;469    };470    timestamp: {471      /**472       * Set the current time.473       * 474       * This call should be invoked exactly once per block. It will panic at the finalization475       * phase, if this call hasn't been invoked by that time.476       * 477       * The timestamp should be greater than the previous one by the amount specified by478       * `MinimumPeriod`.479       * 480       * The dispatch origin for this call must be `Inherent`.481       * 482       * # <weight>483       * - `O(1)` (Note that implementations of `OnTimestampSet` must also be `O(1)`)484       * - 1 storage read and 1 storage mutation (codec `O(1)`). (because of `DidUpdate::take` in485       * `on_finalize`)486       * - 1 event handler `on_timestamp_set`. Must be `O(1)`.487       * # </weight>488       **/489      set: AugmentedSubmittable<(now: Compact<u64> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u64>]>;490      /**491       * Generic tx492       **/493      [key: string]: SubmittableExtrinsicFunction<ApiType>;494    };495    treasury: {496      /**497       * Approve a proposal. At a later time, the proposal will be allocated to the beneficiary498       * and the original deposit will be returned.499       * 500       * May only be called from `T::ApproveOrigin`.501       * 502       * # <weight>503       * - Complexity: O(1).504       * - DbReads: `Proposals`, `Approvals`505       * - DbWrite: `Approvals`506       * # </weight>507       **/508      approveProposal: AugmentedSubmittable<(proposalId: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>]>;509      /**510       * Put forward a suggestion for spending. A deposit proportional to the value511       * is reserved and slashed if the proposal is rejected. It is returned once the512       * proposal is awarded.513       * 514       * # <weight>515       * - Complexity: O(1)516       * - DbReads: `ProposalCount`, `origin account`517       * - DbWrites: `ProposalCount`, `Proposals`, `origin account`518       * # </weight>519       **/520      proposeSpend: AugmentedSubmittable<(value: Compact<u128> | AnyNumber | Uint8Array, beneficiary: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, MultiAddress]>;521      /**522       * Reject a proposed spend. The original deposit will be slashed.523       * 524       * May only be called from `T::RejectOrigin`.525       * 526       * # <weight>527       * - Complexity: O(1)528       * - DbReads: `Proposals`, `rejected proposer account`529       * - DbWrites: `Proposals`, `rejected proposer account`530       * # </weight>531       **/532      rejectProposal: AugmentedSubmittable<(proposalId: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>]>;533      /**534       * Generic tx535       **/536      [key: string]: SubmittableExtrinsicFunction<ApiType>;537    };538    unique: {539      /**540       * Adds an admin of the Collection.541       * NFT Collection can be controlled by multiple admin addresses (some which can also be servers, for example). Admins can issue and burn NFTs, as well as add and remove other admins, but cannot change NFT or Collection ownership.542       * 543       * # Permissions544       * 545       * * Collection Owner.546       * * Collection Admin.547       * 548       * # Arguments549       * 550       * * collection_id: ID of the Collection to add admin for.551       * 552       * * new_admin_id: Address of new admin to add.553       **/554      addCollectionAdmin: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, newAdminId: PalletCommonAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, PalletCommonAccountBasicCrossAccountIdRepr]>;555      /**556       * Add an address to allow list.557       * 558       * # Permissions559       * 560       * * Collection Owner561       * * Collection Admin562       * 563       * # Arguments564       * 565       * * collection_id.566       * 567       * * address.568       **/569      addToAllowList: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, address: PalletCommonAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, PalletCommonAccountBasicCrossAccountIdRepr]>;570      /**571       * Set, change, or remove approved address to transfer the ownership of the NFT.572       * 573       * # Permissions574       * 575       * * Collection Owner576       * * Collection Admin577       * * Current NFT owner578       * 579       * # Arguments580       * 581       * * approved: Address that is approved to transfer this NFT or zero (if needed to remove approval).582       * 583       * * collection_id.584       * 585       * * item_id: ID of the item.586       **/587      approve: AugmentedSubmittable<(spender: PalletCommonAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array, collectionId: u32 | AnyNumber | Uint8Array, itemId: u32 | AnyNumber | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletCommonAccountBasicCrossAccountIdRepr, u32, u32, u128]>;588      /**589       * Destroys a concrete instance of NFT on behalf of the owner590       * See also: [`approve`]591       * 592       * # Permissions593       * 594       * * Collection Owner.595       * * Collection Admin.596       * * Current NFT Owner.597       * 598       * # Arguments599       * 600       * * collection_id: ID of the collection.601       * 602       * * item_id: ID of NFT to burn.603       * 604       * * from: owner of item605       **/606      burnFrom: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, from: PalletCommonAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array, itemId: u32 | AnyNumber | Uint8Array, value: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, PalletCommonAccountBasicCrossAccountIdRepr, u32, u128]>;607      /**608       * Destroys a concrete instance of NFT.609       * 610       * # Permissions611       * 612       * * Collection Owner.613       * * Collection Admin.614       * * Current NFT Owner.615       * 616       * # Arguments617       * 618       * * collection_id: ID of the collection.619       * 620       * * item_id: ID of NFT to burn.621       **/622      burnItem: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, itemId: u32 | AnyNumber | Uint8Array, value: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, u128]>;623      /**624       * Change the owner of the collection.625       * 626       * # Permissions627       * 628       * * Collection Owner.629       * 630       * # Arguments631       * 632       * * collection_id.633       * 634       * * new_owner.635       **/636      changeCollectionOwner: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, newOwner: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, AccountId32]>;637      /**638       * # Permissions639       * 640       * * Sponsor.641       * 642       * # Arguments643       * 644       * * collection_id.645       **/646      confirmSponsorship: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;647      /**648       * This method creates a Collection of NFTs. Each Token may have multiple properties encoded as an array of bytes of certain length. The initial owner of the collection is set to the address that signed the transaction and can be changed later.649       * 650       * # Permissions651       * 652       * * Anyone.653       * 654       * # Arguments655       * 656       * * collection_name: UTF-16 string with collection name (limit 64 characters), will be stored as zero-terminated.657       * 658       * * collection_description: UTF-16 string with collection description (limit 256 characters), will be stored as zero-terminated.659       * 660       * * token_prefix: UTF-8 string with token prefix.661       * 662       * * mode: [CollectionMode] collection type and type dependent data.663       **/664      createCollection: AugmentedSubmittable<(collectionName: Vec<u16> | (u16 | AnyNumber | Uint8Array)[], collectionDescription: Vec<u16> | (u16 | AnyNumber | Uint8Array)[], tokenPrefix: Bytes | string | Uint8Array, mode: UpDataStructsCollectionMode | { NFT: any } | { Fungible: any } | { ReFungible: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<u16>, Vec<u16>, Bytes, UpDataStructsCollectionMode]>;665      /**666       * This method creates a collection667       * 668       * Prefer it to deprecated [`created_collection`] method669       **/670      createCollectionEx: AugmentedSubmittable<(data: UpDataStructsCreateCollectionData | { mode?: any; access?: any; name?: any; description?: any; tokenPrefix?: any; offchainSchema?: any; schemaVersion?: any; pendingSponsor?: any; limits?: any; variableOnChainSchema?: any; constOnChainSchema?: any; metaUpdatePermission?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [UpDataStructsCreateCollectionData]>;671      /**672       * This method creates a concrete instance of NFT Collection created with CreateCollection method.673       * 674       * # Permissions675       * 676       * * Collection Owner.677       * * Collection Admin.678       * * Anyone if679       * * Allow List is enabled, and680       * * Address is added to allow list, and681       * * MintPermission is enabled (see SetMintPermission method)682       * 683       * # Arguments684       * 685       * * collection_id: ID of the collection.686       * 687       * * owner: Address, initial owner of the NFT.688       * 689       * * data: Token data to store on chain.690       **/691      createItem: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, owner: PalletCommonAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array, data: UpDataStructsCreateItemData | { NFT: any } | { Fungible: any } | { ReFungible: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, PalletCommonAccountBasicCrossAccountIdRepr, UpDataStructsCreateItemData]>;692      /**693       * This method creates multiple items in a collection created with CreateCollection method.694       * 695       * # Permissions696       * 697       * * Collection Owner.698       * * Collection Admin.699       * * Anyone if700       * * Allow List is enabled, and701       * * Address is added to allow list, and702       * * MintPermission is enabled (see SetMintPermission method)703       * 704       * # Arguments705       * 706       * * collection_id: ID of the collection.707       * 708       * * itemsData: Array items properties. Each property is an array of bytes itself, see [create_item].709       * 710       * * owner: Address, initial owner of the NFT.711       **/712      createMultipleItems: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, owner: PalletCommonAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array, itemsData: Vec<UpDataStructsCreateItemData> | (UpDataStructsCreateItemData | { NFT: any } | { Fungible: any } | { ReFungible: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [u32, PalletCommonAccountBasicCrossAccountIdRepr, Vec<UpDataStructsCreateItemData>]>;713      createMultipleItemsEx: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, data: UpDataStructsCreateItemExData | { NFT: any } | { Fungible: any } | { RefungibleMultipleItems: any } | { RefungibleMultipleOwners: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, UpDataStructsCreateItemExData]>;714      /**715       * **DANGEROUS**: Destroys collection and all NFTs within this collection. Users irrecoverably lose their assets and may lose real money.716       * 717       * # Permissions718       * 719       * * Collection Owner.720       * 721       * # Arguments722       * 723       * * collection_id: collection to destroy.724       **/725      destroyCollection: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;726      /**727       * Remove admin address of the Collection. An admin address can remove itself. List of admins may become empty, in which case only Collection Owner will be able to add an Admin.728       * 729       * # Permissions730       * 731       * * Collection Owner.732       * * Collection Admin.733       * 734       * # Arguments735       * 736       * * collection_id: ID of the Collection to remove admin for.737       * 738       * * account_id: Address of admin to remove.739       **/740      removeCollectionAdmin: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, accountId: PalletCommonAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, PalletCommonAccountBasicCrossAccountIdRepr]>;741      /**742       * Switch back to pay-per-own-transaction model.743       * 744       * # Permissions745       * 746       * * Collection owner.747       * 748       * # Arguments749       * 750       * * collection_id.751       **/752      removeCollectionSponsor: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;753      /**754       * Remove an address from allow list.755       * 756       * # Permissions757       * 758       * * Collection Owner759       * * Collection Admin760       * 761       * # Arguments762       * 763       * * collection_id.764       * 765       * * address.766       **/767      removeFromAllowList: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, address: PalletCommonAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, PalletCommonAccountBasicCrossAccountIdRepr]>;768      setCollectionLimits: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, newLimit: UpDataStructsCollectionLimits | { accountTokenOwnershipLimit?: any; sponsoredDataSize?: any; sponsoredDataRateLimit?: any; tokenLimit?: any; sponsorTransferTimeout?: any; sponsorApproveTimeout?: any; ownerCanTransfer?: any; ownerCanDestroy?: any; transfersEnabled?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, UpDataStructsCollectionLimits]>;769      /**770       * # Permissions771       * 772       * * Collection Owner773       * 774       * # Arguments775       * 776       * * collection_id.777       * 778       * * new_sponsor.779       **/780      setCollectionSponsor: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, newSponsor: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, AccountId32]>;781      /**782       * Set const on-chain data schema.783       * 784       * # Permissions785       * 786       * * Collection Owner787       * * Collection Admin788       * 789       * # Arguments790       * 791       * * collection_id.792       * 793       * * schema: String representing the const on-chain data schema.794       **/795      setConstOnChainSchema: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, schema: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Bytes]>;796      /**797       * Set meta_update_permission value for particular collection798       * 799       * # Permissions800       * 801       * * Collection Owner.802       * 803       * # Arguments804       * 805       * * collection_id: ID of the collection.806       * 807       * * value: New flag value.808       **/809      setMetaUpdatePermissionFlag: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, value: UpDataStructsMetaUpdatePermission | 'ItemOwner' | 'Admin' | 'None' | number | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, UpDataStructsMetaUpdatePermission]>;810      /**811       * Allows Anyone to create tokens if:812       * * Allow List is enabled, and813       * * Address is added to allow list, and814       * * This method was called with True parameter815       * 816       * # Permissions817       * * Collection Owner818       * 819       * # Arguments820       * 821       * * collection_id.822       * 823       * * mint_permission: Boolean parameter. If True, allows minting to Anyone with conditions above.824       **/825      setMintPermission: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, mintPermission: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, bool]>;826      /**827       * Set off-chain data schema.828       * 829       * # Permissions830       * 831       * * Collection Owner832       * * Collection Admin833       * 834       * # Arguments835       * 836       * * collection_id.837       * 838       * * schema: String representing the offchain data schema.839       **/840      setOffchainSchema: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, schema: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Bytes]>;841      /**842       * Toggle between normal and allow list access for the methods with access for `Anyone`.843       * 844       * # Permissions845       * 846       * * Collection Owner.847       * 848       * # Arguments849       * 850       * * collection_id.851       * 852       * * mode: [AccessMode]853       **/854      setPublicAccessMode: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, mode: UpDataStructsAccessMode | 'Normal' | 'AllowList' | number | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, UpDataStructsAccessMode]>;855      /**856       * Set schema standard857       * ImageURL858       * Unique859       * 860       * # Permissions861       * 862       * * Collection Owner863       * * Collection Admin864       * 865       * # Arguments866       * 867       * * collection_id.868       * 869       * * schema: SchemaVersion: enum870       **/871      setSchemaVersion: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, version: UpDataStructsSchemaVersion | 'ImageURL' | 'Unique' | number | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, UpDataStructsSchemaVersion]>;872      /**873       * Set transfers_enabled value for particular collection874       * 875       * # Permissions876       * 877       * * Collection Owner.878       * 879       * # Arguments880       * 881       * * collection_id: ID of the collection.882       * 883       * * value: New flag value.884       **/885      setTransfersEnabledFlag: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, value: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, bool]>;886      /**887       * Set off-chain data schema.888       * 889       * # Permissions890       * 891       * * Collection Owner892       * * Collection Admin893       * 894       * # Arguments895       * 896       * * collection_id.897       * 898       * * schema: String representing the offchain data schema.899       **/900      setVariableMetaData: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, itemId: u32 | AnyNumber | Uint8Array, data: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32, Bytes]>;901      /**902       * Set variable on-chain data schema.903       * 904       * # Permissions905       * 906       * * Collection Owner907       * * Collection Admin908       * 909       * # Arguments910       * 911       * * collection_id.912       * 913       * * schema: String representing the variable on-chain data schema.914       **/915      setVariableOnChainSchema: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, schema: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Bytes]>;916      /**917       * Change ownership of the token.918       * 919       * # Permissions920       * 921       * * Collection Owner922       * * Collection Admin923       * * Current NFT owner924       * 925       * # Arguments926       * 927       * * recipient: Address of token recipient.928       * 929       * * collection_id.930       * 931       * * item_id: ID of the item932       * * Non-Fungible Mode: Required.933       * * Fungible Mode: Ignored.934       * * Re-Fungible Mode: Required.935       * 936       * * value: Amount to transfer.937       * * Non-Fungible Mode: Ignored938       * * Fungible Mode: Must specify transferred amount939       * * Re-Fungible Mode: Must specify transferred portion (between 0 and 1)940       **/941      transfer: AugmentedSubmittable<(recipient: PalletCommonAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array, collectionId: u32 | AnyNumber | Uint8Array, itemId: u32 | AnyNumber | Uint8Array, value: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletCommonAccountBasicCrossAccountIdRepr, u32, u32, u128]>;942      /**943       * Change ownership of a NFT on behalf of the owner. See Approve method for additional information. After this method executes, the approval is removed so that the approved address will not be able to transfer this NFT again from this owner.944       * 945       * # Permissions946       * * Collection Owner947       * * Collection Admin948       * * Current NFT owner949       * * Address approved by current NFT owner950       * 951       * # Arguments952       * 953       * * from: Address that owns token.954       * 955       * * recipient: Address of token recipient.956       * 957       * * collection_id.958       * 959       * * item_id: ID of the item.960       * 961       * * value: Amount to transfer.962       **/963      transferFrom: AugmentedSubmittable<(from: PalletCommonAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array, recipient: PalletCommonAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array, collectionId: u32 | AnyNumber | Uint8Array, itemId: u32 | AnyNumber | Uint8Array, value: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletCommonAccountBasicCrossAccountIdRepr, PalletCommonAccountBasicCrossAccountIdRepr, u32, u32, u128]>;964      /**965       * Generic tx966       **/967      [key: string]: SubmittableExtrinsicFunction<ApiType>;968    };969    vesting: {970      claim: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;971      claimFor: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;972      updateVestingSchedules: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, vestingSchedules: Vec<OrmlVestingVestingSchedule> | (OrmlVestingVestingSchedule | { start?: any; period?: any; periodCount?: any; perPeriod?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [MultiAddress, Vec<OrmlVestingVestingSchedule>]>;973      vestedTransfer: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, schedule: OrmlVestingVestingSchedule | { start?: any; period?: any; periodCount?: any; perPeriod?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, OrmlVestingVestingSchedule]>;974      /**975       * Generic tx976       **/977      [key: string]: SubmittableExtrinsicFunction<ApiType>;978    };979    xcmpQueue: {980      /**981       * Resumes all XCM executions for the XCMP queue.982       * 983       * Note that this function doesn't change the status of the in/out bound channels.984       * 985       * - `origin`: Must pass `ControllerOrigin`.986       **/987      resumeXcmExecution: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;988      /**989       * Services a single overweight XCM.990       * 991       * - `origin`: Must pass `ExecuteOverweightOrigin`.992       * - `index`: The index of the overweight XCM to service993       * - `weight_limit`: The amount of weight that XCM execution may take.994       * 995       * Errors:996       * - `BadOverweightIndex`: XCM under `index` is not found in the `Overweight` storage map.997       * - `BadXcm`: XCM under `index` cannot be properly decoded into a valid XCM format.998       * - `WeightOverLimit`: XCM execution may use greater `weight_limit`.999       * 1000       * Events:1001       * - `OverweightServiced`: On success.1002       **/1003      serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, u64]>;1004      /**1005       * Suspends all XCM executions for the XCMP queue, regardless of the sender's origin.1006       * 1007       * - `origin`: Must pass `ControllerOrigin`.1008       **/1009      suspendXcmExecution: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;1010      /**1011       * Overwrites the number of pages of messages which must be in the queue after which we drop any further1012       * messages from the channel.1013       * 1014       * - `origin`: Must pass `Root`.1015       * - `new`: Desired value for `QueueConfigData.drop_threshold`1016       **/1017      updateDropThreshold: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;1018      /**1019       * Overwrites the number of pages of messages which the queue must be reduced to before it signals that1020       * message sending may recommence after it has been suspended.1021       * 1022       * - `origin`: Must pass `Root`.1023       * - `new`: Desired value for `QueueConfigData.resume_threshold`1024       **/1025      updateResumeThreshold: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;1026      /**1027       * Overwrites the number of pages of messages which must be in the queue for the other side to be told to1028       * suspend their sending.1029       * 1030       * - `origin`: Must pass `Root`.1031       * - `new`: Desired value for `QueueConfigData.suspend_value`1032       **/1033      updateSuspendThreshold: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;1034      /**1035       * Overwrites the amount of remaining weight under which we stop processing messages.1036       * 1037       * - `origin`: Must pass `Root`.1038       * - `new`: Desired value for `QueueConfigData.threshold_weight`1039       **/1040      updateThresholdWeight: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;1041      /**1042       * Overwrites the speed to which the available weight approaches the maximum weight.1043       * A lower number results in a faster progression. A value of 1 makes the entire weight available initially.1044       * 1045       * - `origin`: Must pass `Root`.1046       * - `new`: Desired value for `QueueConfigData.weight_restrict_decay`.1047       **/1048      updateWeightRestrictDecay: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;1049      /**1050       * Overwrite the maximum amount of weight any individual message may consume.1051       * Messages above this weight go into the overweight queue and may only be serviced explicitly.1052       * 1053       * - `origin`: Must pass `Root`.1054       * - `new`: Desired value for `QueueConfigData.xcmp_max_individual_weight`.1055       **/1056      updateXcmpMaxIndividualWeight: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;1057      /**1058       * Generic tx1059       **/1060      [key: string]: SubmittableExtrinsicFunction<ApiType>;1061    };1062  } // AugmentedSubmittables1063} // declare module