Skip to content

Commit

Permalink
fix: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JackHamer09 committed Dec 28, 2023
1 parent f7bbe38 commit b0080df
Show file tree
Hide file tree
Showing 8 changed files with 203 additions and 397 deletions.
2 changes: 1 addition & 1 deletion templates/hardhat/solidity/deploy/utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Provider, Wallet } from "zksync-web3";
import { Provider, Wallet } from "zksync-ethers";
import * as hre from "hardhat";
import { Deployer } from "@matterlabs/hardhat-zksync-deploy";
import dotenv from "dotenv";
Expand Down
289 changes: 94 additions & 195 deletions templates/hardhat/solidity/package-lock.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions templates/hardhat/solidity/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
"test": "hardhat test --network hardhat"
},
"devDependencies": {
"@matterlabs/hardhat-zksync-deploy": "^0.6.5",
"@matterlabs/hardhat-zksync-node": "^0.0.1-beta.6",
"@matterlabs/hardhat-zksync-solc": "^0.4.2",
"@matterlabs/hardhat-zksync-verify": "^0.2.1",
"@matterlabs/hardhat-zksync-deploy": "^0.7.0",
"@matterlabs/hardhat-zksync-node": "^0.0.1",
"@matterlabs/hardhat-zksync-solc": "^1.0.6",
"@matterlabs/hardhat-zksync-verify": "^0.4.0",
"@matterlabs/zksync-contracts": "^0.6.1",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts": "^4.6.0",
Expand All @@ -29,6 +29,6 @@
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"zksync-web3": "^0.14.3"
"zksync-ethers": "^5.0.0"
}
}
2 changes: 1 addition & 1 deletion templates/hardhat/solidity/test/erc20/myerc20token.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expect } from 'chai';
import { Contract, Wallet } from "zksync-web3";
import { Contract, Wallet } from "zksync-ethers";
import { getWallet, deployContract, LOCAL_RICH_WALLETS } from '../../deploy/utils';
import * as ethers from "ethers";

Expand Down
2 changes: 1 addition & 1 deletion templates/hardhat/solidity/test/nft/mynft.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expect } from 'chai';
import { Contract, Wallet } from "zksync-web3";
import { Contract, Wallet } from "zksync-ethers";
import { getWallet, deployContract, LOCAL_RICH_WALLETS } from '../../deploy/utils';

describe("MyNFT", function () {
Expand Down
2 changes: 1 addition & 1 deletion templates/hardhat/vyper/deploy/utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Provider, Wallet } from "zksync-web3";
import { Provider, Wallet } from "zksync-ethers";
import * as hre from "hardhat";
import { Deployer } from "@matterlabs/hardhat-zksync-deploy";
import dotenv from "dotenv";
Expand Down
Loading

0 comments on commit b0080df

Please sign in to comment.