(obj: any | undefined)
| 403 | if (!json) return undefined |
| 404 | |
| 405 | function tryMatchBytecode(obj: any | undefined): any | undefined { |
| 406 | if (obj && obj.match instanceof Function) { |
| 407 | return obj.match(bytecodeRegex) |
| 408 | } |
| 409 | } |
| 410 | |
| 411 | // `json.evm.bytecode` often has more information than `json.bytecode`, needs to be checked first |
| 412 | if (tryMatchBytecode(json.evm?.bytecode?.object)) { |
no outgoing calls
no test coverage detected
searching dependent graphs…