Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UnhandledPromiseRejectionWarning: Error: The contract code couldn't be stored, please check your gas limit

I am trying to deploy my simple solidity smart contract onto the Rinkeby Network but I keep getting the error:

UnhandledPromiseRejectionWarning: Error: The contract code couldn't be stored, please check your gas limit.

My solidity code is simple

pragma solidity ^0.4.18; 

contract Greetings{ 
  string public message; 

  function Greetings(string initialMessage) public{ 
    message = initialMessage;
  }  

  function setMessage(string newMessage) public {
    message = newMessage;
  }  
}

and my deploy script is:

const HDWalletProvider = require('truffle-hdwallet-provider'); 
const Web3 = require('web3');
const { interface,bytecode} = require('./compile');

const provider = new HDWalletProvider(  
  'twelve word mnemonic...', 
  'https://rinkeby.infura.io/GLm6McXWuaih4gqq8nTY'    
);

const web3 = new Web3(provider);

const deploy = async () => {
    accounts = await web3.eth.getAccounts(); 

    console.log('attempting to deploy from account',accounts[0]);

    const result = await new web3.eth.Contract(JSON.parse(interface)) 
      .deploy({data:bytecode, arguments:['Hello World']})      
      .send({from: accounts[0], gas:'1000000'});                              

    console.log('Contract deployed to', result.options.address); 
};

deploy();

Funny thing is, I used to be able to deploy successfully, but when i created a new project and re did the same code, i get this error now. Please help!

like image 555
Jason Avatar asked May 06 '18 15:05

Jason


2 Answers

Had exactly same problem! Seems it is caused by the bug in the "truffle-hdwallet-provider" version 0.0.5. During the udemy course it was using "0.0.3" apparently.

If you do the following should be okay, it worked for me.

npm uninstall truffle-hdwallet-provider
npm install --save [email protected]

Then I ran the same contract which has deployed successfully.

Good luck!

like image 122
Kutay Ozdogru Avatar answered Nov 19 '22 14:11

Kutay Ozdogru


This issue can be solved by adding the '0x' as the prefix of the bytecode:

.deploy({ data: '0x' + bytecode, arguments: ['Hi there!'] })

More information is at https://ethereum.stackexchange.com/a/47654.

like image 17
Huy Vo Avatar answered Nov 19 '22 14:11

Huy Vo