Right now passing allowance(address, address) as the method name for an ERC20 token will never return any results, since the function selector (first 4 bytes of keccak hash) is different than allowance(address,address) due to the space. It would help if the library would remove any spaces it found inside the function description.
Right now passing
allowance(address, address)
as the method name for an ERC20 token will never return any results, since the function selector (first 4 bytes of keccak hash) is different thanallowance(address,address)
due to the space. It would help if the library would remove any spaces it found inside the function description.