Back

blockchain - truffle 的使用

发布时间: 2022-06-15 02:46:00

refer to: https://trufflesuite.com/docs/truffle/getting-started/creating-a-project/

运行部署

truffle deploy --network=ganache

运行某个脚本

truffle exec <yourfile.js>

查看帮助

truffle help

仅仅运行某个migration

truffle migrate --f 9 --network=ganache

Back