MOVR Price: $21.88 (+1.11%)
Gas: 3 GWei

Contract

0x8E459Ce50BB639082C7Ed83c0Ff57c38Ea2E755c

Overview

MOVR Balance

Moonriver Chain LogoMoonriver Chain LogoMoonriver Chain Logo0 MOVR

MOVR Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Exec Transaction35781562023-02-08 8:43:00414 days ago1675845780IN
0x8E459Ce5...8Ea2E755c
0 MOVR0.000188492.5
Exec Transaction35721752023-02-07 12:21:42415 days ago1675772502IN
0x8E459Ce5...8Ea2E755c
0 MOVR0.000188462.5
Exec Transaction35721692023-02-07 12:20:30415 days ago1675772430IN
0x8E459Ce5...8Ea2E755c
0 MOVR0.000176042.5
Exec Transaction35652262023-02-06 12:49:00416 days ago1675687740IN
0x8E459Ce5...8Ea2E755c
0 MOVR0.000188492.5
Exec Transaction16055852022-03-17 11:03:06742 days ago1647514986IN
0x8E459Ce5...8Ea2E755c
0 MOVR0.00798869101
Transfer15901012022-03-13 15:53:48746 days ago1647186828IN
0x8E459Ce5...8Ea2E755c
9,999 MOVR0.000054652
Transfer15471442022-03-02 22:15:30757 days ago1646259330IN
0x8E459Ce5...8Ea2E755c
1 MOVR0.000054652
Exec Transaction15413842022-03-01 12:55:06758 days ago1646139306IN
0x8E459Ce5...8Ea2E755c
0 MOVR0.0080958100
Exec Transaction15409462022-03-01 10:22:18758 days ago1646130138IN
0x8E459Ce5...8Ea2E755c
0 MOVR0.0076379100
Transfer15408662022-03-01 9:52:12758 days ago1646128332IN
0x8E459Ce5...8Ea2E755c
0.1 MOVR0.000027321
Exec Transaction15408642022-03-01 9:51:42758 days ago1646128302IN
0x8E459Ce5...8Ea2E755c
0 MOVR0.0082766100
Exec Transaction15408612022-03-01 9:50:30758 days ago1646128230IN
0x8E459Ce5...8Ea2E755c
0 MOVR0.0081253100
Exec Transaction15408582022-03-01 9:49:36758 days ago1646128176IN
0x8E459Ce5...8Ea2E755c
0 MOVR0.0101153100

Latest 2 internal transactions

Advanced mode:
Parent Txn Hash Block From To Value
15409462022-03-01 10:22:18758 days ago1646130138
0x8E459Ce5...8Ea2E755c
0.1 MOVR
9121072021-11-16 11:48:24863 days ago1637063304  Contract Creation0 MOVR
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x017eFfFd...458B3584D
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, GNU LGPLv3 license
/**
 *Submitted for verification at moonriver.moonscan.io on 2022-02-07
*/

// 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())
        }
    }
}

Contract Security Audit

Contract ABI

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

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033

Deployed Bytecode Sourcemap

524:1528:0:-:0;;;1376:42;1372:1;1366:8;1362:57;1556:66;1552:1;1539:15;1536:87;1533:2;;;1653:10;1650:1;1643:21;1692:4;1689:1;1682:15;1533:2;1745:14;1742:1;1739;1726:34;1843:1;1840;1824:14;1821:1;1809:10;1802:5;1789:56;1880:16;1877:1;1874;1859:38;1926:1;1917:7;1914:14;1911:2;;;1958:16;1955:1;1948:27;1911:2;2014:16;2011:1;2004:27

Swarm Source

ipfs://d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b9552

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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