From 3659c61a83e262ef30338ff77ca2efc6dd4317de Mon Sep 17 00:00:00 2001 From: rohan Date: Wed, 5 Oct 2022 09:16:32 +0200 Subject: [PATCH] Updated chain support for Goerli --- constants/account_details.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/constants/account_details.js b/constants/account_details.js index 46a0e20..3b6c230 100644 --- a/constants/account_details.js +++ b/constants/account_details.js @@ -3,7 +3,7 @@ const ACCOUNT_DETAILS = { auth: 'YOUR_NFTPORT_API_KEY_HERE', // Set your APIKey here that the NFTPort team will provide. Ex. orm1or1-efe1-112a-cccd-kqwfkfmk contract_address: 'YOUR_CONTRACT_ADDRESS_HERE', // Set your contract address here, not your transaction hash. After creating a contract on NFTPort, retrieve the contract address via the APIs. Ex. 0xfe81cm1l28b21753ebe117c84als2d6588e150ff mint_to_address: 'YOUR_WALLET_ADDRESS_HERE', // Set your wallet address here that will be the owner of the minted NFTs. Ex. 0x5cE5D823f4bD8Ec610293fBa65832B479152C7E1 - chain: 'CHAIN_TO_MINT_TO', // Set the chain where the NFTs will be minted to here. At the time of writing, "polygon" and "rinkeby" are possible values. + chain: 'CHAIN_TO_MINT_TO', // Set the chain where the NFTs will be minted to here. At the time of writing, "polygon" and "goerli" are possible values. max_rate_limit: '2', // Update your ratelimit linked to your APIKey / account from NFTPort. Ex. '1' numberOfRetries: '2', // Update your API retry count here so that your NFTPort APIs can attempt a retry if unsuccessful at first. Ex. '3' timeout: '1000', // Milliseconds. Set the timeout for API errors. If there is an error, it will wait then try again. 5000 = 5 seconds. diff --git a/package.json b/package.json index e294975..23e2de7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "create-and-mint-nft-collection", - "version": "1.8.0", + "version": "1.9.0", "description": "Source code to create and mint generative art via NFTPort API. Special thanks to codeSTACKr and Hashlips for their source codebase.", "main": "index.js", "bin": "index.js",