Truffle
https://gyazo.com/4abe5d19b133ced35d32bf5b5aa006c7
開発時
注意
注意
gitignoreで無視忘れずに
code:truffle.sh
mkdir myProject
cd myProject
truffle init
truffle develop
ターミナルに戻る
ctr + D
code:truffle.js
module . exports = { networks : {
... etc ...
}, compilers : { solc : { version : <string> // ex: "0.4.20". (Default: Truffle's installed solc)
}
}
};
よく使うコマンド
code:truffle.sh
truffle compile
truffle test
truffle migrate --network rinkeby