FTM Price: $0.5099 (-5.77%)

Contract

0x55214EcCC18E0763B8F6cEE71C25be0ceD7a9FB6
 

Overview

FTM Balance

Fantom LogoFantom LogoFantom Logo0 FTM

FTM Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction793270202024-04-14 7:36:59308 days ago1713080219IN
0x55214EcC...ceD7a9FB6
0 FTM0.0066484567.93430497
Exec Transaction779540012024-03-22 10:19:49330 days ago1711102789IN
0x55214EcC...ceD7a9FB6
0 FTM0.01088596111.1005117
Exec Transaction765655792024-03-01 0:47:00352 days ago1709254020IN
0x55214EcC...ceD7a9FB6
0 FTM0.0095600997.27799524
Exec Transaction756892242024-02-14 20:11:29367 days ago1707941489IN
0x55214EcC...ceD7a9FB6
0 FTM0.0041304542.2
Exec Transaction751778562024-02-06 3:58:24376 days ago1707191904IN
0x55214EcC...ceD7a9FB6
0 FTM0.0012275111.91
Exec Transaction740968972024-01-12 1:22:14401 days ago1705022534IN
0x55214EcC...ceD7a9FB6
0 FTM0.002428124.80438518
Exec Transaction733338162023-12-28 1:04:18416 days ago1703725458IN
0x55214EcC...ceD7a9FB6
0 FTM0.0107103109.45190118
Exec Transaction718264362023-12-03 14:34:46440 days ago1701614086IN
0x55214EcC...ceD7a9FB6
0 FTM0.0037173237.83
Exec Transaction709859402023-11-22 3:12:09452 days ago1700622729IN
0x55214EcC...ceD7a9FB6
0 FTM0.0021715326.70253967
Exec Transaction703993092023-11-10 0:00:57464 days ago1699574457IN
0x55214EcC...ceD7a9FB6
0 FTM0.0029305429.93714902
Exec Transaction698355292023-10-27 3:08:19478 days ago1698376099IN
0x55214EcC...ceD7a9FB6
0 FTM0.0041074341.8
Exec Transaction676106022023-08-30 10:35:46535 days ago1693391746IN
0x55214EcC...ceD7a9FB6
0 FTM0.0050648562.47434822
Exec Transaction672402702023-08-21 3:36:18545 days ago1692588978IN
0x55214EcC...ceD7a9FB6
0 FTM0.0072461455
Exec Transaction671238862023-08-18 7:42:28548 days ago1692344548IN
0x55214EcC...ceD7a9FB6
0 FTM0.07524181629.37
Exec Transaction671171122023-08-18 2:37:36548 days ago1692326256IN
0x55214EcC...ceD7a9FB6
0 FTM0.0052836338.49
Exec Transaction670319632023-08-16 3:03:25550 days ago1692155005IN
0x55214EcC...ceD7a9FB6
0 FTM0.0041007730.8
Exec Transaction669728912023-08-14 9:56:33551 days ago1692006993IN
0x55214EcC...ceD7a9FB6
0 FTM0.02364773116.32
Exec Transaction669728722023-08-14 9:55:42551 days ago1692006942IN
0x55214EcC...ceD7a9FB6
0 FTM0.01705826123.59
Exec Transaction669591022023-08-13 23:57:37552 days ago1691971057IN
0x55214EcC...ceD7a9FB6
0 FTM0.0075084554.4
Exec Transaction657491272023-07-14 4:39:46583 days ago1689309586IN
0x55214EcC...ceD7a9FB6
0 FTM0.09690578810.49302691
Exec Transaction656295082023-07-12 8:09:55584 days ago1689149395IN
0x55214EcC...ceD7a9FB6
0 FTM0.411931671,230.76
Exec Transaction654948182023-07-10 7:20:25587 days ago1688973625IN
0x55214EcC...ceD7a9FB6
0 FTM0.05750435302.68
Exec Transaction647807482023-06-28 8:29:18598 days ago1687940958IN
0x55214EcC...ceD7a9FB6
0 FTM0.0191420467.37
Exec Transaction646856222023-06-26 8:11:00600 days ago1687767060IN
0x55214EcC...ceD7a9FB6
0 FTM0.22301521,200
Exec Transaction642545892023-06-17 14:08:18609 days ago1687010898IN
0x55214EcC...ceD7a9FB6
0 FTM0.10418585681.8
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
433013112022-07-22 10:05:49939 days ago1658484349  Contract Creation0 FTM
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x2FF20266...52339cB84
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 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"}]

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033

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
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
[ 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.