aboutsummaryrefslogblamecommitdiffstats
path: root/src/ts/globals.d.ts
blob: 0f7391b39176773dd3aa77f31283ba76a9ee1065 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                   






                                                       

                                                                                            
 
declare type ETHPublicKey = string;
declare type ETHAddressHex = string;
declare type ETHAddressBuff = Buffer;

declare module 'ethereumjs-util' {
    const toBuffer: (data: string) => Buffer;
    const hashPersonalMessage: (msg: Buffer) => Buffer;
    const bufferToHex: (buff: Buffer) => string;
    const ecrecover: (msgHashBuff: Buffer, v: number, r: Buffer, s: Buffer) => ETHPublicKey;
    const pubToAddress: (pubKey: ETHPublicKey) => ETHAddressBuff;
}