从web3js调用Factory合同子项中的函数

时间:2019-02-14 16:58:44

标签: ethereum solidity web3js truffle

给出合同Example和工厂合同ExampleFactory

//Example.sol

contract ExampleFactory {
  Example [] public examples;

 function newExample(bytes32 _name) {
   Example example = new Example(_name);
   examples.push(example);
 }
}

contract Example {

  bytes32 public name;
  bool printed;
  event Print(bytes32);

  constructor(bytes32 _name) {
    name = _name;
  }

  function printName() public {
    printed = true;
    emit Print(name);
  }
}

如何在printName内致电truffle test

//Example.test.sol

artifacts.require("ExampleFactory");

contract("Example", function () {

  beforeEach(async function() {
    this.exampleFactory = await ExampleFactory.new()
    await ExampleFactory.newExample(web3.utils.utf8ToHex("hello"))
  })

  describe("printName()", function () {

    it("PRINTS!", async function() {
     const example = await this.exampleFactory.examples(0);
     await example.printName() // example.printName is not a function!!
    })

  })
})

1 个答案:

答案 0 :(得分:2)

调用this.exampleFactory.examples(0)返回子合同的地址,而web3.js不知道ABI。 您需要导入孩子的ABI并使用地址实例化对象

artifacts.require("Example" )

Const example = await Example.at(await this.exampleFactory.examples(0))