@dojima-wallet/connection
Version:
Initialise and connection for layer 1&2 blockchain
21 lines (20 loc) • 473 B
TypeScript
export type PoolData = {
balance_doj: string;
balance_asset: string;
asset: string;
LP_units: string;
pool_units: string;
status: string;
synth_units: string;
synth_supply: string;
pending_inbound_doj: string;
pending_inbound_asset: string;
decimals?: number;
};
export type SwapFeeResult = {
network_inbound: number;
network_outbound: number;
network_fee: number;
exchange_fee: number;
total_fee: number;
};