Retrieve and display ERC-721 and ERC-1155 tokens
In this tutorial, you'll retrieve and display ERC-721 and ERC-1155 tokens using the Web3 JavaScript library.
Prerequisites
- An Ethereum project on Infura
- Node.js installed
Steps
1. Create a project directory
Create a new directory for your project. This can be done from the command line:
mkdir retrieveBalance
Change into the new directory:
cd retrieveBalance
2. Install required packages
Install the web3
package in the project directory:
npm install web3
This example has been written for web3js v4.x. It may not work for earlier versions.
3. Set up the script
Create a file called retrieveBalance.js
. At the top of the file, add the following lines to import the web3.js library and connect to the Infura HTTPS endpoint:
const { Web3 } = require("web3")
const web3 = new Web3(
new Web3.providers.HttpProvider("https://mainnet.infura.io/v3/<YOUR-API-KEY>")
)
Replace <YOUR-API-KEY>
with your Infura API key.
4. Set the ABI
For ERC-721 NFTs, use the tokenURI
function, which is part of the ERC-721 standard. This function retrieves a token’s metadata so you can view it. For ERC-1155, use the uri
method.
Note the tokenURI
and uri
methods are optional for contracts. However, these methods are the only standardized onchain way of seeing NFT metadata without using a third-party API.
Define the ABI for the respective method by adding the following to the script:
- ERC-721
- ERC-1155
const tokenURIABI = [
{
inputs: [
{
internalType: "uint256",
name: "tokenId",
type: "uint256",
},
],
name: "tokenURI",
outputs: [
{
internalType: "string",
name: "",
type: "string",
},
],
stateMutability: "view",
type: "function",
},
]
const uriABI = [
{
constant: true,
inputs: [
{
internalType: "uint256",
name: "_id",
type: "uint256",
},
],
name: "uri",
outputs: [
{
internalType: "string",
name: "",
type: "string",
},
],
payable: false,
stateMutability: "view",
type: "function",
},
]
5. Request the metadata
Define the ABI for the respective method by adding the following to the script:
- ERC-721
- ERC-1155
const tokenContract = "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d"
const tokenId = 101
const tokenContract = "0x76be3b62873462d2142405439777e971754e8e77"
const tokenId = 10570
tokenContract
is the address of the token contract, and tokenId
is the ID of the specific token to display.
Define the contract using web3.eth.Contract()
, passing the ABI and contract address as parameters:
- ERC-721
- ERC-1155
const contract = new web3.eth.Contract(tokenURIABI, tokenContract)
const contract = new web3.eth.Contract(uriABI, tokenContract)
Next, create an async
function that interacts with the smart contract.
This calls the ABI function defined in step 4.
- ERC-721
- ERC-1155
async function getNFTMetadata() {
const result = await contract.methods.tokenURI(tokenId).call()
console.log(result) // ipfs://QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/101
}
getNFTMetadata()
async function getNFTMetadata() {
const result = await contract.methods.uri(tokenId).call()
console.log(result) // https://nftdata.parallelnft.com/api/parallel-alpha/ipfs/QmSwnqTmpwvZH51Uv47opPUxGYx2nknYmGoKoRJQRMDcLL
}
getNFTMetadata()
6. Display the token
The ERC-1155 contract returns an HTTP URL , which you can directly enter into a browser. The ERC-721 contract returns an IPFS hash you can access using Infura.
Access IPFS
In your Infura account, create a new IPFS project. Enable your dedicated gateways, and you can access IPFS using your unique subdomain.
In the script, add a function to combine the IPFS hash and your Infura subdomain endpoint:
- ERC-721
function addIPFSProxy(ipfsHash) {
const URL = "https://<YOUR_SUBDOMAIN>.infura-ipfs.io/ipfs/"
const hash = ipfsHash.replace(/^ipfs?:\/\//, "")
const ipfsURL = URL + hash
console.log(ipfsURL) // https://<subdomain>.infura-ipfs.io/ipfs/<ipfsHash>
return ipfsURL
}
Replace <YOUR_SUBDOMAIN>
with your Infura IPFS subdomain.
Update request for metadata
Update the request for metadata to allow access to the IPFS hash through your Infura endpoint. In the getNFTMetadata
function defined in step 5, add the following:
const ipfsURL = addIPFSProxy(result)
const response = await fetch(ipfsURL)
const metadata = await response.json()
console.log(metadata) // Metadata in JSON
const image = addIPFSProxy(metadata.image)
Also add this line to the top of the file:
const fetch = require("node-fetch");
This returns the IPFS hash combined with our Infura endpoint, you can directly access in your browser to view the NFT.