Skip to content

Commit

Permalink
Adds Amoy to list of networks for staging seed tasks.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesduncombe committed Mar 19, 2024
1 parent 5fbafc1 commit c4e0712
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deploy/80_seedStaging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ import { DeployFunction } from "hardhat-deploy/types";
import { deployments, ethers, getNamedAccounts } from "hardhat";
import { deployFast, fastMint } from "../tasks/fast";
import { Marketplace } from "../typechain";
import { BigNumber } from "ethers";

const func: DeployFunction = async (hre: HardhatRuntimeEnvironment) => {
// We only want to do this in local development nodes.
// We only want to do this in local development nodes and testnets.
const { name: netName } = hre.network;
if (
netName !== "hardhat" &&
netName !== "localhost" &&
netName !== "dev" &&
netName !== "staging" &&
netName !== "mumbai"
netName !== "mumbai" &&
netName !== "amoy"
)
return;
console.log("----------------------------------- 80_seedStaging");
Expand Down

0 comments on commit c4e0712

Please sign in to comment.