cobinhood-rx
Version:
CobinhoodRx is a rxjs node wrapper for the CobinhoodRx Api.
16 lines (15 loc) • 418 B
TypeScript
import { BigNumber } from 'bignumber.js';
export declare class Currency {
CryptoCurrency: string;
Name: string;
Type: string;
MinUnit: BigNumber;
DepositFee: BigNumber;
WithdrawalFee: BigNumber;
MinWithdrawal: BigNumber;
FundingMinSize: BigNumber;
InterestIncrement: BigNumber;
MarginEnabled: boolean;
DepositFrozen: boolean;
WithdrawalFrozen: boolean;
}