export type TransactionsHistory = Transaction[]; type Transaction = { from: string; to: string; amount: string; currency: string; txHash: string; timeStamp: number; status: string; blockHash: string; blockHeight: number; confirmations?: number; }; export type SendTransactionResult = { hash: string; response: unknown; }; export {};