MON Price: $0.019098 (+0.00%)

Contract

0x0000aeB716a0DF7A9A1AAd119b772644Bc089dA8

Overview

MON Balance

Monad Chain LogoMonad Chain LogoMonad Chain Logo5.01 MON

MON Value

$0.10 (@ $0.02/MON)

More Info

Private Name Tags

Transaction Hash
Method
Block
From
To
Exec Transaction489345532026-01-15 19:55:099 days ago1768506909IN
0x0000aeB7...4Bc089dA8
0 MON0.02222019103
Exec Transaction487271842026-01-14 20:35:2810 days ago1768422928IN
0x0000aeB7...4Bc089dA8
0 MON0.20575413103
Exec Transaction487249732026-01-14 20:20:4010 days ago1768422040IN
0x0000aeB7...4Bc089dA8
0 MON0.70362823104.142
Exec Transaction437348842025-12-22 15:57:4033 days ago1766419060IN
0x0000aeB7...4Bc089dA8
0 MON0.02062308103.88
Exec Transaction405612592025-12-07 21:54:4248 days ago1765144482IN
0x0000aeB7...4Bc089dA8
0 MON0.12536468102.06
Exec Transaction399263472025-12-04 22:50:4551 days ago1764888645IN
0x0000aeB7...4Bc089dA8
0 MON0.02201708102.05
Exec Transaction396192022025-12-03 12:33:2852 days ago1764765208IN
0x0000aeB7...4Bc089dA8
0 MON0.2449566140
Exec Transaction392004792025-12-01 13:52:4054 days ago1764597160IN
0x0000aeB7...4Bc089dA8
0 MON0.46877866140
Exec Transaction392000632025-12-01 13:49:5354 days ago1764596993IN
0x0000aeB7...4Bc089dA8
0 MON0.648108
Exec Transaction391983892025-12-01 13:38:4354 days ago1764596323IN
0x0000aeB7...4Bc089dA8
0 MON0.34488901103
Exec Transaction381286272025-11-26 13:50:4359 days ago1764165043IN
0x0000aeB7...4Bc089dA8
0 MON0.12266748104
Exec Transaction376808692025-11-24 11:51:4561 days ago1763985105IN
0x0000aeB7...4Bc089dA8
0 MON0.05985666102
Exec Transaction376750072025-11-24 11:12:3361 days ago1763982753IN
0x0000aeB7...4Bc089dA8
0 MON0.03872858102
Exec Transaction373260472025-11-22 20:21:1963 days ago1763842879IN
0x0000aeB7...4Bc089dA8
0 MON0.16188552102
Exec Transaction373255962025-11-22 20:18:1863 days ago1763842698IN
0x0000aeB7...4Bc089dA8
0 MON0.02850107135.7
Exec Transaction373143962025-11-22 19:03:3463 days ago1763838214IN
0x0000aeB7...4Bc089dA8
0 MON0.48028543135.6
Exec Transaction373102882025-11-22 18:36:0663 days ago1763836566IN
0x0000aeB7...4Bc089dA8
0 MON0.765102
Exec Transaction373070102025-11-22 18:14:1463 days ago1763835254IN
0x0000aeB7...4Bc089dA8
0 MON1.1025122.5
Exec Transaction373058802025-11-22 18:06:4163 days ago1763834801IN
0x0000aeB7...4Bc089dA8
0 MON0.8136135.6
Exec Transaction373026732025-11-22 17:45:1863 days ago1763833518IN
0x0000aeB7...4Bc089dA8
0 MON0.37248145102
Transfer372946902025-11-22 16:51:5763 days ago1763830317IN
0x0000aeB7...4Bc089dA8
2.1 MON0.102102
Transfer372945802025-11-22 16:51:1363 days ago1763830273IN
0x0000aeB7...4Bc089dA8
5 MON0.1094109.4
Exec Transaction372933482025-11-22 16:43:0063 days ago1763829780IN
0x0000aeB7...4Bc089dA8
0 MON2.24989689112.2
Exec Transaction370707842025-11-21 15:55:2764 days ago1763740527IN
0x0000aeB7...4Bc089dA8
0 MON0.18639288120
Exec Transaction370010562025-11-21 8:09:1164 days ago1763712551IN
0x0000aeB7...4Bc089dA8
0 MON0.25237583112.2
View all transactions

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
373255962025-11-22 20:18:1863 days ago1763842698
0x0000aeB7...4Bc089dA8
2.1 MON
366444792025-11-19 16:02:4066 days ago1763568160  Contract Creation0 MON
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x43dfaE6C...56137443f in opBNB Mainnet
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
GnosisSafeProxy

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
Default EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at monadscan.com on 2025-12-18
*/

/**
 *Submitted for verification at polygonscan.com on 2021-06-16
*/

// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity >=0.7.0 <0.9.0;

/// @title IProxy - Helper interface to access masterCopy of the Proxy on-chain
/// @author Richard Meissner - <[email protected]>
interface IProxy {
    function masterCopy() external view returns (address);
}

/// @title GnosisSafeProxy - Generic proxy contract allows to execute all transactions applying the code of a master contract.
/// @author Stefan George - <[email protected]>
/// @author Richard Meissner - <[email protected]>
contract GnosisSafeProxy {
    // singleton always needs to be first declared variable, to ensure that it is at the same location in the contracts to which calls are delegated.
    // To reduce deployment costs this variable is internal and needs to be retrieved via `getStorageAt`
    address internal singleton;

    /// @dev Constructor function sets address of singleton contract.
    /// @param _singleton Singleton address.
    constructor(address _singleton) {
        require(_singleton != address(0), "Invalid singleton address provided");
        singleton = _singleton;
    }

    /// @dev Fallback function forwards all transactions and returns all received return data.
    fallback() external payable {
        // solhint-disable-next-line no-inline-assembly
        assembly {
            let _singleton := and(sload(0), 0xffffffffffffffffffffffffffffffffffffffff)
            // 0xa619486e == keccak("masterCopy()"). The value is right padded to 32-bytes with 0s
            if eq(calldataload(0), 0xa619486e00000000000000000000000000000000000000000000000000000000) {
                mstore(0, _singleton)
                return(0, 0x20)
            }
            calldatacopy(0, 0, calldatasize())
            let success := delegatecall(gas(), _singleton, 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())
            if eq(success, 0) {
                revert(0, returndatasize())
            }
            return(0, returndatasize())
        }
    }
}

/// @title Proxy Factory - Allows to create new proxy contact and execute a message call to the new proxy within one transaction.
/// @author Stefan George - <[email protected]>
contract GnosisSafeProxyFactory {
    event ProxyCreation(GnosisSafeProxy proxy, address singleton);

    /// @dev Allows to create new proxy contact and execute a message call to the new proxy within one transaction.
    /// @param singleton Address of singleton contract.
    /// @param data Payload for message call sent to new proxy contract.
    function createProxy(address singleton, bytes memory data) public returns (GnosisSafeProxy proxy) {
        proxy = new GnosisSafeProxy(singleton);
        if (data.length > 0)
            // solhint-disable-next-line no-inline-assembly
            assembly {
                if eq(call(gas(), proxy, 0, add(data, 0x20), mload(data), 0, 0), 0) {
                    revert(0, 0)
                }
            }
        emit ProxyCreation(proxy, singleton);
    }

    /// @dev Allows to retrieve the runtime code of a deployed Proxy. This can be used to check that the expected Proxy was deployed.
    function proxyRuntimeCode() public pure returns (bytes memory) {
        return type(GnosisSafeProxy).runtimeCode;
    }

    /// @dev Allows to retrieve the creation code used for the Proxy deployment. With this it is easily possible to calculate predicted address.
    function proxyCreationCode() public pure returns (bytes memory) {
        return type(GnosisSafeProxy).creationCode;
    }

    /// @dev Allows to create new proxy contact using CREATE2 but it doesn't run the initializer.
    ///      This method is only meant as an utility to be called from other methods
    /// @param _singleton Address of singleton contract.
    /// @param initializer Payload for message call sent to new proxy contract.
    /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract.
    function deployProxyWithNonce(
        address _singleton,
        bytes memory initializer,
        uint256 saltNonce
    ) internal returns (GnosisSafeProxy proxy) {
        // If the initializer changes the proxy address should change too. Hashing the initializer data is cheaper than just concatinating it
        bytes32 salt = keccak256(abi.encodePacked(keccak256(initializer), saltNonce));
        bytes memory deploymentData = abi.encodePacked(type(GnosisSafeProxy).creationCode, uint256(uint160(_singleton)));
        // solhint-disable-next-line no-inline-assembly
        assembly {
            proxy := create2(0x0, add(0x20, deploymentData), mload(deploymentData), salt)
        }
        require(address(proxy) != address(0), "Create2 call failed");
    }

    /// @dev Allows to create new proxy contact and execute a message call to the new proxy within one transaction.
    /// @param _singleton Address of singleton contract.
    /// @param initializer Payload for message call sent to new proxy contract.
    /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract.
    function createProxyWithNonce(
        address _singleton,
        bytes memory initializer,
        uint256 saltNonce
    ) public returns (GnosisSafeProxy proxy) {
        proxy = deployProxyWithNonce(_singleton, initializer, saltNonce);
        if (initializer.length > 0)
            // solhint-disable-next-line no-inline-assembly
            assembly {
                if eq(call(gas(), proxy, 0, add(initializer, 0x20), mload(initializer), 0, 0), 0) {
                    revert(0, 0)
                }
            }
        emit ProxyCreation(proxy, _singleton);
    }

    /// @dev Allows to create new proxy contact, execute a message call to the new proxy and call a specified callback within one transaction
    /// @param _singleton Address of singleton contract.
    /// @param initializer Payload for message call sent to new proxy contract.
    /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract.
    /// @param callback Callback that will be invoced after the new proxy contract has been successfully deployed and initialized.
    function createProxyWithCallback(
        address _singleton,
        bytes memory initializer,
        uint256 saltNonce,
        IProxyCreationCallback callback
    ) public returns (GnosisSafeProxy proxy) {
        uint256 saltNonceWithCallback = uint256(keccak256(abi.encodePacked(saltNonce, callback)));
        proxy = createProxyWithNonce(_singleton, initializer, saltNonceWithCallback);
        if (address(callback) != address(0)) callback.proxyCreated(proxy, _singleton, initializer, saltNonce);
    }

    /// @dev Allows to get the address for a new proxy contact created via `createProxyWithNonce`
    ///      This method is only meant for address calculation purpose when you use an initializer that would revert,
    ///      therefore the response is returned with a revert. When calling this method set `from` to the address of the proxy factory.
    /// @param _singleton Address of singleton contract.
    /// @param initializer Payload for message call sent to new proxy contract.
    /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract.
    function calculateCreateProxyWithNonceAddress(
        address _singleton,
        bytes calldata initializer,
        uint256 saltNonce
    ) external returns (GnosisSafeProxy proxy) {
        proxy = deployProxyWithNonce(_singleton, initializer, saltNonce);
        revert(string(abi.encodePacked(proxy)));
    }
}

interface IProxyCreationCallback {
    function proxyCreated(
        GnosisSafeProxy proxy,
        address _singleton,
        bytes calldata initializer,
        uint256 saltNonce
    ) external;
}

Contract Security Audit

Contract ABI

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

0x608060405234801561001057600080fd5b506040516101e63803806101e68339818101604052602081101561003357600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806101c46022913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505060ab806101196000396000f3fe608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033496e76616c69642073696e676c65746f6e20616464726573732070726f7669646564000000000000000000000000fb1bffc9d739b8d520daf37df666da4c687191ea

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033

Block Transaction Gas Used Reward
view all blocks produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
0x0000aeB716a0DF7A9A1AAd119b772644Bc089dA8
Net Worth in USD
$1,525.73

Net Worth in MON
Monad Chain LogoMonad Chain LogoMonad Chain Logo 79,888.150181

Token Allocations
USDC 87.48%
ETH 6.28%
WETH 1.67%
Others 4.57%
Chain Token Portfolio % Price Amount Value
BASE86.29%$0.9997021,316.8998$1,316.51
BASE1.00%$2,950.470.00515$15.19
BASE0.61%$1.098.5901$9.32
BASE0.60%$89,1510.00010242$9.13
BASE0.46%$3,310.720.00213085$7.05
BASE0.40%$3,614.650.00169963$6.14
BASE0.17%$0.9967952.6626$2.65
BASE0.17%$1.182.2156$2.61
BASE0.06%$0.000001740,000$0.8732
ETH4.23%$2,951.670.0219$64.56
ETH0.41%$1.245$6.2
ETH0.38%$89,1320.000065$5.79
ETH0.19%$0.9997042.8566$2.86
ETH0.18%$2,951.670.00090979$2.69
ETH0.14%$0.9998092.1244$2.12
ETH0.12%$3,613.410.00052099$1.88
ETH0.12%$0.9987051.8009$1.8
ETH0.11%$0.9985791.7365$1.73
ETH0.06%$88,7810.0000095$0.8434
ETH0.03%$0.9997020.4426$0.4424
UNI1.35%$2,951.770.007$20.66
UNI0.38%$2,950.180.0019895$5.87
ARB0.91%$0.99970213.9481$13.94
ARB0.69%$2,951.660.003592$10.6
MONAD0.20%$0.9997023.1$3.1
MONAD0.12%$2,949.490.0006$1.77
MONAD0.08%$0.9996741.27$1.27
MONAD0.07%$0.9983311.09$1.09
MONAD
Monad (MON)
<0.01%$0.0190985.01$0.095683
POL0.30%$0.12515536$4.51
POL0.07%$0.006389158.99$1.02
POL0.05%$0.9997020.7014$0.7011
POL0.05%$0.9983860.6982$0.697
Loading...
Loading
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.