aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typescript-typings/types/ethereumjs-tx/index.d.ts
blob: 1b99d06d90df7387b76e214c2763e086711e5936 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
declare module 'ethereumjs-tx' {
    class EthereumTx {
        public raw: Buffer[];
        public r: Buffer;
        public s: Buffer;
        public v: Buffer;
        public nonce: Buffer;
        public serialize(): Buffer;
        public sign(buffer: Buffer): void;
        public getSenderAddress(): Buffer;
        constructor(txParams: any);
    }
    export = EthereumTx;
}