-------------------version-------------------
Solidity version
Current version:0.4.24+commit.e67f0147.Emscripten.clang
---------------------warnning-------------------
browser/BNBFormat.sol:31:3: Warning: This declaration shadows a builtin symbol.
function assert( bool assertion)
^ (Relevant source part starts here and spans across multiple lines).
-------------------------code-----------------------
function assert( bool assertion) internal pure returns (uint256){
if (!assertion) {
revert();
}
}
WHY has this warnning? how can i clear that?
We are developing a DAPP based on ethereum. Current we are developing based on testrpc and its working perfectly.
We do want to decide on where to deploy DAPP.
Can we deploy on public Ethereum blockchain.
Is there any other variables that need to be considered when deployed a smart contract of the decentralised application other than token in ethereum network ?
What about decentralised private ethereum blockchain.
@bitcoinpure01
Error! Unable to verify source code
Missing Constructor Arguments for function EtherToken(address admin, address feeAccount, address accountLevelsAddr, uint feeMake, uint feeTake, uint feeRebate)
00000000000000000000000033daedabab9085bd1a94460a652e7ffff592dfe3000000000000000000000000fec8bb460c2501b8c1d4801f34b4408c1fbbccb1
Which when decoded would be
Arg [0] : 00000000000000000000000033daedabab9085bd1a94460a652e7ffff592dfe3
Arg [1] : 000000000000000000000000fec8bb460c2501b8c1d4801f34b4408c1fbbccb1
Another quick and dirty way of figuring out what your constructor arguments are is to compare both the browser solidity / remix compiled byte code and compare this with the input creation byte code. If you look carefully you will notice that the additional hex codes attached at the END of the input created byte code. This is your 'Constructor Arguments'
how to find constructor arguments at the end of byte code
someone help me