Overview
ETH Balance
0.423670370120880248 ETH
Eth Value
$1,414.78 (@ $3,339.33/ETH)Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 21,730 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Deposit | 17936111 | 498 days ago | IN | 0 ETH | 0.00198916 | ||||
Deposit | 17852233 | 510 days ago | IN | 0.02 ETH | 0.00045918 | ||||
Deposit | 17848809 | 510 days ago | IN | 0.39 ETH | 0.00048569 | ||||
Withdraw | 17848386 | 510 days ago | IN | 0 ETH | 0.00477858 | ||||
Withdraw | 17848384 | 510 days ago | IN | 0 ETH | 0.00179248 | ||||
Deposit | 17846928 | 510 days ago | IN | 0.02 ETH | 0.00053634 | ||||
Deposit | 17846783 | 510 days ago | IN | 0.20282404 ETH | 0.00051579 | ||||
Withdraw | 17846614 | 510 days ago | IN | 0 ETH | 0.00107582 | ||||
Withdraw | 17844145 | 511 days ago | IN | 0 ETH | 0.00395041 | ||||
Withdraw | 17844124 | 511 days ago | IN | 0 ETH | 0.00191917 | ||||
Withdraw | 17843432 | 511 days ago | IN | 0 ETH | 0.00167579 | ||||
Withdraw | 17843396 | 511 days ago | IN | 0 ETH | 0.00177637 | ||||
Deposit | 17842963 | 511 days ago | IN | 0.01380979 ETH | 0.00102044 | ||||
Withdraw | 17842833 | 511 days ago | IN | 0 ETH | 0.00246758 | ||||
Withdraw | 17842791 | 511 days ago | IN | 0 ETH | 0.00253801 | ||||
Withdraw | 17842713 | 511 days ago | IN | 0 ETH | 0.00261296 | ||||
Withdraw | 17842688 | 511 days ago | IN | 0 ETH | 0.00370438 | ||||
Withdraw | 17842553 | 511 days ago | IN | 0 ETH | 0.00292457 | ||||
Withdraw | 17842237 | 511 days ago | IN | 0 ETH | 0.00238951 | ||||
Withdraw | 17842053 | 511 days ago | IN | 0 ETH | 0.00223338 | ||||
Deposit | 17839044 | 512 days ago | IN | 0 ETH | 0.00096984 | ||||
Deposit | 17838765 | 512 days ago | IN | 0 ETH | 0.00102343 | ||||
Withdraw | 17837881 | 512 days ago | IN | 0 ETH | 0.00135414 | ||||
Withdraw | 17837804 | 512 days ago | IN | 0 ETH | 0.002169 | ||||
Deposit | 17834486 | 512 days ago | IN | 0 ETH | 0.00161938 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
17848386 | 510 days ago | 0.715206 ETH | ||||
17844124 | 511 days ago | 12.52705 ETH | ||||
17843432 | 511 days ago | 5.73404777 ETH | ||||
17843396 | 511 days ago | 0.18905 ETH | ||||
17842237 | 511 days ago | 1.98005 ETH | ||||
17842053 | 511 days ago | 1.93755073 ETH | ||||
17831394 | 513 days ago | 0.0415178 ETH | ||||
17829986 | 513 days ago | 0.64161024 ETH | ||||
17829065 | 513 days ago | 0.84038 ETH | ||||
17828403 | 513 days ago | 0.98651537 ETH | ||||
17823665 | 514 days ago | 0.2295979 ETH | ||||
17822851 | 514 days ago | 0.08923941 ETH | ||||
17822585 | 514 days ago | 0.14736586 ETH | ||||
17822235 | 514 days ago | 0.25476758 ETH | ||||
17821568 | 514 days ago | 0.09822359 ETH | ||||
17819943 | 514 days ago | 1.96064109 ETH | ||||
17819823 | 514 days ago | 0.55518735 ETH | ||||
17819542 | 514 days ago | 1.48255 ETH | ||||
17819479 | 514 days ago | 0.15620102 ETH | ||||
17816027 | 515 days ago | 0.17893468 ETH | ||||
17815054 | 515 days ago | 0.06584172 ETH | ||||
17814201 | 515 days ago | 0.21290568 ETH | ||||
17812818 | 515 days ago | 0.34622843 ETH | ||||
17812081 | 515 days ago | 0.11698313 ETH | ||||
17811805 | 515 days ago | 0.14581701 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x8975Bb9D...fba5a894f The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
EvoProxy
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT import "@openzeppelin/contracts/proxy/Proxy.sol"; import "@openzeppelin/contracts/utils/Address.sol"; pragma solidity ^0.8.13; contract EvoProxy is Proxy { bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103; bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; event Upgraded(address indexed implementation); event AdminChanged(address indexed admin); modifier ifAdmin() { if (msg.sender == _admin()) { _; } else { _fallback(); } } constructor(address admin_) { assembly { sstore(_ADMIN_SLOT, admin_) } emit AdminChanged(admin_); } function _admin() internal view returns (address admin_) { assembly { admin_ := sload(_ADMIN_SLOT) } } function _implementation() internal view virtual override returns (address implementation_) { assembly { implementation_ := sload(_IMPLEMENTATION_SLOT) } } function _beforeFallback() internal virtual override { require( msg.sender != _admin(), "Admin cannot fallback to proxy target" ); super._beforeFallback(); } function admin() external ifAdmin returns (address admin_) { admin_ = _admin(); } function implementation() external ifAdmin returns (address implementation_) { implementation_ = _implementation(); } function upgradeTo(address newImplementation) public ifAdmin { require( Address.isContract(newImplementation), "Implementation must be a contract" ); assembly { sstore(_IMPLEMENTATION_SLOT, newImplementation) } emit Upgraded(newImplementation); } function upgradeToAndCall(address newImplementation, bytes memory data) external ifAdmin { upgradeTo(newImplementation); Address.functionDelegateCall(newImplementation, data); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 internall 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 overriden 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 internall 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 overriden should call `super._beforeFallback()`. */ function _beforeFallback() internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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); } } } }
{ "evmVersion": "london", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 1000 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"admin_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"admin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"admin_","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"implementation_","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Deployed Bytecode
0x6080604052600436106100435760003560e01c80633659cfe61461005a5780634f1ef2861461007a5780635c60da1b1461009a578063f851a440146100cb57610052565b36610052576100506100e0565b005b6100506100e0565b34801561006657600080fd5b50610050610075366004610577565b61011a565b34801561008657600080fd5b506100506100953660046105c1565b61022a565b3480156100a657600080fd5b506100af61027f565b6040516001600160a01b03909116815260200160405180910390f35b3480156100d757600080fd5b506100af6102e9565b6100e8610348565b6101186101137f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6103e7565b565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103546001600160a01b0316330361021f57803b6101c45760405162461bcd60e51b815260206004820152602160248201527f496d706c656d656e746174696f6e206d757374206265206120636f6e7472616360448201527f740000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc8190556040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b6102276100e0565b50565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103546001600160a01b03163303610273576102648261011a565b61026e828261040b565b505050565b61027b6100e0565b5050565b60006102a97fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b6001600160a01b031633036102de57507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6102e66100e0565b90565b60006103137fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b6001600160a01b031633036102de57507fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103546001600160a01b031633036101185760405162461bcd60e51b815260206004820152602560248201527f41646d696e2063616e6e6f742066616c6c6261636b20746f2070726f7879207460448201527f617267657400000000000000000000000000000000000000000000000000000060648201526084016101bb565b3660008037600080366000845af43d6000803e808015610406573d6000f35b3d6000fd5b6060610430838360405180606001604052806027815260200161070360279139610437565b9392505050565b6060833b6104ad5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e7472616374000000000000000000000000000000000000000000000000000060648201526084016101bb565b600080856001600160a01b0316856040516104c891906106b3565b600060405180830381855af49150503d8060008114610503576040519150601f19603f3d011682016040523d82523d6000602084013e610508565b606091505b5091509150610518828286610522565b9695505050505050565b60608315610531575081610430565b8251156105415782518084602001fd5b8160405162461bcd60e51b81526004016101bb91906106cf565b80356001600160a01b038116811461057257600080fd5b919050565b60006020828403121561058957600080fd5b6104308261055b565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080604083850312156105d457600080fd5b6105dd8361055b565b9150602083013567ffffffffffffffff808211156105fa57600080fd5b818501915085601f83011261060e57600080fd5b81358181111561062057610620610592565b604051601f8201601f19908116603f0116810190838211818310171561064857610648610592565b8160405282815288602084870101111561066157600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b60005b8381101561069e578181015183820152602001610686565b838111156106ad576000848401525b50505050565b600082516106c5818460208701610683565b9190910192915050565b60208152600082518060208401526106ee816040850160208701610683565b601f01601f1916919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220bcc106e54e3becb5fcadbe9f31671c9985fb4289d26277ce5823e2139665860a64736f6c634300080d0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 45.90% | $0.484011 | 43,184.7147 | $20,901.88 | |
ETH | Ether (ETH) | 3.11% | $3,339.52 | 0.4237 | $1,414.86 |
ETH | 0.44% | $94,293 | 0.00210528 | $198.51 | |
ETH | 0.11% | $0.998244 | 51.0139 | $50.92 | |
ETH | 0.08% | $0.999644 | 35.9586 | $35.95 | |
ETH | 0.02% | $0.47821 | 17 | $8.13 | |
BSC | 6.23% | $0.998679 | 2,842.7299 | $2,838.97 | |
BSC | 4.90% | $3,339.3 | 0.6687 | $2,233.12 | |
BSC | 2.48% | $0.999988 | 1,131.5656 | $1,131.55 | |
BSC | 2.46% | $695.73 | 1.6107 | $1,120.61 | |
BSC | 1.97% | $3.38 | 265.181 | $896.31 | |
BSC | 0.02% | $94,433.07 | 0.00011396 | $10.76 | |
CRONOS | 16.86% | $0.99969 | 7,679.6804 | $7,677.3 | |
CRONOS | 1.03% | $0.998255 | 470.3826 | $469.56 | |
CRONOS | <0.01% | $3,338.54 | 0.00096535 | $3.22 | |
CRONOS | <0.01% | $94,408 | 0.00003161 | $2.98 | |
POL | 4.27% | $0.478462 | 4,066.2441 | $1,945.54 | |
POL | 2.47% | $1 | 1,123.2496 | $1,123.25 | |
POL | 0.39% | $0.998744 | 178.6651 | $178.44 | |
POL | 0.19% | $3,339.3 | 0.0266 | $88.78 | |
POL | 0.01% | $94,384 | 0.00005946 | $5.61 | |
AVAX | 5.06% | $0.999938 | 2,302.5268 | $2,302.38 | |
AVAX | 0.17% | $36.65 | 2.127 | $77.95 | |
GNO | 0.44% | $0.999644 | 201.2838 | $201.21 | |
GNO | 0.27% | $3,341.12 | 0.0367 | $122.54 | |
GNO | 0.22% | $0.998244 | 98.9715 | $98.8 | |
GNO | 0.02% | $0.999803 | 10.55 | $10.55 | |
FTM | 0.42% | $3,339.29 | 0.0577 | $192.65 | |
FTM | 0.39% | $94,364 | 0.00185999 | $175.52 | |
FTM | 0.02% | $0.825194 | 11 | $9.08 | |
MOVR | 0.02% | $13.44 | 0.5744 | $7.72 | |
MOVR | <0.01% | $0.998255 | 1.988 | $1.98 | |
MOVR | <0.01% | $0.999938 | 0.4015 | $0.4014 | |
OP | <0.01% | $0.99969 | 0.1832 | $0.1831 | |
OP | <0.01% | $0.998255 | 0.1049 | $0.1046 | |
OP | <0.01% | $3,339.48 | 0.000000890803 | $0.002975 |
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.