Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: deploy script comment #91

Merged
merged 1 commit into from
Jun 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion scripts/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ async function main() {
const messageToBeSigned = process.env.MESSAGE_TO_BE_SIGNED!
console.log("Message to be signed: ", messageToBeSigned)

// Below is deploy script of VWBLERC721ERC2981 Contract that metadata is stored on AWS S3.
let VWBLERC721Contract: Contract;
const vwblERC721 = await ethers.getContractFactory("VWBLERC721ERC2981")
VWBLERC721Contract = await vwblERC721.deploy(
Expand All @@ -35,7 +36,7 @@ async function main() {
console.log("VWBLERC721 Contract deployed to:", VWBLERC721Contract.address)

/**
* Below is deploy script of VWBLMetadata Contract.
* Below is deploy script of VWBLERC721ERC2981ForMetadata Contract that metadata is stored on IPFS.
* Unlike the VWBL Contract, the metadata url is stored when mint.

let VWBLERC721MetadataContract: Contract;
Expand Down
Loading