Token.sol #6168
Unanswered
Veron-App
asked this question in
Troubleshooting
Token.sol
#6168
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello I soliciter of the help on the validation on Bscscan of my crypto in order to be verified.
here is the code :
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.2;
contract Token {
mapping(address => uint) public balances;
mapping(address => mapping(address => uint)) public allowance;
uint public totalSupply = 210000000000 * 10 ** 18;
string public name = "Veron";
string public symbol = "XVR";
uint public decimals = 18;
}
Here's the error when I tried to validate it :
Error! Unable to generate contract bytecode and ABI
tell me what I have to do to validate it
Thanks for your help
Beta Was this translation helpful? Give feedback.
All reactions