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
After Phase 1, the ERC indexing tool can now detect ERC contracts and categorize them into ERC-20 and ERC-721. However, the categorized contracts only include the contract ID and EVM address, lacking other essential information such as name, symbol, and decimals.
Solution
Implement a new mechanism to make calls to the mirror node to retrieve the necessary information.
A better and improved schema for an ERC20 should include detailed token information
{
"address": "0x....", // Address of the ERC20 contract/token"contractId": "0.0.x", // contract id of the ERC20 contract/token"name": "...",
"symbol": "...",
"decimals": x,"totalSupply": "..."
}
A better and improved schema for an ERC721 should include detailed token information
{
"address": "0x....", // Address of the ERC20 contract/token"contractId": "0.0.x", // contract id of the ERC20 contract/token"name": "...",
"symbol": "...",
}
Alternatives
No response
The content you are editing has changed. Please copy your edits and refresh the page.
Problem
After Phase 1, the ERC indexing tool can now detect ERC contracts and categorize them into ERC-20 and ERC-721. However, the categorized contracts only include the contract ID and EVM address, lacking other essential information such as name, symbol, and decimals.
Solution
Implement a new mechanism to make calls to the mirror node to retrieve the necessary information.
A better and improved schema for an ERC20 should include detailed token information
A better and improved schema for an ERC721 should include detailed token information
Alternatives
No response
Tasks
The text was updated successfully, but these errors were encountered: