aboutsummaryrefslogblamecommitdiffstats
path: root/packages/web3-wrapper/src/types.ts
blob: e81039186d9adfeb9ea5340b9659f7912d0ff4e5 (plain) (tree)
1
2
3


                                                            



























                                                                          
                  


























                                                        





                                                             
export enum Web3WrapperErrors {
    TransactionMiningTimeout = 'TRANSACTION_MINING_TIMEOUT',
}

export interface AbstractBlockRPC {
    number: string | null;
    hash: string | null;
    parentHash: string;
    nonce: string | null;
    sha3Uncles: string;
    logsBloom: string | null;
    transactionsRoot: string;
    stateRoot: string;
    miner: string;
    difficulty: string;
    totalDifficulty: string;
    extraData: string;
    size: string;
    gasLimit: string;
    gasUsed: string;
    timestamp: string;
    uncles: string[];
}
export interface BlockWithoutTransactionDataRPC extends AbstractBlockRPC {
    transactions: string[];
}
export interface BlockWithTransactionDataRPC extends AbstractBlockRPC {
    transactions: TransactionRPC[];
}
export interface TransactionRPC {
    hash: string;
    nonce: string;
    blockHash: string | null;
    blockNumber: string | null;
    transactionIndex: string | null;
    from: string;
    to: string | null;
    value: string;
    gasPrice: string;
    gas: string;
    input: string;
}

export interface CallTxDataBaseRPC {
    to?: string;
    value?: string;
    gas?: string;
    gasPrice?: string;
    data?: string;
    nonce?: string;
}

export interface TxDataRPC extends CallTxDataBaseRPC {
    from: string;
}

export interface CallDataRPC extends CallTxDataBaseRPC {
    from?: string;
}

// NodeType represents the type of the backing Ethereum node.
export enum NodeType {
    Geth = 'GETH',
    Ganache = 'GANACHE',
}