Overview
ETH Balance
75.573955601881558683 ETH
Eth Value
$275,518.98 (@ $3,645.69/ETH)Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 21 from a total of 21 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exec Transaction | 21241917 | 5 days ago | IN | 0 ETH | 0.0011346 | ||||
Exec Transaction | 21234256 | 6 days ago | IN | 0 ETH | 0.00132521 | ||||
Exec Transaction | 21234206 | 6 days ago | IN | 0 ETH | 0.0005358 | ||||
Transfer | 21217680 | 9 days ago | IN | 0.04678212 ETH | 0.00030002 | ||||
Transfer | 21174681 | 15 days ago | IN | 0.15167998 ETH | 0.00078642 | ||||
Transfer | 21174681 | 15 days ago | IN | 1 wei | 0.06324272 | ||||
Transfer | 20881247 | 56 days ago | IN | 0.03687368 ETH | 0.0001187 | ||||
Transfer | 20636051 | 90 days ago | IN | 0.1893259 ETH | 0.00006584 | ||||
Exec Transaction | 20378318 | 126 days ago | IN | 0 ETH | 0.00078229 | ||||
Transfer | 20372113 | 127 days ago | IN | 27.45 ETH | 0.00010654 | ||||
Exec Transaction | 19626748 | 231 days ago | IN | 0 ETH | 0.00216727 | ||||
Exec Transaction | 19626041 | 231 days ago | IN | 0 ETH | 0.00217329 | ||||
Transfer | 19539859 | 243 days ago | IN | 1 wei | 0.01984085 | ||||
Exec Transaction | 18742190 | 355 days ago | IN | 0 ETH | 0.00757717 | ||||
Exec Transaction | 18628689 | 371 days ago | IN | 0 ETH | 0.00628822 | ||||
Exec Transaction | 18628680 | 371 days ago | IN | 0 ETH | 0.00554014 | ||||
Exec Transaction | 18535380 | 384 days ago | IN | 0 ETH | 0.01849166 | ||||
Transfer | 18415127 | 401 days ago | IN | 10.50120537 ETH | 0.00100438 | ||||
Exec Transaction | 18371014 | 407 days ago | IN | 0 ETH | 0.00148493 | ||||
Exec Transaction | 18370967 | 407 days ago | IN | 0 ETH | 0.00285103 | ||||
Transfer | 17073381 | 589 days ago | IN | 38 ETH | 0.00114693 |
Latest 23 internal transactions
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
21241951 | 5 days ago | 39.978119 ETH | ||||
21241917 | 5 days ago | 119.99 ETH | ||||
21234274 | 6 days ago | 39.989279 ETH | ||||
21234256 | 6 days ago | 0.01 ETH | ||||
20380332 | 125 days ago | 7.25 ETH | ||||
20378318 | 126 days ago | 32.1 ETH | ||||
19626748 | 231 days ago | 44 ETH | ||||
19626041 | 231 days ago | 10.999 ETH | ||||
18742190 | 355 days ago | 1.56611161 ETH | ||||
18628689 | 371 days ago | 1.55904613 ETH | ||||
18628689 | 371 days ago | 0.89956366 ETH | ||||
18628689 | 371 days ago | 1.65948247 ETH | ||||
18628680 | 371 days ago | 1.06396333 ETH | ||||
18535380 | 384 days ago | 1.94252238 ETH | ||||
18535380 | 384 days ago | 1.99049312 ETH | ||||
18535380 | 384 days ago | 2.81498237 ETH | ||||
18535380 | 384 days ago | 3.25046166 ETH | ||||
18434658 | 398 days ago | 0.011 ETH | ||||
18371014 | 407 days ago | 0.5 ETH | ||||
18370967 | 407 days ago | 0.07005572 ETH | ||||
18370967 | 407 days ago | 12.75598375 ETH | ||||
17167973 | 576 days ago | 119.6 ETH | ||||
17047254 | 593 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xDaB5dc22...0ba42d2a6 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 Etherscan.io on 2021-07-09 */ // 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
[{"inputs":[{"internalType":"address","name":"_singleton","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]
Deployed Bytecode
0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033
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
Latest 25 blocks (From a total of 191 blocks with 2.78 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
21254610 | 3 days ago | 95 | 0.00 TH | 6,702,650 (22.34%) | 0.015601319162933235 ETH |
21253970 | 4 days ago | 102 | 0.00 TH | 16,321,703 (54.41%) | 0.007779743243734393 ETH |
21248491 | 4 days ago | 119 | 0.00 TH | 8,152,070 (27.17%) | 0.005760770740872886 ETH |
21237671 | 6 days ago | 99 | 0.00 TH | 6,591,760 (21.97%) | 0.007809779490770624 ETH |
21218008 | 9 days ago | 94 | 0.00 TH | 12,060,813 (40.20%) | 0.014881885987646586 ETH |
21185447 | 13 days ago | 124 | 0.00 TH | 7,193,860 (23.98%) | 0.013134479293841646 ETH |
21166951 | 16 days ago | 101 | 0.00 TH | 7,761,705 (25.87%) | 0.010940535548923202 ETH |
21127542 | 21 days ago | 81 | 0.00 TH | 5,380,324 (17.93%) | 0.010610432261074751 ETH |
21122167 | 22 days ago | 98 | 0.00 TH | 5,601,365 (18.67%) | 0.009634987308133289 ETH |
21072717 | 29 days ago | 115 | 0.00 TH | 9,708,562 (32.36%) | 0.01898488194995753 ETH |
21048643 | 32 days ago | 87 | 0.00 TH | 5,588,896 (18.63%) | 0.007432234201910562 ETH |
21044681 | 33 days ago | 122 | 0.00 TH | 9,006,124 (30.02%) | 0.015050779749095991 ETH |
21041370 | 33 days ago | 88 | 0.00 TH | 8,452,557 (28.18%) | 0.006313289305608556 ETH |
21034902 | 34 days ago | 82 | 0.00 TH | 9,926,540 (33.09%) | 0.011584191178738788 ETH |
21021955 | 36 days ago | 97 | 0.00 TH | 7,082,995 (23.61%) | 0.008280178255523158 ETH |
21003667 | 38 days ago | 103 | 0.00 TH | 5,148,409 (17.16%) | 0.004522390253831105 ETH |
20930980 | 49 days ago | 96 | 0.00 TH | 6,210,703 (20.70%) | 0.012033542006230774 ETH |
20929922 | 49 days ago | 83 | 0.00 TH | 4,818,190 (16.06%) | 0.008224060540387481 ETH |
20920604 | 50 days ago | 97 | 0.00 TH | 6,093,167 (20.31%) | 0.025751545286934759 ETH |
20912204 | 51 days ago | 113 | 0.00 TH | 9,795,938 (32.65%) | 0.013444913261351512 ETH |
20903363 | 52 days ago | 119 | 0.00 TH | 7,438,017 (24.79%) | 0.011081583317011023 ETH |
20876493 | 56 days ago | 111 | 0.00 TH | 6,345,389 (21.15%) | 0.005594535149033876 ETH |
20871747 | 57 days ago | 142 | 0.00 TH | 7,735,959 (25.79%) | 0.014619825237469575 ETH |
20861198 | 58 days ago | 65 | 0.00 TH | 5,139,536 (17.13%) | 0.005872142750365309 ETH |
20842344 | 61 days ago | 98 | 0.00 TH | 5,913,465 (19.71%) | 0.011490522935572865 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 1315 withdrawals (106.598776409 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
270096 | 21250093 | 4 days ago | 0.019492564 ETH |
270095 | 21250093 | 4 days ago | 0.01952974 ETH |
270094 | 21250093 | 4 days ago | 0.019550537 ETH |
270093 | 21250093 | 4 days ago | 0.06351338 ETH |
270092 | 21250093 | 4 days ago | 0.019518272 ETH |
270091 | 21250093 | 4 days ago | 0.019518574 ETH |
270090 | 21250093 | 4 days ago | 0.019523933 ETH |
270089 | 21250093 | 4 days ago | 0.019518575 ETH |
270088 | 21250093 | 4 days ago | 0.019495023 ETH |
270087 | 21250093 | 4 days ago | 0.019486598 ETH |
270086 | 21250093 | 4 days ago | 0.019532469 ETH |
270085 | 21250093 | 4 days ago | 0.019498054 ETH |
270084 | 21250093 | 4 days ago | 0.019501993 ETH |
270083 | 21250093 | 4 days ago | 0.019491496 ETH |
270082 | 21250093 | 4 days ago | 0.019464283 ETH |
270081 | 21250092 | 4 days ago | 0.019489226 ETH |
270080 | 21250092 | 4 days ago | 0.019503842 ETH |
270079 | 21250092 | 4 days ago | 0.019493198 ETH |
270078 | 21250092 | 4 days ago | 0.019507041 ETH |
270077 | 21250092 | 4 days ago | 0.019493758 ETH |
270076 | 21250092 | 4 days ago | 0.019516948 ETH |
270075 | 21250092 | 4 days ago | 0.0195163 ETH |
270074 | 21250092 | 4 days ago | 0.019491844 ETH |
270073 | 21250092 | 4 days ago | 0.019520336 ETH |
270072 | 21250092 | 4 days ago | 0.019504752 ETH |
Loading...
Loading
[ Download: CSV Export ]
[ 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.
${zeroWidthWarningMessage} Check the actual text at ENS.
`;
}
const contentHtml =
`Additional Info
Full Name:
Note:
- Name tag is displayed due to forward and reverse resolution. Find out more.
- A Domain Name is not necessarily held by a person popularly associated with the name.
Other names resolving to this address:
${listOtherENSNames}
${moreOtherENSNames}
`;
return result;
}
// ===== end ENS name tag
var adjustPosition = 0;
$(document).ready(function () {
switchAmountToValue(document.getElementById("headerAmountValue"), 'Value (USD)', 'Amount', true);
switchAmountToValue(document.getElementById("headerIntAmountValue"), 'Value (USD)', 'Amount', true);
onDocumentReady();
$("[rel='tooltip']").tooltip();
$("[data-bs-toggle-second='tooltip']").tooltip({ trigger: 'hover' });
$("[rel='tooltipEns']").each(function () {
$(this).tooltip({ title: $(this).attr("tooltip-title") });
});
//if (hash != '') {
// activaTab(hash);
//};
onAddressDocReady();
//// Note: this is causing "Copied" tooltip not showing when copy button is clicked in V3, and seems like not applicable to v3, comment out first in case there is issue
//$('[data-bs-toggle="tooltip"]').click(function () {
// $('[data-bs-toggle="tooltip"]').tooltip("hide");
//});
document.getElementById("copyaddressbutton").classList.remove("disabled");
if ($("#txtSearchContract").length) {
initialiseKeyupOnDocReady();
}
if (!!$('#ensName')[0]) {
initEnsNamePopOver();
}
handleToggle();
$("#btnLoginRequired").attr("href", "/login?ref=" + window.location.pathname.slice(1));
if (window.matchMedia("(max-width: 767px)").matches) {
// Mobile
adjustPosition = 90;
} else {
// Others
adjustPosition = 50;
}
});
function displayAudit() {
$('html, body').animate({
scrollTop: $("#auditReportId").offset().top - adjustPosition
});
}
function handleToggle() {
var className = document.getElementsByClassName('editor');
var classNameCount = className.length;
for (var j = 0; j < classNameCount; j++) {
var editorSearch = ace.edit(className[j].id);
if (getCookie('displaymode') === 'light' || themeMode === 'light') {
editorSearch.setTheme('ace/theme/dawn');
} else if (getCookie('displaymode') === 'dim' || themeMode === 'dim') {
editorSearch.setTheme('ace/theme/tomorrow_night_blue');
} else if (getCookie('displaymode') === 'dark' || themeMode === 'dark') {
editorSearch.setTheme('ace/theme/tomorrow_night');
}
if (editorSearch.session.getLength() < parseInt(MaxLines)) {
var x = className[j].id.replace("editor", "");
if (x.trim() !== "") {
$("#panel-sourcecode_" + x).hide();
}
}
}
if ($('#panel-sourcecode').length) {
var editorSetting = ace.edit("editor");
if (editorSetting.session.getLength() < parseInt(MaxLines)) {
$("#panel-sourcecode").hide();
}
}
}
// Bootstrap Dropdown in Table Responsive
$('.table-responsive').on('shown.bs.dropdown', function (e) {
var t = $(this),
m = $(e.target).find('.dropdown-menu'),
tb = t.offset().top + t.height(),
mb = m.offset().top + m.outerHeight(true),
d = 20; // Space for shadow + scrollbar.
if (t[0].scrollWidth > t.innerWidth()) {
if (mb + d > tb) {
t.css('padding-bottom', ((mb + d) - tb));
}
}
else {
t.css('overflow', 'visible');
}
}).on('hidden.bs.dropdown', function () {
$(this).css({ 'padding-bottom': '', 'overflow': '' });
});
var btn_ERC20_sort = {
count: 0,
reminder_count: 2,
list: [],
default_list: [],
ERC20_sort_start: function (count) {
if (document.getElementsByClassName('list-custom-divider-ERC20')[0]) {
var self = this
if (count != undefined) {
self.count = count
}
var before_el = document.getElementsByClassName('list-custom-divider-ERC20')[0]
var parent_el = before_el.parentNode
var element_selector = parent_el.querySelectorAll(".list-custom-ERC20");
if (self.list.length == 0) {
element_selector.forEach(function (e) {
self.list.push(e);
self.default_list.push(e);
});
}
$(".list-custom-ERC20").remove()
var type = self.count % self.reminder_count
self.sortList(type, parent_el, before_el);
self.count++
}
},
sortList: function (type, parent_el, before_el) {
var self = this
var sorted_list = []
var icon_el = $(before_el).find('button').find('i')
switch (type) {
case 1:
icon_el.attr("class", "fad fa-sort-up")
sorted_list = self.sortUsdAsc()
break;
default:
icon_el.attr("class", "fad fa-sort-down")
sorted_list = self.sortUsdDesc()
}
for (var i = sorted_list.length - 1; i >= 0; i--) {
before_el.insertAdjacentElement('afterend', sorted_list[i])
}
},
sortUsdAsc: function () {
var self = this
var sort_list = self.list
sort_list.sort(function (a, b) {
var target_a_value = self.formatCurrencyToNumber(a.querySelector('.list-usd-value').textContent.trim() || -1);
var target_b_value = self.formatCurrencyToNumber(b.querySelector('.list-usd-value').textContent.trim() || -1);
if (target_a_value == -1 || target_b_value == -1) {
return 1;
}
if (target_a_value < target_b_value) {
return -1;
}
if (target_a_value > target_b_value) {
return 1;
}
return 0
});
return sort_list
},
sortUsdDesc: function () {
var self = this
var sort_list = self.list
sort_list.sort(function (a, b) {
var target_a_value = self.formatCurrencyToNumber(a.querySelector('.list-usd-value').textContent.trim() || -1);
var target_b_value = self.formatCurrencyToNumber(b.querySelector('.list-usd-value').textContent.trim() || -1);
if (target_a_value < target_b_value) {
return 1;
}
if (target_a_value > target_b_value) {
return -1;
}
return 0
});
return sort_list
},
formatCurrencyToNumber: function (strCurrency) {
if (typeof strCurrency == "number")
return strCurrency
else
return Number(strCurrency.replace(/[^0-9.-]+/g, ""));
},
}
$("#btn_ERC20_sort").on("click", function (event) {
event.preventDefault();
setTimeout(function () {
btn_ERC20_sort.ERC20_sort_start()
}, 10)
})
function hrefTokenHolding() {
var location = "/tokenholdings?a=0xb4da52336092db22fe8e036866d59c6488604f89"
var queryString = $("input.form-control.form-control-xs.search.mb-3")[0].value
if (queryString) {
location += "&q=" + queryString
}
window.location.href = location
}
function toggleLoginModal() {
$('#loginRequiredModal').modal('toggle');
}