UNPKG

cardano-wallet-js

Version:

javascript/typescript client for the official cardano-wallet api

10 lines (9 loc) 581 B
import { ApiFee, WalletswalletIdpaymentfeesAmount } from "../models"; export declare class FeeWallet implements ApiFee { estimated_min: WalletswalletIdpaymentfeesAmount; estimated_max: WalletswalletIdpaymentfeesAmount; minimum_coins: WalletswalletIdpaymentfeesAmount[]; deposit: WalletswalletIdpaymentfeesAmount; constructor(estimated_min: WalletswalletIdpaymentfeesAmount, estimated_max: WalletswalletIdpaymentfeesAmount, minimum_coins: WalletswalletIdpaymentfeesAmount[], deposit: WalletswalletIdpaymentfeesAmount); static from(fee: ApiFee): FeeWallet; }