给定一个契约示例和一个工厂合同ExampleFactory:
//Example.sol
contract ExampleFactory { 示例[]公开示例;
function newExample(bytes32 _name){ 示例示例= new …
调用 this.exampleFactory.examples(0) 返回子契约的地址,web3.js不知道ABI。 您需要导入子进程的ABI并使用该地址实例化对象
this.exampleFactory.examples(0)
artifacts.require("Example" ) Const example = await Example.at(await this.exampleFactory.examples(0))