以太坊web3 sendSignedTransaction:资金不足。该帐户...没有足够的资金。要求750000000000000并获得:0

时间:2018-07-14 18:42:39

标签: javascript node.js ethereum web3

我正在发送已签名的交易并出现错误:

  

资金不足。您尝试从其发送交易的帐户   没有足够的资金。需要750000000000000并获得:0。

问题是我的帐户中有足够的资金,您可以在这里0x002D189c25958c60736aE21C966ff3131C2AC849进行检查,如果我设置了gasLimit:web3.utils.toHex(20000),则会出现另一个错误:

  

事务气体太低。气体不足以覆盖极少的气体   交易费用(最低费用:21464,获得费用:20000)。尝试增加   供应的气体。

这是我的node / web3代码:

const Web3 = require('web3')

// connect to Infura node
const web3 = new Web3(new Web3.providers.HttpProvider('https://kovan.infura.io/api_key'))

// the addresses & private key 
const addressFrom = '0x002D189c25958c60736aE21C966ff3131C2AC849';
const contractAddress = '0x36075430619b21Fff798454e2D5C81E9C18DEe81';
const privKey = '240462d...';

//ABI objects
var contractABI = new web3.eth.Contract(
    [ ...abi... ],
    contractAddress);
const contractFunction = contractABI.methods.changeBox(5);
const functionABI = contractFunction.encodeABI();

// construct the Tx data
const rawTx = {
    //gasPrice: '0x09184e72a000',
    gasLimit: web3.utils.toHex(25000),
    to: contractAddress,
    from: addressFrom,
    data: functionABI
    };

//sign & send Tx
web3.eth.accounts.signTransaction(rawTx, privKey)
    .then(RLPencodedTx => {
        web3.eth.sendSignedTransaction(RLPencodedTx['rawTransaction'])
            .on('receipt', console.log);
    });

有人知道为什么web3会引发这些错误错误吗?

1 个答案:

答案 0 :(得分:1)

  

我已经通过Parity创建了帐户,并将该帐户导出为json文件,其中包含ciphertext,这是私钥

cipthertext是私钥的加密版本。如果您对此感到好奇,请Q&A includes some deeper background

要获取私钥,您将需要密钥文件以及用于对其进行加密的密码。然后,您可以使用来自web3.js v1(测试版)的web3.eth.accounts.decrypt()来提取密钥,如下所示:

web3.eth.accounts.decrypt({
    version: 3,
    id: '04e9bcbb-96fa-497b-94d1-14df4cd20af6',
    address: '2c7536e3605d9c16a7a3d7b1898e529396a65c23',
    crypto: {
        ciphertext: 'a1c25da3ecde4e6a24f3697251dd15d6208520efc84ad97397e906e6df24d251',
        cipherparams: { iv: '2885df2b63f7ef247d753c82fa20038a' },
        cipher: 'aes-128-ctr',
        kdf: 'scrypt',
        kdfparams: {
            dklen: 32,
            salt: '4531b3c174cc3ff32a6a7a85d6761b410db674807b2d216d022318ceee50be10',
            n: 262144,
            r: 8,
            p: 1
        },
        mac: 'b8b010fff37f9ae5559a352a185e86f9b9c1d7f7a9f1bd4e82a5dd35468fc7f6'
    }
}, 'test!'); // <-- your password for the account goes in place of 'test!'
> {
    address: "0x2c7536E3605D9C16a7a3D7b1898e529396a65c23",
    privateKey: "0x4c0883a69102937d6231471b5dbb6204fe5129617082792ae468d01a3f362318",
    signTransaction: function(tx){...},
    sign: function(data){...},
    encrypt: function(password){...}
}