Skip to content

Commit

Permalink
run configure-assets-after-deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
amiecorso committed Mar 14, 2024
1 parent fc99837 commit d10e113
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions deploy/configure-assets-after-deployment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ export const deploy: DeployFunction = async (environment) => {
priceMultiple: 100,
feePercentage: 25,
purchaseTokenAddress: bpNori.address,

Check warning on line 70 in deploy/configure-assets-after-deployment.ts

View workflow job for this annotation

GitHub Actions / lint

Unsafe assignment of an `any` value

Check warning on line 70 in deploy/configure-assets-after-deployment.ts

View workflow job for this annotation

GitHub Actions / lint

Unsafe member access .address on an `any` value
feeWalletAddress: hre.namedAccounts.noriWallet,
feeWalletAddress: hre?.namedAccounts?.noriWallet,
},
hardhat: {
priceMultiple: 100,
feePercentage: 25,
purchaseTokenAddress: bpNori.address,

Check warning on line 76 in deploy/configure-assets-after-deployment.ts

View workflow job for this annotation

GitHub Actions / lint

Unsafe assignment of an `any` value

Check warning on line 76 in deploy/configure-assets-after-deployment.ts

View workflow job for this annotation

GitHub Actions / lint

Unsafe member access .address on an `any` value
feeWalletAddress: hre.namedAccounts.noriWallet,
feeWalletAddress: hre?.namedAccounts?.noriWallet,
},
};

Expand Down Expand Up @@ -139,7 +139,7 @@ export const deploy: DeployFunction = async (environment) => {
export default deploy;
deploy.tags = ['configure'];
// TODO is there a way to remove this 'Market' dependency?
deploy.dependencies = ['Market'];
deploy.dependencies = ['Market', 'Removal', 'market'];
deploy.skip = async (hre) =>
Promise.resolve(
!['polygon', 'mumbai', 'localhost', 'hardhat'].includes(hre.network.name)
Expand Down
Loading

0 comments on commit d10e113

Please sign in to comment.