标签: node.js solidity truffle
我有这段代码:
contract A{} contract B{ A public a; }
我可以使用松露来访问类似的
B b = new B(); b.a.function1();