ETH Price: $2,274.79 (+1.87%)

Contract

0x458ba1CE96987Fe7f21170F4F91a09E8840fB431
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Receiver187812292023-12-14 1:51:59268 days ago1702518719IN
0x458ba1CE...8840fB431
0 ETH0.0013999647.85873823
Trade187795052023-12-13 20:04:23269 days ago1702497863IN
0x458ba1CE...8840fB431
0 ETH0.0039455361.11899796
Trade187794362023-12-13 19:50:23269 days ago1702497023IN
0x458ba1CE...8840fB431
0 ETH0.0042610452.18348847
Trade187794362023-12-13 19:50:23269 days ago1702497023IN
0x458ba1CE...8840fB431
0 ETH0.0035958552.18348847
Set Receiver187244352023-12-06 2:53:35276 days ago1701831215IN
0x458ba1CE...8840fB431
0 ETH0.0014805750.63517357
Transfer Ownersh...187244122023-12-06 2:48:59276 days ago1701830939IN
0x458ba1CE...8840fB431
0 ETH0.0015104651.99348457
Trade187216072023-12-05 17:23:11277 days ago1701796991IN
0x458ba1CE...8840fB431
0 ETH0.0086511385.5285971
Trade187134842023-12-04 14:05:59278 days ago1701698759IN
0x458ba1CE...8840fB431
0 ETH0.0043041152.56611691
Trade187133242023-12-04 13:33:23278 days ago1701696803IN
0x458ba1CE...8840fB431
0 ETH0.0043912345.6099722
Set Receiver186799332023-11-29 21:24:59283 days ago1701293099IN
0x458ba1CE...8840fB431
0 ETH0.0011835840.46169042
Trade186796452023-11-29 20:26:59283 days ago1701289619IN
0x458ba1CE...8840fB431
0 ETH0.0047938236.35350025
Trade186795142023-11-29 20:00:47283 days ago1701288047IN
0x458ba1CE...8840fB431
0 ETH0.0125753.45368646
Trade186795132023-11-29 20:00:35283 days ago1701288035IN
0x458ba1CE...8840fB431
0 ETH0.014220850.91696497
Trade186795132023-11-29 20:00:35283 days ago1701288035IN
0x458ba1CE...8840fB431
0 ETH0.0140479950.91696497
Trade186793962023-11-29 19:36:47283 days ago1701286607IN
0x458ba1CE...8840fB431
0 ETH0.0157498256.39155862
Trade186793922023-11-29 19:35:59283 days ago1701286559IN
0x458ba1CE...8840fB431
0 ETH0.016105857.78905602
Trade186793782023-11-29 19:32:59283 days ago1701286379IN
0x458ba1CE...8840fB431
0 ETH0.0086835756.25788293
Trade186499362023-11-25 16:35:35287 days ago1700930135IN
0x458ba1CE...8840fB431
0 ETH0.0038624629.47256471
Trade186193672023-11-21 9:52:59291 days ago1700560379IN
0x458ba1CE...8840fB431
0 ETH0.002441127.49266546
0x60806040186193102023-11-21 9:41:35291 days ago1700559695IN
 Create: Exchange
0 ETH0.015393723.88194411

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Exchange

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, OSL-3.0 license
/**
 *Submitted for verification at Etherscan.io on 2023-11-21
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.9/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.9/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.9/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.9/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/Exchange.sol


pragma solidity ^0.8.20;



contract Exchange is Ownable {
    address public receiverAddress;
   
   constructor (address _receiverAddress) {
    receiverAddress = _receiverAddress;
   }

    function trade (uint[] memory _tokenIds, address _fromAddress, address _collectionAddress) external onlyOwner {
        uint lengthOf = _tokenIds.length; 
        require(lengthOf != 0 && lengthOf <= 5, "Token Ids should be 0 > ids > 5");
        for (uint8 i; i < lengthOf; i++){
            IERC721(_collectionAddress).transferFrom(_fromAddress, receiverAddress, _tokenIds[i]);
        }
    }

    function setReceiver (address _newReceiverAddress) external onlyOwner {
            receiverAddress = _newReceiverAddress;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_receiverAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"receiverAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newReceiverAddress","type":"address"}],"name":"setReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"address","name":"_fromAddress","type":"address"},{"internalType":"address","name":"_collectionAddress","type":"address"}],"name":"trade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561000f575f80fd5b50604051610bb0380380610bb0833981810160405281019061003191906101b9565b61004d61004261009360201b60201c565b61009a60201b60201c565b8060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506101e4565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6101888261015f565b9050919050565b6101988161017e565b81146101a2575f80fd5b50565b5f815190506101b38161018f565b92915050565b5f602082840312156101ce576101cd61015b565b5b5f6101db848285016101a5565b91505092915050565b6109bf806101f15f395ff3fe608060405234801561000f575f80fd5b5060043610610060575f3560e01c806316fed3e214610064578063366f87c714610082578063715018a61461009e578063718da7ee146100a85780638da5cb5b146100c4578063f2fde38b146100e2575b5f80fd5b61006c6100fe565b60405161007991906104db565b60405180910390f35b61009c600480360381019061009791906106b2565b610123565b005b6100a661024f565b005b6100c260048036038101906100bd919061071e565b610262565b005b6100cc6102ad565b6040516100d991906104db565b60405180910390f35b6100fc60048036038101906100f7919061071e565b6102d4565b005b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61012b610356565b5f835190505f8114158015610141575060058111155b610180576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610177906107a3565b60405180910390fd5b5f5b818160ff161015610248578273ffffffffffffffffffffffffffffffffffffffff166323b872dd8560015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16888560ff16815181106101e2576101e16107c1565b5b60200260200101516040518463ffffffff1660e01b8152600401610208939291906107fd565b5f604051808303815f87803b15801561021f575f80fd5b505af1158015610231573d5f803e3d5ffd5b5050505080806102409061086b565b915050610182565b5050505050565b610257610356565b6102605f6103d4565b565b61026a610356565b8060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6102dc610356565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361034a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161034190610903565b60405180910390fd5b610353816103d4565b50565b61035e610495565b73ffffffffffffffffffffffffffffffffffffffff1661037c6102ad565b73ffffffffffffffffffffffffffffffffffffffff16146103d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103c99061096b565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6104c58261049c565b9050919050565b6104d5816104bb565b82525050565b5f6020820190506104ee5f8301846104cc565b92915050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61054f82610509565b810181811067ffffffffffffffff8211171561056e5761056d610519565b5b80604052505050565b5f6105806104f4565b905061058c8282610546565b919050565b5f67ffffffffffffffff8211156105ab576105aa610519565b5b602082029050602081019050919050565b5f80fd5b5f819050919050565b6105d2816105c0565b81146105dc575f80fd5b50565b5f813590506105ed816105c9565b92915050565b5f61060561060084610591565b610577565b90508083825260208201905060208402830185811115610628576106276105bc565b5b835b81811015610651578061063d88826105df565b84526020840193505060208101905061062a565b5050509392505050565b5f82601f83011261066f5761066e610505565b5b813561067f8482602086016105f3565b91505092915050565b610691816104bb565b811461069b575f80fd5b50565b5f813590506106ac81610688565b92915050565b5f805f606084860312156106c9576106c86104fd565b5b5f84013567ffffffffffffffff8111156106e6576106e5610501565b5b6106f28682870161065b565b93505060206107038682870161069e565b92505060406107148682870161069e565b9150509250925092565b5f60208284031215610733576107326104fd565b5b5f6107408482850161069e565b91505092915050565b5f82825260208201905092915050565b7f546f6b656e204964732073686f756c642062652030203e20696473203e2035005f82015250565b5f61078d601f83610749565b915061079882610759565b602082019050919050565b5f6020820190508181035f8301526107ba81610781565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b6107f7816105c0565b82525050565b5f6060820190506108105f8301866104cc565b61081d60208301856104cc565b61082a60408301846107ee565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f60ff82169050919050565b5f6108758261085f565b915060ff820361088857610887610832565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6108ed602683610749565b91506108f882610893565b604082019050919050565b5f6020820190508181035f83015261091a816108e1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f610955602083610749565b915061096082610921565b602082019050919050565b5f6020820190508181035f83015261098281610949565b905091905056fea2646970667358221220ea776afba0a465f7825ba3516ec868b940e1bba378d78ea7b2ac972eafc6ade064736f6c63430008140033000000000000000000000000629ca57602f015375c3370c93d8ce5b1f70a9ba0

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610060575f3560e01c806316fed3e214610064578063366f87c714610082578063715018a61461009e578063718da7ee146100a85780638da5cb5b146100c4578063f2fde38b146100e2575b5f80fd5b61006c6100fe565b60405161007991906104db565b60405180910390f35b61009c600480360381019061009791906106b2565b610123565b005b6100a661024f565b005b6100c260048036038101906100bd919061071e565b610262565b005b6100cc6102ad565b6040516100d991906104db565b60405180910390f35b6100fc60048036038101906100f7919061071e565b6102d4565b005b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61012b610356565b5f835190505f8114158015610141575060058111155b610180576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610177906107a3565b60405180910390fd5b5f5b818160ff161015610248578273ffffffffffffffffffffffffffffffffffffffff166323b872dd8560015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16888560ff16815181106101e2576101e16107c1565b5b60200260200101516040518463ffffffff1660e01b8152600401610208939291906107fd565b5f604051808303815f87803b15801561021f575f80fd5b505af1158015610231573d5f803e3d5ffd5b5050505080806102409061086b565b915050610182565b5050505050565b610257610356565b6102605f6103d4565b565b61026a610356565b8060015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6102dc610356565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361034a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161034190610903565b60405180910390fd5b610353816103d4565b50565b61035e610495565b73ffffffffffffffffffffffffffffffffffffffff1661037c6102ad565b73ffffffffffffffffffffffffffffffffffffffff16146103d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103c99061096b565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6104c58261049c565b9050919050565b6104d5816104bb565b82525050565b5f6020820190506104ee5f8301846104cc565b92915050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61054f82610509565b810181811067ffffffffffffffff8211171561056e5761056d610519565b5b80604052505050565b5f6105806104f4565b905061058c8282610546565b919050565b5f67ffffffffffffffff8211156105ab576105aa610519565b5b602082029050602081019050919050565b5f80fd5b5f819050919050565b6105d2816105c0565b81146105dc575f80fd5b50565b5f813590506105ed816105c9565b92915050565b5f61060561060084610591565b610577565b90508083825260208201905060208402830185811115610628576106276105bc565b5b835b81811015610651578061063d88826105df565b84526020840193505060208101905061062a565b5050509392505050565b5f82601f83011261066f5761066e610505565b5b813561067f8482602086016105f3565b91505092915050565b610691816104bb565b811461069b575f80fd5b50565b5f813590506106ac81610688565b92915050565b5f805f606084860312156106c9576106c86104fd565b5b5f84013567ffffffffffffffff8111156106e6576106e5610501565b5b6106f28682870161065b565b93505060206107038682870161069e565b92505060406107148682870161069e565b9150509250925092565b5f60208284031215610733576107326104fd565b5b5f6107408482850161069e565b91505092915050565b5f82825260208201905092915050565b7f546f6b656e204964732073686f756c642062652030203e20696473203e2035005f82015250565b5f61078d601f83610749565b915061079882610759565b602082019050919050565b5f6020820190508181035f8301526107ba81610781565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b6107f7816105c0565b82525050565b5f6060820190506108105f8301866104cc565b61081d60208301856104cc565b61082a60408301846107ee565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f60ff82169050919050565b5f6108758261085f565b915060ff820361088857610887610832565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6108ed602683610749565b91506108f882610893565b604082019050919050565b5f6020820190508181035f83015261091a816108e1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f610955602083610749565b915061096082610921565b602082019050919050565b5f6020820190508181035f83015261098281610949565b905091905056fea2646970667358221220ea776afba0a465f7825ba3516ec868b940e1bba378d78ea7b2ac972eafc6ade064736f6c63430008140033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000629ca57602f015375c3370c93d8ce5b1f70a9ba0

-----Decoded View---------------
Arg [0] : _receiverAddress (address): 0x629CA57602f015375C3370C93d8CE5B1f70A9BA0

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000629ca57602f015375c3370c93d8ce5b1f70a9ba0


Deployed Bytecode Sourcemap

9800:716:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9836:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9972:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8914:103;;;:::i;:::-;;10381:130;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8273:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9172:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9836:30;;;;;;;;;;;;;:::o;9972:401::-;8159:13;:11;:13::i;:::-;10093::::1;10109:9;:16;10093:32;;10157:1;10145:8;:13;;:30;;;;;10174:1;10162:8;:13;;10145:30;10137:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;10227:7;10222:144;10240:8;10236:1;:12;;;10222:144;;;10277:18;10269:40;;;10310:12;10324:15;;;;;;;;;;;10341:9;10351:1;10341:12;;;;;;;;;;:::i;:::-;;;;;;;;10269:85;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;10250:3;;;;;:::i;:::-;;;;10222:144;;;;10082:291;9972:401:::0;;;:::o;8914:103::-;8159:13;:11;:13::i;:::-;8979:30:::1;9006:1;8979:18;:30::i;:::-;8914:103::o:0;10381:130::-;8159:13;:11;:13::i;:::-;10484:19:::1;10466:15;;:37;;;;;;;;;;;;;;;;;;10381:130:::0;:::o;8273:87::-;8319:7;8346:6;;;;;;;;;;;8339:13;;8273:87;:::o;9172:201::-;8159:13;:11;:13::i;:::-;9281:1:::1;9261:22;;:8;:22;;::::0;9253:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;9337:28;9356:8;9337:18;:28::i;:::-;9172:201:::0;:::o;8438:132::-;8513:12;:10;:12::i;:::-;8502:23;;:7;:5;:7::i;:::-;:23;;;8494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8438:132::o;9533:191::-;9607:16;9626:6;;;;;;;;;;;9607:25;;9652:8;9643:6;;:17;;;;;;;;;;;;;;;;;;9707:8;9676:40;;9697:8;9676:40;;;;;;;;;;;;9596:128;9533:191;:::o;6765:98::-;6818:7;6845:10;6838:17;;6765:98;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;593:75::-;626:6;659:2;653:9;643:19;;593:75;:::o;674:117::-;783:1;780;773:12;797:117;906:1;903;896:12;920:117;1029:1;1026;1019:12;1043:102;1084:6;1135:2;1131:7;1126:2;1119:5;1115:14;1111:28;1101:38;;1043:102;;;:::o;1151:180::-;1199:77;1196:1;1189:88;1296:4;1293:1;1286:15;1320:4;1317:1;1310:15;1337:281;1420:27;1442:4;1420:27;:::i;:::-;1412:6;1408:40;1550:6;1538:10;1535:22;1514:18;1502:10;1499:34;1496:62;1493:88;;;1561:18;;:::i;:::-;1493:88;1601:10;1597:2;1590:22;1380:238;1337:281;;:::o;1624:129::-;1658:6;1685:20;;:::i;:::-;1675:30;;1714:33;1742:4;1734:6;1714:33;:::i;:::-;1624:129;;;:::o;1759:311::-;1836:4;1926:18;1918:6;1915:30;1912:56;;;1948:18;;:::i;:::-;1912:56;1998:4;1990:6;1986:17;1978:25;;2058:4;2052;2048:15;2040:23;;1759:311;;;:::o;2076:117::-;2185:1;2182;2175:12;2199:77;2236:7;2265:5;2254:16;;2199:77;;;:::o;2282:122::-;2355:24;2373:5;2355:24;:::i;:::-;2348:5;2345:35;2335:63;;2394:1;2391;2384:12;2335:63;2282:122;:::o;2410:139::-;2456:5;2494:6;2481:20;2472:29;;2510:33;2537:5;2510:33;:::i;:::-;2410:139;;;;:::o;2572:710::-;2668:5;2693:81;2709:64;2766:6;2709:64;:::i;:::-;2693:81;:::i;:::-;2684:90;;2794:5;2823:6;2816:5;2809:21;2857:4;2850:5;2846:16;2839:23;;2910:4;2902:6;2898:17;2890:6;2886:30;2939:3;2931:6;2928:15;2925:122;;;2958:79;;:::i;:::-;2925:122;3073:6;3056:220;3090:6;3085:3;3082:15;3056:220;;;3165:3;3194:37;3227:3;3215:10;3194:37;:::i;:::-;3189:3;3182:50;3261:4;3256:3;3252:14;3245:21;;3132:144;3116:4;3111:3;3107:14;3100:21;;3056:220;;;3060:21;2674:608;;2572:710;;;;;:::o;3305:370::-;3376:5;3425:3;3418:4;3410:6;3406:17;3402:27;3392:122;;3433:79;;:::i;:::-;3392:122;3550:6;3537:20;3575:94;3665:3;3657:6;3650:4;3642:6;3638:17;3575:94;:::i;:::-;3566:103;;3382:293;3305:370;;;;:::o;3681:122::-;3754:24;3772:5;3754:24;:::i;:::-;3747:5;3744:35;3734:63;;3793:1;3790;3783:12;3734:63;3681:122;:::o;3809:139::-;3855:5;3893:6;3880:20;3871:29;;3909:33;3936:5;3909:33;:::i;:::-;3809:139;;;;:::o;3954:829::-;4056:6;4064;4072;4121:2;4109:9;4100:7;4096:23;4092:32;4089:119;;;4127:79;;:::i;:::-;4089:119;4275:1;4264:9;4260:17;4247:31;4305:18;4297:6;4294:30;4291:117;;;4327:79;;:::i;:::-;4291:117;4432:78;4502:7;4493:6;4482:9;4478:22;4432:78;:::i;:::-;4422:88;;4218:302;4559:2;4585:53;4630:7;4621:6;4610:9;4606:22;4585:53;:::i;:::-;4575:63;;4530:118;4687:2;4713:53;4758:7;4749:6;4738:9;4734:22;4713:53;:::i;:::-;4703:63;;4658:118;3954:829;;;;;:::o;4789:329::-;4848:6;4897:2;4885:9;4876:7;4872:23;4868:32;4865:119;;;4903:79;;:::i;:::-;4865:119;5023:1;5048:53;5093:7;5084:6;5073:9;5069:22;5048:53;:::i;:::-;5038:63;;4994:117;4789:329;;;;:::o;5124:169::-;5208:11;5242:6;5237:3;5230:19;5282:4;5277:3;5273:14;5258:29;;5124:169;;;;:::o;5299:181::-;5439:33;5435:1;5427:6;5423:14;5416:57;5299:181;:::o;5486:366::-;5628:3;5649:67;5713:2;5708:3;5649:67;:::i;:::-;5642:74;;5725:93;5814:3;5725:93;:::i;:::-;5843:2;5838:3;5834:12;5827:19;;5486:366;;;:::o;5858:419::-;6024:4;6062:2;6051:9;6047:18;6039:26;;6111:9;6105:4;6101:20;6097:1;6086:9;6082:17;6075:47;6139:131;6265:4;6139:131;:::i;:::-;6131:139;;5858:419;;;:::o;6283:180::-;6331:77;6328:1;6321:88;6428:4;6425:1;6418:15;6452:4;6449:1;6442:15;6469:118;6556:24;6574:5;6556:24;:::i;:::-;6551:3;6544:37;6469:118;;:::o;6593:442::-;6742:4;6780:2;6769:9;6765:18;6757:26;;6793:71;6861:1;6850:9;6846:17;6837:6;6793:71;:::i;:::-;6874:72;6942:2;6931:9;6927:18;6918:6;6874:72;:::i;:::-;6956;7024:2;7013:9;7009:18;7000:6;6956:72;:::i;:::-;6593:442;;;;;;:::o;7041:180::-;7089:77;7086:1;7079:88;7186:4;7183:1;7176:15;7210:4;7207:1;7200:15;7227:86;7262:7;7302:4;7295:5;7291:16;7280:27;;7227:86;;;:::o;7319:167::-;7356:3;7379:22;7395:5;7379:22;:::i;:::-;7370:31;;7423:4;7416:5;7413:15;7410:41;;7431:18;;:::i;:::-;7410:41;7478:1;7471:5;7467:13;7460:20;;7319:167;;;:::o;7492:225::-;7632:34;7628:1;7620:6;7616:14;7609:58;7701:8;7696:2;7688:6;7684:15;7677:33;7492:225;:::o;7723:366::-;7865:3;7886:67;7950:2;7945:3;7886:67;:::i;:::-;7879:74;;7962:93;8051:3;7962:93;:::i;:::-;8080:2;8075:3;8071:12;8064:19;;7723:366;;;:::o;8095:419::-;8261:4;8299:2;8288:9;8284:18;8276:26;;8348:9;8342:4;8338:20;8334:1;8323:9;8319:17;8312:47;8376:131;8502:4;8376:131;:::i;:::-;8368:139;;8095:419;;;:::o;8520:182::-;8660:34;8656:1;8648:6;8644:14;8637:58;8520:182;:::o;8708:366::-;8850:3;8871:67;8935:2;8930:3;8871:67;:::i;:::-;8864:74;;8947:93;9036:3;8947:93;:::i;:::-;9065:2;9060:3;9056:12;9049:19;;8708:366;;;:::o;9080:419::-;9246:4;9284:2;9273:9;9269:18;9261:26;;9333:9;9327:4;9323:20;9319:1;9308:9;9304:17;9297:47;9361:131;9487:4;9361:131;:::i;:::-;9353:139;;9080:419;;;:::o

Swarm Source

ipfs://ea776afba0a465f7825ba3516ec868b940e1bba378d78ea7b2ac972eafc6ade0

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ 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.