More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 41 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exec Transaction | 68914869 | 42 days ago | IN | 0 POL | 0.00291393 | ||||
Exec Transaction | 64880761 | 144 days ago | IN | 0 POL | 0.00686635 | ||||
Exec Transaction | 64880746 | 144 days ago | IN | 0 POL | 0.00759371 | ||||
Exec Transaction | 64880726 | 144 days ago | IN | 0 POL | 0.00665264 | ||||
Exec Transaction | 64880708 | 144 days ago | IN | 0 POL | 0.00803238 | ||||
Exec Transaction | 64880677 | 144 days ago | IN | 0 POL | 0.00648369 | ||||
Exec Transaction | 64880661 | 144 days ago | IN | 0 POL | 0.00717762 | ||||
Transfer | 62970957 | 192 days ago | IN | 150 POL | 0.00136645 | ||||
Transfer | 62901929 | 193 days ago | IN | 189 POL | 0.0024508 | ||||
Transfer | 62850635 | 195 days ago | IN | 143 POL | 0.00136645 | ||||
Transfer | 62819876 | 195 days ago | IN | 238 POL | 0.00136645 | ||||
Transfer | 62769832 | 197 days ago | IN | 175 POL | 0.00136645 | ||||
Transfer | 62738652 | 197 days ago | IN | 670 POL | 0.00136645 | ||||
Transfer | 62645678 | 200 days ago | IN | 408 POL | 0.00136645 | ||||
Transfer | 62588777 | 201 days ago | IN | 510 POL | 0.00136645 | ||||
Exec Transaction | 62570565 | 202 days ago | IN | 0 POL | 0.0027657 | ||||
Transfer | 62490638 | 203 days ago | IN | 147.17226437 POL | 0.00136645 | ||||
Transfer | 62464449 | 204 days ago | IN | 556 POL | 0.00136645 | ||||
Exec Transaction | 62458381 | 204 days ago | IN | 0 POL | 0.00302151 | ||||
Exec Transaction | 62458363 | 204 days ago | IN | 0 POL | 0.00260433 | ||||
Exec Transaction | 62458323 | 204 days ago | IN | 0 POL | 0.0023622 | ||||
Exec Transaction | 62458310 | 204 days ago | IN | 0 POL | 0.0022325 | ||||
Exec Transaction | 62458214 | 204 days ago | IN | 0 POL | 0.0024103 | ||||
Exec Transaction | 62458195 | 204 days ago | IN | 0 POL | 0.00250656 | ||||
Transfer | 62409729 | 205 days ago | IN | 350 POL | 0.00136645 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
70644458 | 1 min ago | 0.01965005 POL | ||||
70644441 | 2 mins ago | 0.14894848 POL | ||||
70644438 | 2 mins ago | 0.05587486 POL | ||||
70644421 | 3 mins ago | 0.00436937 POL | ||||
70644397 | 3 mins ago | 0.09476019 POL | ||||
70644390 | 4 mins ago | 0.15 POL | ||||
70644344 | 5 mins ago | 0.14886827 POL | ||||
70644343 | 5 mins ago | 0.12476085 POL | ||||
70644305 | 7 mins ago | 0.94912082 POL | ||||
70644301 | 7 mins ago | 0.225 POL | ||||
70644129 | 13 mins ago | 0.165 POL | ||||
70644088 | 14 mins ago | 0.00645386 POL | ||||
70644047 | 16 mins ago | 0.00678393 POL | ||||
70644006 | 17 mins ago | 0.00353492 POL | ||||
70643945 | 19 mins ago | 0.204 POL | ||||
70643926 | 20 mins ago | 0.0070639 POL | ||||
70643836 | 23 mins ago | 0.28959498 POL | ||||
70643724 | 27 mins ago | 0.14459974 POL | ||||
70643717 | 27 mins ago | 0.00057894 POL | ||||
70643690 | 28 mins ago | 0.00075321 POL | ||||
70643669 | 29 mins ago | 0.01872744 POL | ||||
70643608 | 31 mins ago | 0.13479961 POL | ||||
70643540 | 34 mins ago | 0.01068823 POL | ||||
70643534 | 34 mins ago | 0.03815237 POL | ||||
70643494 | 35 mins ago | 0.05152223 POL |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xb412684F...aB3ae124D 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
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-07-05 */ /** *Submitted for verification at polygonscan.com on 2021-06-16 */ // 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()) } } } /// @title Proxy Factory - Allows to create new proxy contact and execute a message call to the new proxy within one transaction. /// @author Stefan George - <[email protected]> contract GnosisSafeProxyFactory { event ProxyCreation(GnosisSafeProxy proxy, address singleton); /// @dev Allows to create new proxy contact and execute a message call to the new proxy within one transaction. /// @param singleton Address of singleton contract. /// @param data Payload for message call sent to new proxy contract. function createProxy(address singleton, bytes memory data) public returns (GnosisSafeProxy proxy) { proxy = new GnosisSafeProxy(singleton); if (data.length > 0) // solhint-disable-next-line no-inline-assembly assembly { if eq(call(gas(), proxy, 0, add(data, 0x20), mload(data), 0, 0), 0) { revert(0, 0) } } emit ProxyCreation(proxy, singleton); } /// @dev Allows to retrieve the runtime code of a deployed Proxy. This can be used to check that the expected Proxy was deployed. function proxyRuntimeCode() public pure returns (bytes memory) { return type(GnosisSafeProxy).runtimeCode; } /// @dev Allows to retrieve the creation code used for the Proxy deployment. With this it is easily possible to calculate predicted address. function proxyCreationCode() public pure returns (bytes memory) { return type(GnosisSafeProxy).creationCode; } /// @dev Allows to create new proxy contact using CREATE2 but it doesn't run the initializer. /// This method is only meant as an utility to be called from other methods /// @param _singleton Address of singleton contract. /// @param initializer Payload for message call sent to new proxy contract. /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract. function deployProxyWithNonce( address _singleton, bytes memory initializer, uint256 saltNonce ) internal returns (GnosisSafeProxy proxy) { // If the initializer changes the proxy address should change too. Hashing the initializer data is cheaper than just concatinating it bytes32 salt = keccak256(abi.encodePacked(keccak256(initializer), saltNonce)); bytes memory deploymentData = abi.encodePacked(type(GnosisSafeProxy).creationCode, uint256(uint160(_singleton))); // solhint-disable-next-line no-inline-assembly assembly { proxy := create2(0x0, add(0x20, deploymentData), mload(deploymentData), salt) } require(address(proxy) != address(0), "Create2 call failed"); } /// @dev Allows to create new proxy contact and execute a message call to the new proxy within one transaction. /// @param _singleton Address of singleton contract. /// @param initializer Payload for message call sent to new proxy contract. /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract. function createProxyWithNonce( address _singleton, bytes memory initializer, uint256 saltNonce ) public returns (GnosisSafeProxy proxy) { proxy = deployProxyWithNonce(_singleton, initializer, saltNonce); if (initializer.length > 0) // solhint-disable-next-line no-inline-assembly assembly { if eq(call(gas(), proxy, 0, add(initializer, 0x20), mload(initializer), 0, 0), 0) { revert(0, 0) } } emit ProxyCreation(proxy, _singleton); } /// @dev Allows to create new proxy contact, execute a message call to the new proxy and call a specified callback within one transaction /// @param _singleton Address of singleton contract. /// @param initializer Payload for message call sent to new proxy contract. /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract. /// @param callback Callback that will be invoced after the new proxy contract has been successfully deployed and initialized. function createProxyWithCallback( address _singleton, bytes memory initializer, uint256 saltNonce, IProxyCreationCallback callback ) public returns (GnosisSafeProxy proxy) { uint256 saltNonceWithCallback = uint256(keccak256(abi.encodePacked(saltNonce, callback))); proxy = createProxyWithNonce(_singleton, initializer, saltNonceWithCallback); if (address(callback) != address(0)) callback.proxyCreated(proxy, _singleton, initializer, saltNonce); } /// @dev Allows to get the address for a new proxy contact created via `createProxyWithNonce` /// This method is only meant for address calculation purpose when you use an initializer that would revert, /// therefore the response is returned with a revert. When calling this method set `from` to the address of the proxy factory. /// @param _singleton Address of singleton contract. /// @param initializer Payload for message call sent to new proxy contract. /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract. function calculateCreateProxyWithNonceAddress( address _singleton, bytes calldata initializer, uint256 saltNonce ) external returns (GnosisSafeProxy proxy) { proxy = deployProxyWithNonce(_singleton, initializer, saltNonce); revert(string(abi.encodePacked(proxy))); } } interface IProxyCreationCallback { function proxyCreated( GnosisSafeProxy proxy, address _singleton, bytes calldata initializer, uint256 saltNonce ) external; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_singleton","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]
Deployed Bytecode
0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033
Deployed Bytecode Sourcemap
598:1528:0:-:0;;;1450:42;1446:1;1440:8;1436:57;1630:66;1626:1;1613:15;1610:87;1607:2;;;1727:10;1724:1;1717:21;1766:4;1763:1;1756:15;1607:2;1819:14;1816:1;1813;1800:34;1917:1;1914;1898:14;1895:1;1883:10;1876:5;1863:56;1954:16;1951:1;1948;1933:38;2000:1;1991:7;1988:14;1985:2;;;2032:16;2029:1;2022:27;1985:2;2088:16;2085:1;2078:27
Swarm Source
ipfs://d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b9552
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BSC | 42.97% | $617.95 | 275.7156 | $170,378.39 | |
BSC | 27.04% | $1 | 107,199.7146 | $107,199.71 | |
BSC | 5.29% | $0.999859 | 20,967.281 | $20,964.32 | |
BSC | 0.60% | $1,798.05 | 1.3136 | $2,361.95 | |
BSC | 0.52% | $93,452.32 | 0.022 | $2,055.77 | |
BSC | 0.09% | $617.4 | 0.5885 | $363.35 | |
BSC | 0.03% | $1 | 113.7596 | $113.81 | |
BSC | <0.01% | $2.06 | 1.9754 | $4.07 | |
BSC | <0.01% | $3.12 | 1.2366 | $3.86 | |
BSC | <0.01% | $2.22 | 1.0771 | $2.4 | |
BSC | <0.01% | $0.000014 | 146,429.1461 | $2.02 | |
BSC | <0.01% | $0.004522 | 379.0865 | $1.71 | |
BSC | <0.01% | $0.182155 | 8.0157 | $1.46 | |
BSC | <0.01% | $0.128635 | 6.2437 | $0.8031 | |
BSC | <0.01% | $0.000009 | 73,442.8876 | $0.6675 | |
BSC | <0.01% | $151.35 | 0.00399901 | $0.6052 | |
BSC | <0.01% | $0.003516 | 151.6445 | $0.5331 | |
BSC | <0.01% | $0.000068 | 7,573.722 | $0.5139 | |
BSC | <0.01% | $0.050921 | 9.1936 | $0.4681 | |
BSC | <0.01% | $0.025066 | 17.7688 | $0.4453 | |
BSC | <0.01% | $0.092441 | 4.7449 | $0.4386 | |
BSC | <0.01% | $0.568327 | 0.7022 | $0.399 | |
BSC | <0.01% | <$0.000001 | 8,205,948.6917 | $0.3974 | |
BSC | <0.01% | $0.000094 | 4,181.9628 | $0.3911 | |
BSC | <0.01% | $0.000002 | 158,944 | $0.3766 | |
BSC | <0.01% | $0.999881 | 0.344 | $0.3439 | |
BSC | <0.01% | $0.009774 | 32.6944 | $0.3195 | |
BSC | <0.01% | $0.030901 | 9.409 | $0.2907 | |
BSC | <0.01% | $0.358741 | 0.6201 | $0.2224 | |
BSC | <0.01% | $4.07 | 0.0546 | $0.2222 | |
BSC | <0.01% | $0.222677 | 0.9753 | $0.2171 | |
BSC | <0.01% | <$0.000001 | 177,513,015.6287 | $0.1925 | |
BSC | <0.01% | $2.47 | 0.0736 | $0.1815 | |
BSC | <0.01% | $0.122397 | 1.2606 | $0.1542 | |
BSC | <0.01% | $0.166064 | 0.9246 | $0.1535 | |
BSC | <0.01% | $2.74 | 0.0544 | $0.1488 | |
BSC | <0.01% | $0.564384 | 0.2634 | $0.1486 | |
BSC | <0.01% | $0.000016 | 8,641.1806 | $0.1365 | |
BSC | <0.01% | $0.000148 | 896.2456 | $0.1324 | |
BSC | <0.01% | $0.693827 | 0.1891 | $0.1311 | |
BSC | <0.01% | $0.207311 | 0.6016 | $0.1247 | |
BSC | <0.01% | $84.24 | 0.00126434 | $0.1065 | |
BSC | <0.01% | <$0.000001 | 105,915,800.7708 | $0.1059 | |
POL | 17.03% | $1 | 67,535.7873 | $67,535.79 | |
POL | 2.73% | $0.22048 | 49,102.7394 | $10,826.17 | |
POL | 0.12% | $0.999809 | 467.5387 | $467.45 | |
POL | 0.04% | $93,475 | 0.00151576 | $141.69 | |
POL | 0.03% | $1 | 124.7202 | $124.72 | |
POL | 0.03% | $1,799.9 | 0.0669 | $120.49 | |
POL | 0.02% | $0.221232 | 351.9693 | $77.87 | |
POL | <0.01% | $0.023625 | 914.7626 | $21.61 | |
POL | <0.01% | $0.273018 | 37.6081 | $10.27 | |
POL | <0.01% | $0.059908 | 64.6084 | $3.87 | |
POL | <0.01% | $0.007052 | 387.2 | $2.73 | |
POL | <0.01% | $0.760168 | 3.1999 | $2.43 | |
POL | <0.01% | $0.004857 | 475.062 | $2.31 | |
POL | <0.01% | $0.00076 | 2,204.9357 | $1.67 | |
POL | <0.01% | $2.72 | 0.5775 | $1.57 | |
POL | <0.01% | $0.004069 | 312.0449 | $1.27 | |
POL | <0.01% | $4.57 | 0.2491 | $1.14 | |
POL | <0.01% | $0.226173 | 3.9576 | $0.895 | |
POL | <0.01% | $14.55 | 0.0598 | $0.8698 | |
POL | <0.01% | $0.045008 | 15.2491 | $0.6863 | |
POL | <0.01% | $0.297362 | 2.1178 | $0.6297 | |
POL | <0.01% | $163.61 | 0.00380221 | $0.622 | |
POL | <0.01% | $0.064931 | 7.9865 | $0.5185 | |
POL | <0.01% | $12.79 | 0.0361 | $0.4616 | |
POL | <0.01% | $0.000002 | 182,321.7082 | $0.4239 | |
POL | <0.01% | $0.072303 | 4.6198 | $0.334 | |
POL | <0.01% | $0.028426 | 11.1001 | $0.3155 | |
POL | <0.01% | $0.000014 | 22,393.3378 | $0.3088 | |
POL | <0.01% | $0.001043 | 257.0491 | $0.268 | |
POL | <0.01% | $0.958333 | 0.2698 | $0.2585 | |
POL | <0.01% | $0.003444 | 74.9669 | $0.2581 | |
POL | <0.01% | $4.39 | 0.0471 | $0.2069 | |
POL | <0.01% | $0.091366 | 1.8723 | $0.171 | |
POL | <0.01% | <$0.000001 | 27,584,477.2526 | $0.171 | |
POL | <0.01% | $5.96 | 0.0259 | $0.1544 | |
POL | <0.01% | $0.507339 | 0.2636 | $0.1337 | |
POL | <0.01% | $0.023906 | 5.0338 | $0.1203 | |
POL | <0.01% | $286.13 | 0.000352 | $0.1007 | |
POL | <0.01% | $0.731462 | 0.137 | $0.1001 | |
ARB | 2.08% | $1 | 8,249.6378 | $8,249.64 | |
ARB | 1.03% | $1,796.41 | 2.2724 | $4,082.08 | |
ARB | 0.17% | $0.999887 | 693.9166 | $693.84 | |
ARB | 0.05% | $0.999887 | 180.5368 | $180.52 | |
ARB | 0.04% | $1,807.2 | 0.0967 | $174.71 | |
ARB | 0.03% | $0.329476 | 319.1397 | $105.15 | |
ARB | 0.02% | $1 | 97.6977 | $97.7 | |
ARB | 0.01% | $0.08097 | 503.4953 | $40.77 | |
ARB | <0.01% | $93,531 | 0.00033324 | $31.17 | |
ARB | <0.01% | $3.55 | 1.1151 | $3.96 | |
ARB | <0.01% | $3.63 | 0.9076 | $3.29 | |
ARB | <0.01% | $0.000009 | 302,938.9551 | $2.75 | |
ARB | <0.01% | $1,888.85 | 0.00089189 | $1.68 | |
ARB | <0.01% | $0.111564 | 10.3675 | $1.16 | |
ARB | <0.01% | $0.012581 | 84.6111 | $1.06 | |
ARB | <0.01% | $0.452805 | 2.1395 | $0.9687 | |
ARB | <0.01% | $0.214784 | 4.0416 | $0.868 | |
ARB | <0.01% | $0.02946 | 29.139 | $0.8584 | |
ARB | <0.01% | $0.023016 | 20.5752 | $0.4735 | |
ARB | <0.01% | $0.124977 | 3.7312 | $0.4663 | |
ARB | <0.01% | $0.091273 | 4.3467 | $0.3967 | |
ARB | <0.01% | $1 | 0.3867 | $0.3867 | |
ARB | <0.01% | $0.082992 | 4.0096 | $0.3327 | |
ARB | <0.01% | $0.008303 | 38.6833 | $0.3211 | |
ARB | <0.01% | $0.565458 | 0.5218 | $0.295 | |
ARB | <0.01% | $0.568579 | 0.368 | $0.2092 | |
ARB | <0.01% | $0.000011 | 15,732.2242 | $0.1785 | |
ARB | <0.01% | $1,801.94 | 0.0000736 | $0.1326 | |
ARB | <0.01% | $0.060444 | 2.176 | $0.1315 | |
ARB | <0.01% | $0.009564 | 13.1282 | $0.1255 |
Loading...
Loading
Loading...
Loading
[ 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.