Skip to content

Commit

Permalink
Adds 2 new node dependencies (#699)
Browse files Browse the repository at this point in the history
- hardhat-tracer
- openzepplin 4.4.0 upgradable
  • Loading branch information
penandlim committed Sep 13, 2022
1 parent 0107585 commit d54d5a2
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 39 deletions.
1 change: 1 addition & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import "@nomicfoundation/hardhat-toolbox"
import "@nomiclabs/hardhat-vyper"
import "hardhat-deploy"
import "hardhat-spdx-license-identifier"
import "hardhat-tracer"

import { HardhatUserConfig, task } from "hardhat/config"
import dotenv from "dotenv"
Expand Down
76 changes: 39 additions & 37 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@
"@openzeppelin/contracts-4.4.0": "npm:@openzeppelin/contracts@4.4.0",
"@openzeppelin/contracts-upgradeable": "3.4.1",
"@openzeppelin/contracts-upgradeable-4.2.0": "npm:@openzeppelin/contracts-upgradeable@4.2.0",
"@openzeppelin/contracts-upgradeable-4.4.0": "npm:@openzeppelin/contracts-upgradeable@4.4.0",
"dotenv": "^10.0.0",
"dotenv-cli": "^4.1.1",
"hardhat-tracer": "^1.1.0-rc.8",
"synthetix": "2.56.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion test/lpToken.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe("LPToken", async () => {

const setupTest = deployments.createFixture(
async ({ deployments, ethers }) => {
await deployments.fixture() // ensure you start from a fresh deployments
await deployments.fixture(["USDPool"]) // ensure you start from a fresh deployments

signers = await ethers.getSigners()
owner = signers[0]
Expand Down
2 changes: 1 addition & 1 deletion test/swap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ describe("Swap", async () => {
const setupTest = deployments.createFixture(
async ({ deployments, ethers }) => {
const { get } = deployments
await deployments.fixture() // ensure you start from a fresh deployments
await deployments.fixture(["Swap", "LPToken"]) // ensure you start from a fresh deployments

signers = await ethers.getSigners()
owner = signers[0]
Expand Down

0 comments on commit d54d5a2

Please sign in to comment.