Overview
ETH Balance
9 wei
Eth Value
Less Than $0.01 (@ $3,114.64/ETH)More Info
Private Name Tags
ContractCreator
Latest 20 from a total of 20 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Distribute | 20406791 | 185 days ago | IN | 0.04215722 ETH | 0.00014921 | ||||
Distribute | 20380513 | 188 days ago | IN | 0.65870561 ETH | 0.00201489 | ||||
Distribute | 20348931 | 193 days ago | IN | 0.1427989 ETH | 0.00025416 | ||||
Distribute | 20335810 | 195 days ago | IN | 0.15199297 ETH | 0.00038079 | ||||
Distribute | 20323287 | 196 days ago | IN | 0.16083941 ETH | 0.0003254 | ||||
Distribute | 20308620 | 198 days ago | IN | 0.15488999 ETH | 0.00021448 | ||||
Distribute | 20294795 | 200 days ago | IN | 0.16001955 ETH | 0.00014693 | ||||
Distribute | 20285749 | 202 days ago | IN | 0.16940078 ETH | 0.00029618 | ||||
Distribute | 20277452 | 203 days ago | IN | 0.45462131 ETH | 0.0058541 | ||||
Distribute | 20265850 | 204 days ago | IN | 0.1550133 ETH | 0.00015464 | ||||
Distribute | 20256299 | 206 days ago | IN | 0.1282126 ETH | 0.0001732 | ||||
Distribute | 20221642 | 211 days ago | IN | 0.17537199 ETH | 0.00036562 | ||||
Distribute | 20184357 | 216 days ago | IN | 0.19223398 ETH | 0.00053002 | ||||
Distribute | 20177001 | 217 days ago | IN | 0.4164028 ETH | 0.01145269 | ||||
Distribute | 20176947 | 217 days ago | IN | 0.86669888 ETH | 0.00811698 | ||||
Distribute | 20157826 | 220 days ago | IN | 0.58273978 ETH | 0.00273065 | ||||
Distribute | 20130339 | 223 days ago | IN | 0.13411253 ETH | 0.0002594 | ||||
Distribute | 20104004 | 227 days ago | IN | 0.22193009 ETH | 0.00022202 | ||||
Distribute | 20075400 | 231 days ago | IN | 0.19646354 ETH | 0.0010112 | ||||
Distribute | 20074323 | 231 days ago | IN | 0.00341609 ETH | 0.00040504 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
20406791 | 185 days ago | 0.01306874 ETH | ||||
20406791 | 185 days ago | 0.02908848 ETH | ||||
20380513 | 188 days ago | 0.00153459 ETH | ||||
20380513 | 188 days ago | 0.00153459 ETH | ||||
20380513 | 188 days ago | 0.00153459 ETH | ||||
20380513 | 188 days ago | 0.00153459 ETH | ||||
20380513 | 188 days ago | 0.00153459 ETH | ||||
20380513 | 188 days ago | 0.00153461 ETH | ||||
20380513 | 188 days ago | 0.00157887 ETH | ||||
20380513 | 188 days ago | 0.00201416 ETH | ||||
20380513 | 188 days ago | 0.002285 ETH | ||||
20380513 | 188 days ago | 0.00232184 ETH | ||||
20380513 | 188 days ago | 0.00306919 ETH | ||||
20380513 | 188 days ago | 0.00318934 ETH | ||||
20380513 | 188 days ago | 0.0032984 ETH | ||||
20380513 | 188 days ago | 0.00372951 ETH | ||||
20380513 | 188 days ago | 0.00387333 ETH | ||||
20380513 | 188 days ago | 0.00389064 ETH | ||||
20380513 | 188 days ago | 0.00392058 ETH | ||||
20380513 | 188 days ago | 0.00412971 ETH | ||||
20380513 | 188 days ago | 0.00422242 ETH | ||||
20380513 | 188 days ago | 0.00444793 ETH | ||||
20380513 | 188 days ago | 0.00517843 ETH | ||||
20380513 | 188 days ago | 0.00531013 ETH | ||||
20380513 | 188 days ago | 0.00683833 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
BulkTransfer
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-06-08 */ // Sources flattened with hardhat v2.19.1 https://hardhat.org // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/[email protected] // Original license: 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; } } // File @openzeppelin/contracts/access/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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); } } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File @openzeppelin/contracts/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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); } // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @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 * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [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://consensys.net/diligence/blog/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.8.0/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 Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(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); } } } // File @openzeppelin/contracts/token/ERC20/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } } // File contracts/alpha/BulkTransfer.sol // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; contract BulkTransfer is Ownable { using Address for address payable; using SafeERC20 for IERC20; function distribute( address[] calldata recipients, uint256[] calldata amounts ) external payable { uint256 sumAmount; uint256 count = recipients.length; require(count == amounts.length, "length mismatch"); for (uint256 i; i < count; ) { payable(recipients[i]).sendValue(amounts[i]); sumAmount += amounts[i]; unchecked { ++i; } } require(sumAmount <= msg.value, "insufficient funds"); } receive() external payable {} /** * @dev It allows the admin to recover tokens sent to the contract * @param token_: the address of the token to withdraw * @param amount_: the number of tokens to withdraw * * This function is only callable by owner */ function recoverToken(address token_, uint256 amount_) external onlyOwner { IERC20(token_).safeTransfer(_msgSender(), amount_); } /** * @dev It allows the admin to recover ETH sent to the contract * @param amount_: the number of ETH to withdraw * * This function is only callable by owner */ function recoverETH(uint256 amount_) external onlyOwner { payable(_msgSender()).sendValue(amount_); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"distribute","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"recoverETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"recoverToken","outputs":[],"stateMutability":"nonpayable","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
608060405234801561000f575f80fd5b506100193361001e565b61006d565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109708061007a5f395ff3fe608060405260043610610057575f3560e01c80632929abe614610062578063715018a6146100775780638da5cb5b1461008b578063b29a8140146100b5578063d3335553146100d4578063f2fde38b146100f3575f80fd5b3661005e57005b5f80fd5b610075610070366004610792565b610112565b005b348015610082575f80fd5b50610075610232565b348015610096575f80fd5b505f54604080516001600160a01b039092168252519081900360200190f35b3480156100c0575f80fd5b506100756100cf366004610814565b610245565b3480156100df575f80fd5b506100756100ee36600461083c565b610265565b3480156100fe575f80fd5b5061007561010d366004610853565b61027a565b5f8382811461015a5760405162461bcd60e51b815260206004820152600f60248201526e0d8cadccee8d040dad2e6dac2e8c6d608b1b60448201526064015b60405180910390fd5b5f5b818110156101e4576101b685858381811061017957610179610873565b9050602002013588888481811061019257610192610873565b90506020020160208101906101a79190610853565b6001600160a01b0316906102f0565b8484828181106101c8576101c8610873565b90506020020135836101da9190610887565b925060010161015c565b503482111561022a5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610151565b505050505050565b61023a61040a565b6102435f610463565b565b61024d61040a565b6102616001600160a01b03831633836104b2565b5050565b61026d61040a565b61027781336101a7565b50565b61028261040a565b6001600160a01b0381166102e75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610151565b61027781610463565b804710156103405760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610151565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f8114610389576040519150601f19603f3d011682016040523d82523d5f602084013e61038e565b606091505b50509050806104055760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610151565b505050565b5f546001600160a01b031633146102435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610151565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080516001600160a01b03848116602483015260448083018590528351808403909101815260649092018352602080830180516001600160e01b031663a9059cbb60e01b17905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656490840152610405928692915f916105419185169084906105c0565b905080515f148061056157508080602001905181019061056191906108ac565b6104055760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610151565b60606105ce84845f856105d6565b949350505050565b6060824710156106375760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610151565b5f80866001600160a01b0316858760405161065291906108ed565b5f6040518083038185875af1925050503d805f811461068c576040519150601f19603f3d011682016040523d82523d5f602084013e610691565b606091505b50915091506106a2878383876106ad565b979650505050505050565b6060831561071b5782515f03610714576001600160a01b0385163b6107145760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610151565b50816105ce565b6105ce83838151156107305781518083602001fd5b8060405162461bcd60e51b81526004016101519190610908565b5f8083601f84011261075a575f80fd5b50813567ffffffffffffffff811115610771575f80fd5b6020830191508360208260051b850101111561078b575f80fd5b9250929050565b5f805f80604085870312156107a5575f80fd5b843567ffffffffffffffff808211156107bc575f80fd5b6107c88883890161074a565b909650945060208701359150808211156107e0575f80fd5b506107ed8782880161074a565b95989497509550505050565b80356001600160a01b038116811461080f575f80fd5b919050565b5f8060408385031215610825575f80fd5b61082e836107f9565b946020939093013593505050565b5f6020828403121561084c575f80fd5b5035919050565b5f60208284031215610863575f80fd5b61086c826107f9565b9392505050565b634e487b7160e01b5f52603260045260245ffd5b808201808211156108a657634e487b7160e01b5f52601160045260245ffd5b92915050565b5f602082840312156108bc575f80fd5b8151801515811461086c575f80fd5b5f5b838110156108e55781810151838201526020016108cd565b50505f910152565b5f82516108fe8184602087016108cb565b9190910192915050565b602081525f82518060208401526109268160408501602087016108cb565b601f01601f1916919091016040019291505056fea264697066735822122079aa5d7b4b43b15e39df90bc334917d7c66bf98af1b2c1f1bae65b39d9cd21a864736f6c63430008150033
Deployed Bytecode
0x608060405260043610610057575f3560e01c80632929abe614610062578063715018a6146100775780638da5cb5b1461008b578063b29a8140146100b5578063d3335553146100d4578063f2fde38b146100f3575f80fd5b3661005e57005b5f80fd5b610075610070366004610792565b610112565b005b348015610082575f80fd5b50610075610232565b348015610096575f80fd5b505f54604080516001600160a01b039092168252519081900360200190f35b3480156100c0575f80fd5b506100756100cf366004610814565b610245565b3480156100df575f80fd5b506100756100ee36600461083c565b610265565b3480156100fe575f80fd5b5061007561010d366004610853565b61027a565b5f8382811461015a5760405162461bcd60e51b815260206004820152600f60248201526e0d8cadccee8d040dad2e6dac2e8c6d608b1b60448201526064015b60405180910390fd5b5f5b818110156101e4576101b685858381811061017957610179610873565b9050602002013588888481811061019257610192610873565b90506020020160208101906101a79190610853565b6001600160a01b0316906102f0565b8484828181106101c8576101c8610873565b90506020020135836101da9190610887565b925060010161015c565b503482111561022a5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610151565b505050505050565b61023a61040a565b6102435f610463565b565b61024d61040a565b6102616001600160a01b03831633836104b2565b5050565b61026d61040a565b61027781336101a7565b50565b61028261040a565b6001600160a01b0381166102e75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610151565b61027781610463565b804710156103405760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610151565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f8114610389576040519150601f19603f3d011682016040523d82523d5f602084013e61038e565b606091505b50509050806104055760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610151565b505050565b5f546001600160a01b031633146102435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610151565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080516001600160a01b03848116602483015260448083018590528351808403909101815260649092018352602080830180516001600160e01b031663a9059cbb60e01b17905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656490840152610405928692915f916105419185169084906105c0565b905080515f148061056157508080602001905181019061056191906108ac565b6104055760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610151565b60606105ce84845f856105d6565b949350505050565b6060824710156106375760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610151565b5f80866001600160a01b0316858760405161065291906108ed565b5f6040518083038185875af1925050503d805f811461068c576040519150601f19603f3d011682016040523d82523d5f602084013e610691565b606091505b50915091506106a2878383876106ad565b979650505050505050565b6060831561071b5782515f03610714576001600160a01b0385163b6107145760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610151565b50816105ce565b6105ce83838151156107305781518083602001fd5b8060405162461bcd60e51b81526004016101519190610908565b5f8083601f84011261075a575f80fd5b50813567ffffffffffffffff811115610771575f80fd5b6020830191508360208260051b850101111561078b575f80fd5b9250929050565b5f805f80604085870312156107a5575f80fd5b843567ffffffffffffffff808211156107bc575f80fd5b6107c88883890161074a565b909650945060208701359150808211156107e0575f80fd5b506107ed8782880161074a565b95989497509550505050565b80356001600160a01b038116811461080f575f80fd5b919050565b5f8060408385031215610825575f80fd5b61082e836107f9565b946020939093013593505050565b5f6020828403121561084c575f80fd5b5035919050565b5f60208284031215610863575f80fd5b61086c826107f9565b9392505050565b634e487b7160e01b5f52603260045260245ffd5b808201808211156108a657634e487b7160e01b5f52601160045260245ffd5b92915050565b5f602082840312156108bc575f80fd5b8151801515811461086c575f80fd5b5f5b838110156108e55781810151838201526020016108cd565b50505f910152565b5f82516108fe8184602087016108cb565b9190910192915050565b602081525f82518060208401526109268160408501602087016108cb565b601f01601f1916919091016040019291505056fea264697066735822122079aa5d7b4b43b15e39df90bc334917d7c66bf98af1b2c1f1bae65b39d9cd21a864736f6c63430008150033
Deployed Bytecode Sourcemap
26013:1428:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26128:539;;;;;;:::i;:::-;;:::i;:::-;;2979:103;;;;;;;;;;;;;:::i;2338:87::-;;;;;;;;;;-1:-1:-1;2384:7:0;2411:6;2338:87;;;-1:-1:-1;;;;;2411:6:0;;;1310:51:1;;2338:87:0;;;;;1298:2:1;2338:87:0;;;26975:143;;;;;;;;;;-1:-1:-1;26975:143:0;;;;;:::i;:::-;;:::i;27323:115::-;;;;;;;;;;-1:-1:-1;27323:115:0;;;;;:::i;:::-;;:::i;3237:201::-;;;;;;;;;;-1:-1:-1;3237:201:0;;;;;:::i;:::-;;:::i;26128:539::-;26260:17;26304:10;26340:23;;;26332:51;;;;-1:-1:-1;;;26332:51:0;;2387:2:1;26332:51:0;;;2369:21:1;2426:2;2406:18;;;2399:30;-1:-1:-1;;;2445:18:1;;;2438:45;2500:18;;26332:51:0;;;;;;;;;26401:9;26396:200;26416:5;26412:1;:9;26396:200;;;26440:44;26473:7;;26481:1;26473:10;;;;;;;:::i;:::-;;;;;;;26448;;26459:1;26448:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;26440:32:0;;;:44::i;:::-;26512:7;;26520:1;26512:10;;;;;;;:::i;:::-;;;;;;;26499:23;;;;;:::i;:::-;;-1:-1:-1;26566:3:0;;26396:200;;;;26627:9;26614;:22;;26606:53;;;;-1:-1:-1;;;26606:53:0;;3090:2:1;26606:53:0;;;3072:21:1;3129:2;3109:18;;;3102:30;-1:-1:-1;;;3148:18:1;;;3141:48;3206:18;;26606:53:0;2888:342:1;26606:53:0;26249:418;;26128:539;;;;:::o;2979:103::-;2224:13;:11;:13::i;:::-;3044:30:::1;3071:1;3044:18;:30::i;:::-;2979:103::o:0;26975:143::-;2224:13;:11;:13::i;:::-;27060:50:::1;-1:-1:-1::0;;;;;27060:27:0;::::1;914:10:::0;27102:7;27060:27:::1;:50::i;:::-;26975:143:::0;;:::o;27323:115::-;2224:13;:11;:13::i;:::-;27390:40:::1;27422:7:::0;914:10;27398:12:::1;834:98:::0;27390:40:::1;27323:115:::0;:::o;3237:201::-;2224:13;:11;:13::i;:::-;-1:-1:-1;;;;;3326:22:0;::::1;3318:73;;;::::0;-1:-1:-1;;;3318:73:0;;3437:2:1;3318:73:0::1;::::0;::::1;3419:21:1::0;3476:2;3456:18;;;3449:30;3515:34;3495:18;;;3488:62;-1:-1:-1;;;3566:18:1;;;3559:36;3612:19;;3318:73:0::1;3235:402:1::0;3318:73:0::1;3402:28;3421:8;3402:18;:28::i;11913:317::-:0;12028:6;12003:21;:31;;11995:73;;;;-1:-1:-1;;;11995:73:0;;3844:2:1;11995:73:0;;;3826:21:1;3883:2;3863:18;;;3856:30;3922:31;3902:18;;;3895:59;3971:18;;11995:73:0;3642:353:1;11995:73:0;12082:12;12100:9;-1:-1:-1;;;;;12100:14:0;12122:6;12100:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12081:52;;;12152:7;12144:78;;;;-1:-1:-1;;;12144:78:0;;4412:2:1;12144:78:0;;;4394:21:1;4451:2;4431:18;;;4424:30;4490:34;4470:18;;;4463:62;4561:28;4541:18;;;4534:56;4607:19;;12144:78:0;4210:422:1;12144:78:0;11984:246;11913:317;;:::o;2503:132::-;2384:7;2411:6;-1:-1:-1;;;;;2411:6:0;914:10;2567:23;2559:68;;;;-1:-1:-1;;;2559:68:0;;4839:2:1;2559:68:0;;;4821:21:1;;;4858:18;;;4851:30;4917:34;4897:18;;;4890:62;4969:18;;2559:68:0;4637:356:1;3598:191:0;3672:16;3691:6;;-1:-1:-1;;;;;3708:17:0;;;-1:-1:-1;;;;;;3708:17:0;;;;;;3741:40;;3691:6;;;;;;;3741:40;;3672:16;3741:40;3661:128;3598:191;:::o;19770:177::-;19880:58;;;-1:-1:-1;;;;;5190:32:1;;;19880:58:0;;;5172:51:1;5239:18;;;;5232:34;;;19880:58:0;;;;;;;;;;5145:18:1;;;;19880:58:0;;;;;;;;-1:-1:-1;;;;;19880:58:0;-1:-1:-1;;;19880:58:0;;;24566:69;;;;;;;;;;;;;;;;19853:86;;19873:5;;19880:58;-1:-1:-1;;24566:69:0;;:27;;;19880:58;;24566:27;:69::i;:::-;24540:95;;24654:10;:17;24675:1;24654:22;:56;;;;24691:10;24680:30;;;;;;;;;;;;:::i;:::-;24646:111;;;;-1:-1:-1;;;24646:111:0;;5761:2:1;24646:111:0;;;5743:21:1;5800:2;5780:18;;;5773:30;5839:34;5819:18;;;5812:62;-1:-1:-1;;;5890:18:1;;;5883:40;5940:19;;24646:111:0;5559:406:1;13409:229:0;13546:12;13578:52;13600:6;13608:4;13614:1;13617:12;13578:21;:52::i;:::-;13571:59;13409:229;-1:-1:-1;;;;13409:229:0:o;14495:455::-;14665:12;14723:5;14698:21;:30;;14690:81;;;;-1:-1:-1;;;14690:81:0;;6172:2:1;14690:81:0;;;6154:21:1;6211:2;6191:18;;;6184:30;6250:34;6230:18;;;6223:62;-1:-1:-1;;;6301:18:1;;;6294:36;6347:19;;14690:81:0;5970:402:1;14690:81:0;14783:12;14797:23;14824:6;-1:-1:-1;;;;;14824:11:0;14843:5;14850:4;14824:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14782:73;;;;14873:69;14900:6;14908:7;14917:10;14929:12;14873:26;:69::i;:::-;14866:76;14495:455;-1:-1:-1;;;;;;;14495:455:0:o;17068:644::-;17253:12;17282:7;17278:427;;;17310:10;:17;17331:1;17310:22;17306:290;;-1:-1:-1;;;;;10949:19:0;;;17520:60;;;;-1:-1:-1;;;17520:60:0;;7126:2:1;17520:60:0;;;7108:21:1;7165:2;7145:18;;;7138:30;7204:31;7184:18;;;7177:59;7253:18;;17520:60:0;6924:353:1;17520:60:0;-1:-1:-1;17617:10:0;17610:17;;17278:427;17660:33;17668:10;17680:12;18415:17;;:21;18411:388;;18647:10;18641:17;18704:15;18691:10;18687:2;18683:19;18676:44;18411:388;18774:12;18767:20;;-1:-1:-1;;;18767:20:0;;;;;;;;:::i;14:367:1:-;77:8;87:6;141:3;134:4;126:6;122:17;118:27;108:55;;159:1;156;149:12;108:55;-1:-1:-1;182:20:1;;225:18;214:30;;211:50;;;257:1;254;247:12;211:50;294:4;286:6;282:17;270:29;;354:3;347:4;337:6;334:1;330:14;322:6;318:27;314:38;311:47;308:67;;;371:1;368;361:12;308:67;14:367;;;;;:::o;386:773::-;508:6;516;524;532;585:2;573:9;564:7;560:23;556:32;553:52;;;601:1;598;591:12;553:52;641:9;628:23;670:18;711:2;703:6;700:14;697:34;;;727:1;724;717:12;697:34;766:70;828:7;819:6;808:9;804:22;766:70;:::i;:::-;855:8;;-1:-1:-1;740:96:1;-1:-1:-1;943:2:1;928:18;;915:32;;-1:-1:-1;959:16:1;;;956:36;;;988:1;985;978:12;956:36;;1027:72;1091:7;1080:8;1069:9;1065:24;1027:72;:::i;:::-;386:773;;;;-1:-1:-1;1118:8:1;-1:-1:-1;;;;386:773:1:o;1372:173::-;1440:20;;-1:-1:-1;;;;;1489:31:1;;1479:42;;1469:70;;1535:1;1532;1525:12;1469:70;1372:173;;;:::o;1550:254::-;1618:6;1626;1679:2;1667:9;1658:7;1654:23;1650:32;1647:52;;;1695:1;1692;1685:12;1647:52;1718:29;1737:9;1718:29;:::i;:::-;1708:39;1794:2;1779:18;;;;1766:32;;-1:-1:-1;;;1550:254:1:o;1809:180::-;1868:6;1921:2;1909:9;1900:7;1896:23;1892:32;1889:52;;;1937:1;1934;1927:12;1889:52;-1:-1:-1;1960:23:1;;1809:180;-1:-1:-1;1809:180:1:o;1994:186::-;2053:6;2106:2;2094:9;2085:7;2081:23;2077:32;2074:52;;;2122:1;2119;2112:12;2074:52;2145:29;2164:9;2145:29;:::i;:::-;2135:39;1994:186;-1:-1:-1;;;1994:186:1:o;2529:127::-;2590:10;2585:3;2581:20;2578:1;2571:31;2621:4;2618:1;2611:15;2645:4;2642:1;2635:15;2661:222;2726:9;;;2747:10;;;2744:133;;;2799:10;2794:3;2790:20;2787:1;2780:31;2834:4;2831:1;2824:15;2862:4;2859:1;2852:15;2744:133;2661:222;;;;:::o;5277:277::-;5344:6;5397:2;5385:9;5376:7;5372:23;5368:32;5365:52;;;5413:1;5410;5403:12;5365:52;5445:9;5439:16;5498:5;5491:13;5484:21;5477:5;5474:32;5464:60;;5520:1;5517;5510:12;6377:250;6462:1;6472:113;6486:6;6483:1;6480:13;6472:113;;;6562:11;;;6556:18;6543:11;;;6536:39;6508:2;6501:10;6472:113;;;-1:-1:-1;;6619:1:1;6601:16;;6594:27;6377:250::o;6632:287::-;6761:3;6799:6;6793:13;6815:66;6874:6;6869:3;6862:4;6854:6;6850:17;6815:66;:::i;:::-;6897:16;;;;;6632:287;-1:-1:-1;;6632:287:1:o;7282:396::-;7431:2;7420:9;7413:21;7394:4;7463:6;7457:13;7506:6;7501:2;7490:9;7486:18;7479:34;7522:79;7594:6;7589:2;7578:9;7574:18;7569:2;7561:6;7557:15;7522:79;:::i;:::-;7662:2;7641:15;-1:-1:-1;;7637:29:1;7622:45;;;;7669:2;7618:54;;7282:396;-1:-1:-1;;7282:396:1:o
Swarm Source
ipfs://79aa5d7b4b43b15e39df90bc334917d7c66bf98af1b2c1f1bae65b39d9cd21a8
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,114.64 | 0.000000000000000009 | <$0.000001 |
Loading...
Loading
[ Download: CSV Export ]
[ 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.