diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f246b96..b5d09fbe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.1](https://github.com/paritytech/asset-transfer-api/compare/v0.2.0..v0.2.1) + +### Fix + +- fix: explicitly use passed in dest locations for bridgeTransfers ([#406](https://github.com/paritytech/asset-transfer-api/pull/406))([b3a199a](https://github.com/paritytech/asset-transfer-api/commit/b3a199ace74bc951abe9045d70110c1b9eac8089)) + + ## [0.2.0](https://github.com/paritytech/asset-transfer-api/compare/v0.2.0-beta.2..v0.2.0) ### Chore diff --git a/docs/classes/AssetTransferApi.AssetTransferApi.html b/docs/classes/AssetTransferApi.AssetTransferApi.html index 421c7747..4bfea116 100644 --- a/docs/classes/AssetTransferApi.AssetTransferApi.html +++ b/docs/classes/AssetTransferApi.AssetTransferApi.html @@ -1,8 +1,8 @@ -AssetTransferApi | @substrate/asset-transfer-api - v0.2.0

Holds open an api connection to a specified chain within the ApiPromise in order to help +AssetTransferApi | @substrate/asset-transfer-api - v0.2.1

Holds open an api connection to a specified chain within the ApiPromise in order to help construct transactions for assets and estimating fees.

import { AssetTransferApi, constructApiPromise } from '@substrate/asset-transfer-api'

const main = () => {
const { api, specName, safeXcmVersion } = await constructApiPromise('wss://some_ws_url');
const assetsApi = new AssetTransferApi(api, specName, safeXcmVersion);
}
-

Methods

Methods

  • amounts: string[]

    Array of the amounts of each trapped asset to be claimed

  • beneficiary: string

    Address of the account to receive the trapped assets

  • opts: TransferArgsOpts<T>

    Options

    -
  • Returns Promise<TxResult<T>>

    • Create an asset transfer transaction. This can be either locally on a systems parachain or relay chain, +

    Returns Promise<TxResult<T>>

    • Create an asset transfer transaction. This can be either locally on a systems parachain or relay chain, or between chains using xcm.

      import { TxResult } from '@substrate/asset-transfer-api'

      let callInfo: TxResult<'call'>;
      try {
      callInfo = await assetsApi.createTransferTransaction(
      '1000',
      '5EWNeodpcQ6iYibJ3jmWVe85nsok1EDG8Kk3aFg8ZzpfY1qX',
      ['WND'],
      ['1000000000000'],
      {
      format: 'call',
      xcmVersion: 2,
      }
      )
      } catch (e) {
      console.error(e);
      throw Error(e);
      }
      @@ -23,17 +23,17 @@
    • assetIds: string[]

      Array of assetId's to be transferred

    • amounts: string[]

      Array of the amounts of each token to transfer

    • opts: TransferArgsOpts<T> = {}

      Options

      -

    Returns Promise<TxResult<T>>

    • Decodes the hex of an extrinsic into a string readable format.

      +

    Returns Promise<TxResult<T>>

    Returns string

    Returns Promise<null | RuntimeDispatchInfo | RuntimeDispatchInfoV1>

    \ No newline at end of file +

    Returns Promise<void>

    \ No newline at end of file diff --git a/docs/enums/errors_BaseError.BaseErrorsEnum.html b/docs/enums/errors_BaseError.BaseErrorsEnum.html index 9980db1c..a9d51831 100644 --- a/docs/enums/errors_BaseError.BaseErrorsEnum.html +++ b/docs/enums/errors_BaseError.BaseErrorsEnum.html @@ -1,5 +1,5 @@ -BaseErrorsEnum | @substrate/asset-transfer-api - v0.2.0

    Errors that may be returned by the API.

    -

    Enumeration Members

    AssetNotFound +BaseErrorsEnum | @substrate/asset-transfer-api - v0.2.1

    Errors that may be returned by the API.

    +

    Enumeration Members

    AssetNotFound: "AssetNotFound"

    Not able to find the asset.

    -
    DisabledOption: "DisabledOption"

    The following option is disabled given the inputs.

    -
    InternalError: "InternalError"

    An issue has happened internally.

    -
    InvalidAddress: "InvalidAddress"

    The inputted address is invalid.

    -
    InvalidAsset: "InvalidAsset"

    The inputted asset is incorrect or invalid, and does not exist given the surrounding specs. +

    DisabledOption: "DisabledOption"

    The following option is disabled given the inputs.

    +
    InternalError: "InternalError"

    An issue has happened internally.

    +
    InvalidAddress: "InvalidAddress"

    The inputted address is invalid.

    +
    InvalidAsset: "InvalidAsset"

    The inputted asset is incorrect or invalid, and does not exist given the surrounding specs. This exlcudes MultiLocation assets which are handled using InvalidMultiLocationAsset.

    -
    InvalidDirection: "InvalidDirection"

    The direction in which these assets are going to be sent is incorrect.

    -
    InvalidInput: "InvalidInput"

    An input or lack of input to any public facing function by the user is incorrect, and or invalid. +

    InvalidDirection: "InvalidDirection"

    The direction in which these assets are going to be sent is incorrect.

    +
    InvalidInput: "InvalidInput"

    An input or lack of input to any public facing function by the user is incorrect, and or invalid. This may include using options incorrectly.

    -
    InvalidMultiLocationAsset: "InvalidMultiLocationAsset"

    The inputted multilocation is incorrect.

    -
    InvalidPallet: "InvalidPallet"

    The following pallet does not support the method to be used.

    -
    InvalidXcmVersion: "InvalidXcmVersion"

    The xcm version is invalid.

    -
    MultipleNonUniqueAssetsFound: "MultipleNonUniqueAssetsFound"

    Multiple assets have been found for a single token symbol.

    -
    NoFeeAssetLpFound: "NoFeeAssetLpFound"

    The provided paysWithFeeOrigin asset has no liquidity pool.

    -
    NotImplemented: "NotImplemented"

    Not Implemented yet.

    -
    PalletNotFound: "PalletNotFound"

    The following pallet is not found.

    -
    RegistryNotFound: "RegistryNotFound"

    Not able to find the pertinent registry to gather certain information. This can refer to xcAssets.

    -
    RuntimeCallNotFound: "RuntimeCallNotFound"

    Did not find the correct call in the current runtime.

    -
    SpecNameNotProvided: "SpecNameNotProvided"

    The specName was not provided when injecting a new chain in the registry.

    -
    TokensNotProvided: "TokensNotProvided"

    The tokens were not provided when injecting a new chain in the registry.

    -
    UnknownConsensusSystem: "UnknownConsensusSystem"

    Did not find a known consensus system for bridge transaction.

    -
    UnsupportedEnvironment: "UnsupportedEnvironment"

    The provided JS environment is not supported, and the api will not run.

    -
    \ No newline at end of file +
    InvalidMultiLocationAsset: "InvalidMultiLocationAsset"

    The inputted multilocation is incorrect.

    +
    InvalidPallet: "InvalidPallet"

    The following pallet does not support the method to be used.

    +
    InvalidXcmVersion: "InvalidXcmVersion"

    The xcm version is invalid.

    +
    MultipleNonUniqueAssetsFound: "MultipleNonUniqueAssetsFound"

    Multiple assets have been found for a single token symbol.

    +
    NoFeeAssetLpFound: "NoFeeAssetLpFound"

    The provided paysWithFeeOrigin asset has no liquidity pool.

    +
    NotImplemented: "NotImplemented"

    Not Implemented yet.

    +
    PalletNotFound: "PalletNotFound"

    The following pallet is not found.

    +
    RegistryNotFound: "RegistryNotFound"

    Not able to find the pertinent registry to gather certain information. This can refer to xcAssets.

    +
    RuntimeCallNotFound: "RuntimeCallNotFound"

    Did not find the correct call in the current runtime.

    +
    SpecNameNotProvided: "SpecNameNotProvided"

    The specName was not provided when injecting a new chain in the registry.

    +
    TokensNotProvided: "TokensNotProvided"

    The tokens were not provided when injecting a new chain in the registry.

    +
    UnknownConsensusSystem: "UnknownConsensusSystem"

    Did not find a known consensus system for bridge transaction.

    +
    UnsupportedEnvironment: "UnsupportedEnvironment"

    The provided JS environment is not supported, and the api will not run.

    +
    \ No newline at end of file diff --git a/docs/enums/types.Direction.html b/docs/enums/types.Direction.html index f2de8a83..5b3238ec 100644 --- a/docs/enums/types.Direction.html +++ b/docs/enums/types.Direction.html @@ -1,5 +1,5 @@ -Direction | @substrate/asset-transfer-api - v0.2.0

    Represents all possible tx directions

    -

    Enumeration Members

    Local +Direction | @substrate/asset-transfer-api - v0.2.1

    Represents all possible tx directions

    +

    Enumeration Members

    Enumeration Members

    Local: "Local"

    Local tx

    -
    ParaToPara: "ParaToPara"

    Parachain to Parachain.

    -
    ParaToRelay: "ParaToRelay"

    Parachain to Relay chain.

    -
    ParaToSystem: "ParaToSystem"

    Parachain to System parachain.

    -
    RelayToPara: "RelayToPara"

    Relay chain to Parachain.

    -
    RelayToSystem: "RelayToSystem"

    Relay to System Parachain.

    -
    SystemToBridge: "SystemToBridge"

    System parachain to an external GlobalConsensus chain.

    -
    SystemToPara: "SystemToPara"

    System parachain to Parachain.

    -
    SystemToRelay: "SystemToRelay"

    System parachain to Relay chain.

    -
    SystemToSystem: "SystemToSystem"

    System parachain to System parachain chain.

    -
    \ No newline at end of file +
    ParaToPara: "ParaToPara"

    Parachain to Parachain.

    +
    ParaToRelay: "ParaToRelay"

    Parachain to Relay chain.

    +
    ParaToSystem: "ParaToSystem"

    Parachain to System parachain.

    +
    RelayToPara: "RelayToPara"

    Relay chain to Parachain.

    +
    RelayToSystem: "RelayToSystem"

    Relay to System Parachain.

    +
    SystemToBridge: "SystemToBridge"

    System parachain to an external GlobalConsensus chain.

    +
    SystemToPara: "SystemToPara"

    System parachain to Parachain.

    +
    SystemToRelay: "SystemToRelay"

    System parachain to Relay chain.

    +
    SystemToSystem: "SystemToSystem"

    System parachain to System parachain chain.

    +
    \ No newline at end of file diff --git a/docs/functions/constructApiPromise.constructApiPromise.html b/docs/functions/constructApiPromise.constructApiPromise.html index ca610563..07caaddc 100644 --- a/docs/functions/constructApiPromise.constructApiPromise.html +++ b/docs/functions/constructApiPromise.constructApiPromise.html @@ -1,6 +1,6 @@ -constructApiPromise | @substrate/asset-transfer-api - v0.2.0

    Returns Promise<ApiInfo>

    \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index fa96c62f..535573a1 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,4 +1,4 @@ -@substrate/asset-transfer-api - v0.2.0

    @substrate/asset-transfer-api - v0.2.0



    +@substrate/asset-transfer-api - v0.2.1

    @substrate/asset-transfer-api - v0.2.1



    @substrate/asset-transfer-api

    Asset API used for common good parachains

    @@ -147,4 +147,4 @@

    Asset API used for common good parachains

    Running Zombienet

    From the root directory run ./<zombienet_binary_name> -p native spawn ./zombienet/<network_file>.toml | tee zombienet.log

    Create an asset

    From the root directory run yarn start:zombienet-post-script. You can run this right after running your zombienet network.

    E2E Testing

    You can access the E2E tests and its documentation here.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/constructApiPromise.ApiInfo.html b/docs/interfaces/constructApiPromise.ApiInfo.html index 7cf3b01c..252fdea5 100644 --- a/docs/interfaces/constructApiPromise.ApiInfo.html +++ b/docs/interfaces/constructApiPromise.ApiInfo.html @@ -1,10 +1,10 @@ -ApiInfo | @substrate/asset-transfer-api - v0.2.0

    Return value for constructApiPromise

    -
    interface ApiInfo {
        api: ApiPromise;
        chainName: string;
        safeXcmVersion: number;
        specName: string;
    }

    Properties

    api +ApiInfo | @substrate/asset-transfer-api - v0.2.1

    Return value for constructApiPromise

    +
    interface ApiInfo {
        api: ApiPromise;
        chainName: string;
        safeXcmVersion: number;
        specName: string;
    }

    Properties

    api: ApiPromise

    Polkadot-js ApiPromise

    -
    chainName: string

    Chain name of the chain which the api is connected to.

    -
    safeXcmVersion: number

    SafeXcmVersion for the chain which the api is connected too.

    -
    specName: string

    SpecName of the chain which the api is connected to.

    -
    \ No newline at end of file +
    chainName: string

    Chain name of the chain which the api is connected to.

    +
    safeXcmVersion: number

    SafeXcmVersion for the chain which the api is connected too.

    +
    specName: string

    SpecName of the chain which the api is connected to.

    +
    \ No newline at end of file diff --git a/docs/interfaces/types.TransferArgsOpts.html b/docs/interfaces/types.TransferArgsOpts.html index 834bfd4b..12a98bc0 100644 --- a/docs/interfaces/types.TransferArgsOpts.html +++ b/docs/interfaces/types.TransferArgsOpts.html @@ -1,5 +1,5 @@ -TransferArgsOpts | @substrate/asset-transfer-api - v0.2.0

    The TransferArgsOpts are the options passed into createTransferTransaction.

    -
    interface TransferArgsOpts {
        assetTransferType?: string;
        customXcmOnDest?: string;
        feesTransferType?: string;
        format?: T;
        keepAlive?: boolean;
        paysWithFeeDest?: string;
        paysWithFeeOrigin?: string;
        remoteReserveAssetTransferTypeLocation?: string;
        remoteReserveFeesTransferTypeLocation?: string;
        sendersAddr?: string;
        transferLiquidToken?: boolean;
        weightLimit?: {
            proofSize?: string;
            refTime?: string;
        };
        xcmVersion?: number;
    }

    Type Parameters

    Properties

    assetTransferType? +TransferArgsOpts | @substrate/asset-transfer-api - v0.2.1

    The TransferArgsOpts are the options passed into createTransferTransaction.

    +
    interface TransferArgsOpts {
        assetTransferType?: string;
        customXcmOnDest?: string;
        feesTransferType?: string;
        format?: T;
        keepAlive?: boolean;
        paysWithFeeDest?: string;
        paysWithFeeOrigin?: string;
        remoteReserveAssetTransferTypeLocation?: string;
        remoteReserveFeesTransferTypeLocation?: string;
        sendersAddr?: string;
        transferLiquidToken?: boolean;
        weightLimit?: {
            proofSize?: string;
            refTime?: string;
        };
        xcmVersion?: number;
    }

    Type Parameters

    Properties

    assetTransferType?: string

    The XCM TransferType used to transfer assets. Provided to construct transferAssetsUsingTypeAndThen transactions.

    -
    customXcmOnDest?: string

    Optional custom XCM message to be executed on destination chain. +

    customXcmOnDest?: string

    Optional custom XCM message to be executed on destination chain. Should be provided if a custom xcm message is needed after transfering assets. Defaults to Xcm(vec![DepositAsset { assets: Wild(AllCounted(assets.len())), beneficiary }])

    -
    feesTransferType?: string

    The XCM TransferType used to pay fees for an XCM transfer. +

    feesTransferType?: string

    The XCM TransferType used to pay fees for an XCM transfer. Provided to construct transferAssetsUsingTypeAndThen transactions.

    -
    format?: T

    Option that specifies the format in which to return a transaction. +

    format?: T

    Option that specifies the format in which to return a transaction. It can either be a payload, call, or submittable.

    Note: A submittable will return a SubmittableExtrinsic polkadot-js type, whereas a payload or call will return a hex.

    -
    keepAlive?: boolean

    For creating local asset transfers, this will allow for a transferKeepAlive as oppose +

    keepAlive?: boolean

    For creating local asset transfers, this will allow for a transferKeepAlive as oppose to a transfer.

    -
    paysWithFeeDest?: string

    AssetId to pay fee's on the destination parachain.

    -
    paysWithFeeOrigin?: string

    AssetId to pay fee's on the current common good parachain. +

    paysWithFeeDest?: string

    AssetId to pay fee's on the destination parachain.

    +
    paysWithFeeOrigin?: string

    AssetId to pay fee's on the current common good parachain. Polkadot AssetHub: default DOT Kusama AssetHub: default KSM

    -
    remoteReserveAssetTransferTypeLocation?: string

    The RemoteReserve location for an XCM transfer. +

    remoteReserveAssetTransferTypeLocation?: string

    The RemoteReserve location for an XCM transfer. Should be provided when specifying an assetTransferType of RemoteReserve.

    -
    remoteReserveFeesTransferTypeLocation?: string

    The RemoteReserve location for an XCM transfers' fees. +

    remoteReserveFeesTransferTypeLocation?: string

    The RemoteReserve location for an XCM transfers' fees. Should be provided when specfying a feesTransferType of RemoteReserve.

    -
    sendersAddr?: string

    The SS58 Address the tx will be sent from. This is specifically used for the format payload. +

    sendersAddr?: string

    The SS58 Address the tx will be sent from. This is specifically used for the format payload. It is necessary because the payload will need information such as the nonce.

    -
    transferLiquidToken?: boolean

    Boolean to declare if this will transfer liquidity tokens. +

    transferLiquidToken?: boolean

    Boolean to declare if this will transfer liquidity tokens. Default is false.

    -
    weightLimit?: {
        proofSize?: string;
        refTime?: string;
    }

    Option for applying a custom weightLimit. +

    weightLimit?: {
        proofSize?: string;
        refTime?: string;
    }

    Option for applying a custom weightLimit. If not inputted it will default to Unlimited.

    Type declaration

    • Optional proofSize?: string

      Provided when creating limited txs, represents the amount of storage in bytes that can be used by the tx

    • Optional refTime?: string

      Provided when creating limited txs, represents the allowed amount of computation time the tx can use

      -
    xcmVersion?: number

    Set the xcmVersion for message construction. If this is not present a supported version +

    xcmVersion?: number

    Set the xcmVersion for message construction. If this is not present a supported version will be queried, and if there is no supported version a safe version will be queried.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/interfaces/types.TxResult.html b/docs/interfaces/types.TxResult.html index 5003256a..078ee7e8 100644 --- a/docs/interfaces/types.TxResult.html +++ b/docs/interfaces/types.TxResult.html @@ -1,6 +1,6 @@ -TxResult | @substrate/asset-transfer-api - v0.2.0

    The TxResult is the result of constructing a transaction. +TxResult | @substrate/asset-transfer-api - v0.2.1

    The TxResult is the result of constructing a transaction. T extends Format in the context of the options passed in for the Format the user expects.

    -
    interface TxResult {
        dest: string;
        direction: Direction | "local";
        format: Format | "local";
        method: Methods;
        origin: string;
        tx: ConstructedFormat<T>;
        xcmVersion: null | number;
    }

    Type Parameters

    • T

    Properties

    interface TxResult {
        dest: string;
        direction: Direction | "local";
        format: Format | "local";
        method: Methods;
        origin: string;
        tx: ConstructedFormat<T>;
        xcmVersion: null | number;
    }

    Type Parameters

    • T

    Properties

    Properties

    dest: string

    Description

    The destination specName of the transaction

    -
    direction: Direction | "local"

    Description

    The direction of the cross chain transfer.

    -
    format: Format | "local"

    Description

    The format type the tx is ouputted in.

    -
    method: Methods

    Description

    The method used in the transaction.

    -
    origin: string

    Description

    The origin specName of the transaction

    -

    Description

    The constructed transaction.

    -
    xcmVersion: null | number

    Description

    The xcm version that was used to construct the tx.

    -
    \ No newline at end of file +
    direction: Direction | "local"

    Description

    The direction of the cross chain transfer.

    +
    format: Format | "local"

    Description

    The format type the tx is ouputted in.

    +
    method: Methods

    Description

    The method used in the transaction.

    +
    origin: string

    Description

    The origin specName of the transaction

    +

    Description

    The constructed transaction.

    +
    xcmVersion: null | number

    Description

    The xcm version that was used to construct the tx.

    +
    \ No newline at end of file diff --git a/docs/modules/AssetTransferApi.html b/docs/modules/AssetTransferApi.html index e8eff1bf..bb0e0f14 100644 --- a/docs/modules/AssetTransferApi.html +++ b/docs/modules/AssetTransferApi.html @@ -1,2 +1,2 @@ -AssetTransferApi | @substrate/asset-transfer-api - v0.2.0

    Index

    Classes

    \ No newline at end of file +AssetTransferApi | @substrate/asset-transfer-api - v0.2.1

    Index

    Classes

    \ No newline at end of file diff --git a/docs/modules/constructApiPromise.html b/docs/modules/constructApiPromise.html index 8b1b354b..32f5736c 100644 --- a/docs/modules/constructApiPromise.html +++ b/docs/modules/constructApiPromise.html @@ -1,3 +1,3 @@ -constructApiPromise | @substrate/asset-transfer-api - v0.2.0

    Index

    Interfaces

    ApiInfo +constructApiPromise | @substrate/asset-transfer-api - v0.2.1
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/modules/errors_BaseError.html b/docs/modules/errors_BaseError.html index e2eb9aeb..d46af797 100644 --- a/docs/modules/errors_BaseError.html +++ b/docs/modules/errors_BaseError.html @@ -1,2 +1,2 @@ -errors/BaseError | @substrate/asset-transfer-api - v0.2.0

    Index

    Enumerations

    \ No newline at end of file +errors/BaseError | @substrate/asset-transfer-api - v0.2.1

    Index

    Enumerations

    \ No newline at end of file diff --git a/docs/modules/types.html b/docs/modules/types.html index b216bd0c..37925e37 100644 --- a/docs/modules/types.html +++ b/docs/modules/types.html @@ -1,4 +1,4 @@ -types | @substrate/asset-transfer-api - v0.2.0

    Index

    Enumerations

    Direction +types | @substrate/asset-transfer-api - v0.2.1
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/types/types.AssetTransferApiOpts.html b/docs/types/types.AssetTransferApiOpts.html index 5238f755..ae998c50 100644 --- a/docs/types/types.AssetTransferApiOpts.html +++ b/docs/types/types.AssetTransferApiOpts.html @@ -1,7 +1,7 @@ -AssetTransferApiOpts | @substrate/asset-transfer-api - v0.2.0
    AssetTransferApiOpts<T>: {
        chainName?: string;
        injectedRegistry?: RequireAtLeastOne<ChainInfoRegistry<T>>;
        overrideRegistry?: RequireAtLeastOne<ChainInfoRegistry<InjectedChainInfoKeys>>;
        registryType?: RegistryTypes;
    }

    Options that are appplied at initialization of the AssetTransferApi.

    +AssetTransferApiOpts | @substrate/asset-transfer-api - v0.2.1
    AssetTransferApiOpts<T>: {
        chainName?: string;
        injectedRegistry?: RequireAtLeastOne<ChainInfoRegistry<T>>;
        overrideRegistry?: RequireAtLeastOne<ChainInfoRegistry<InjectedChainInfoKeys>>;
        registryType?: RegistryTypes;
    }

    Options that are appplied at initialization of the AssetTransferApi.

    Type Parameters

    • T extends ChainInfoKeys | InjectedChainInfoKeys

    Type declaration

    • Optional chainName?: string

      Chain name of the chain which the api is connected to.

    • Optional injectedRegistry?: RequireAtLeastOne<ChainInfoRegistry<T>>

      Option to inject chain information into the registry.

    • Optional overrideRegistry?: RequireAtLeastOne<ChainInfoRegistry<InjectedChainInfoKeys>>

      Option to override the registry with the supplied chain information.

    • Optional registryType?: RegistryTypes

      Whether or not to apply the registry from the npm package asset-transfer-api-registry, or the hosted CDN which updates frequently.

      -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/types/types.ConstructedFormat.html b/docs/types/types.ConstructedFormat.html index c94c2c93..3d8f89b2 100644 --- a/docs/types/types.ConstructedFormat.html +++ b/docs/types/types.ConstructedFormat.html @@ -1,2 +1,2 @@ -ConstructedFormat | @substrate/asset-transfer-api - v0.2.0
    ConstructedFormat<T>: T extends "payload"
        ? GenericExtrinsicPayload
        : T extends "call"
            ? `0x${string}`
            : T extends "submittable"
                ? SubmittableExtrinsic<"promise", ISubmittableResult>
                : never

    The Format types possible for a constructed transaction.

    -

    Type Parameters

    • T

    \ No newline at end of file +ConstructedFormat | @substrate/asset-transfer-api - v0.2.1
    ConstructedFormat<T>: T extends "payload"
        ? GenericExtrinsicPayload
        : T extends "call"
            ? `0x${string}`
            : T extends "submittable"
                ? SubmittableExtrinsic<"promise", ISubmittableResult>
                : never

    The Format types possible for a constructed transaction.

    +

    Type Parameters

    • T

    \ No newline at end of file diff --git a/docs/types/types.Format.html b/docs/types/types.Format.html index 446f2321..a08cf8ab 100644 --- a/docs/types/types.Format.html +++ b/docs/types/types.Format.html @@ -1,7 +1,7 @@ -Format | @substrate/asset-transfer-api - v0.2.0
    Format: "payload" | "call" | "submittable"

    AssetTransferApi supports three formats to be returned:

    +Format | @substrate/asset-transfer-api - v0.2.1
    Format: "payload" | "call" | "submittable"

    AssetTransferApi supports three formats to be returned:

    • payload: This returns a Polkadot-js ExtrinsicPayload as a hex.
    • call: This returns a Polkadot-js Call as a hex.
    • submittable: This returns a Polkadot-js SubmittableExtrinsic.
    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/types/types.LocalTransferTypes.html b/docs/types/types.LocalTransferTypes.html index 841d1f4c..fcc22831 100644 --- a/docs/types/types.LocalTransferTypes.html +++ b/docs/types/types.LocalTransferTypes.html @@ -1,2 +1,2 @@ -LocalTransferTypes | @substrate/asset-transfer-api - v0.2.0
    LocalTransferTypes: "assets::transfer" | "assets::transferKeepAlive" | "foreignAssets::transfer" | "foreignAssets::transferKeepAlive" | "balances::transfer" | "balances::transferKeepAlive" | "poolAssets::transfer" | "poolAssets::transferKeepAlive" | "tokens::transfer" | "tokens::transferKeepAlive"

    The types of local transactions the api can construct.

    -
    \ No newline at end of file +LocalTransferTypes | @substrate/asset-transfer-api - v0.2.1
    LocalTransferTypes: "assets::transfer" | "assets::transferKeepAlive" | "foreignAssets::transfer" | "foreignAssets::transferKeepAlive" | "balances::transfer" | "balances::transferKeepAlive" | "poolAssets::transfer" | "poolAssets::transferKeepAlive" | "tokens::transfer" | "tokens::transferKeepAlive"

    The types of local transactions the api can construct.

    +
    \ No newline at end of file diff --git a/docs/types/types.Methods.html b/docs/types/types.Methods.html index 5110db12..03ecd9d4 100644 --- a/docs/types/types.Methods.html +++ b/docs/types/types.Methods.html @@ -1,2 +1,2 @@ -Methods | @substrate/asset-transfer-api - v0.2.0
    Methods: LocalTransferTypes | "transferAssets" | "transferAssetsUsingTypeAndThen" | "limitedReserveTransferAssets" | "limitedTeleportAssets" | "transferMultiasset" | "transferMultiassets" | "transferMultiassetWithFee" | "claimAssets"

    The Methods are the collections of methods the API will use to construct a transaction.

    -
    \ No newline at end of file +Methods | @substrate/asset-transfer-api - v0.2.1
    Methods: LocalTransferTypes | "transferAssets" | "transferAssetsUsingTypeAndThen" | "limitedReserveTransferAssets" | "limitedTeleportAssets" | "transferMultiasset" | "transferMultiassets" | "transferMultiassetWithFee" | "claimAssets"

    The Methods are the collections of methods the API will use to construct a transaction.

    +
    \ No newline at end of file diff --git a/docs/types/types.RegistryTypes.html b/docs/types/types.RegistryTypes.html index c17097fa..0127257b 100644 --- a/docs/types/types.RegistryTypes.html +++ b/docs/types/types.RegistryTypes.html @@ -1,4 +1,4 @@ -RegistryTypes | @substrate/asset-transfer-api - v0.2.0
    RegistryTypes: "CDN" | "NPM"

    Types that the registry can be initialized as.

    +RegistryTypes | @substrate/asset-transfer-api - v0.2.1
    RegistryTypes: "CDN" | "NPM"

    Types that the registry can be initialized as.

    CDN - The registry will be initialized with the up to date version given the CDN NPM - The registry will be initialized with the NPM version which is updated less frequently.

    -
    \ No newline at end of file +
    \ No newline at end of file diff --git a/docs/types/types.XcmDirection.html b/docs/types/types.XcmDirection.html index d39d7d66..cecf305f 100644 --- a/docs/types/types.XcmDirection.html +++ b/docs/types/types.XcmDirection.html @@ -1,2 +1,2 @@ -XcmDirection | @substrate/asset-transfer-api - v0.2.0
    XcmDirection: Exclude<Direction, "Local">

    The direction of the cross chain transfer. This only concerns XCM transactions.

    -
    \ No newline at end of file +XcmDirection | @substrate/asset-transfer-api - v0.2.1
    XcmDirection: Exclude<Direction, "Local">

    The direction of the cross chain transfer. This only concerns XCM transactions.

    +
    \ No newline at end of file diff --git a/package.json b/package.json index be84c71b..2bb8cee2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@substrate/asset-transfer-api", - "version": "0.2.0", + "version": "0.2.1", "description": "", "main": "lib/index.js", "scripts": {