sarga-cardano-wallet-js-dist/wallet/utxo-statistics-wallet.d.ts

9 lines
519 B
TypeScript
Raw Permalink Normal View History

2023-08-07 23:20:23 +00:00
import { ApiWalletUTxOsStatistics, ApiWalletUTxOsStatisticsScaleEnum, WalletswalletIdpaymentfeesAmount } from '../models';
export declare class UtxoStatisticsWallet implements ApiWalletUTxOsStatistics {
total: WalletswalletIdpaymentfeesAmount;
scale: ApiWalletUTxOsStatisticsScaleEnum;
distribution: any;
constructor(total: WalletswalletIdpaymentfeesAmount, scale: ApiWalletUTxOsStatisticsScaleEnum, distribution: any);
static from(utxoStatistics: ApiWalletUTxOsStatistics): UtxoStatisticsWallet;
}