More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 30 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Execute Batch | 21335728 | 64 days ago | IN | 0 ETH | 0.00579271 | ||||
Execute Batch | 21277763 | 72 days ago | IN | 0.72450917 ETH | 0.00257755 | ||||
Execute | 20574929 | 170 days ago | IN | 0 ETH | 0.00005574 | ||||
Execute Batch | 20574665 | 171 days ago | IN | 0.64182673 ETH | 0.00020104 | ||||
Execute Batch | 20282455 | 211 days ago | IN | 0.13081183 ETH | 0.00269827 | ||||
Execute Batch | 20282226 | 211 days ago | IN | 0.59751138 ETH | 0.00117687 | ||||
Execute Batch | 20275178 | 212 days ago | IN | 0.13063343 ETH | 0.00136454 | ||||
Execute Batch | 20254962 | 215 days ago | IN | 0.62502545 ETH | 0.00093463 | ||||
Execute Batch | 20254037 | 215 days ago | IN | 0.13021258 ETH | 0.00041413 | ||||
Execute | 20217478 | 220 days ago | IN | 0 ETH | 0.00032773 | ||||
Execute | 20217123 | 220 days ago | IN | 0 ETH | 0.00010535 | ||||
Execute | 20217046 | 220 days ago | IN | 0 ETH | 0.00142743 | ||||
Transfer | 20217040 | 220 days ago | IN | 0.005 ETH | 0.00012058 | ||||
Transfer | 20217032 | 220 days ago | IN | 0.005 ETH | 0.00012308 | ||||
Execute Batch | 20145975 | 230 days ago | IN | 0 ETH | 0.00090656 | ||||
Execute Batch | 20088271 | 238 days ago | IN | 0.14643167 ETH | 0.0021767 | ||||
Execute Batch | 20088266 | 238 days ago | IN | 0.14642924 ETH | 0.00214181 | ||||
Execute | 19930911 | 260 days ago | IN | 0 ETH | 0.00066408 | ||||
Execute | 19930907 | 260 days ago | IN | 0 ETH | 0.00064979 | ||||
Execute | 19930894 | 260 days ago | IN | 0 ETH | 0.00075706 | ||||
Execute | 19650717 | 300 days ago | IN | 0 ETH | 0.00539313 | ||||
Execute | 19650704 | 300 days ago | IN | 0 ETH | 0.00477541 | ||||
Execute Batch | 19608991 | 305 days ago | IN | 0 ETH | 0.00228766 | ||||
Execute Batch | 19608981 | 305 days ago | IN | 0 ETH | 0.00224284 | ||||
Execute Batch | 19608921 | 305 days ago | IN | 0 ETH | 0.00235914 |
Latest 14 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21277763 | 72 days ago | 0.72450917 ETH | ||||
20574665 | 171 days ago | 0.64182673 ETH | ||||
20282455 | 211 days ago | 0.13081183 ETH | ||||
20282226 | 211 days ago | 0.59751138 ETH | ||||
20275178 | 212 days ago | 0.13063343 ETH | ||||
20254962 | 215 days ago | 0.62502545 ETH | ||||
20254037 | 215 days ago | 0.13021258 ETH | ||||
20217123 | 220 days ago | 0.0046 ETH | ||||
20217046 | 220 days ago | 0.00536517 ETH | ||||
20088271 | 238 days ago | 0.14643167 ETH | ||||
20088266 | 238 days ago | 0.14642924 ETH | ||||
19317277 | 346 days ago | 0.99385008 ETH | ||||
19317260 | 346 days ago | 0.99451128 ETH | ||||
19002818 | 391 days ago | Contract Creation | 0 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 | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $2,628.8 | 0.00003482 | $0.091544 |
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.