【发布时间】:2020-02-29 05:34:41
【问题描述】:
我有两个智能合约
我在 remix IDE 中工作,当我单击“部署”时,我只能部署一个智能合约。而当我复制 ABI 时,我只能从一份合约中复制一份 ABI。
有没有办法将这两个合约一起部署,或者我应该单独部署它们? 如果我将它们单独部署,numberTwo 合约将如何找到 numberOne 合约在哪里?
谢谢。
pragma solidity ^0.4.25;
contract numberOne{
}
contract numberTwo is numberOne{
}
【问题讨论】:
标签: deployment ethereum solidity smartcontracts