Posts

Showing posts with the label ethereum

Ethereum Smart Contract deploys fine on Kovan, fails on Main Net. Gas too low or what?

Image
Clash Royale CLAN TAG #URR8PPP Ethereum Smart Contract deploys fine on Kovan, fails on Main Net. Gas too low or what? I'm deploying a smart contract using its bytecode in wallet.ethereum.org. I deployed it on Kovan and Rinkeby networks and it went very smooth and fast, fee was 1782250 gas @ 4 Gwei price. With the exact same bytecode, I tried deploying on Main Net with higher gas than recommended by wallet.ethereum.org, my last try was with a limit of 5,882,250 Gas @ 6 Gwei price. But still, processing takes a long long time and ultimately fails without an error message. The transaction ID generated returns non-existent.(https://etherscan.io/tx/0x28e8547958c9f72d91128a12fd8c32082d290244383b16a05fb49078b58dc142) Also tried using Remix with the contract code itself (not bytecode) and same thing happens, deploys ok on Test Networks, fails on Main Net. The contract is a standard BurnableToken from OpenZeppelin. What could be going wrong? did the tx drop? ther...