import { Address, BlockHash, TxHash } from "../primitives"; import { TxReceiptStatus } from "../BlockScout/BlockScout"; export declare type BlockscoutTxListResponse = { message: string; result: Array; status: TxReceiptStatus; }; export declare type EthereumTransaction = { blockNumber: number; contractAddress: Address; errCode: string; from: Address; gas: string; gasUsed: string; index: string; input: string; isError: string; timeStamp: string; to: Address; txHash: TxHash; blockHash: BlockHash; type: string; value: string; }; export declare type GraphQLTxHistoryResponse = { address: { transactions: { edges: Array<{ node: EthereumTransaction; }>; }; }; };