From c4e07124ba4fe6fc61cca6edba445ed51284ecd4 Mon Sep 17 00:00:00 2001 From: James Duncombe Date: Wed, 13 Mar 2024 12:06:24 +0000 Subject: [PATCH] Adds Amoy to list of networks for staging seed tasks. --- deploy/80_seedStaging.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/80_seedStaging.ts b/deploy/80_seedStaging.ts index 15f48947..8ba7bed7 100644 --- a/deploy/80_seedStaging.ts +++ b/deploy/80_seedStaging.ts @@ -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");