You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 21, 2022. It is now read-only.
Import the ABI into the abi directory. Make sure the JSON is formatted.
That ABI does not come from an official source, so check it against the expected interface.
Identify decodable transaction types, and start a discussion in this ticket. For each TX type, indicate the proposed fields and data types. Let's reach team consensus around our understanding.
Implement the decoding of each transaction type, as well as associated queries (e.g. symbol, token supply, etc.)
The text was updated successfully, but these errors were encountered:
raulk
changed the title
ERC-721 transaction decoding
Transaction decoding: ERC-721 transaction decoding
Jun 22, 2018
Due to similarities in the ERC721 and ERC20 token, our current decoding system marks both as ERC20. Raul suggested using ERC165 to identify which interface the token implements, but I was not able to make much headway in that regard. This is the pull request in my own fork of the code as it currently stands.
For the most part my attempts to decode ERC721 mirrored the current implementation for ERC20, but with added fields for where 721 had functionality that 20 did not (setApprovalForAll, safeTransferFrom).
Add support for decoding ERC-721 transactions.
The text was updated successfully, but these errors were encountered: