zksyncera部署合约和ETH等网络不同,不能直接使用remix进行部署,官方出的解决方案是使用hardhat插件
<!--StartFragment-->
写在前面
1.zksync era 部署合约和 ETH 等网络不同,不能直接使用 remix 进行部署,官方出的解决方案是使用 hardhat 插件。
2.合约中的 constructor 需要传参进去,不能直接写入
3.官方的 python sdk 也是不能使用的状态。
4.测试链需要有一定数量的测试ETH,可在bisell.site币售购买
系统环境:ubuntu 22.04
sudo apt update
复制代码
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash source ~/.bashrc
nvm install --lts
node --version npm --version
能正常显示版本就安装成功了
mkdir greeter-example cd greeter-example npm init -y npm i -D typescript ts-node ethers@^5.7.2 zksync-web3@^0.14.3 hardhat @matterlabs/hardhat-zksync-solc @matterlabs/hardhat-zksync-deploy
ethers 版本当前只兼容 v5.7.x
zksync-web3 版本需要对应本地版本
文件结构如图
\
hardhat.config.ts
import "@matterlabs/hardhat-zksync-deploy";import "@matterlabs/hardhat-zksync-solc";
module.exports = { zksolc: { version: "1.3.5", compilerSource: "binary", settings: {}, }, defaultNetwork: "zkSyncTestnet",
networks: { zkSyncTestnet: { url: "https://zksync2-testnet.zksync.dev", ethNetwork: "goerli", // Can also be the RPC URL of the network (e.g. `https://goerli.infura.io/v3/<API_KEY>`) zksync: true, }, }, solidity: { version: "0.8.17", },};
复制代码
这是在测试网发布的例子,如果想在 Era 主网发布,修改以下两项:
url: "https://mainnet.era.zksync.io",ethNetwork: "mainnet" //或者改为你自己的infura ETH主网地址
deploy 文件夹下放部署脚本 deploy.ts
import { Wallet, utils } from "zksync-web3";import * as ethers from "ethers";import { HardhatRuntimeEnvironment } from "hardhat/types";import { Deployer } from "@matterlabs/hardhat-zksync-deploy";
export default async function (hre: HardhatRuntimeEnvironment) { console.log(`Running deploy script for the Greeter contract`);
// 初始化钱包 填入私钥 const wallet = new Wallet("your private key");
// 创建deployer const deployer = new Deployer(hre, wallet); // 设置部署的合约名 const artifact = await deployer.loadArtifact("Greeter");
// 计算gas fee // 参数为合约中construct的参数 const greeting = "Hi there!"; const deploymentFee = await deployer.estimateDeployFee(artifact, [greeting]);
//部署合约 const parsedFee = ethers.utils.formatEther(deploymentFee.toString()); console.log(`The deployment is estimated to cost ${parsedFee} ETH`);
const greeterContract = await deployer.deploy(artifact, [greeting]);
console.log("constructor args:" + greeterContract.interface.encodeDeploy([greeting]));
const contractAddress = greeterContract.address; console.log(`${artifact.contractName} was deployed to ${contractAddress}`);}
contracts 文件夹下放需要部署的合约 sol 文件
举例:Greeter.sol
//SPDX-License-Identifier: Unlicensepragma solidity ^0.8.0;
contract Greeter { string private greeting;
constructor(string memory _greeting) { greeting = _greeting; }
function greet() public view returns (string memory) { return greeting; }
function setGreeting(string memory _greeting) public { greeting = _greeting; }}
按规则放置完成之后,可以进行合约编译
npx hardhat compile
部署
npx hardhat deploy-zksync
部署完成之后会提示部署合约的地址和手续费用。如有问题,可以联系 telegram:@btc6540,谢谢。
<!--EndFragment-->
如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!