UNPKG

cardano-wallet-js

Version:

javascript/typescript client for the official cardano-wallet api

66 lines (63 loc) 2.09 kB
/* tslint:disable */ /* eslint-disable */ /** * Cardano Wallet Backend API * <p align=\"right\"><img style=\"position: relative; top: -10em; margin-bottom: -12em;\" width=\"20%\" src=\"https://cardanodocs.com/img/cardano.png\"></img></p> * * 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 { ApiCoinSelectionCertificates, ApiCoinSelectionChange, ApiCoinSelectionInputs, ApiCoinSelectionWithdrawals, WalletswalletIdpaymentfeesAmount, WalletswalletIdpaymentfeesPayments } from "."; /** * * @export * @interface ApiCoinSelection */ export interface ApiCoinSelection { /** * A list of transaction inputs * @type {Array&lt;ApiCoinSelectionInputs&gt;} * @memberof ApiCoinSelection */ inputs: ApiCoinSelectionInputs[]; /** * A list of target outputs * @type {Array&lt;WalletswalletIdpaymentfeesPayments&gt;} * @memberof ApiCoinSelection */ outputs: WalletswalletIdpaymentfeesPayments[]; /** * A list of transaction change outputs. * @type {Array&lt;ApiCoinSelectionChange&gt;} * @memberof ApiCoinSelection */ change: ApiCoinSelectionChange[]; /** * A list of withdrawals from stake addresses. * @type {Array&lt;ApiCoinSelectionWithdrawals&gt;} * @memberof ApiCoinSelection */ withdrawals?: ApiCoinSelectionWithdrawals[]; /** * * @type {Array&lt;ApiCoinSelectionCertificates&gt;} * @memberof ApiCoinSelection */ certificates?: ApiCoinSelectionCertificates[]; /** * A list of deposits associated with a transaction. * @type {Array&lt;WalletswalletIdpaymentfeesAmount&gt;} * @memberof ApiCoinSelection */ deposits?: WalletswalletIdpaymentfeesAmount[]; /** * Transaction metadata, serialized according to the expected on-chain binary format, base64-encoded. * @type {string} * @memberof ApiCoinSelection */ metadata?: any; }