UNPKG

@tatumio/tatum-v1

Version:

Tatum API client allows browsers and Node.js clients to interact with Tatum API.

17 lines (16 loc) 442 B
import { Fiat } from '../response'; import { Currency } from './Currency'; import { CustomerUpdate } from './CustomerUpdate'; export declare class CreateErc20Offchain { symbol: string; description: string; supply: string; basePair: Currency | Fiat; baseRate?: number; chain?: Currency; accountingCurrency?: Fiat; xpub: string; address: string; derivationIndex: number; customer?: CustomerUpdate; }