我正试图在ethers.js上创建一个ContractFactory,并通过Alchemy在Polygon的testnet Mumbai上部署智能合约。
我对deploy函数有一个问题,因为在文档中不清楚如何格式化参数。
作为Alchemy文档,我必须指定gasLimit
和gasPrice
,但我也想为我的合同的构造函数指定自定义参数。
我得到的错误:
- 如果我在deploy函数中只放入构造函数的参数,它会说我没有指定
gasLimit
和gasPrice
参数 - 如果我在部署函数中放入构造函数的参数以及
gasLimit
和gasPrice
,由于参数的顺序,我对智能合约的构造函数有问题 - 如果我只放
gasLimit
和gasPrice
,它会正确部署,但我没有我想要的自定义智能合约,因为缺少构造函数的参数
这是部署智能合约的一段代码:
const price_unit = "gwei";
const contractFile = await fs.readFileSync('artifacts/contracts/Midly.sol/NFTCollectible.json');
const contract = JSON.parse(contractFile.toString());
const provider = new ethers.providers.AlchemyProvider("maticmum", process.env.ALCHEMY_API_KEY);
const wallet = new ethers.Wallet(process.env.WALLET_PRIVATE_KEY, provider);
const price = ethers.utils.formatUnits(await provider.getGasPrice(), price_unit);
const factory = new ethers.ContractFactory(contract.abi, contract.bytecode, wallet);
const deployedContract = await factory.deploy({
gasLimit: 2,
gasPrice: ethers.utils.parseUnits(price, price_unit),
}, tokenURI, maxQuantity, cost)
.then(data => console.log(data))
.catch(error => console.log(error));
感谢您抽出时间:(
您需要首先传递构造函数参数,最后传递overrides
对象。
const deployedContract = await factory.deploy(tokenURI, maxQuantity, cost, {
gasLimit: 2,
gasPrice: ethers.utils.parseUnits(price, price_unit),
})
文档:https://docs.ethers.io/v5/api/contract/contract-factory/#ContractFactory-部署