UNPKG

web3x

Version:

Typescript port of web3.js

17 lines (16 loc) 327 B
import { Address } from '../address'; export interface SignedTransaction { raw: string; tx: { nonce: string; gasPrice: string; gas: string; to: Address; value: string; input: string; v: string; r: string; s: string; hash: string; }; }