Skip to content

Commit

Permalink
abi diviner selector update
Browse files Browse the repository at this point in the history
  • Loading branch information
arietrouw committed Dec 14, 2023
1 parent b5a04fa commit d4d6792
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class EvmAbiImplementedDiviner<TParams extends EvmAbiImplementedDivinerPa
contractInterface.forEachFunction(({ selector }) => {
const observation: EvmFunctionImplemented = {
address,
implemented: byteCode.includes(BigInt(selector.substring(2)).toString(16)),
implemented: byteCode.includes(BigInt(selector).toString(16)),
schema: EvmFunctionImplementedSchema,
selector,
}
Expand Down

0 comments on commit d4d6792

Please sign in to comment.