ETH Price: $3,380.12 (+3.83%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer216945982025-01-24 13:15:592 hrs ago1737724559IN
M^0: wM Token
0 ETH0.0008061616.71082589
Transfer216940222025-01-24 11:19:594 hrs ago1737717599IN
M^0: wM Token
0 ETH0.0010659816.31985458
Transfer216939222025-01-24 10:59:595 hrs ago1737716399IN
M^0: wM Token
0 ETH0.0008672317.976754
Wrap216938982025-01-24 10:55:115 hrs ago1737716111IN
M^0: wM Token
0 ETH0.0020446917.13137238
Approve216922652025-01-24 5:27:3510 hrs ago1737696455IN
M^0: wM Token
0 ETH0.000179553.51988017
Claim For216885462025-01-23 17:00:2323 hrs ago1737651623IN
M^0: wM Token
0 ETH0.001064813.40732206
Claim For216813842025-01-22 17:00:2347 hrs ago1737565223IN
M^0: wM Token
0 ETH0.0010066312.67480789
Claim For216742182025-01-21 17:00:232 days ago1737478823IN
M^0: wM Token
0 ETH0.0012308415.49790123
Claim For216670582025-01-20 17:00:353 days ago1737392435IN
M^0: wM Token
0 ETH0.0029008536.52543559
Wrap216654882025-01-20 11:44:594 days ago1737373499IN
M^0: wM Token
0 ETH0.0025525124.95956066
Claim For216598872025-01-19 17:00:114 days ago1737306011IN
M^0: wM Token
0 ETH0.0025582332.21148039
Claim For216527572025-01-18 17:05:595 days ago1737219959IN
M^0: wM Token
0 ETH0.0022468628.29088419
Claim For216527492025-01-18 17:04:235 days ago1737219863IN
M^0: wM Token
0 ETH0.0021526727.10498923
Claim For216455632025-01-17 17:00:116 days ago1737133211IN
M^0: wM Token
0 ETH0.0011130614.01486585
Claim For216383982025-01-16 17:00:117 days ago1737046811IN
M^0: wM Token
0 ETH0.000710278.94326464
Transfer216376832025-01-16 14:36:238 days ago1737038183IN
M^0: wM Token
0 ETH0.0008643510.81561156
Transfer216376502025-01-16 14:29:478 days ago1737037787IN
M^0: wM Token
0 ETH0.0009500511.88804805
Transfer216367242025-01-16 11:23:478 days ago1737026627IN
M^0: wM Token
0 ETH0.000206784.75869679
Transfer216367012025-01-16 11:19:118 days ago1737026351IN
M^0: wM Token
0 ETH0.000298154.56214774
Wrap216366722025-01-16 11:13:238 days ago1737026003IN
M^0: wM Token
0 ETH0.00045034.20587812
Wrap216366252025-01-16 11:03:478 days ago1737025427IN
M^0: wM Token
0 ETH0.000375333.02282374
Claim For216312362025-01-15 17:00:238 days ago1736960423IN
M^0: wM Token
0 ETH0.0013722917.27893932
Transfer216306072025-01-15 14:53:599 days ago1736952839IN
M^0: wM Token
0 ETH0.0008865313.62560415
Transfer216306072025-01-15 14:53:599 days ago1736952839IN
M^0: wM Token
0 ETH0.0009620913.77101227
Claim For216241002025-01-14 17:03:479 days ago1736874227IN
M^0: wM Token
0 ETH0.001225715.43325487
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
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
File 1 of 1 : Proxy.sol
// 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())
            }
        }
    }
}

Settings
{
  "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

Contract ABI

[{"inputs":[{"internalType":"address","name":"implementation_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]

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


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
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.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.