sarga-cardano-wallet-js-dist/wallet/utxo-statistics-wallet.d.ts
2023-08-08 01:20:23 +02:00

9 lines
519 B
TypeScript

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;
}