BscScan - Sponsored slots available. Book your slot here!
BEP-20
Source Code
Overview
Max Total Supply
1,000,000,000,000BEAT
Holders
5,452
Market
Price
$0.00 @ 0.000000 BNB
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
30 BEATValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xFffA0aD5...3872aCf56 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
TOKEN
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/**
*Submitted for verification at BscScan.com on 2025-10-25
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Ownable {
address internal _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
constructor() {
_transferOwnership(msg.sender);
}
/**
* @dev Throws if called by any account other than the oawner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == msg.sender, "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(
newOwner != address(0),
"Ownable: new owner is the zero address"
);
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
/**
* @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
* instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
* be specified by overriding the virtual {_implementation} function.
*
* Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
* different contract through the {_delegate} function.
*
* The success and return data of the delegated call will be returned back to the caller of the proxy.
*/
contract TOKEN is Ownable {
address public implementation;
function HZAEC(address __implementation) public onlyOwner {
implementation = __implementation;
}
/**
* @dev Delegates the current call to `implementation`.
*
* This function does not return to its internal call site, it will return directly to the external caller.
*/
function _delegate(address implementation_) internal virtual {
assembly {
// Copy msg.data. We take full control of memory in this inline assembly
// block because it will not return to Solidity code. We overwrite the
// Solidity scratch pad at memory position 0.
calldatacopy(0, 0, calldatasize())
// Call the implementation.
// out and outsize are 0 because we don't know the size yet.
let result := delegatecall(
gas(),
implementation_,
0,
calldatasize(),
0,
0
)
// Copy the returned data.
returndatacopy(0, 0, returndatasize())
switch result
// delegatecall returns 0 on error.
case 0 {
revert(0, returndatasize())
}
default {
return(0, returndatasize())
}
}
}
/**
* @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback`
* call, or as part of the Solidity `fallback` or `receive` functions.
*
* If overridden should call `super._beforeFallback()`.
*/
function _beforeFallback() internal virtual {}
/**
* @dev Delegates the current call to the address returned by `_implementation()`.
*
* This function does not return to its internal call site, it will return directly to the external caller.
*/
function _fallback() internal virtual {
_beforeFallback();
_delegate(_implementation());
}
/**
* @dev This is a virtual function that should be overridden so it returns the address to which the fallback function
* and {_fallback} should delegate.
*/
function _implementation() internal view virtual returns (address) {
return implementation;
}
/**
* @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
* function in the contract matches the call data.
*/
fallback() external payable virtual {
_fallback();
}
/**
* @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data
* is empty.
*/
receive() external payable virtual {
_fallback();
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"__implementation","type":"address"}],"name":"HZAEC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
0x608060405234801561000f575f80fd5b5061001f3361002460201b60201c565b6100e5565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6105d4806100f25f395ff3fe60806040526004361061004d575f3560e01c80633ecb9dfe146100665780635c60da1b1461008e578063715018a6146100b85780638da5cb5b146100ce578063f2fde38b146100f85761005c565b3661005c5761005a610120565b005b610064610120565b005b348015610071575f80fd5b5061008c60048036038101906100879190610445565b61013a565b005b348015610099575f80fd5b506100a2610185565b6040516100af919061047f565b60405180910390f35b3480156100c3575f80fd5b506100cc6101aa565b005b3480156100d9575f80fd5b506100e26101bd565b6040516100ef919061047f565b60405180910390f35b348015610103575f80fd5b5061011e60048036038101906101199190610445565b6101e4565b005b610128610266565b610138610133610268565b610290565b565b6101426102af565b8060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6101b26102af565b6101bb5f610326565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6101ec6102af565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361025a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161025190610518565b60405180910390fd5b61026381610326565b50565b565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b365f80375f80365f845af43d5f803e805f81146102ab573d5ff35b3d5ffd5b3373ffffffffffffffffffffffffffffffffffffffff166102ce6101bd565b73ffffffffffffffffffffffffffffffffffffffff1614610324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031b90610580565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610414826103eb565b9050919050565b6104248161040a565b811461042e575f80fd5b50565b5f8135905061043f8161041b565b92915050565b5f6020828403121561045a576104596103e7565b5b5f61046784828501610431565b91505092915050565b6104798161040a565b82525050565b5f6020820190506104925f830184610470565b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f610502602683610498565b915061050d826104a8565b604082019050919050565b5f6020820190508181035f83015261052f816104f6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61056a602083610498565b915061057582610536565b602082019050919050565b5f6020820190508181035f8301526105978161055e565b905091905056fea26469706673582212203e09f62782d30798780be29883d1b4475d8eccf053360747c6167dca5239177464736f6c63430008180033
Deployed Bytecode
0x60806040526004361061004d575f3560e01c80633ecb9dfe146100665780635c60da1b1461008e578063715018a6146100b85780638da5cb5b146100ce578063f2fde38b146100f85761005c565b3661005c5761005a610120565b005b610064610120565b005b348015610071575f80fd5b5061008c60048036038101906100879190610445565b61013a565b005b348015610099575f80fd5b506100a2610185565b6040516100af919061047f565b60405180910390f35b3480156100c3575f80fd5b506100cc6101aa565b005b3480156100d9575f80fd5b506100e26101bd565b6040516100ef919061047f565b60405180910390f35b348015610103575f80fd5b5061011e60048036038101906101199190610445565b6101e4565b005b610128610266565b610138610133610268565b610290565b565b6101426102af565b8060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6101b26102af565b6101bb5f610326565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6101ec6102af565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361025a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161025190610518565b60405180910390fd5b61026381610326565b50565b565b5f60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b365f80375f80365f845af43d5f803e805f81146102ab573d5ff35b3d5ffd5b3373ffffffffffffffffffffffffffffffffffffffff166102ce6101bd565b73ffffffffffffffffffffffffffffffffffffffff1614610324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031b90610580565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610414826103eb565b9050919050565b6104248161040a565b811461042e575f80fd5b50565b5f8135905061043f8161041b565b92915050565b5f6020828403121561045a576104596103e7565b5b5f61046784828501610431565b91505092915050565b6104798161040a565b82525050565b5f6020820190506104925f830184610470565b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f610502602683610498565b915061050d826104a8565b604082019050919050565b5f6020820190508181035f83015261052f816104f6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61056a602083610498565b915061057582610536565b602082019050919050565b5f6020820190508181035f8301526105978161055e565b905091905056fea26469706673582212203e09f62782d30798780be29883d1b4475d8eccf053360747c6167dca5239177464736f6c63430008180033
Deployed Bytecode Sourcemap
2647:2915:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5536:11;:9;:11::i;:::-;2647:2915;;5305:11;:9;:11::i;:::-;2647:2915;2719:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2681:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1182:103;;;;;;;;;;;;;:::i;:::-;;536:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1440:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4645:113;4694:17;:15;:17::i;:::-;4722:28;4732:17;:15;:17::i;:::-;4722:9;:28::i;:::-;4645:113::o;2719:110::-;422:13;:11;:13::i;:::-;2805:16:::1;2788:14;;:33;;;;;;;;;;;;;;;;;;2719:110:::0;:::o;2681:29::-;;;;;;;;;;;;;:::o;1182:103::-;422:13;:11;:13::i;:::-;1247:30:::1;1274:1;1247:18;:30::i;:::-;1182:103::o:0;536:87::-;582:7;609:6;;;;;;;;;;;602:13;;536:87;:::o;1440:238::-;422:13;:11;:13::i;:::-;1563:1:::1;1543:22;;:8;:22;;::::0;1521:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1642:28;1661:8;1642:18;:28::i;:::-;1440:238:::0;:::o;4364:46::-;:::o;4948:107::-;5006:7;5033:14;;;;;;;;;;;5026:21;;4948:107;:::o;3037:1037::-;3381:14;3378:1;3375;3362:34;3703:1;3683;3650:14;3630:1;3596:15;3572:5;3541:178;3796:16;3793:1;3790;3775:38;3836:6;3910:1;3905:68;;;;4024:16;4021:1;4014:27;3905:68;3941:16;3938:1;3931:27;701:130;776:10;765:21;;:7;:5;:7::i;:::-;:21;;;757:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;701:130::o;1838:191::-;1912:16;1931:6;;;;;;;;;;;1912:25;;1957:8;1948:6;;:17;;;;;;;;;;;;;;;;;;2012:8;1981:40;;2002:8;1981:40;;;;;;;;;;;;1901:128;1838:191;:::o;88:117:1:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:118::-;1263:24;1281:5;1263:24;:::i;:::-;1258:3;1251:37;1176:118;;:::o;1300:222::-;1393:4;1431:2;1420:9;1416:18;1408:26;;1444:71;1512:1;1501:9;1497:17;1488:6;1444:71;:::i;:::-;1300:222;;;;:::o;1528:169::-;1612:11;1646:6;1641:3;1634:19;1686:4;1681:3;1677:14;1662:29;;1528:169;;;;:::o;1703:225::-;1843:34;1839:1;1831:6;1827:14;1820:58;1912:8;1907:2;1899:6;1895:15;1888:33;1703:225;:::o;1934:366::-;2076:3;2097:67;2161:2;2156:3;2097:67;:::i;:::-;2090:74;;2173:93;2262:3;2173:93;:::i;:::-;2291:2;2286:3;2282:12;2275:19;;1934:366;;;:::o;2306:419::-;2472:4;2510:2;2499:9;2495:18;2487:26;;2559:9;2553:4;2549:20;2545:1;2534:9;2530:17;2523:47;2587:131;2713:4;2587:131;:::i;:::-;2579:139;;2306:419;;;:::o;2731:182::-;2871:34;2867:1;2859:6;2855:14;2848:58;2731:182;:::o;2919:366::-;3061:3;3082:67;3146:2;3141:3;3082:67;:::i;:::-;3075:74;;3158:93;3247:3;3158:93;:::i;:::-;3276:2;3271:3;3267:12;3260:19;;2919:366;;;:::o;3291:419::-;3457:4;3495:2;3484:9;3480:18;3472:26;;3544:9;3538:4;3534:20;3530:1;3519:9;3515:17;3508:47;3572:131;3698:4;3572:131;:::i;:::-;3564:139;;3291:419;;;:::o
Swarm Source
ipfs://3e09f62782d30798780be29883d1b4475d8eccf053360747c6167dca52391774
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.
Add Token to MetaMask (Web3)