sarga-cardano-wallet-js-dist/wallet/coin-selection-wallet.d.ts

13 lines
948 B
TypeScript
Raw Permalink Normal View History

2023-08-07 23:20:23 +00:00
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;
}