Contract 0xcA01A9d36F47561F03226B6b697B14B9274b1B10 9

Txn Hash Method
Block
From
To
Value [Txn Fee]
0xe276d9b68e8f03fb6a14b85aacec83b4836c361ad5c50f87b5ba0618e0eb5210Exec Transaction322154802023-07-05 16:06:0091 days 10 hrs ago0xdeb3c8f2e25f80bd12a652764f31476a827c7e1f IN  0xca01a9d36f47561f03226b6b697b14b9274b1b100 AVAX0.0037017585 26.5
0xd5fbbe07a4981d25b05345c2243c11bde8c9b66051afe238e574adb1acf21f89Exec Transaction306807952023-05-30 9:21:55127 days 16 hrs ago0xdeb3c8f2e25f80bd12a652764f31476a827c7e1f IN  0xca01a9d36f47561f03226b6b697b14b9274b1b100 AVAX0.0028206865 26.5
0xf5a2bac6b9b9dc17481233126db8c7fb91d73524743f4967e1671874052dc88bExec Transaction296377142023-05-05 18:56:27152 days 7 hrs ago0xdeb3c8f2e25f80bd12a652764f31476a827c7e1f IN  0xca01a9d36f47561f03226b6b697b14b9274b1b100 AVAX0.0028200505 26.5
0x0149e4155259479906bc439a7997c7a62ce525b37420ac32933167178321e9b3Exec Transaction286995562023-04-13 16:31:58174 days 9 hrs ago0x4f7b1825d3ecb6ecb8904780fcd1ebdd948c8db2 IN  0xca01a9d36f47561f03226b6b697b14b9274b1b100 AVAX0.003085857527.5
0xf55e35a7f047c41b94e767ae6097551120e6acb52096604db56348522764d063Exec Transaction282571492023-04-03 8:41:10184 days 17 hrs ago0x2b76c4931f7ab8a1b4b45e4440b5852ef15abf10 IN  0xca01a9d36f47561f03226b6b697b14b9274b1b100 AVAX0.0032482905 26.5
0x7f2a1b0576a38ce148e60789707613bda4185d985c63932a093c2111e41bfd6cExec Transaction221890872022-11-10 7:36:46328 days 18 hrs ago0xdeb3c8f2e25f80bd12a652764f31476a827c7e1f IN  0xca01a9d36f47561f03226b6b697b14b9274b1b100 AVAX0.0023678545 26.5
0x8d09eed5b0fd9ec018d4366972d859b1a7398d8f4fdca4dc5bed68f7af32d042Exec Transaction205273632022-10-01 22:31:03368 days 3 hrs ago0x2b76c4931f7ab8a1b4b45e4440b5852ef15abf10 IN  0xca01a9d36f47561f03226b6b697b14b9274b1b100 AVAX0.0031588 26.5
0x47c45cd49ab36c5f53904190bc738f1833d9bde9e91bf754fb07e2c08b65c3abExec Transaction205094222022-10-01 12:16:25368 days 14 hrs ago0x2b79738c27186e52dbef6c491852f065ee136c33 IN  0xca01a9d36f47561f03226b6b697b14b9274b1b100 AVAX0.003158482 26.5
0x8cb4f60d2e692e75c62e80d0ac179e2bbbc13e270edf6db81d268665a31e4530Exec Transaction199243752022-09-16 6:31:56383 days 19 hrs ago0x4f7b1825d3ecb6ecb8904780fcd1ebdd948c8db2 IN  0xca01a9d36f47561f03226b6b697b14b9274b1b100 AVAX0.002419532527.5
0xaf1122edb101dbf8b6d4a69e847d9cdf64a6e4e61ac10528714284b2c4b3d80dExec Transaction199243352022-09-16 6:30:07383 days 19 hrs ago0x4f7b1825d3ecb6ecb8904780fcd1ebdd948c8db2 IN  0xca01a9d36f47561f03226b6b697b14b9274b1b100 AVAX0.003582727.5
[ Download CSV Export 
Latest 1 internal transaction
Parent Txn Hash Block From To Value
0x8e74fef592f5202e6682c144fa1d04dbce9dc77777d4d0dcd3e19b90e74acdc5175017202022-07-18 20:34:05443 days 5 hrs ago 0xc22834581ebc8527d974f8a1c97e1bea4ef910bc  Contract Creation0 AVAX
[ Download CSV Export 
Index Block
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
This contract matches the deployed ByteCode of the Source Code for Contract 0x6f926ffbe338218b06d2fc26ec59b52fd5b125ce
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 snowtrace.io on 2021-12-17
*/

// 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 ABI

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

608060405234801561001057600080fd5b506040516101e63803806101e68339818101604052602081101561003357600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806101c46022913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505060ab806101196000396000f3fe608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033496e76616c69642073696e676c65746f6e20616464726573732070726f7669646564000000000000000000000000fb1bffc9d739b8d520daf37df666da4c687191ea

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 Gas Used Reward
Age Block Fee Address BC Fee Address Voting Power Jailed Incoming
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.