/** * Cardano Wallet Backend API *

* * OpenAPI spec version: 2021.3.4 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { AxiosPromise, AxiosInstance } from 'axios'; import { Configuration } from '../configuration'; import { RequestArgs, BaseAPI } from '../base'; import { Body11 } from '../models'; import { InlineResponse2004 } from '../models'; import { InlineResponse2009 } from '../models'; /** * MigrationsApi - axios parameter creator * @export */ export declare const MigrationsApiAxiosParamCreator: (configuration?: Configuration) => { /** *

status: disabled

⚠️IMPORTANT⚠️ This endpoint has been temporarily disabled with the introduction of multi-assets UTxO. It will be enabled again soon.
Calculate the exact cost of sending all funds from particular Shelley wallet to a set of addresses. * @summary Calculate Cost * @param {string} walletId * @param {*} [options] Override http request option. * @throws {RequiredError} */ getShelleyWalletMigrationInfo: (walletId: string, options?: any) => Promise; /** *

status: disabled

⚠️IMPORTANT⚠️ This endpoint has been temporarily disabled with the introduction of multi-assets UTxO. It will be enabled again soon.
Submit one or more transactions which transfers all funds from a Shelley wallet to a set of addresses. This operation attempts to preserve the UTxO \"shape\" of a wallet as far as possible. That is, coins will not be agglomerated. Therefore, if the wallet has a large UTxO set, several transactions may be needed. A typical usage would be when one wants to move all funds from an old wallet to another by providing addresses coming from the new wallet. * @summary Migrate * @param {Body11} body * @param {string} walletId * @param {*} [options] Override http request option. * @throws {RequiredError} */ migrateShelleyWallet: (body: Body11, walletId: string, options?: any) => Promise; }; /** * MigrationsApi - functional programming interface * @export */ export declare const MigrationsApiFp: (configuration?: Configuration) => { /** *

status: disabled

⚠️IMPORTANT⚠️ This endpoint has been temporarily disabled with the introduction of multi-assets UTxO. It will be enabled again soon.
Calculate the exact cost of sending all funds from particular Shelley wallet to a set of addresses. * @summary Calculate Cost * @param {string} walletId * @param {*} [options] Override http request option. * @throws {RequiredError} */ getShelleyWalletMigrationInfo(walletId: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** *

status: disabled

⚠️IMPORTANT⚠️ This endpoint has been temporarily disabled with the introduction of multi-assets UTxO. It will be enabled again soon.
Submit one or more transactions which transfers all funds from a Shelley wallet to a set of addresses. This operation attempts to preserve the UTxO \"shape\" of a wallet as far as possible. That is, coins will not be agglomerated. Therefore, if the wallet has a large UTxO set, several transactions may be needed. A typical usage would be when one wants to move all funds from an old wallet to another by providing addresses coming from the new wallet. * @summary Migrate * @param {Body11} body * @param {string} walletId * @param {*} [options] Override http request option. * @throws {RequiredError} */ migrateShelleyWallet(body: Body11, walletId: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>>; }; /** * MigrationsApi - factory interface * @export */ export declare const MigrationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** *

status: disabled

⚠️IMPORTANT⚠️ This endpoint has been temporarily disabled with the introduction of multi-assets UTxO. It will be enabled again soon.
Calculate the exact cost of sending all funds from particular Shelley wallet to a set of addresses. * @summary Calculate Cost * @param {string} walletId * @param {*} [options] Override http request option. * @throws {RequiredError} */ getShelleyWalletMigrationInfo(walletId: string, options?: any): AxiosPromise; /** *

status: disabled

⚠️IMPORTANT⚠️ This endpoint has been temporarily disabled with the introduction of multi-assets UTxO. It will be enabled again soon.
Submit one or more transactions which transfers all funds from a Shelley wallet to a set of addresses. This operation attempts to preserve the UTxO \"shape\" of a wallet as far as possible. That is, coins will not be agglomerated. Therefore, if the wallet has a large UTxO set, several transactions may be needed. A typical usage would be when one wants to move all funds from an old wallet to another by providing addresses coming from the new wallet. * @summary Migrate * @param {Body11} body * @param {string} walletId * @param {*} [options] Override http request option. * @throws {RequiredError} */ migrateShelleyWallet(body: Body11, walletId: string, options?: any): AxiosPromise>; }; /** * MigrationsApi - object-oriented interface * @export * @class MigrationsApi * @extends {BaseAPI} */ export declare class MigrationsApi extends BaseAPI { /** *

status: disabled

⚠️IMPORTANT⚠️ This endpoint has been temporarily disabled with the introduction of multi-assets UTxO. It will be enabled again soon.
Calculate the exact cost of sending all funds from particular Shelley wallet to a set of addresses. * @summary Calculate Cost * @param {string} walletId * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof MigrationsApi */ getShelleyWalletMigrationInfo(walletId: string, options?: any): Promise>; /** *

status: disabled

⚠️IMPORTANT⚠️ This endpoint has been temporarily disabled with the introduction of multi-assets UTxO. It will be enabled again soon.
Submit one or more transactions which transfers all funds from a Shelley wallet to a set of addresses. This operation attempts to preserve the UTxO \"shape\" of a wallet as far as possible. That is, coins will not be agglomerated. Therefore, if the wallet has a large UTxO set, several transactions may be needed. A typical usage would be when one wants to move all funds from an old wallet to another by providing addresses coming from the new wallet. * @summary Migrate * @param {Body11} body * @param {string} walletId * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof MigrationsApi */ migrateShelleyWallet(body: Body11, walletId: string, options?: any): Promise>; }