Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
TokaPublicSale
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
Yes with 800 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity =0.8.21; import { OwnableUpgradeable } from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; contract TokaPublicSale is OwnableUpgradeable { uint256 public startTime; uint256 public endTime; address public tokaToken; uint256 public totalReceived; mapping(address => uint256) public userAmount; event Purchase(address indexed user, uint256 amount); function initialize() public initializer { __Ownable_init(msg.sender); } function setStartEndTime(uint256 _start, uint256 _end) external onlyOwner { startTime = _start; endTime = _end; } function purchase() external payable { require(block.timestamp >= startTime && startTime != 0, "Sale not started"); require(block.timestamp <= endTime && endTime != 0, "Sale already ended"); require(msg.value > 0, "Can not purchase zero"); require(msg.value <= 5 ether, "more than 5 ether"); userAmount[msg.sender] += msg.value; totalReceived += msg.value; emit Purchase(msg.sender, msg.value); } function settle() external onlyOwner { require(block.timestamp >= endTime, "Sale not started"); // Settle total toka tokens allocated } function collect(address to) external onlyOwner { uint256 amount = address(this).balance; payable(to).transfer(amount); } event Refund(address indexed user, uint256 amount); function refund() external{ uint256 amount = userAmount[msg.sender]; require(amount > 0, "no fund available"); require(amount <= address(this).balance, "less than quota"); userAmount[msg.sender] = 0; totalReceived -= amount; payable(msg.sender).transfer(amount); emit Refund(msg.sender, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {ContextUpgradeable} from "../utils/ContextUpgradeable.sol"; import {Initializable} from "../proxy/utils/Initializable.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. * * The initial owner is set to the address provided by the deployer. 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 OwnableUpgradeable is Initializable, ContextUpgradeable { /// @custom:storage-location erc7201:openzeppelin.storage.Ownable struct OwnableStorage { address _owner; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Ownable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant OwnableStorageLocation = 0x9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300; function _getOwnableStorage() private pure returns (OwnableStorage storage $) { assembly { $.slot := OwnableStorageLocation } } /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ function __Ownable_init(address initialOwner) internal onlyInitializing { __Ownable_init_unchained(initialOwner); } function __Ownable_init_unchained(address initialOwner) internal onlyInitializing { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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) { OwnableStorage storage $ = _getOwnableStorage(); return $._owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { OwnableStorage storage $ = _getOwnableStorage(); address oldOwner = $._owner; $._owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.20; /** * @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] * ```solidity * 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 Storage of the initializable contract. * * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions * when using with upgradeable contracts. * * @custom:storage-location erc7201:openzeppelin.storage.Initializable */ struct InitializableStorage { /** * @dev Indicates that the contract has been initialized. */ uint64 _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool _initializing; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00; /** * @dev The contract is already initialized. */ error InvalidInitialization(); /** * @dev The contract is not initializing. */ error NotInitializing(); /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint64 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 in the context of a constructor an `initializer` may be invoked any * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in * production. * * Emits an {Initialized} event. */ modifier initializer() { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); // Cache values to avoid duplicated sloads bool isTopLevelCall = !$._initializing; uint64 initialized = $._initialized; // Allowed calls: // - initialSetup: the contract is not in the initializing state and no previous version was // initialized // - construction: the contract is initialized at version 1 (no reininitialization) and the // current contract is just being deployed bool initialSetup = initialized == 0 && isTopLevelCall; bool construction = initialized == 1 && address(this).code.length == 0; if (!initialSetup && !construction) { revert InvalidInitialization(); } $._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 2**64 - 1 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint64 version) { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing || $._initialized >= version) { revert InvalidInitialization(); } $._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() { _checkInitializing(); _; } /** * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}. */ function _checkInitializing() internal view virtual { if (!_isInitializing()) { revert NotInitializing(); } } /** * @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 { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing) { revert InvalidInitialization(); } if ($._initialized != type(uint64).max) { $._initialized = type(uint64).max; emit Initialized(type(uint64).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint64) { return _getInitializableStorage()._initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _getInitializableStorage()._initializing; } /** * @dev Returns a pointer to the storage namespace. */ // solhint-disable-next-line var-name-mixedcase function _getInitializableStorage() private pure returns (InitializableStorage storage $) { assembly { $.slot := INITIALIZABLE_STORAGE } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; import {Initializable} from "../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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
{ "metadata": { "bytecodeHash": "none", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 800 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Purchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Refund","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"collect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"refund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"}],"name":"setStartEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"settle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokaToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReceived","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b506109a7806100206000396000f3fe6080604052600436106100dd5760003560e01c806378e979251161007f5780639702e3b9116100595780639702e3b914610210578063a3c2c46214610230578063e1ad418e14610246578063f2fde38b1461027357600080fd5b806378e97925146101945780638129fc1c146101aa5780638da5cb5b146101bf57600080fd5b806332da1329116100bb57806332da132914610142578063590e1ae31461016257806364edfbf014610177578063715018a61461017f57600080fd5b806306ec16f8146100e257806311da60b4146101045780633197cbb614610119575b600080fd5b3480156100ee57600080fd5b506101026100fd366004610906565b610293565b005b34801561011057600080fd5b506101026102d8565b34801561012557600080fd5b5061012f60015481565b6040519081526020015b60405180910390f35b34801561014e57600080fd5b5061010261015d366004610936565b61032c565b34801561016e57600080fd5b5061010261033f565b61010261047b565b34801561018b57600080fd5b50610102610648565b3480156101a057600080fd5b5061012f60005481565b3480156101b657600080fd5b5061010261065a565b3480156101cb57600080fd5b507f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b03165b6040516001600160a01b039091168152602001610139565b34801561021c57600080fd5b506002546101f8906001600160a01b031681565b34801561023c57600080fd5b5061012f60035481565b34801561025257600080fd5b5061012f610261366004610906565b60046020526000908152604090205481565b34801561027f57600080fd5b5061010261028e366004610906565b61077d565b61029b6107bb565b60405147906001600160a01b0383169082156108fc029083906000818181858888f193505050501580156102d3573d6000803e3d6000fd5b505050565b6102e06107bb565b60015442101561032a5760405162461bcd60e51b815260206004820152601060248201526f14d85b19481b9bdd081cdd185c9d195960821b60448201526064015b60405180910390fd5b565b6103346107bb565b600091909155600155565b336000908152600460205260409020548061039c5760405162461bcd60e51b815260206004820152601160248201527f6e6f2066756e6420617661696c61626c650000000000000000000000000000006044820152606401610321565b478111156103ec5760405162461bcd60e51b815260206004820152600f60248201527f6c657373207468616e2071756f746100000000000000000000000000000000006044820152606401610321565b3360009081526004602052604081208190556003805483929061041090849061096e565b9091555050604051339082156108fc029083906000818181858888f19350505050158015610442573d6000803e3d6000fd5b5060405181815233907fbb28353e4598c3b9199101a66e0989549b659a59a54d2c27fbb183f1932c8e6d9060200160405180910390a250565b600054421015801561048e575060005415155b6104cd5760405162461bcd60e51b815260206004820152601060248201526f14d85b19481b9bdd081cdd185c9d195960821b6044820152606401610321565b60015442111580156104e0575060015415155b61052c5760405162461bcd60e51b815260206004820152601260248201527f53616c6520616c726561647920656e64656400000000000000000000000000006044820152606401610321565b6000341161057c5760405162461bcd60e51b815260206004820152601560248201527f43616e206e6f74207075726368617365207a65726f00000000000000000000006044820152606401610321565b674563918244f400003411156105d45760405162461bcd60e51b815260206004820152601160248201527f6d6f7265207468616e20352065746865720000000000000000000000000000006044820152606401610321565b33600090815260046020526040812080543492906105f3908490610987565b92505081905550346003600082825461060c9190610987565b909155505060405134815233907f2499a5330ab0979cc612135e7883ebc3cd5c9f7a8508f042540c34723348f6329060200160405180910390a2565b6106506107bb565b61032a6000610816565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff166000811580156106a55750825b905060008267ffffffffffffffff1660011480156106c25750303b155b9050811580156106d0575080155b156106ee5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561072257845468ff00000000000000001916680100000000000000001785555b61072b3361089f565b831561077657845468ff000000000000000019168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b6107856107bb565b6001600160a01b0381166107af57604051631e4fbdf760e01b815260006004820152602401610321565b6107b881610816565b50565b336107ed7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b03161461032a5760405163118cdaa760e01b8152336004820152602401610321565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080547fffffffffffffffffffffffff000000000000000000000000000000000000000081166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b6108a76108b0565b6107b8816108fe565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661032a57604051631afcd79f60e31b815260040160405180910390fd5b6107856108b0565b60006020828403121561091857600080fd5b81356001600160a01b038116811461092f57600080fd5b9392505050565b6000806040838503121561094957600080fd5b50508035926020909101359150565b634e487b7160e01b600052601160045260246000fd5b8181038181111561098157610981610958565b92915050565b808201808211156109815761098161095856fea164736f6c6343000815000a
Deployed Bytecode
0x6080604052600436106100dd5760003560e01c806378e979251161007f5780639702e3b9116100595780639702e3b914610210578063a3c2c46214610230578063e1ad418e14610246578063f2fde38b1461027357600080fd5b806378e97925146101945780638129fc1c146101aa5780638da5cb5b146101bf57600080fd5b806332da1329116100bb57806332da132914610142578063590e1ae31461016257806364edfbf014610177578063715018a61461017f57600080fd5b806306ec16f8146100e257806311da60b4146101045780633197cbb614610119575b600080fd5b3480156100ee57600080fd5b506101026100fd366004610906565b610293565b005b34801561011057600080fd5b506101026102d8565b34801561012557600080fd5b5061012f60015481565b6040519081526020015b60405180910390f35b34801561014e57600080fd5b5061010261015d366004610936565b61032c565b34801561016e57600080fd5b5061010261033f565b61010261047b565b34801561018b57600080fd5b50610102610648565b3480156101a057600080fd5b5061012f60005481565b3480156101b657600080fd5b5061010261065a565b3480156101cb57600080fd5b507f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b03165b6040516001600160a01b039091168152602001610139565b34801561021c57600080fd5b506002546101f8906001600160a01b031681565b34801561023c57600080fd5b5061012f60035481565b34801561025257600080fd5b5061012f610261366004610906565b60046020526000908152604090205481565b34801561027f57600080fd5b5061010261028e366004610906565b61077d565b61029b6107bb565b60405147906001600160a01b0383169082156108fc029083906000818181858888f193505050501580156102d3573d6000803e3d6000fd5b505050565b6102e06107bb565b60015442101561032a5760405162461bcd60e51b815260206004820152601060248201526f14d85b19481b9bdd081cdd185c9d195960821b60448201526064015b60405180910390fd5b565b6103346107bb565b600091909155600155565b336000908152600460205260409020548061039c5760405162461bcd60e51b815260206004820152601160248201527f6e6f2066756e6420617661696c61626c650000000000000000000000000000006044820152606401610321565b478111156103ec5760405162461bcd60e51b815260206004820152600f60248201527f6c657373207468616e2071756f746100000000000000000000000000000000006044820152606401610321565b3360009081526004602052604081208190556003805483929061041090849061096e565b9091555050604051339082156108fc029083906000818181858888f19350505050158015610442573d6000803e3d6000fd5b5060405181815233907fbb28353e4598c3b9199101a66e0989549b659a59a54d2c27fbb183f1932c8e6d9060200160405180910390a250565b600054421015801561048e575060005415155b6104cd5760405162461bcd60e51b815260206004820152601060248201526f14d85b19481b9bdd081cdd185c9d195960821b6044820152606401610321565b60015442111580156104e0575060015415155b61052c5760405162461bcd60e51b815260206004820152601260248201527f53616c6520616c726561647920656e64656400000000000000000000000000006044820152606401610321565b6000341161057c5760405162461bcd60e51b815260206004820152601560248201527f43616e206e6f74207075726368617365207a65726f00000000000000000000006044820152606401610321565b674563918244f400003411156105d45760405162461bcd60e51b815260206004820152601160248201527f6d6f7265207468616e20352065746865720000000000000000000000000000006044820152606401610321565b33600090815260046020526040812080543492906105f3908490610987565b92505081905550346003600082825461060c9190610987565b909155505060405134815233907f2499a5330ab0979cc612135e7883ebc3cd5c9f7a8508f042540c34723348f6329060200160405180910390a2565b6106506107bb565b61032a6000610816565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff166000811580156106a55750825b905060008267ffffffffffffffff1660011480156106c25750303b155b9050811580156106d0575080155b156106ee5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561072257845468ff00000000000000001916680100000000000000001785555b61072b3361089f565b831561077657845468ff000000000000000019168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050565b6107856107bb565b6001600160a01b0381166107af57604051631e4fbdf760e01b815260006004820152602401610321565b6107b881610816565b50565b336107ed7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b03161461032a5760405163118cdaa760e01b8152336004820152602401610321565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080547fffffffffffffffffffffffff000000000000000000000000000000000000000081166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b6108a76108b0565b6107b8816108fe565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff1661032a57604051631afcd79f60e31b815260040160405180910390fd5b6107856108b0565b60006020828403121561091857600080fd5b81356001600160a01b038116811461092f57600080fd5b9392505050565b6000806040838503121561094957600080fd5b50508035926020909101359150565b634e487b7160e01b600052601160045260246000fd5b8181038181111561098157610981610958565b92915050565b808201808211156109815761098161095856fea164736f6c6343000815000a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.