More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 252 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim For | 21710044 | 10 hrs ago | IN | 0 ETH | 0.00068939 | ||||
Claim For | 21702874 | 34 hrs ago | IN | 0 ETH | 0.00059304 | ||||
Approve | 21699014 | 47 hrs ago | IN | 0 ETH | 0.00032673 | ||||
Claim For | 21695716 | 2 days ago | IN | 0 ETH | 0.00138932 | ||||
Transfer | 21694598 | 2 days ago | IN | 0 ETH | 0.00080616 | ||||
Transfer | 21694022 | 2 days ago | IN | 0 ETH | 0.00106598 | ||||
Transfer | 21693922 | 2 days ago | IN | 0 ETH | 0.00086723 | ||||
Wrap | 21693898 | 2 days ago | IN | 0 ETH | 0.00204469 | ||||
Approve | 21692265 | 2 days ago | IN | 0 ETH | 0.00017955 | ||||
Claim For | 21688546 | 3 days ago | IN | 0 ETH | 0.0010648 | ||||
Claim For | 21681384 | 4 days ago | IN | 0 ETH | 0.00100663 | ||||
Claim For | 21674218 | 5 days ago | IN | 0 ETH | 0.00123084 | ||||
Claim For | 21667058 | 6 days ago | IN | 0 ETH | 0.00290085 | ||||
Wrap | 21665488 | 6 days ago | IN | 0 ETH | 0.00255251 | ||||
Claim For | 21659887 | 7 days ago | IN | 0 ETH | 0.00255823 | ||||
Claim For | 21652757 | 8 days ago | IN | 0 ETH | 0.00224686 | ||||
Claim For | 21652749 | 8 days ago | IN | 0 ETH | 0.00215267 | ||||
Claim For | 21645563 | 9 days ago | IN | 0 ETH | 0.00111306 | ||||
Claim For | 21638398 | 10 days ago | IN | 0 ETH | 0.00071027 | ||||
Transfer | 21637683 | 10 days ago | IN | 0 ETH | 0.00086435 | ||||
Transfer | 21637650 | 10 days ago | IN | 0 ETH | 0.00095005 | ||||
Transfer | 21636724 | 10 days ago | IN | 0 ETH | 0.00020678 | ||||
Transfer | 21636701 | 10 days ago | IN | 0 ETH | 0.00029815 | ||||
Wrap | 21636672 | 10 days ago | IN | 0 ETH | 0.0004503 | ||||
Wrap | 21636625 | 10 days ago | IN | 0 ETH | 0.00037533 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers. Name tag integration is not available in advanced view.
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
||||
---|---|---|---|---|---|---|---|
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH | |||||
21713142 | 5 mins ago | 0 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Proxy
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
Yes with 999999 runs
Other Settings:
shanghai EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.23; /** * @title Minimal transparent proxy. * @author M^0 Labs */ contract Proxy { /// @dev Storage slot with the address of the current factory. `keccak256('eip1967.proxy.implementation') - 1`. uint256 private constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /** * @dev Constructs the contract given the address of some implementation. * @param implementation_ The address of some implementation. */ constructor(address implementation_) { if (implementation_ == address(0)) revert(); assembly { sstore(_IMPLEMENTATION_SLOT, implementation_) } } fallback() external payable virtual { bytes32 implementation_; assembly { implementation_ := sload(_IMPLEMENTATION_SLOT) } assembly { calldatacopy(0, 0, calldatasize()) let result_ := delegatecall(gas(), implementation_, 0, calldatasize(), 0, 0) returndatacopy(0, 0, returndatasize()) switch result_ case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } }
{ "remappings": [ "common/=lib/common/src/", "ds-test/=lib/common/lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/" ], "optimizer": { "enabled": true, "runs": 999999 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "shanghai", "viaIR": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"implementation_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]
Contract Creation Code
608060405234801561000f575f80fd5b5060405161011938038061011983398101604081905261002e91610067565b6001600160a01b038116610040575f80fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55610094565b5f60208284031215610077575f80fd5b81516001600160a01b038116811461008d575f80fd5b9392505050565b6079806100a05f395ff3fe60806040527f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc54365f80375f80365f845af43d5f803e808015603f573d5ff35b3d5ffdfea2646970667358221220d2631db1b18b2947844c1d7d37e70f0971180c52e4a2cab755f41723bab4648764736f6c63430008170033000000000000000000000000813b926b1d096e117721bd1eb017fba122302da0
Deployed Bytecode
0x60806040527f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc54365f80375f80365f845af43d5f803e808015603f573d5ff35b3d5ffdfea2646970667358221220d2631db1b18b2947844c1d7d37e70f0971180c52e4a2cab755f41723bab4648764736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000813b926b1d096e117721bd1eb017fba122302da0
-----Decoded View---------------
Arg [0] : implementation_ (address): 0x813B926B1D096e117721bD1Eb017FbA122302DA0
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000813b926b1d096e117721bd1eb017fba122302da0
Loading...
Loading
Loading...
Loading
OVERVIEW
M^0 is an on-chain protocol, as well as a set of off-chain standards and APIs, that powers the first open federation of cryptodollar issuers. Smart $M is next-gen wrapper contract for the $M cryptodollar.Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.