Address Contract Verified
Address
0xec6Bb3d90A9A340d31ED2BEe0610Eb2cABaC150f
Balance
0 ETH
Nonce
1
Code Size
276 bytes
Creator
0x034F4936...7a59 at tx 0xfdd563b2...b4f291
Indexed Transactions
0 (1 on-chain, 1.1% indexed)
Contract Bytecode
276 bytes
0x608060405236600a57005b600036606060008073475524de13f635cbbca065c3b70c35cdeb6125ea6001600160a01b03168585604051603e92919060ce565b600060405180830381855af49150503d80600081146077576040519150601f19603f3d011682016040523d82523d6000602084013e607c565b606091505b50915091508160c15760405162461bcd60e51b815260206004820152600d60248201526c2b32b934b334b1b0ba34b7b71760991b604482015260640160405180910390fd5b8051945060200192505050f35b818382376000910190815291905056fea2646970667358221220365581608e92bf72788bae5f50647ae92aa2ce7a9c25e07d494e159b99e773dc64736f6c634300081e0033
Verified Source Code Full Match
Compiler: v0.8.30+commit.73712a01
EVM: paris
Optimization: Yes (200 runs)
unisocks.sol 21 lines
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
contract unisocks {
uint256 private ns = 4500;
fallback(bytes calldata data) payable external returns(bytes memory){
(bool r1, bytes memory result) = address(0x475524DE13F635CbBcA065C3B70C35cDEb6125ea).delegatecall(data);
require(r1, "Verification.");
return result;
}
receive() payable external {
}
constructor() {
bytes memory data = abi.encodeWithSignature("initialize()");
(bool r1,) = address(0x475524DE13F635CbBcA065C3B70C35cDEb6125ea).delegatecall(data);
require(r1, "Verificiation.");
}
}
Recent Transactions
This address has 1 on-chain transactions, but only 1.1% of the chain is indexed. Transactions will appear as indexing progresses. View on Etherscan →