sevm
Version:
A Symbolic Ethereum Virtual Machine (EVM) bytecode decompiler & analyzer library & CLI
14 lines (12 loc) • 381 B
TypeScript
import {} from 'sevm';
declare module 'sevm' {
interface Contract {
/**
* It looks up in the signature and events database for matching selector or topic hashes.
*
* When a matching `function` or `event` is found,
* it patches the `function` or `event` with the corresponding signature.
*/
patchdb(): this;
}
}