I have made a simple bep 20 token and I am trying to mint my wallet address 50% of the token supply and evenly distribute the remaining 50% of the supply between 10 different wallets that I would like to generate with code. I am not sure whether this can be done within the contract itself or has to be done separately through python after the contract is deployed.
here is the solidity code:
contract Token {
mapping(address => uint) public balances;
mapping(address => mapping(address => uint)) public allowance;
uint public totalSupply = 10000000000;
string public name = 'TestToken';
string public symbol = 'TEST';
uint public decimals = 9;
event Transfer(address indexed from, address indexed to, uint value);
event Approval(address indexed owener, address indexed spender, uint value);
constructor() {
balances[msg.sender] = totalSupply;
}
function balanceOf(address owner) public view returns(uint) {
return balances[owner];
}
function transfer(address to, uint value) public returns(bool) {
require(balanceOf(msg.sender)>= value, 'You are broke lol');
balances[to] += value;
balances[msg.sender] -= value;
emit Transfer(msg.sender, to, value);
return true;
}
function transferFrom(address from, address to, uint value) public returns(bool) {
require(balanceOf(from) >= value, 'You broke');
require(allowance[from][msg.sender] >= value, 'allowance too low');
balances[to] += value;
balances[from] -= value;
emit Transfer(from, to, value);
return true;
}
function approve(address spender, uint value) public returns(bool) {
allowance[msg.sender][spender] = value;
emit Approval(msg.sender, spender, value);
return true;
}
}```