truffle console
truffle(development)> <コントラクト名>.deployed().then(function(instance) { app = instance })
truffle(development)> app.address
//コントラクトアドレスが返る
truffle(development)> app.<変数名>()
//変数の値が返る
//変数は自動で getter function になる
Go to list of users who liked
More than 3 years have passed since last update.
truffle console
truffle(development)> <コントラクト名>.deployed().then(function(instance) { app = instance })
truffle(development)> app.address
//コントラクトアドレスが返る
truffle(development)> app.<変数名>()
//変数の値が返る
//変数は自動で getter function になる
Register as a new user and use Qiita more conveniently
Go to list of users who liked