Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00Latest 25 from a total of 27,202 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Widthdraw | 152801892 | 802 days ago | IN | 0 ETH | 0.00005526 | ||||
| Claim | 90303567 | 994 days ago | IN | 0 ETH | 0.00004153 | ||||
| Claim | 90302401 | 994 days ago | IN | 0 ETH | 0.00004757 | ||||
| Claim | 90302140 | 994 days ago | IN | 0 ETH | 0.00004719 | ||||
| Claim | 90301545 | 994 days ago | IN | 0 ETH | 0.00004887 | ||||
| Claim | 90151818 | 995 days ago | IN | 0 ETH | 0.00004925 | ||||
| Claim | 89305046 | 997 days ago | IN | 0 ETH | 0.00012846 | ||||
| Claim | 88156217 | 1000 days ago | IN | 0 ETH | 0.00009364 | ||||
| Claim | 86849815 | 1004 days ago | IN | 0 ETH | 0.00006664 | ||||
| Claim | 86849585 | 1004 days ago | IN | 0 ETH | 0.00006664 | ||||
| Claim | 86814409 | 1004 days ago | IN | 0 ETH | 0.00005558 | ||||
| Claim | 86809907 | 1004 days ago | IN | 0 ETH | 0.00005972 | ||||
| Claim | 86797361 | 1004 days ago | IN | 0 ETH | 0.00006376 | ||||
| Claim | 86792871 | 1004 days ago | IN | 0 ETH | 0.00006231 | ||||
| Claim | 86770786 | 1004 days ago | IN | 0 ETH | 0.00005595 | ||||
| Claim | 86760262 | 1005 days ago | IN | 0 ETH | 0.00008268 | ||||
| Claim | 86740925 | 1005 days ago | IN | 0 ETH | 0.00010069 | ||||
| Claim | 86735252 | 1005 days ago | IN | 0 ETH | 0.00013773 | ||||
| Claim | 86730942 | 1005 days ago | IN | 0 ETH | 0.0001253 | ||||
| Claim | 86729921 | 1005 days ago | IN | 0 ETH | 0.00012639 | ||||
| Claim | 86729590 | 1005 days ago | IN | 0 ETH | 0.00012639 | ||||
| Claim | 86725814 | 1005 days ago | IN | 0 ETH | 0.00012657 | ||||
| Claim | 86724514 | 1005 days ago | IN | 0 ETH | 0.00012657 | ||||
| Claim | 86722179 | 1005 days ago | IN | 0 ETH | 0.00012507 | ||||
| Claim | 86688934 | 1005 days ago | IN | 0 ETH | 0.00011204 |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Airdrop
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";
contract Airdrop is Ownable {
mapping(address => bool) public whiteList;
mapping(address => bool) public claimedUser;
uint256 public counter;
address public Contract = 0x81aa95fD8Eb24F9022e61aD3C669e728985E5A88;
bool public State = true;
function addList(address[] calldata _list) external onlyOwner {
require(_list.length < 1000, "Exceeding maximum limit");
uint256 i = 0;
for (i = 0; i < _list.length; i++) {
if (!whiteList[_list[i]]) {
whiteList[_list[i]] = true;
} else {
continue;
}
}
}
function changeContract(address _address) external onlyOwner {
require(_address != address(0), "Cannot be a zero address");
Contract = _address;
}
function changeState(bool _state) external onlyOwner {
State = _state;
}
function delUser(address _address, bool _state) external onlyOwner {
require(_address != address(0), "Cannot be a zero address");
whiteList[_address] = _state;
}
function Widthdraw(address _contract) public onlyOwner {
IERC20 Token = IERC20(_contract);
Token.transfer(owner(), Token.balanceOf(address(this)));
}
function claim() public {
require(State == true, "Not yet open");
require(whiteList[_msgSender()] == true, "Not on the whitelist");
require(claimedUser[_msgSender()] == false, "already claimed");
claimedUser[_msgSender()] = true;
IERC20 Token = IERC20(Contract);
Token.transfer(_msgSender(), 921977642 * 10**6); //1111111111*10**6
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.1) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.2;
import "../../utils/AddressUpgradeable.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts.
*
* Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
* constructor.
*
* Emits an {Initialized} event.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_initialized = 1;
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* A reinitializer may be used after the original initialization step. This is essential to configure modules that
* are added through upgrades and that require initialization.
*
* When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
* cannot be nested. If one is invoked in the context of another, execution will revert.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*
* WARNING: setting the version to 255 will prevent any future reinitialization.
*
* Emits an {Initialized} event.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_initialized = version;
_initializing = true;
_;
_initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*
* Emits an {Initialized} event the first time it is successfully executed.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized < type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
/**
* @dev Returns the highest version that has been initialized. See {reinitializer}.
*/
function _getInitializedVersion() internal view returns (uint8) {
return _initialized;
}
/**
* @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
*/
function _isInitializing() internal view returns (bool) {
return _initializing;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract ContextUpgradeable is Initializable {
function __Context_init() internal onlyInitializing {
}
function __Context_init_unchained() internal onlyInitializing {
}
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
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() == _msgSender(), "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);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}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"},{"inputs":[],"name":"Contract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"State","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"Widthdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list","type":"address[]"}],"name":"addList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"changeContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"changeState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"counter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"delUser","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60806040527381aa95fd8eb24f9022e61ad3c669e728985e5a88600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600460146101000a81548160ff02191690831515021790555034801561008057600080fd5b5061009d6100926100a260201b60201c565b6100aa60201b60201c565b61016e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6113918061017d6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806361bc221a1161008c5780638bebc9b1116100665780638bebc9b1146101fb5780638da5cb5b1461022b578063f1b6dccd14610249578063f2fde38b14610267576100ea565b806361bc221a146101b7578063715018a6146101d55780637d328288146101df576100ea565b80633d71c3af116100c85780633d71c3af146101575780633eed03d9146101735780634e71d92d1461018f5780635af77fff14610199576100ea565b80631d0f90ac146100ef5780631deb0a8f1461010b578063372c12b114610127575b600080fd5b61010960048036038101906101049190610c4c565b610283565b005b61012560048036038101906101209190610cb1565b610393565b005b610141600480360381019061013c9190610c4c565b6103b8565b60405161014e9190610ced565b60405180910390f35b610171600480360381019061016c9190610c4c565b6103d8565b005b61018d60048036038101906101889190610d08565b610493565b005b610197610565565b005b6101a1610805565b6040516101ae9190610d57565b60405180910390f35b6101bf61082b565b6040516101cc9190610d8b565b60405180910390f35b6101dd610831565b005b6101f960048036038101906101f49190610e0b565b610845565b005b61021560048036038101906102109190610c4c565b6109bb565b6040516102229190610ced565b60405180910390f35b6102336109db565b6040516102409190610d57565b60405180910390f35b610251610a04565b60405161025e9190610ced565b60405180910390f35b610281600480360381019061027c9190610c4c565b610a17565b005b61028b610a9a565b60008190508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6102b46109db565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016102ed9190610d57565b602060405180830381865afa15801561030a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061032e9190610e84565b6040518363ffffffff1660e01b815260040161034b929190610eb1565b6020604051808303816000875af115801561036a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061038e9190610eef565b505050565b61039b610a9a565b80600460146101000a81548160ff02191690831515021790555050565b60016020528060005260406000206000915054906101000a900460ff1681565b6103e0610a9a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361044f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161044690610f79565b60405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61049b610a9a565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361050a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050190610f79565b60405180910390fd5b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60011515600460149054906101000a900460ff161515146105bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b290610fe5565b60405180910390fd5b60011515600160006105cb610b18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064c90611051565b60405180910390fd5b6000151560026000610665610b18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146106ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e6906110bd565b60405180910390fd5b6001600260006106fd610b18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610799610b18565b66034688a5d79e806040518363ffffffff1660e01b81526004016107be929190611122565b6020604051808303816000875af11580156107dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108019190610eef565b5050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60035481565b610839610a9a565b6108436000610b20565b565b61084d610a9a565b6103e88282905010610894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088b90611197565b60405180910390fd5b60005b828290508110156109b657600160008484848181106108b9576108b86111b7565b5b90506020020160208101906108ce9190610c4c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661099d576001806000858585818110610932576109316111b7565b5b90506020020160208101906109479190610c4c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506109a2565b6109a3565b5b80806109ae90611215565b915050610897565b505050565b60026020528060005260406000206000915054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600460149054906101000a900460ff1681565b610a1f610a9a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a85906112cf565b60405180910390fd5b610a9781610b20565b50565b610aa2610b18565b73ffffffffffffffffffffffffffffffffffffffff16610ac06109db565b73ffffffffffffffffffffffffffffffffffffffff1614610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d9061133b565b60405180910390fd5b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610c1982610bee565b9050919050565b610c2981610c0e565b8114610c3457600080fd5b50565b600081359050610c4681610c20565b92915050565b600060208284031215610c6257610c61610be4565b5b6000610c7084828501610c37565b91505092915050565b60008115159050919050565b610c8e81610c79565b8114610c9957600080fd5b50565b600081359050610cab81610c85565b92915050565b600060208284031215610cc757610cc6610be4565b5b6000610cd584828501610c9c565b91505092915050565b610ce781610c79565b82525050565b6000602082019050610d026000830184610cde565b92915050565b60008060408385031215610d1f57610d1e610be4565b5b6000610d2d85828601610c37565b9250506020610d3e85828601610c9c565b9150509250929050565b610d5181610c0e565b82525050565b6000602082019050610d6c6000830184610d48565b92915050565b6000819050919050565b610d8581610d72565b82525050565b6000602082019050610da06000830184610d7c565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112610dcb57610dca610da6565b5b8235905067ffffffffffffffff811115610de857610de7610dab565b5b602083019150836020820283011115610e0457610e03610db0565b5b9250929050565b60008060208385031215610e2257610e21610be4565b5b600083013567ffffffffffffffff811115610e4057610e3f610be9565b5b610e4c85828601610db5565b92509250509250929050565b610e6181610d72565b8114610e6c57600080fd5b50565b600081519050610e7e81610e58565b92915050565b600060208284031215610e9a57610e99610be4565b5b6000610ea884828501610e6f565b91505092915050565b6000604082019050610ec66000830185610d48565b610ed36020830184610d7c565b9392505050565b600081519050610ee981610c85565b92915050565b600060208284031215610f0557610f04610be4565b5b6000610f1384828501610eda565b91505092915050565b600082825260208201905092915050565b7f43616e6e6f742062652061207a65726f20616464726573730000000000000000600082015250565b6000610f63601883610f1c565b9150610f6e82610f2d565b602082019050919050565b60006020820190508181036000830152610f9281610f56565b9050919050565b7f4e6f7420796574206f70656e0000000000000000000000000000000000000000600082015250565b6000610fcf600c83610f1c565b9150610fda82610f99565b602082019050919050565b60006020820190508181036000830152610ffe81610fc2565b9050919050565b7f4e6f74206f6e207468652077686974656c697374000000000000000000000000600082015250565b600061103b601483610f1c565b915061104682611005565b602082019050919050565b6000602082019050818103600083015261106a8161102e565b9050919050565b7f616c726561647920636c61696d65640000000000000000000000000000000000600082015250565b60006110a7600f83610f1c565b91506110b282611071565b602082019050919050565b600060208201905081810360008301526110d68161109a565b9050919050565b6000819050919050565b6000819050919050565b600061110c611107611102846110dd565b6110e7565b610d72565b9050919050565b61111c816110f1565b82525050565b60006040820190506111376000830185610d48565b6111446020830184611113565b9392505050565b7f457863656564696e67206d6178696d756d206c696d6974000000000000000000600082015250565b6000611181601783610f1c565b915061118c8261114b565b602082019050919050565b600060208201905081810360008301526111b081611174565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061122082610d72565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611252576112516111e6565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006112b9602683610f1c565b91506112c48261125d565b604082019050919050565b600060208201905081810360008301526112e8816112ac565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611325602083610f1c565b9150611330826112ef565b602082019050919050565b6000602082019050818103600083015261135481611318565b905091905056fea26469706673582212203a778aee40972f0b2075eabf90f93f5a538bf2e5c40c6c870cc455355a1d9f6a64736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806361bc221a1161008c5780638bebc9b1116100665780638bebc9b1146101fb5780638da5cb5b1461022b578063f1b6dccd14610249578063f2fde38b14610267576100ea565b806361bc221a146101b7578063715018a6146101d55780637d328288146101df576100ea565b80633d71c3af116100c85780633d71c3af146101575780633eed03d9146101735780634e71d92d1461018f5780635af77fff14610199576100ea565b80631d0f90ac146100ef5780631deb0a8f1461010b578063372c12b114610127575b600080fd5b61010960048036038101906101049190610c4c565b610283565b005b61012560048036038101906101209190610cb1565b610393565b005b610141600480360381019061013c9190610c4c565b6103b8565b60405161014e9190610ced565b60405180910390f35b610171600480360381019061016c9190610c4c565b6103d8565b005b61018d60048036038101906101889190610d08565b610493565b005b610197610565565b005b6101a1610805565b6040516101ae9190610d57565b60405180910390f35b6101bf61082b565b6040516101cc9190610d8b565b60405180910390f35b6101dd610831565b005b6101f960048036038101906101f49190610e0b565b610845565b005b61021560048036038101906102109190610c4c565b6109bb565b6040516102229190610ced565b60405180910390f35b6102336109db565b6040516102409190610d57565b60405180910390f35b610251610a04565b60405161025e9190610ced565b60405180910390f35b610281600480360381019061027c9190610c4c565b610a17565b005b61028b610a9a565b60008190508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6102b46109db565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016102ed9190610d57565b602060405180830381865afa15801561030a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061032e9190610e84565b6040518363ffffffff1660e01b815260040161034b929190610eb1565b6020604051808303816000875af115801561036a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061038e9190610eef565b505050565b61039b610a9a565b80600460146101000a81548160ff02191690831515021790555050565b60016020528060005260406000206000915054906101000a900460ff1681565b6103e0610a9a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361044f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161044690610f79565b60405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61049b610a9a565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361050a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050190610f79565b60405180910390fd5b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60011515600460149054906101000a900460ff161515146105bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b290610fe5565b60405180910390fd5b60011515600160006105cb610b18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064c90611051565b60405180910390fd5b6000151560026000610665610b18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146106ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e6906110bd565b60405180910390fd5b6001600260006106fd610b18565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610799610b18565b66034688a5d79e806040518363ffffffff1660e01b81526004016107be929190611122565b6020604051808303816000875af11580156107dd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108019190610eef565b5050565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60035481565b610839610a9a565b6108436000610b20565b565b61084d610a9a565b6103e88282905010610894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088b90611197565b60405180910390fd5b60005b828290508110156109b657600160008484848181106108b9576108b86111b7565b5b90506020020160208101906108ce9190610c4c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661099d576001806000858585818110610932576109316111b7565b5b90506020020160208101906109479190610c4c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506109a2565b6109a3565b5b80806109ae90611215565b915050610897565b505050565b60026020528060005260406000206000915054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600460149054906101000a900460ff1681565b610a1f610a9a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a85906112cf565b60405180910390fd5b610a9781610b20565b50565b610aa2610b18565b73ffffffffffffffffffffffffffffffffffffffff16610ac06109db565b73ffffffffffffffffffffffffffffffffffffffff1614610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d9061133b565b60405180910390fd5b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610c1982610bee565b9050919050565b610c2981610c0e565b8114610c3457600080fd5b50565b600081359050610c4681610c20565b92915050565b600060208284031215610c6257610c61610be4565b5b6000610c7084828501610c37565b91505092915050565b60008115159050919050565b610c8e81610c79565b8114610c9957600080fd5b50565b600081359050610cab81610c85565b92915050565b600060208284031215610cc757610cc6610be4565b5b6000610cd584828501610c9c565b91505092915050565b610ce781610c79565b82525050565b6000602082019050610d026000830184610cde565b92915050565b60008060408385031215610d1f57610d1e610be4565b5b6000610d2d85828601610c37565b9250506020610d3e85828601610c9c565b9150509250929050565b610d5181610c0e565b82525050565b6000602082019050610d6c6000830184610d48565b92915050565b6000819050919050565b610d8581610d72565b82525050565b6000602082019050610da06000830184610d7c565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112610dcb57610dca610da6565b5b8235905067ffffffffffffffff811115610de857610de7610dab565b5b602083019150836020820283011115610e0457610e03610db0565b5b9250929050565b60008060208385031215610e2257610e21610be4565b5b600083013567ffffffffffffffff811115610e4057610e3f610be9565b5b610e4c85828601610db5565b92509250509250929050565b610e6181610d72565b8114610e6c57600080fd5b50565b600081519050610e7e81610e58565b92915050565b600060208284031215610e9a57610e99610be4565b5b6000610ea884828501610e6f565b91505092915050565b6000604082019050610ec66000830185610d48565b610ed36020830184610d7c565b9392505050565b600081519050610ee981610c85565b92915050565b600060208284031215610f0557610f04610be4565b5b6000610f1384828501610eda565b91505092915050565b600082825260208201905092915050565b7f43616e6e6f742062652061207a65726f20616464726573730000000000000000600082015250565b6000610f63601883610f1c565b9150610f6e82610f2d565b602082019050919050565b60006020820190508181036000830152610f9281610f56565b9050919050565b7f4e6f7420796574206f70656e0000000000000000000000000000000000000000600082015250565b6000610fcf600c83610f1c565b9150610fda82610f99565b602082019050919050565b60006020820190508181036000830152610ffe81610fc2565b9050919050565b7f4e6f74206f6e207468652077686974656c697374000000000000000000000000600082015250565b600061103b601483610f1c565b915061104682611005565b602082019050919050565b6000602082019050818103600083015261106a8161102e565b9050919050565b7f616c726561647920636c61696d65640000000000000000000000000000000000600082015250565b60006110a7600f83610f1c565b91506110b282611071565b602082019050919050565b600060208201905081810360008301526110d68161109a565b9050919050565b6000819050919050565b6000819050919050565b600061110c611107611102846110dd565b6110e7565b610d72565b9050919050565b61111c816110f1565b82525050565b60006040820190506111376000830185610d48565b6111446020830184611113565b9392505050565b7f457863656564696e67206d6178696d756d206c696d6974000000000000000000600082015250565b6000611181601783610f1c565b915061118c8261114b565b602082019050919050565b600060208201905081810360008301526111b081611174565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061122082610d72565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611252576112516111e6565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006112b9602683610f1c565b91506112c48261125d565b604082019050919050565b600060208201905081810360008301526112e8816112ac565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611325602083610f1c565b9150611330826112ef565b602082019050919050565b6000602082019050818103600083015261135481611318565b905091905056fea26469706673582212203a778aee40972f0b2075eabf90f93f5a538bf2e5c40c6c870cc455355a1d9f6a64736f6c63430008130033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$25.49
Net Worth in ETH
0.010431
Token Allocations
BNB
100.00%
Multichain Portfolio | 35 Chains
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.