Avatar
0
monkey Enlightened
monkey Enlightened
Deploy ERC20 (smart contract cho ICO) lên mạng private ...
Dể deploy ERC20 (smart contract cho ICO) lên mạng private, chúng ta cần trải qua các bước sau: Tải ERC20 contract tại đây Sửa file truffle-config.js thế này: module.exports = { networks: { development: { host: "localhost", port: 8545, network_id: "*", gas: 0, from: "0x3c31b4b9d6c24bad29498f99aaa6914231362c7f" } }, compilers: { solc: { version: "0.7.6" } } }; ...
Answer