Smart Contract
DBDC Token Contract :
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
/// @custom:security-contact [email protected]
contract DecentralizedBankDigitalCurrency is ERC20, ERC20Burnable, Ownable {
constructor(address initialOwner)
ERC20("Decentralized Bank Digital Currency", "DBDC")
Ownable(initialOwner)
{
_mint(msg.sender, 8076860775 * 10 ** decimals());
}
}
DBDC Airdrop Contract:
Last updated