UNPKG

sevm

Version:

A Symbolic Ethereum Virtual Machine (EVM) bytecode decompiler & analyzer library & CLI

14 lines (12 loc) 372 B
import {} from 'sevm'; declare module 'sevm' { interface Contract { /** * It looks up in the signature and events remote API for matching hashes. * * When a matching `function` or `event` is found, * it patches the `function` or `event` with the corresponding signature. */ patch(): Promise<this>; } }