@tatumio/tatum-v1
Version:
Tatum API client allows browsers and Node.js clients to interact with Tatum API.
20 lines (19 loc) • 518 B
TypeScript
import { Fiat } from '../response';
import { Currency } from './Currency';
import { CustomerUpdate } from './CustomerUpdate';
import { TrcType } from './TrcType';
export declare class CreateTrcOffchain {
symbol: string;
description: string;
type: TrcType;
supply: string;
decimals: number;
basePair: Currency | Fiat;
baseRate?: number;
chain?: Currency;
accountingCurrency?: Fiat;
xpub: string;
address: string;
derivationIndex: number;
customer?: CustomerUpdate;
}