aboutsummaryrefslogtreecommitdiffstats
path: root/packages/types/src/index.ts
blob: 3db1aebe19653c8fa758ceb015e7a2d2a7b9b311 (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
24
25
26
27
import {BigNumber} from 'bignumber.js';
import * as Web3 from 'web3';

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

export interface TxDataPayable extends TxData {
    value?: BigNumber;
}

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[];
}