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

Update deploy.ts for sepolia #73

Merged
merged 1 commit into from
Jul 2, 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
12 changes: 6 additions & 6 deletions random-svg-nft/scripts/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ async function main() {
const [deployer] = await ethers.getSigners();

console.log(
`Attempting to deploy EmojiNFT smart contract on Rinkeby network from ${deployer.address}`
`Attempting to deploy EmojiNFT smart contract on Sepolia network from ${deployer.address}`
);

const numberOfBlockConfiramtions = 6;
/**
* https://docs.chain.link/docs/vrf-contracts/#rinkeby-testnet
* https://docs.chain.link/docs/vrf-contracts/#sepolia-testnet
*
* Rinkeby Faucets
* Sepolia Faucets
*
* Testnet LINK is available from https://faucets.chain.link/rinkeby
* Testnet ETH is available from: https://faucets.chain.link/rinkeby
* Backup Testnet ETH Faucets: https://rinkeby-faucet.com/, https://app.mycrypto.com/faucet
* Testnet LINK is available from https://faucets.chain.link/sepolia
* Testnet ETH is available from: https://faucets.chain.link/sepolia
* Backup Testnet ETH Faucets: https://sepolia-faucet.com/, https://app.mycrypto.com/faucet
*/
const vrfCoordinator = `0x6168499c0cFfCaCD319c818142124B7A15E857ab`;
const subscriptionId = process.env.SUBSCRIPTION_ID!;
Expand Down
Loading