Baadbe @ Ethereum Blockchain
A new ERC-20 token, Baadbe, has been created on the Ethereum mainnet, functioning as a member token for My Family token services, token Contract is 0x26A1D3bd6a7d4Abd216A1D87237d56D736Fa0B30
Source code :
// baadbe.sol file start ////
// SPDX-License-Identifier: MIT
// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity ^0.8.29;
import "@openzeppelin/contracts@5.0.2/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts@5.0.2/access/Ownable.sol";
contract Baadbe is ERC20, Ownable {
constructor(address initialOwner)
ERC20("Baadbe", "BAA")
Ownable(initialOwner)
{
_mint(msg.sender, 9999999999 * 10 ** decimals());
}
function mint(address to, uint256 amount) public onlyOwner {
_mint(to, amount);
}
}
// baadble.sol file end /////////////////////////
Visit Baddbe website for more information :
https://baadbe.com/