Address
0xda00a9739794ea3e1a6cb65d234c00c6bf3020e1Current Holdings
$0.00
TXs sent
not counted
First Active
2024-05-10
block 20,336,500
Last Active
437 days ago
block 23,901,988
Funded By
not identified
Net worth historyi
No net-worth snapshots recorded yet
exact matchDanzaContractsolc 0.8.20+commit.a1b79de6runtime exact · creation not verified
//
// ½ .---.
// .----. .----. __.....__ | |
// \ \ / / .-'' '. | |
// ' '. /' / / .-''"'-. `. | | .|
// | |' / / /________\ \| | .' |_ __
// | || | _ _| || | .' | .:--.'.
// '. `' .'| ' / \ .-------------'| |'--. .-'/ | \ |
// \ /.' | .' |\ '-.____...---.| | | | `" __ | |
// \ / / | / | `. .' | | | | .'.''| |
// '----' | `'. | `''-...... -' '---' | '.'/ / | |_
// ' .'| '/ | / \ \._,\ '/
// `-' `--' `'-' `--' `"
//
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract DanzaContract is ERC20, Ownable {
constructor(uint256 initialSupply, string memory tokenName, string memory tokenSymbol)
ERC20(tokenName, tokenSymbol)
Ownable(msg.sender) // Passing the deployer's address as the initial owner
{
_mint(msg.sender, (initialSupply * 10 ** uint256(decimals())));
}
}
//.---. .---. ____ .---. ________ ,---------. ___ _.-------. ,---. .--.
//| | |_ _| .' __ `. | ,_| | | \ \.' | | | _ _ \ | \ | |
//| | ( ' )/ ' \ \,-./ ) | .----' `--. ,---'| .' | | ( ' ) | | , \ | |
//| '-(_{;}_)___| / |\ '_ '`) | _|____ _ _ _ _ | \ .' '_ | |(_ o _) / | |\_ \| |
//| (_,_) _.-` | > (_) ) |_( )_ |( ' )--( ' ):_ _: ' ( \.-.| (_,_).' __| _( )_\ |
//| _ _--. |.' _ |( . .-' (_ o._)__(_{;}_)(_{;}_|_I_) ' (`. _` /| |\ \ | | (_ o _) |
//|( ' ) | || _( )_ | `-'`-'|___ |(_,_) (_,_)--(_,_|_(=)_) | (_ (_) _) | \ `' / (_,_)\ |
//(_{;}_)| |\ (_ o _) / | \| | (_I_) \ / . \ / | \ /| | | |
//'(_,_) '---' '.(_,_).' `--------`'---' '---' ``-'`-''''-' `'-' '--' '--'
//