Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
Latest 21 from a total of 21 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Execute Batch | 21474111 | 12 hrs ago | IN | 1.09421865 ETH | 0.00492432 | ||||
Execute Batch | 21472586 | 17 hrs ago | IN | 1.57811461 ETH | 0.00534236 | ||||
Execute Batch | 21469706 | 27 hrs ago | IN | 1.4820975 ETH | 0.00423486 | ||||
Execute Batch | 21441050 | 5 days ago | IN | 1.00831248 ETH | 0.0020815 | ||||
Execute Batch | 21431541 | 6 days ago | IN | 0.966432 ETH | 0.00435618 | ||||
Execute Batch | 21430475 | 6 days ago | IN | 1.93236065 ETH | 0.01484563 | ||||
Execute Batch | 21390463 | 12 days ago | IN | 2.41859694 ETH | 0.00419118 | ||||
Execute Batch | 21389377 | 12 days ago | IN | 5.9472453 ETH | 0.0046523 | ||||
Execute | 21370295 | 15 days ago | IN | 0 ETH | 0.00097549 | ||||
Execute Batch | 21370281 | 15 days ago | IN | 0.4113639 ETH | 0.00270787 | ||||
Execute Batch | 21327399 | 21 days ago | IN | 0.80714776 ETH | 0.00823655 | ||||
Execute | 21313050 | 23 days ago | IN | 0 ETH | 0.00079801 | ||||
Execute Batch | 21301381 | 24 days ago | IN | 0.27232337 ETH | 0.00280909 | ||||
Execute Batch | 21174028 | 42 days ago | IN | 0 ETH | 0.01138807 | ||||
Execute Batch | 21169276 | 43 days ago | IN | 0 ETH | 0.00608393 | ||||
Execute Batch | 21159562 | 44 days ago | IN | 0 ETH | 0.01953973 | ||||
Execute Batch | 20793172 | 95 days ago | IN | 0 ETH | 0.005862 | ||||
Execute Batch | 19095197 | 333 days ago | IN | 0.97869105 ETH | 0.00918852 | ||||
Execute Batch | 19095142 | 333 days ago | IN | 2.43796171 ETH | 0.02642205 | ||||
Execute Batch | 19095123 | 333 days ago | IN | 2.39940184 ETH | 0.02548413 | ||||
Execute Batch | 19048952 | 339 days ago | IN | 0.1785 ETH | 0.00868893 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21474111 | 12 hrs ago | 0.547236 ETH | ||||
21474111 | 12 hrs ago | 0.54698265 ETH | ||||
21472586 | 17 hrs ago | 0.52620795 ETH | ||||
21472586 | 17 hrs ago | 0.52620541 ETH | ||||
21472586 | 17 hrs ago | 0.52570125 ETH | ||||
21469706 | 27 hrs ago | 0.4940325 ETH | ||||
21469706 | 27 hrs ago | 0.4940325 ETH | ||||
21469706 | 27 hrs ago | 0.4940325 ETH | ||||
21441050 | 5 days ago | 1.00831248 ETH | ||||
21431541 | 6 days ago | 0.966432 ETH | ||||
21430475 | 6 days ago | 0.966432 ETH | ||||
21430475 | 6 days ago | 0.96592865 ETH | ||||
21390463 | 12 days ago | 1.21234731 ETH | ||||
21390463 | 12 days ago | 1.20624962 ETH | ||||
21389377 | 12 days ago | 5.9472453 ETH | ||||
21370281 | 15 days ago | 0.4113639 ETH | ||||
21327399 | 21 days ago | 0.40457461 ETH | ||||
21327399 | 21 days ago | 0.40257315 ETH | ||||
21301381 | 24 days ago | 0.27232337 ETH | ||||
19095197 | 333 days ago | 0.3673575 ETH | ||||
19095197 | 333 days ago | 0.36102375 ETH | ||||
19095197 | 333 days ago | 0.2503098 ETH | ||||
19095142 | 333 days ago | 0.24699091 ETH | ||||
19095142 | 333 days ago | 0.24498945 ETH | ||||
19095142 | 333 days ago | 0.2447361 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 |
---|
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.