More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 154 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Airdrop | 18800726 | 321 days ago | IN | 0 ETH | 0.00299423 | ||||
Airdrop | 18784590 | 324 days ago | IN | 0 ETH | 0.00364662 | ||||
Airdrop | 18583774 | 352 days ago | IN | 0 ETH | 0.00163907 | ||||
Airdrop | 18571294 | 353 days ago | IN | 0 ETH | 0.00271567 | ||||
Airdrop | 18403941 | 377 days ago | IN | 0 ETH | 0.0004312 | ||||
Airdrop | 18362925 | 383 days ago | IN | 0 ETH | 0.00058739 | ||||
Airdrop | 18336123 | 386 days ago | IN | 0 ETH | 0.00070852 | ||||
Airdrop | 18333356 | 387 days ago | IN | 0 ETH | 0.00052762 | ||||
Airdrop | 18323393 | 388 days ago | IN | 0 ETH | 0.00046931 | ||||
Airdrop | 18320724 | 388 days ago | IN | 0 ETH | 0.00088585 | ||||
Airdrop | 18320688 | 388 days ago | IN | 0 ETH | 0.00121961 | ||||
Airdrop | 18320653 | 388 days ago | IN | 0 ETH | 0.0012252 | ||||
Airdrop | 18320616 | 388 days ago | IN | 0 ETH | 0.00156432 | ||||
Airdrop | 18320554 | 388 days ago | IN | 0 ETH | 0.00147442 | ||||
Airdrop | 18320519 | 388 days ago | IN | 0 ETH | 0.00097154 | ||||
Airdrop | 18292134 | 392 days ago | IN | 0 ETH | 0.00087756 | ||||
Airdrop | 18285746 | 393 days ago | IN | 0 ETH | 0.00081806 | ||||
Airdrop | 18285606 | 393 days ago | IN | 0 ETH | 0.00125581 | ||||
Airdrop | 18285570 | 393 days ago | IN | 0 ETH | 0.0014196 | ||||
Airdrop | 18285482 | 393 days ago | IN | 0 ETH | 0.00111405 | ||||
Airdrop | 18285420 | 393 days ago | IN | 0 ETH | 0.00099889 | ||||
Airdrop | 18285383 | 393 days ago | IN | 0 ETH | 0.00171718 | ||||
Airdrop | 18285271 | 393 days ago | IN | 0 ETH | 0.00213031 | ||||
Airdrop | 18285234 | 393 days ago | IN | 0 ETH | 0.00240019 | ||||
Airdrop | 18285198 | 393 days ago | IN | 0 ETH | 0.00264357 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Airdrop
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; import "openzeppelin-contracts/token/ERC20/IERC20.sol"; import "openzeppelin-contracts/access/Ownable.sol"; import "openzeppelin-contracts/security/ReentrancyGuard.sol"; import "./TransferHelper.sol"; contract Airdrop is Ownable, ReentrancyGuard { IERC20 public token; uint256 public preset_amount; constructor(IERC20 _token) { token = _token; } function airdrop(address[] calldata recipients, uint256[] calldata amounts) external onlyOwner nonReentrant { require(recipients.length == amounts.length, "Airdrop: Invalid input"); for (uint256 i = 0; i < recipients.length; i++) { TransferHelper.safeTransfer(address(token), recipients[i], amounts[i]); } } function airdropPresetAmount(address[] calldata recipients) external onlyOwner nonReentrant { for (uint256 i = 0; i < recipients.length; i++) { TransferHelper.safeTransfer(address(token), recipients[i], preset_amount); } } function setPresetAmount(uint256 amount) external onlyOwner { preset_amount = amount; } function setTokenAddress(IERC20 _token) external onlyOwner { token = _token; } }
// 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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. 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; /** helper methods for interacting with ERC20 tokens that do not consistently return true/false with the addition of a transfer function to send eth or an erc20 token */ library TransferHelper { function safeApprove(address token, address to, uint value) internal { (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x095ea7b3, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), "TransferHelper: APPROVE_FAILED"); } function safeTransfer(address token, address to, uint value) internal { (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0xa9059cbb, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), "TransferHelper: TRANSFER_FAILED"); } function safeTransferFrom(address token, address from, address to, uint value) internal { (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x23b872dd, from, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), "TransferHelper: TRANSFER_FROM_FAILED"); } // sends ETH or an erc20 token function safeTransferBaseToken(address token, address payable to, uint value, bool isERC20) internal { if (!isERC20) { to.transfer(value); } else { (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0xa9059cbb, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), "TransferHelper: TRANSFER_FAILED"); } } }
// 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; } }
{ "remappings": [ "ds-test/=lib/forge-std/lib/ds-test/src/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/", "openzeppelin/=lib/openzeppelin-contracts/" ], "optimizer": { "enabled": true, "runs": 1000000 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"airdropPresetAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preset_amount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setPresetAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"}],"name":"setTokenAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50604051610a7e380380610a7e83398101604081905261002f916100b1565b61003833610061565b60018055600280546001600160a01b0319166001600160a01b03929092169190911790556100e1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100c357600080fd5b81516001600160a01b03811681146100da57600080fd5b9392505050565b61098e806100f06000396000f3fe608060405234801561001057600080fd5b50600436106100a35760003560e01c8063715018a611610076578063f2fde38b1161005b578063f2fde38b14610142578063fc0c546a14610155578063fd33d1d41461017557600080fd5b8063715018a6146100f65780638da5cb5b146100fe57600080fd5b8063249ff5e4146100a857806326a4e8d2146100bd5780635aa1bdea146100d057806367243482146100e3575b600080fd5b6100bb6100b636600461076c565b61018c565b005b6100bb6100cb3660046107d0565b610213565b6100bb6100de3660046107f4565b610262565b6100bb6100f136600461080d565b61026f565b6100bb61037c565b60005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b6100bb6101503660046107d0565b610390565b6002546101189073ffffffffffffffffffffffffffffffffffffffff1681565b61017e60035481565b604051908152602001610139565b610194610447565b61019c6104c8565b60005b81811015610205576002546101f39073ffffffffffffffffffffffffffffffffffffffff168484848181106101d6576101d6610879565b90506020020160208101906101eb91906107d0565b60035461053b565b806101fd816108a8565b91505061019f565b5061020f60018055565b5050565b61021b610447565b600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61026a610447565b600355565b610277610447565b61027f6104c8565b8281146102ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f41697264726f703a20496e76616c696420696e7075740000000000000000000060448201526064015b60405180910390fd5b60005b8381101561036c5760025461035a9073ffffffffffffffffffffffffffffffffffffffff1686868481811061032757610327610879565b905060200201602081019061033c91906107d0565b85858581811061034e5761034e610879565b9050602002013561053b565b80610364816108a8565b9150506102f0565b5061037660018055565b50505050565b610384610447565b61038e60006106ab565b565b610398610447565b73ffffffffffffffffffffffffffffffffffffffff811661043b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016102e4565b610444816106ab565b50565b60005473ffffffffffffffffffffffffffffffffffffffff16331461038e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102e4565b600260015403610534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016102e4565b6002600155565b6040805173ffffffffffffffffffffffffffffffffffffffff8481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905291516000928392908716916105d29190610907565b6000604051808303816000865af19150503d806000811461060f576040519150601f19603f3d011682016040523d82523d6000602084013e610614565b606091505b509150915081801561063e57508051158061063e57508080602001905181019061063e9190610936565b6106a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5472616e7366657248656c7065723a205452414e534645525f4641494c45440060448201526064016102e4565b5050505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008083601f84011261073257600080fd5b50813567ffffffffffffffff81111561074a57600080fd5b6020830191508360208260051b850101111561076557600080fd5b9250929050565b6000806020838503121561077f57600080fd5b823567ffffffffffffffff81111561079657600080fd5b6107a285828601610720565b90969095509350505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461044457600080fd5b6000602082840312156107e257600080fd5b81356107ed816107ae565b9392505050565b60006020828403121561080657600080fd5b5035919050565b6000806000806040858703121561082357600080fd5b843567ffffffffffffffff8082111561083b57600080fd5b61084788838901610720565b9096509450602087013591508082111561086057600080fd5b5061086d87828801610720565b95989497509550505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610900577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b5060010190565b6000825160005b81811015610928576020818601810151858301520161090e565b506000920191825250919050565b60006020828403121561094857600080fd5b815180151581146107ed57600080fdfea2646970667358221220d8c51fb9575ea43b6e9ed6465fd26ab68766d967e2cb0aede5e76fde5904f91064736f6c63430008140033000000000000000000000000054b8f99d15cc5b35a42a926635977d62692f25b
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100a35760003560e01c8063715018a611610076578063f2fde38b1161005b578063f2fde38b14610142578063fc0c546a14610155578063fd33d1d41461017557600080fd5b8063715018a6146100f65780638da5cb5b146100fe57600080fd5b8063249ff5e4146100a857806326a4e8d2146100bd5780635aa1bdea146100d057806367243482146100e3575b600080fd5b6100bb6100b636600461076c565b61018c565b005b6100bb6100cb3660046107d0565b610213565b6100bb6100de3660046107f4565b610262565b6100bb6100f136600461080d565b61026f565b6100bb61037c565b60005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b6100bb6101503660046107d0565b610390565b6002546101189073ffffffffffffffffffffffffffffffffffffffff1681565b61017e60035481565b604051908152602001610139565b610194610447565b61019c6104c8565b60005b81811015610205576002546101f39073ffffffffffffffffffffffffffffffffffffffff168484848181106101d6576101d6610879565b90506020020160208101906101eb91906107d0565b60035461053b565b806101fd816108a8565b91505061019f565b5061020f60018055565b5050565b61021b610447565b600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b61026a610447565b600355565b610277610447565b61027f6104c8565b8281146102ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f41697264726f703a20496e76616c696420696e7075740000000000000000000060448201526064015b60405180910390fd5b60005b8381101561036c5760025461035a9073ffffffffffffffffffffffffffffffffffffffff1686868481811061032757610327610879565b905060200201602081019061033c91906107d0565b85858581811061034e5761034e610879565b9050602002013561053b565b80610364816108a8565b9150506102f0565b5061037660018055565b50505050565b610384610447565b61038e60006106ab565b565b610398610447565b73ffffffffffffffffffffffffffffffffffffffff811661043b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016102e4565b610444816106ab565b50565b60005473ffffffffffffffffffffffffffffffffffffffff16331461038e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102e4565b600260015403610534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016102e4565b6002600155565b6040805173ffffffffffffffffffffffffffffffffffffffff8481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905291516000928392908716916105d29190610907565b6000604051808303816000865af19150503d806000811461060f576040519150601f19603f3d011682016040523d82523d6000602084013e610614565b606091505b509150915081801561063e57508051158061063e57508080602001905181019061063e9190610936565b6106a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5472616e7366657248656c7065723a205452414e534645525f4641494c45440060448201526064016102e4565b5050505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008083601f84011261073257600080fd5b50813567ffffffffffffffff81111561074a57600080fd5b6020830191508360208260051b850101111561076557600080fd5b9250929050565b6000806020838503121561077f57600080fd5b823567ffffffffffffffff81111561079657600080fd5b6107a285828601610720565b90969095509350505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461044457600080fd5b6000602082840312156107e257600080fd5b81356107ed816107ae565b9392505050565b60006020828403121561080657600080fd5b5035919050565b6000806000806040858703121561082357600080fd5b843567ffffffffffffffff8082111561083b57600080fd5b61084788838901610720565b9096509450602087013591508082111561086057600080fd5b5061086d87828801610720565b95989497509550505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610900577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b5060010190565b6000825160005b81811015610928576020818601810151858301520161090e565b506000920191825250919050565b60006020828403121561094857600080fd5b815180151581146107ed57600080fdfea2646970667358221220d8c51fb9575ea43b6e9ed6465fd26ab68766d967e2cb0aede5e76fde5904f91064736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000054b8f99d15cc5b35a42a926635977d62692f25b
-----Decoded View---------------
Arg [0] : _token (address): 0x054B8f99D15cC5B35a42a926635977d62692F25b
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000054b8f99d15cc5b35a42a926635977d62692f25b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.