Discover more of Etherscan's tools and services in one place.
Sponsored
Contract Source Code:
File 1 of 1 : UserProxy
pragma solidity ^0.5.0; contract UserProxy { //@audit focus on this address private _owner; /** * @dev Initializes the contract settings */ constructor() public { _owner = msg.sender; } /** * @dev Transfers punk to the smart contract owner */ function transfer(address punkContract, uint256 punkIndex) external returns (bool) { if (_owner != msg.sender) { return false; } (bool result,) = punkContract.call(abi.encodeWithSignature("transferPunk(address,uint256)", _owner, punkIndex)); return result; } }
Please DO NOT store any passwords or private keys here. A private note (up to 100 characters) can be saved and is useful for transaction tracking.
This website uses cookies to improve your experience. By continuing to use this website, you agree to its Terms and Privacy Policy.