The scripts contained in this repository were created to help automate the import and processing of NFT profile pic projects. Each script serves a unique purpose and when combined will help import both NFT images and the associated image metadata. A brief description of the scripts is below:
calculate-cids.js
- calculate the IPFS hash CID for every file in a specified foldercalculate-hashes.js
- calculate the sha256 hash for every file in a specified folderdownload-cids.js
- downloads every pinned file from Pinata for an API accountupload-files.js
- uploads the contents of a specified folder and pins each individual file in Pinataupload-folder.js
- uploads the contents of a specified folder and pins the folder container and its contents
Clone the repository.
git clone https://github.com/Coderrob/pinata-ipfs-scripts-for-nft-projects.git
Change directory to the pinata-ipfs-scripts-for-nft-projects
folder.
cd pinata-ipfs-scripts-for-nft-projects
Install dependencies.
npm install
Some scripts require environment variables to connect with the Pinata API. These environment variables are needed to download pinned files, or to upload files and folders.
PINATA_API_KEY
- The Pinata API Key environment variable
PINATA_API_SECRET
- The Pinata API Secret environment variable
The repo is setup with dotenv and configured to allow using an .env
file to run the scripts.
If the env file does not already exist simply create a new .env
file at the root of the repository.
The contents of the .env
file should look similar to this:
PINATA_API_KEY="a1237a8dcd87766ff4"
PINATA_API_SECRET="fb8654309ca8777asdf7558758123456asdf817166927aknnk888877"
To generate these Pinata API keys you'll need to follow the Getting Started Pinata documentation
/src/calculate-cids.js
The calculate file CIDs script will iterate the contents of a specified folder, and for each file will compute the IPFS hash CID mapped to the file name.
Once complete the script will output the file name and CID mappings to a file.
var: OUTPUT_PATH
- The relative output file path. Defaulted to ./output/file-cids.json
.
var: FOLDER_PATH
- The relative folder path containing the files to be processed. Each file will have its name and CID mapped. Defaulted to the files
folder.
node ./src/calculate-cids.js
./output/file-cids.json
{
"one.png": "QmZPnX4481toHABEtvKFoCWoVuzFFQRBiA5QR2Cij9pjon",
"two.png": "QmazpAaWf3Bb4qhSW9PnQXfj2URbQwdNbZvDr77RbwH7xb"
}
/src/calculate-hashes.js
The calculate file hashes script will iterate the contents of a specified folder, and for each file will compute the sha256 hash mapped to the file name.
Once complete the script will output the file name and sha256 hash mappings to a file.
var: OUTPUT_PATH
- The relative output file path. Defaulted to ./output/file-hashes.json
.
var: FOLDER_PATH
- The relative folder path containing the files to be processed. Each file will have its name and CIDsha256 hash mapped. Defaulted to the files
folder.
node ./src/calculate-hashes.js
./output/file-hashes.json
{
"one.png": "f8e50b5c45e6304b41f87686db539dd52138b873a3af98cc60f623d47a133df2",
"two.png": "76d9c6f8dc113fff71a180195077526fce3d0279034a37f23860c1f519512e94"
}
/src/download-cids.js
The download file CIDs script will iterate all pinned files associated with the Pinata API Key. The script will map each row's file name and IPFS hash CID.
Once complete the script will output the file name and CID mappings to a file.
var: OUTPUT_PATH
- The relative output file path. Defaulted to ./output/downloaded-cids.json
env: PINATA_API_KEY
- The Pinata API Key environment value
evn: PINATA_API_SECRET
- The Pinata API Secret environment value
node ./src/download-cids.js
./output/downloaded-cids.json
{
"one.png": "QmZPnX4481toHABEtvKFoCWoVuzFFQRBiA5QR2Cij9pjon",
"two.png": "QmazpAaWf3Bb4qhSW9PnQXfj2URbQwdNbZvDr77RbwH7xb"
}
/src/upload-files.js
The upload files script will iterate the contents of a specified folder and will upload and pin each individual file to Pinata. After a successful upload the file name will be mapped to the IPFS hash CID from the response.
Once complete the script will output the file name and CID mappings to a file.
var: pinataCIDs
- To prevent re-uploading already pinned files in Pinata. This variable is loaded with the json contents of the ./ouput/downloaded-cids.json
file if one exists. These CID mappings will help prevent re-uploading a file that has already been pinned in Pinata.
var: OUTPUT_PATH
- The relative output file path. Defaulted to ./output/uploaded-cids.json
.
var: FOLDER_PATH
- The relative folder path to read and upload all local files to be pinned with Pinata. Defaulted to the files
folder.
env: PINATA_API_KEY
- The Pinata API Key environment value
env: PINATA_API_SECRET
- The Pinata API Secret environment value
node ./src/upload-files.js
./output/uploaded-cids.json
{
"one.png": "QmZPnX4481toHABEtvKFoCWoVuzFFQRBiA5QR2Cij9pjon",
"two.png": "QmazpAaWf3Bb4qhSW9PnQXfj2URbQwdNbZvDr77RbwH7xb"
}
/src/upload-folder.js
The upload folder script will iterate the contents of a specified folder and will upload and pin each file under a folder container in Pinata. After a successful upload the folder name will be mapped to the IPFS hash CID from the response.
Once complete the script will output the folder name and CID mapping to a file.
Note - To support
ipfs/<CID>/<TokenId>
such asipfs/QmR5m9zJDSmrLnYMawrySYu3wLgN5afo3yizevAaimjvmD/0
simply name the JSON files with numeric names and strip the file extensions. This will allow the files to be accessed by a numeric file name that can be easily mapped to theTokenId
.
var: OUTPUT_PATH
- The relative output file path. Defaulted to ./output/folder-cid.json
.
var: FOLDER_NAME
- The folder name to use for the uploaded folder of json metadata. This can be changed to any name you'd like that identifies the collection of metadata files. Defaulted to metadata
as the folder name.
var: FOLDER_PATH
- The relative folder path to read and upload all local files to be pinned in Pinata as a folder container for the uploaded files. Defaulted to the metadata
folder.
env: PINATA_API_KEY
- The Pinata API Key environment value
env: PINATA_API_SECRET
- The Pinata API Secret environment value
node ./src/upload-folder.js
./output/folder-cid.json
{
"metadata": "QmR5m9zJDSmrLnYMawrySYu3wLgN5afo3yizevAaimjvmD"
}