如何通过Web3和Infura提供商集成智能合约

时间:2019-07-17 18:03:36

标签: solidity web3 web3js

我已经使用infura provider创建了一个项目

const web3 = new Web3(new Web3.providers.HttpProvider('https://ropsten.infura.io/v3/07630919731949aa87a45b96c98a834d'))

然后我尝试调用智能合约的方法

{
  to: addressTo,
  from: addressFrom,
  data: {
    name: 'addWhitelisted',
    inputs: [{
      name: 'account',
      address: '0x57e755461FF79176fC8f14B085A8CBb4AE1fC2f6'
    }]
  }
}

那我需要签署交易并致电web3.eth.sendSignedTransaction吗?

但是当我签名时出现错误。请帮助。我在做什么错了?

  1. 应该是什么样的数据?

1 个答案:

答案 0 :(得分:0)

您需要使用new web3.eth.Contract().methods.MyMethod().encodeABI()为合同生成data的{​​{1}}属性

以下是代码示例:

transaction

其中 Contract.sol

const Web3 = require('web3')
const web3 = new Web3(new Web3.providers.HttpProvider('https://ropsten.infura.io/v3/07630919731949aa87a45b96c98a834d'))

const CONTRACT_ADDRESS = '0x3312fd1a550451beeda9fd2bd6e686af9ebabe1e'
const ADDRESS_TO_WHITELIST = '0x11c652e32b8064000a4ab34af0ae24e4966e309e'
const PRIVATE_KEY = '0x331E79A051B6D2B1F34C4195E70752D59E7E4F7E55244FA67BCC9CF476141231'
const CONTRACT_ABI = [ { constant: false, inputs: [ { name: '_address', type: 'address' } ], name: 'addWhitelisted', outputs: [], payable: false, stateMutability: 'nonpayable', type: 'function' }, { constant: true, inputs: [ { name: '', type: 'address' } ], name: 'whiteList', outputs: [ { name: '', type: 'bool' } ], payable: false, stateMutability: 'view', type: 'function' } ]

const sendRawTx = rawTx =>
  new Promise((resolve, reject) =>
    web3.eth
      .sendSignedTransaction(rawTx)
      .on('transactionHash', resolve)
      .on('error', reject)
  );

(async () => {
  const { address: from } = web3.eth.accounts.privateKeyToAccount(PRIVATE_KEY)

  const contract = new web3.eth.Contract(CONTRACT_ABI, CONTRACT_ADDRESS)
  const query = await contract.methods.addWhitelisted(ADDRESS_TO_WHITELIST)

  const transaction = {
    to: CONTRACT_ADDRESS,
    from,
    value: '0',
    data: query.encodeABI(),
    gasPrice: web3.utils.toWei('20', 'gwei'),
    gas: Math.round((await query.estimateGas({ from })) * 1.5), // 1.5 coefficient, just make sure that gas amount is enough
    nonce: await web3.eth.getTransactionCount(from, 'pending')
  }

  const signed = await web3.eth.accounts.signTransaction(transaction, PRIVATE_KEY)

  const hash = await sendRawTx(signed.rawTransaction)
  console.log(hash)
})()
相关问题