Contract 0xc3f8125c3b365a77f5c2dfc917acba337093f732

 
Txn Hash Method
Block
From
To
Value [Txn Fee]
0x34f6d9d4b40fd1d64331f5506a225017a75dd50def05ad82af31370fbdd29806Exec Transaction392056152022-05-27 23:16:28296 days 16 hrs ago0x822051e839261f2bc98ecfed12c58998d46be171 IN  0xc3f8125c3b365a77f5c2dfc917acba337093f7320 FTM0.006237923
0xeb4ff5714970022cf8912d6327eb94ba68486fdf657feeee7c915001ef50d6d7Exec Transaction374459562022-05-03 8:46:08321 days 6 hrs ago0x0fdce037c2e3c543081e13fd81618adf3818aee2 IN  0xc3f8125c3b365a77f5c2dfc917acba337093f7320 FTM0.02232104823
0x1d2193470321391dfecb1ef49cdbce51f99d996cc80190d09b1ee196c85cf891Transfer373720772022-05-02 5:14:17322 days 10 hrs ago0x4d49c520d6838bcf983c0b4904bc98ebc3a0762a IN  0xc3f8125c3b365a77f5c2dfc917acba337093f7329 FTM0.00832888125
0xd48f3cb9206f8ca4eda08ead90153211ed84440b7d871b3f38d8443e426709e9Exec Transaction373291112022-05-01 12:20:30323 days 3 hrs ago0x822051e839261f2bc98ecfed12c58998d46be171 IN  0xc3f8125c3b365a77f5c2dfc917acba337093f7320 FTM0.098896525
0x0bf35ca2af998dd7025290a297d43079eb9b6c9cbc86fef9d2235d87b04b8514Exec Transaction372985302022-04-30 23:01:57323 days 16 hrs ago0x822051e839261f2bc98ecfed12c58998d46be171 IN  0xc3f8125c3b365a77f5c2dfc917acba337093f7320 FTM0.08050692
0x7e061795e3b3613b581d30004581de96e33d48368db2ea3e956ce1d56f4fe56bExec Transaction368279902022-04-24 3:24:02330 days 12 hrs ago0x822051e839261f2bc98ecfed12c58998d46be171 IN  0xc3f8125c3b365a77f5c2dfc917acba337093f7320 FTM0.015961158
0x11e5e2ae54c5b463beb81435f81510c24554d16737a2d6447a52ca649fe1bf7bTransfer368082472022-04-23 21:17:08330 days 18 hrs ago0x25738855583bdc0bb2bb81e9e79ef2b035e9c978 IN  0xc3f8125c3b365a77f5c2dfc917acba337093f7321 FTM0.003713961523
[ Download CSV Export 
Latest 1 internal transaction
Parent Txn Hash Block From To Value
0x55959d7b198cc549a998a0066e6e4731e4c46a73011450c2509b06836d0f0e74356526442022-04-09 18:52:58344 days 20 hrs ago 0xa6b71e26c5e0845f74c812102ca7114b6a896ab2  Contract Creation0 FTM
[ Download CSV Export 
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0x2FF202664cbEFFe1fc9344f7aC941e252339cB84

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 FtmScan.com on 2022-01-18
*/

// File: contracts/proxies/GnosisSafeProxy.sol

// 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"}]

608060405234801561001057600080fd5b506040516101e63803806101e68339818101604052602081101561003357600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806101c46022913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505060ab806101196000396000f3fe608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033496e76616c69642073696e676c65746f6e20616464726573732070726f7669646564000000000000000000000000d9db270c1b5e3bd161e8c8503c55ceabee709552

Deployed ByteCode Sourcemap

574:1528:0:-:0;;;1426:42;1422:1;1416:8;1412:57;1606:66;1602:1;1589:15;1586:87;1583:2;;;1703:10;1700:1;1693:21;1742:4;1739:1;1732:15;1583:2;1795:14;1792:1;1789;1776:34;1893:1;1890;1874:14;1871:1;1859:10;1852:5;1839:56;1930:16;1927:1;1924;1909:38;1976:1;1967:7;1964:14;1961:2;;;2008:16;2005:1;1998:27;1961:2;2064:16;2061:1;2054:27

Swarm Source

ipfs://d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b9552
Block Transaction Gas Used Reward
Age Block Fee Address BC Fee Address Voting Power Jailed Incoming
Validator ID :
0 FTM

Amount Staked
0

Amount Delegated
0

Staking Total
0

Staking Start Epoch
0

Staking Start Time
0

Proof of Importance
0

Origination Score
0

Validation Score
0

Active
0

Online
0

Downtime
0 s
Address Amount claimed Rewards Created On Epoch Created On
Block Uncle Number Difficulty Gas Used Reward
Loading
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.