Skip to content

Commit

Permalink
remove some deploy dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
amiecorso committed Apr 16, 2024
1 parent ffb5ea4 commit 092913c
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion config/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const goerli: NetworkUserConfig = {
};

const amoy: NetworkUserConfig = {
chainId: 80_001,
chainId: 80_002,
url: AMOY_RPC_URL,
gasPrice: 35_000_000_000,
live: true,
Expand Down
1 change: 0 additions & 1 deletion deploy/deploy-bridged-polygon-nori.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ export const deploy: DeployFunction = async (environment) => {

export default deploy;
deploy.tags = ['BridgedPolygonNORI', 'assets'];
deploy.dependencies = ['preconditions'];
deploy.skip = async (hre) =>
Promise.resolve(
!['polygon', 'amoy', 'localhost', 'hardhat'].includes(hre.network.name)
Expand Down
2 changes: 1 addition & 1 deletion deploy/deploy-locked-nori.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const deploy: DeployFunction = async (environment) => {

export default deploy;
deploy.tags = ['LockedNORI'];
deploy.dependencies = ['preconditions', 'BridgedPolygonNORI'];
deploy.dependencies = ['BridgedPolygonNORI'];
deploy.skip = async (hre) =>
Promise.resolve(
!['polygon', 'amoy', 'localhost', 'hardhat'].includes(hre.network.name)
Expand Down
1 change: 0 additions & 1 deletion deploy/deploy-nori-usdc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,5 @@ export const deploy = async (

export default deploy;
deploy.tags = ['NoriUSDC', 'assets'];
deploy.dependencies = ['preconditions'];
deploy.skip = async (hre: CustomHardHatRuntimeEnvironment) =>
Promise.resolve(!['localhost', 'hardhat'].includes(hre.network.name));
1 change: 0 additions & 1 deletion deploy/deploy-nori.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ export const deploy: DeployFunction = async (environment) => {

export default deploy;
deploy.tags = ['NORI', 'assets'];
deploy.dependencies = ['preconditions'];
deploy.skip = async (hre) =>
Promise.resolve(
!['mainnet', 'goerli', 'localhost', 'hardhat'].includes(hre.network.name)
Expand Down

0 comments on commit 092913c

Please sign in to comment.