gpt4 book ai didi

solidity - 如何使用松露控制台

转载 作者:行者123 更新时间:2023-12-02 22:14:32 25 4
gpt4 key购买 nike

我有一个 Truffle 示例应用程序,然后当我尝试在 truffle 控制台中与它交互时,我不明白为什么它没有部署或工作。

我激活 testrpc,然后输入:

> truffle console

> migrate --reset

> MetaCoin.new();

之后:

truffle(development)> MetaCoin.name
'TruffleContract'
truffle(development)> MetaCoin.country
undefined
truffle(development)> a1 = web3.eth.accounts[0];
'0x0a3d66a80b50875770fd264dd7c905f21395037f'
truffle(development)> MetaCoin.sendCoin(a1, 100);
TypeError: MetaCoin.sendCoin is not a function
at evalmachine.<anonymous>:1:10
at ContextifyScript.Script.runInContext (vm.js:59:29)
at Object.runInContext (vm.js:120:6)
at Console.interpret (/usr/local/lib/node_modules/truffle/build/cli.bundled.js:199314:17)
at ReplManager.interpret (/usr/local/lib/node_modules/truffle/build/cli.bundled.js:200019:18)
at bound (domain.js:301:14)
at REPLServer.runBound [as eval] (domain.js:314:12)
at REPLServer.onLine (repl.js:440:10)
at emitOne (events.js:115:13)
at REPLServer.emit (events.js:210:7)
truffle(development)> MetaCoin.sendCoin(a1, 100);

它说sendCoin函数不是一个函数,所以我不知道如何与合约交互。我该如何调用它?

最佳答案

首先使用 truffle migrate 部署合约。

然后从 truffle 控制台通过以下方式与合约交互

MetaCoin.deployed().then(function(instance) {return instance.sendCoin(a1, 100);}).then(function(value) {console.log(value);});

关于solidity - 如何使用松露控制台,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46496845/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com