From c018b84dc61e76dac9980cab313d14a1e48c82eb Mon Sep 17 00:00:00 2001 From: Jaz-3-0 Date: Tue, 4 Jun 2024 11:42:43 +0200 Subject: [PATCH] update fixes --- smart_contract/arguments.js | 1 + smart_contract/scripts/deployToken.js | 37 +++++++++++++++++++-------- 2 files changed, 27 insertions(+), 11 deletions(-) diff --git a/smart_contract/arguments.js b/smart_contract/arguments.js index 7daabda..fb846ac 100644 --- a/smart_contract/arguments.js +++ b/smart_contract/arguments.js @@ -1,6 +1,7 @@ module.exports = [ "Meta", "Meta", + "https://example.com/metadata/", "50000000000000000000", "0", "0", diff --git a/smart_contract/scripts/deployToken.js b/smart_contract/scripts/deployToken.js index 2501812..5dec12a 100644 --- a/smart_contract/scripts/deployToken.js +++ b/smart_contract/scripts/deployToken.js @@ -5,6 +5,7 @@ const main = async() => { const [deployer] = await ethers.getSigners(); const name = "Meta"; const symbol = "Meta"; + const uri = "https://example.com/metadata/"; const maxSupply = ethers.parseEther("50"); const publicPrice = ethers.parseEther("0"); const initialTokenSupply = ethers.parseEther("0"); @@ -13,6 +14,7 @@ const main = async() => { const argumentsArray = [ name, symbol, + uri, maxSupply.toString(), publicPrice.toString(), initialTokenSupply.toString(), @@ -27,16 +29,29 @@ const main = async() => { console.log("Deploying contract with account:", deployer.address); const Token = await ethers.getContractFactory("NFTMintDN404"); - const token = await Token.deploy( - name, - symbol, - maxSupply, - publicPrice, - initialTokenSupply, - signer - ); - - console.log("Fractionalized NFT deployed to:", await token.getAddress()); + const token = await Token.deploy( + name, + symbol, + uri, + maxSupply, + publicPrice, + initialTokenSupply, + signer + ); + + console.log("Fractionalized NFT deployed to:", await token.getAddress()); + + // Get the base URI + const baseURI = await token.baseURI(); + console.log("Contract Metadata URI:", baseURI); + + // Save the contract address and base URI to a file + const contractInfo = { + address: await token.getAddress(), + baseURI: baseURI + }; + fs.writeFileSync("contract-info.json", JSON.stringify(contractInfo, null, 2)); + console.log("Contract information saved to contract-info.json"); } const runMain = async() => { @@ -49,4 +64,4 @@ const runMain = async() => { } } -runMain(); \ No newline at end of file +runMain();