调用实体合同的set()函数(使用web3js)将创建一个新的合同地址。为什么?

时间:2018-11-07 17:21:57

标签: ethereum solidity web3js

我有一个简单的带有set()函数的合同。当我调用合同的set()函数时,生成的交易位于新创建的合同地址,而不是实体代码所在的合同地址。

如果我在Remix中使用UI,则新事务(具有更新的字符串值)将与原始合同相关联。当我尝试使用web3js做同样的事情时,正在创建全新的合同。

我希望将所有带有web3js的新get()调用与原始合同相关联。

实体代码

pragma solidity ^0.4.0;

contract HashRecord {
    string public hashValue;

function setHashValue(string newHashValue) public {
    hashValue = newHashValue;
}

function getHashValue() public view returns (string) {
    return hashValue;
}
}

web3js代码

var Tx = require('ethereumjs-tx')
const Web3 = require('web3')
const web3 = new Web3('https://ropsten.infura.io/v3/d55489f8ea264a1484c293b05ed7eb85')

const abi = [ABI_CODE]
const contractAddress = '0x6c716feb775d5e7b34856edf75048a13fe0c16b0'
const myAccount = '0x59f568176e21EF86017EfED3660625F4397A2ecE'
const privateKey1 = new Buffer('PRIVATE_KEY', 'hex')

hashValue = 'newly updated value'

const contract = new web3.eth.Contract(abi, contractAddress,{
    from: myAccount,

    web3.eth.getTransactionCount(myAccount, (err, txCount) => {
    //Smart contract data
    const data = contract.methods.setHashValue(hashValue).encodeABI()

    // Build the transaction
    const txObject = {
        nonce:    web3.utils.toHex(txCount),
        gasLimit: web3.utils.toHex(1000000),
        gasPrice: '5000',
        data: data,
        from: myAccount,
    }

    // Sign the transaction
    const tx = new Tx(txObject)
    tx.sign(privateKey1)
    const serializedTx = tx.serialize()

    // Broadcast the transaction
    web3.eth.sendSignedTransaction('0x' + serializedTx.toString('hex')).
    on('receipt', console.log)
})

我的猜测是,这与const contract = new web3.eth.Contract创建新合同有关。我无法找到另一种方法。

同样,我希望将存储在变量hashValue下的新值与原始合同地址const contractAddress = '0x6c716feb775d5e7b34856edf75048a13fe0c16b0'

相关联

谢谢!

1 个答案:

答案 0 :(得分:0)

添加to: contractAddress,

在以下代码块中

  const txObject = {
    nonce:    web3.utils.toHex(txCount),
    // value:    web3.utils.toHex(web3.utils.toWei('0.1', 'ether')),
    gasLimit: web3.utils.toHex(1000000),
    gasPrice: '5000',
    // gasPrice: '0x' + estimatedGas,
    data: data,
    from: myAccount,
    to: contractAddress,

解决了问题。

谢谢@smarx!