export type TransactionHistoryDto = { txId: string; tokenId: string; accountId: string; status: TransactionHistoryDto.status; reqType: TransactionHistoryDto.reqType; /** * create time unixtime in millisecond string */ timestamp: string; /** * asset */ asset: string; /** * amount in string */ amount: string; }; export declare namespace TransactionHistoryDto { enum status { PENDING = "PENDING", PROCESSING = "PROCESSING", L2EXECUTED = "L2EXECUTED", L2CONFIRMED = "L2CONFIRMED", L1CONFIRMED = "L1CONFIRMED", FAILED = "FAILED", REJECTED = "REJECTED" } enum reqType { _0 = "0", _1 = "1", _2 = "2", _3 = "3", _4 = "4", _5 = "5", _6 = "6", _7 = "7", _8 = "8", _9 = "9", _10 = "10", _11 = "11", _12 = "12", _13 = "13", _14 = "14", _15 = "15", _16 = "16", _17 = "17", _18 = "18", _19 = "19", _20 = "20", _21 = "21", _22 = "22", _23 = "23", _24 = "24", _25 = "25", _26 = "26" } }