以太坊(Ethereum) - 使用 truffle console 访问智能合约


章节

  • 以太坊(Ethereum) – 是什么
  • 以太坊(Ethereum) – 什么是智能合约
  • 以太坊(Ethereum) – 以太币
  • 以太坊(Ethereum) – 虚拟机(E.V.M.)
  • 以太坊(Ethereum) – 分布式应用(DApp)
  • 以太坊(Ethereum) – 账号(地址)
  • 以太坊(Ethereum) – 虚拟机架构
  • 以太坊(Ethereum) – 网络节点
  • 以太坊(Ethereum) – 以太币单位
  • 以太坊(Ethereum) – 挖矿
  • 以太坊(Ethereum) – 智能合约开发
    • 以太坊(Ethereum) – 智能合约的优点
    • 以太坊(Ethereum) – 智能合约开发概述
    • 以太坊(Ethereum) – 智能合约开发环境搭建
    • 以太坊(Ethereum) – Ganache本地区块链
    • 以太坊(Ethereum) – 开发智能合约
    • 以太坊(Ethereum) – 部署智能合约到Ganache
    • 以太坊(Ethereum) – 使用 truffle console 访问智能合约
    • 以太坊(Ethereum) – 智能合约测试(truffle test)
    • 以太坊(Ethereum) – 连接公链
    • 以太坊(Ethereum) – 部署智能合约到公链
    • 以太坊(Ethereum) – truffle脚本
    • 以太坊(Ethereum) – 让浏览器支持区块链(MetaMask)
    • 以太坊(Ethereum) – 智能合约前端页面

truffle console 是区块链开发人员的强大工具,这是一个命令行工具,可以在命令行中执行javascript代码,与智能合约进行交互。这对于开发智能合约非常有用。

我们已经成功地将智能合约部署到本地区块链网络,接下来我们将使用 truffle console 与智能合约进行交互。

启动 truffle console:

$ truffle console

进入控制台后,让我们获取已部署智能合约的一个实例,看看能否从该合约中读取value值。从控制台运行以下代码:

MyContract.deployed().then((instance) => { app = instance } )

这里MyContract是之前在迁移文件中创建的变量名称,使用deployed()函数获取一个已部署合约的实例,并将其分配给promise回调函数中的一个app变量。

现在可以获取智能合约中的value值:

app.get()
// => 'myValue'

value设置一个新值:

app.set('New Value')

重新获取智能合约中的value值:

app.get()
// => 'New Value'

可以通过以下命令退出truffle console:

.exit

你可能感兴趣的:(以太坊(Ethereum) - 使用 truffle console 访问智能合约)