cardano-wallet-js
Version:
javascript/typescript client for the official cardano-wallet api
13 lines (12 loc) • 948 B
TypeScript
import { ApiCoinSelection, ApiCoinSelectionCertificates, ApiCoinSelectionChange, ApiCoinSelectionInputs, ApiCoinSelectionWithdrawals, WalletswalletIdpaymentfeesAmount, WalletswalletIdpaymentfeesPayments } from "../models";
export declare class CoinSelectionWallet implements ApiCoinSelection {
inputs: ApiCoinSelectionInputs[];
outputs: WalletswalletIdpaymentfeesPayments[];
change: ApiCoinSelectionChange[];
withdrawals?: ApiCoinSelectionWithdrawals[];
certificates?: ApiCoinSelectionCertificates[];
deposits?: WalletswalletIdpaymentfeesAmount[];
metadata?: any;
constructor(inputs: ApiCoinSelectionInputs[], outputs: WalletswalletIdpaymentfeesPayments[], change: ApiCoinSelectionChange[], withdrawals: ApiCoinSelectionWithdrawals[], certificates: ApiCoinSelectionCertificates[], deposits: WalletswalletIdpaymentfeesAmount[], metadata: any);
static from(coinSelection: ApiCoinSelection): CoinSelectionWallet;
}