More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 26 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Execute Batch | 21817608 | 10 days ago | IN | 0.38898291 ETH | 0.00149111 | ||||
Execute Batch | 21812872 | 11 days ago | IN | 0.6903677 ETH | 0.00196215 | ||||
Execute Batch | 21416968 | 66 days ago | IN | 0 ETH | 0.01478758 | ||||
Execute Batch | 21414239 | 67 days ago | IN | 0.38096661 ETH | 0.00260703 | ||||
Execute Batch | 21309594 | 81 days ago | IN | 3.006696 ETH | 0.0055979 | ||||
Execute Batch | 21308595 | 81 days ago | IN | 2.403334 ETH | 0.01208246 | ||||
Execute Batch | 21303871 | 82 days ago | IN | 2.5362555 ETH | 0.00299548 | ||||
Execute Batch | 21303205 | 82 days ago | IN | 0.41603646 ETH | 0.00360633 | ||||
Execute | 21298614 | 83 days ago | IN | 0 ETH | 0.00115952 | ||||
Execute | 21298609 | 83 days ago | IN | 0 ETH | 0.00110658 | ||||
Execute Batch | 21298431 | 83 days ago | IN | 0.17375313 ETH | 0.00139661 | ||||
Execute Batch | 21296356 | 83 days ago | IN | 1.01278063 ETH | 0.0022095 | ||||
Execute Batch | 21199439 | 97 days ago | IN | 1.1537641 ETH | 0.00294246 | ||||
Execute Batch | 21199164 | 97 days ago | IN | 1.45428955 ETH | 0.00283846 | ||||
Execute Batch | 21193812 | 97 days ago | IN | 1.28797178 ETH | 0.00678744 | ||||
Execute | 21022589 | 121 days ago | IN | 0 ETH | 0.00147144 | ||||
Execute Batch | 21009970 | 123 days ago | IN | 1.3901108 ETH | 0.00253085 | ||||
Execute Batch | 21008704 | 123 days ago | IN | 0.22914716 ETH | 0.00263627 | ||||
Execute Batch | 21008619 | 123 days ago | IN | 1.39428479 ETH | 0.00349097 | ||||
Execute Batch | 21006333 | 124 days ago | IN | 1.3847582 ETH | 0.00267852 | ||||
Execute Batch | 20971165 | 128 days ago | IN | 0.74110662 ETH | 0.00625146 | ||||
Execute Batch | 20842546 | 146 days ago | IN | 0.26745722 ETH | 0.00570019 | ||||
Execute Batch | 20527346 | 190 days ago | IN | 0.89056616 ETH | 0.00390387 | ||||
Execute Batch | 20522512 | 191 days ago | IN | 0.80103148 ETH | 0.00071299 | ||||
Execute Batch | 20521995 | 191 days ago | IN | 1.12657591 ETH | 0.00082855 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21817608 | 10 days ago | 0.0973382 ETH | ||||
21817608 | 10 days ago | 0.09730166 ETH | ||||
21817608 | 10 days ago | 0.09717152 ETH | ||||
21817608 | 10 days ago | 0.09717152 ETH | ||||
21812872 | 11 days ago | 0.09900495 ETH | ||||
21812872 | 11 days ago | 0.09860493 ETH | ||||
21812872 | 11 days ago | 0.09860492 ETH | ||||
21812872 | 11 days ago | 0.09860489 ETH | ||||
21812872 | 11 days ago | 0.09860489 ETH | ||||
21812872 | 11 days ago | 0.09860485 ETH | ||||
21812872 | 11 days ago | 0.09833825 ETH | ||||
21414239 | 67 days ago | 0.38096661 ETH | ||||
21309594 | 81 days ago | 3.006696 ETH | ||||
21308595 | 81 days ago | 1.204182 ETH | ||||
21308595 | 81 days ago | 1.199152 ETH | ||||
21303871 | 82 days ago | 2.5362555 ETH | ||||
21303205 | 82 days ago | 0.41603646 ETH | ||||
21298431 | 83 days ago | 0.17375313 ETH | ||||
21296356 | 83 days ago | 1.01278063 ETH | ||||
21199439 | 97 days ago | 1.1537641 ETH | ||||
21199164 | 97 days ago | 1.45428955 ETH | ||||
21193812 | 97 days ago | 1.28797178 ETH | ||||
21009970 | 123 days ago | 1.3901108 ETH | ||||
21008704 | 123 days ago | 0.22914716 ETH | ||||
21008619 | 123 days ago | 1.39428479 ETH |
Loading...
Loading
Minimal Proxy Contract for 0x95a286ca0347b3c8daf06dad1c4233c95f06c894
Contract Name:
CoreRouter
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 500 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; /// @title Cyan Wallet Core Router - A Cyan wallet's core router. /// @author Bulgantamir Gankhuyag - <[email protected]> /// @author Naranbayar Uuganbayar - <[email protected]> contract CoreRouter { address payable private immutable _this; address private _admin; address private _core; event SetRouterAdmin(address admin); event SetCore(address core); modifier onlyAdmin() { require(_admin == msg.sender, "Caller is not an admin."); _; } constructor(address core) { require(core != address(0x0), "Invalid core address."); _admin = msg.sender; _core = core; _this = payable(address(this)); } /// @notice Changes the admin of the router. /// @param admin Address of the new admin. function setRouterAdmin(address admin) external onlyAdmin { require(admin != address(0x0), "Invalid admin address."); _admin = admin; emit SetRouterAdmin(admin); } /// @notice Returns an admin address of the router. /// @return Address of the current admin. function getRouterAdmin() external view returns (address) { return _admin; } /// @notice Changes the address of the core contract. /// Note: Changing the core address will affect to all wallets. /// @param core Address of the new core contract. function setCore(address core) external onlyAdmin { require(core != address(0x0), "Invalid core address."); _core = core; emit SetCore(core); } /// @notice Returns the address of the core contract. /// @return Address of the current core contract. function getCore() external view returns (address) { return _core; } /// @notice Delegates all transcations to the core contract. fallback() external payable { address core = CoreRouter(_this).getCore(); assembly { calldatacopy(0, 0, calldatasize()) let success := delegatecall(gas(), core, 0, calldatasize(), 0, 0) returndatacopy(0, 0, returndatasize()) if eq(success, 0) { revert(0, returndatasize()) } return(0, returndatasize()) } } }
{ "optimizer": { "enabled": true, "runs": 500 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
[{"inputs":[{"internalType":"address","name":"core","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"core","type":"address"}],"name":"SetCore","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"admin","type":"address"}],"name":"SetRouterAdmin","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"getCore","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRouterAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"core","type":"address"}],"name":"setCore","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"setRouterAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 100.00% | $0.000003 | 804,828 | $2.59 |
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.