ethers.getContractAt() 的文档
Documentation for ethers.getContractAt()
有人可以指点我解释该功能的文档(官方或其他方式)ethers.getContractAt():
原文上下文如下:
vrfCoordinator = await ethers.getContractAt('VRFCoordinatorMock', VRFCoordinatorMock.address, signer)
完整的代码可以在这里找到...
https://github.com/PatrickAlphaC/all-on-chain-generated-nft/blob/main/deploy/02_Deploy_RandomSVG.js
在没有此类文档的情况下,将不胜感激。谢谢!
getContractAt()
函数是 Hardhat hardhat-ethers
插件的一部分,扩展了 ethers
对象。
它不是核心 Ethers 包的一部分,因此未包含在他们的文档中。
提到该插件的 Hardhat 文档:https://hardhat.org/plugins/nomiclabs-hardhat-ethers.html#helpers
有人可以指点我解释该功能的文档(官方或其他方式)ethers.getContractAt():
原文上下文如下:
vrfCoordinator = await ethers.getContractAt('VRFCoordinatorMock', VRFCoordinatorMock.address, signer)
完整的代码可以在这里找到... https://github.com/PatrickAlphaC/all-on-chain-generated-nft/blob/main/deploy/02_Deploy_RandomSVG.js
在没有此类文档的情况下,将不胜感激。谢谢!
getContractAt()
函数是 Hardhat hardhat-ethers
插件的一部分,扩展了 ethers
对象。
它不是核心 Ethers 包的一部分,因此未包含在他们的文档中。
提到该插件的 Hardhat 文档:https://hardhat.org/plugins/nomiclabs-hardhat-ethers.html#helpers