olympus-protocol-connector
Version:
Module made by Olympus Labs for easier access to the Olympus protocol through Javascript/Typescript
20 lines (19 loc) • 405 B
TypeScript
export interface Tx {
description: string;
hash: string;
gasPrice: number;
from: string;
to: string;
data: any;
value: number | '0x' | '0x0';
gas: number;
blockHash: string;
blockNumber: string;
nonce: number;
timestamp: string;
chainId: number;
status: '0x1' | '0x0';
transactionIndex: number;
cumulativeGasUsed: number;
logs: any[];
}