Skip to content

Commit

Permalink
fix: update naming from era_test_node to anvil-zksync
Browse files Browse the repository at this point in the history
  • Loading branch information
dutterbutter committed Dec 4, 2024
1 parent bee2e3c commit 6bfb1c2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/hardhat-zksync-node/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# hardhat-zksync-node 🚀

ZKsync Era [Hardhat](https://hardhat.org/) plugin to run the ZKsync anvil-zksync locally.
ZKsync Era [Hardhat](https://hardhat.org/) plugin to run anvil-zksync locally.

![Era Logo](https://github.com/matter-labs/era-contracts/raw/main/eraLogo.svg)

Expand Down
2 changes: 1 addition & 1 deletion packages/hardhat-zksync-node/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@matterlabs/hardhat-zksync-node",
"version": "1.2.0",
"description": "Hardhat plugin to run ZKsync anvil-zksync locally",
"description": "Hardhat plugin to run anvil-zksync locally",
"repository": "github:matter-labs/hardhat-zksync",
"homepage": "https://github.com/matter-labs/hardhat-zksync/tree/main/packages/hardhat-zksync-node",
"author": "Matter Labs",
Expand Down
2 changes: 1 addition & 1 deletion packages/hardhat-zksync-node/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const MAX_PORT_ATTEMPTS = 10;
export const PORT_CHECK_DELAY = 500;
export const RPC_ENDPOINT_PATH = 'eth_chainId';

export const ZKSYNC_ERA_TEST_NODE_NETWORK_NAME = 'anvil-zksync';
export const ZKSYNC_ERA_TEST_NODE_NETWORK_NAME = 'AnvilZKsync';
export const BASE_URL = `http://127.0.0.1`;
export const NETWORK_ACCOUNTS = {
REMOTE: 'remote',
Expand Down
2 changes: 1 addition & 1 deletion packages/hardhat-zksync-upgradable/src/core/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ export const networkNames: { [chainId in number]?: string } = Object.freeze({
280: 'ZKsync-testnet-goerli',
270: 'ZKsync-local-setup',
300: 'ZKsync-testnet-sepolia',
260: 'ZKsync-anvil-zksync',
260: 'ZKsync-anvil',
});
2 changes: 1 addition & 1 deletion packages/hardhat-zksync/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Here is an overview of the plugins currently available in this package when inst
| hardhat-zksync-deploy | Facilitates the deployment of contracts on ZKsync, utilizing artifacts from hardhat-zksync-solc. |
| hardhat-zksync-verify | Automates the process of verifying smart contracts on the ZKsync network, enhancing transparency and trust. |
| hardhat-zksync-upgradeable | Enables easier deployment and upgrading of smart contracts on the ZKsync network, improving contract lifecycle management. |
| hardhat-zksync-node | Convenient plugin to run the ZKsync anvil-zksync locally. |
| hardhat-zksync-node | Convenient plugin to run anvil-zksync locally. |
| hardhat-zksync-ethers | A zksync-ethers SDK wrapper providing additional methods for accelerated development on ZKsync. |


Expand Down

0 comments on commit 6bfb1c2

Please sign in to comment.