aboutsummaryrefslogtreecommitdiffstats
path: root/packages/types/src/index.ts
blob: 8d69af63d69a1bd8998a78660e6349e7096d22dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import {BigNumber} from 'bignumber.js';
import * as Web3 from 'web3';

export interface TxData {
    from?: string;
    gas?: number;
    gasPrice?: BigNumber;
    nonce?: number;
}

export interface TransactionReceipt {
    blockHash: string;
    blockNumber: number;
    transactionHash: string;
    transactionIndex: number;
    from: string;
    to: string;
    status: null|0|1;
    cumulativeGasUsed: number;
    gasUsed: number;
    contractAddress: string|null;
    logs: Web3.LogEntry[];
}