FTM Price: $0.5095 (-5.35%)
Gas: 20 GWei

Contract

0x914078e16C70bd056e0B49e046189DFaa76Eb459
 

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction1045758882025-02-12 11:09:403 days ago1739358580IN
WigoSwap: Treasury
0 FTM0.00009461.33
Exec Transaction1030073022025-01-19 8:29:0028 days ago1737275340IN
WigoSwap: Treasury
0 FTM0.001240771.13
Exec Transaction962473902024-11-01 17:27:57106 days ago1730482077IN
WigoSwap: Treasury
0 FTM0.0118969210.59254587
Exec Transaction953446492024-10-22 9:15:23117 days ago1729588523IN
WigoSwap: Treasury
0 FTM0.0011982415.78501071
Exec Transaction936295902024-10-05 7:39:43134 days ago1728113983IN
WigoSwap: Treasury
0 FTM0.0018837320.24189934
Exec Transaction929273202024-09-28 13:37:11140 days ago1727530631IN
WigoSwap: Treasury
0 FTM0.0014417215.31455344
Exec Transaction929270382024-09-28 13:33:27140 days ago1727530407IN
WigoSwap: Treasury
0 FTM0.0025641915.15117343
Exec Transaction929268372024-09-28 13:30:52140 days ago1727530252IN
WigoSwap: Treasury
0 FTM0.001334715.17488536
Exec Transaction910867162024-09-08 17:08:00160 days ago1725815280IN
WigoSwap: Treasury
0 FTM0.012144068.45617363
Exec Transaction893498022024-08-19 8:19:09181 days ago1724055549IN
WigoSwap: Treasury
0 FTM0.000326523.50223872
Exec Transaction890345242024-08-16 10:56:37183 days ago1723805797IN
WigoSwap: Treasury
0 FTM0.0023274814.34432994
Exec Transaction884148972024-08-10 17:22:18189 days ago1723310538IN
WigoSwap: Treasury
0 FTM0.00800457105.44820654
Exec Transaction883759652024-08-10 8:21:06190 days ago1723278066IN
WigoSwap: Treasury
0 FTM0.0169249512.36893075
Exec Transaction879845172024-08-06 13:11:29193 days ago1722949889IN
WigoSwap: Treasury
0 FTM0.0018308719.44819221
Exec Transaction871270022024-07-29 15:38:11201 days ago1722267491IN
WigoSwap: Treasury
0 FTM0.033947824.8094105
Exec Transaction869161192024-07-27 14:33:29203 days ago1722090809IN
WigoSwap: Treasury
0 FTM0.27439523200.53088549
Exec Transaction869051372024-07-27 11:26:13203 days ago1722079573IN
WigoSwap: Treasury
0 FTM0.0221053115.76985675
Exec Transaction868327512024-07-26 16:03:45204 days ago1722009825IN
WigoSwap: Treasury
0 FTM0.0377321526.91822064
Exec Transaction868052112024-07-26 7:48:03205 days ago1721980083IN
WigoSwap: Treasury
0 FTM0.0019888717.94232983
Exec Transaction868049352024-07-26 7:43:32205 days ago1721979812IN
WigoSwap: Treasury
0 FTM0.024980317.8208597
Exec Transaction867529892024-07-25 16:19:32205 days ago1721924372IN
WigoSwap: Treasury
0 FTM0.0338299224.13394652
Exec Transaction867449322024-07-25 14:07:15205 days ago1721916435IN
WigoSwap: Treasury
0 FTM0.0033477425.14380794
Exec Transaction867444252024-07-25 13:59:27205 days ago1721915967IN
WigoSwap: Treasury
0 FTM0.0022888424.31608161
Exec Transaction867443452024-07-25 13:58:24205 days ago1721915904IN
WigoSwap: Treasury
0 FTM0.00226224.31608161
Exec Transaction867438582024-07-25 13:50:49205 days ago1721915449IN
WigoSwap: Treasury
0 FTM0.0031845623.95058946
View all transactions

Latest 6 internal transactions

Parent Transaction Hash Block From To
929273202024-09-28 13:37:11140 days ago1727530631
WigoSwap: Treasury
20,400 FTM
929270382024-09-28 13:33:27140 days ago1727530407
WigoSwap: Treasury
20,378.46893629 FTM
890345242024-08-16 10:56:37183 days ago1723805797
WigoSwap: Treasury
0.1 FTM
879845172024-08-06 13:11:29193 days ago1722949889
WigoSwap: Treasury
540 FTM
859927812024-07-18 10:41:49212 days ago1721299309
WigoSwap: Treasury
3,610.01222489 FTM
509791362022-11-16 15:36:25822 days ago1668612985  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.