Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 342 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Execute Batch | 21026100 | 56 days ago | IN | 0.24811867 ETH | 0.00149505 | ||||
Execute | 21026070 | 56 days ago | IN | 0 ETH | 0.00093434 | ||||
Execute | 20806710 | 87 days ago | IN | 0 ETH | 0.00370076 | ||||
Execute | 20585420 | 118 days ago | IN | 0 ETH | 0.00083802 | ||||
Execute | 20428269 | 140 days ago | IN | 0 ETH | 0.00167817 | ||||
Execute | 20391407 | 145 days ago | IN | 0 ETH | 0.00222512 | ||||
Execute | 20172334 | 175 days ago | IN | 0 ETH | 0.00094999 | ||||
Execute | 20151466 | 178 days ago | IN | 0 ETH | 0.00020231 | ||||
Execute | 20073232 | 189 days ago | IN | 0 ETH | 0.00261371 | ||||
Execute Batch | 19884212 | 216 days ago | IN | 0.18706223 ETH | 0.0016332 | ||||
Execute | 19884200 | 216 days ago | IN | 0 ETH | 0.00231389 | ||||
Execute | 19829755 | 223 days ago | IN | 0 ETH | 0.00045553 | ||||
Execute Batch | 19662887 | 247 days ago | IN | 0 ETH | 0.03222294 | ||||
Execute Batch | 19587786 | 257 days ago | IN | 0 ETH | 0.0033522 | ||||
Execute Batch | 19573207 | 259 days ago | IN | 0.225236 ETH | 0.00470359 | ||||
Execute | 19395468 | 284 days ago | IN | 0 ETH | 0.00281859 | ||||
Execute Batch | 19352818 | 290 days ago | IN | 0.37529184 ETH | 0.00954397 | ||||
Execute Batch | 19352787 | 290 days ago | IN | 0 ETH | 0.03459166 | ||||
Execute Batch | 19301060 | 297 days ago | IN | 0.62656245 ETH | 0.00699059 | ||||
Execute | 19301047 | 297 days ago | IN | 0 ETH | 0.00754423 | ||||
Execute Batch | 19256571 | 304 days ago | IN | 0 ETH | 0.01491926 | ||||
Execute | 19237980 | 306 days ago | IN | 0 ETH | 0.00118492 | ||||
Execute | 19237974 | 306 days ago | IN | 0 ETH | 0.00707253 | ||||
Execute Batch | 19081398 | 328 days ago | IN | 0 ETH | 0.00917449 | ||||
Execute | 19036091 | 335 days ago | IN | 0 ETH | 0.01281775 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21026100 | 56 days ago | 0.24811867 ETH | ||||
19884212 | 216 days ago | 0.06233391 ETH | ||||
19884212 | 216 days ago | 0.06235206 ETH | ||||
19884212 | 216 days ago | 0.06237625 ETH | ||||
19573207 | 259 days ago | 0.112618 ETH | ||||
19573207 | 259 days ago | 0.112618 ETH | ||||
19352818 | 290 days ago | 0.18764592 ETH | ||||
19352818 | 290 days ago | 0.18764592 ETH | ||||
19301060 | 297 days ago | 0.16366651 ETH | ||||
19301060 | 297 days ago | 0.16366651 ETH | ||||
19301060 | 297 days ago | 0.29922943 ETH | ||||
18830997 | 363 days ago | 0.14382562 ETH | ||||
18830997 | 363 days ago | 0.14294175 ETH | ||||
18830997 | 363 days ago | 0.14294175 ETH | ||||
18830997 | 363 days ago | 0.14294175 ETH | ||||
18830997 | 363 days ago | 0.14294175 ETH | ||||
18830997 | 363 days ago | 0.14294175 ETH | ||||
18830836 | 363 days ago | 0.14294175 ETH | ||||
18830836 | 363 days ago | 0.14294175 ETH | ||||
18830836 | 363 days ago | 0.14294175 ETH | ||||
18830827 | 363 days ago | 3.14806909 ETH | ||||
18830728 | 363 days ago | 0.14294175 ETH | ||||
18830641 | 363 days ago | 0.14294175 ETH | ||||
18830641 | 363 days ago | 0.14382562 ETH | ||||
18830641 | 363 days ago | 0.14382562 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 | Ether (ETH) | 100.00% | $3,629.56 | 0.03 | $108.89 |
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.