Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Latest 25 from a total of 34 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer Ownersh... | 23088195 | 92 days ago | IN | 0 ETH | 0.00001395 | ||||
| Set Asset Manage... | 23088173 | 92 days ago | IN | 0 ETH | 0.00011009 | ||||
| Transfer Ownersh... | 22172789 | 220 days ago | IN | 0 ETH | 0.00003035 | ||||
| Set Asset Manage... | 22172782 | 220 days ago | IN | 0 ETH | 0.00004858 | ||||
| Transfer Ownersh... | 21973080 | 248 days ago | IN | 0 ETH | 0.00002378 | ||||
| Set Asset Manage... | 21973074 | 248 days ago | IN | 0 ETH | 0.00004114 | ||||
| Transfer Ownersh... | 20576191 | 443 days ago | IN | 0 ETH | 0.00003746 | ||||
| Set Asset Manage... | 20576099 | 443 days ago | IN | 0 ETH | 0.00005627 | ||||
| Set Asset Manage... | 20576090 | 443 days ago | IN | 0 ETH | 0.00006041 | ||||
| Transfer Ownersh... | 20432773 | 463 days ago | IN | 0 ETH | 0.00021216 | ||||
| Set Asset Manage... | 20432761 | 463 days ago | IN | 0 ETH | 0.00036436 | ||||
| Set Asset Manage... | 20432753 | 463 days ago | IN | 0 ETH | 0.0003417 | ||||
| Set Asset Manage... | 20432745 | 463 days ago | IN | 0 ETH | 0.00036389 | ||||
| Set Asset Manage... | 20432737 | 463 days ago | IN | 0 ETH | 0.00032081 | ||||
| Set Asset Manage... | 20432729 | 463 days ago | IN | 0 ETH | 0.00032521 | ||||
| Set Asset Manage... | 20432721 | 463 days ago | IN | 0 ETH | 0.00034031 | ||||
| Transfer Ownersh... | 20168355 | 500 days ago | IN | 0 ETH | 0.0000995 | ||||
| Set Asset Manage... | 20168346 | 500 days ago | IN | 0 ETH | 0.00017538 | ||||
| Set Asset Manage... | 20168342 | 500 days ago | IN | 0 ETH | 0.0001869 | ||||
| Transfer Ownersh... | 19875023 | 541 days ago | IN | 0 ETH | 0.00017274 | ||||
| Set Asset Manage... | 19874917 | 541 days ago | IN | 0 ETH | 0.00027267 | ||||
| Set Asset Manage... | 19874853 | 541 days ago | IN | 0 ETH | 0.00014911 | ||||
| Set Asset Manage... | 19874839 | 541 days ago | IN | 0 ETH | 0.00017649 | ||||
| Set Asset Manage... | 19874823 | 541 days ago | IN | 0 ETH | 0.00031162 | ||||
| Set Asset Manage... | 19874815 | 541 days ago | IN | 0 ETH | 0.0003 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ERC721AssetPool
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import {IERC721Receiver} from "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import {BaseAssetPool} from "../base/BaseAssetPool.sol";
import {ReentrancyGuard} from "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
contract ERC721AssetPool is BaseAssetPool, IERC721Receiver, ReentrancyGuard {
constructor(address initialOwner) BaseAssetPool(initialOwner) {}
function release(
address nft,
address to,
uint256 tokenId
) external onlyAssetManager transferNotLocked nonReentrant{
require(
IERC721(nft).ownerOf(tokenId) == address(this),
"ERC721AssetPool: NFT does not belong to asset pool"
);
IERC721(nft).safeTransferFrom(address(this), to, tokenId);
}
/*function approve(
address nft,
uint256 tokenId,
address to
) external onlyAssetManager transferNotLocked {
require(
IERC721(nft).ownerOf(tokenId) == address(this),
"ERC721AssetPool: NFT does not belong to asset pool"
);
IERC721(nft).approve(to, tokenId);
}*/
function onERC721Received(
address,
address,
uint256,
bytes calldata
) external pure override returns (bytes4) {
return this.onERC721Received.selector;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
import {Context} from "../utils/Context.sol";
/**
* @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.
*
* The initial owner is set to the address provided by the deployer. 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;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @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 {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @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 {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_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);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.20;
import {IERC165} from "../../utils/introspection/IERC165.sol";
/**
* @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 address zero.
*
* 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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.20;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be
* reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol)
pragma solidity ^0.8.20;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant NOT_ENTERED = 1;
uint256 private constant ENTERED = 2;
uint256 private _status;
/**
* @dev Unauthorized reentrant call.
*/
error ReentrancyGuardReentrantCall();
constructor() {
_status = NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be NOT_ENTERED
if (_status == ENTERED) {
revert ReentrancyGuardReentrantCall();
}
// Any calls to nonReentrant after this point will fail
_status = ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _status == ENTERED;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)
pragma solidity ^0.8.20;
/**
* @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);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import {IAssetPool} from "../interfaces/IAssetPool.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
/**
* @title BaseAssetPool
* @dev Base contract for asset pools.
*/
abstract contract BaseAssetPool is Ownable {
mapping(address assetManager => bool registered)
internal _assetManagerRegistered;
bool private _transferLock;
modifier onlyAssetManager() {
require(
_assetManagerRegistered[msg.sender],
"BaseAssetPool: Only asset manager can call this function"
);
_;
}
/**
* @dev Modifier to check if transfers are locked.
* Used for any emergency situation.
*/
modifier transferNotLocked() {
require(!_transferLock, "Transfers are locked.");
_;
}
constructor(address initialOwner) Ownable(initialOwner) {
_transferLock = false;
}
function setAssetManager(
address assetManager,
bool registered
) external onlyOwner {
_assetManagerRegistered[assetManager] = registered;
}
function setTransferLock(bool lock) external onlyOwner {
_transferLock = lock;
}
function getAssetManagerRegistration(
address assetManager
) external view returns (bool) {
return _assetManagerRegistered[assetManager];
}
function getTransferLock() external view returns (bool) {
return _transferLock;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.8.20;
interface IAssetPool {
function setAssetManager(address assetManager,bool registered) external;
function release(address tokenOrNft, address to, uint256 amountOrNftId) external;
function release(address payable to, uint256 amount) external;
function getAssetManagerRegistration( address assetManager)
external view returns(bool);
}{
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs",
"useLiteralContent": true
},
"optimizer": {
"enabled": true,
"runs": 4000
},
"remappings": [],
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"assetManager","type":"address"}],"name":"getAssetManagerRegistration","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTransferLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"nft","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"assetManager","type":"address"},{"internalType":"bool","name":"registered","type":"bool"}],"name":"setAssetManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"lock","type":"bool"}],"name":"setTransferLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b506040516109d43803806109d483398101604081905261002f916100cf565b80806001600160a01b03811661005f57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6100688161007f565b50506002805460ff191690555060016003556100ff565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100e157600080fd5b81516001600160a01b03811681146100f857600080fd5b9392505050565b6108c68061010e6000396000f3fe608060405234801561001057600080fd5b50600436106100a35760003560e01c80638da5cb5b11610076578063bff356181161005b578063bff35618146101ab578063d80359f1146101be578063f2fde38b146101d157600080fd5b80638da5cb5b1461014a5780639fc92cd91461017257600080fd5b806306e0961a146100a8578063150b7a02146100c4578063715018a61461012d5780638bfb07c914610137575b600080fd5b60025460ff165b60405190151581526020015b60405180910390f35b6100fc6100d236600461070a565b7f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020016100bb565b6101356101e4565b005b6101356101453660046107a9565b6101f8565b60005460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100bb565b6100af6101803660046107ea565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205460ff1690565b6101356101b9366004610823565b6104e2565b6101356101cc36600461083e565b61051b565b6101356101df3660046107ea565b610579565b6101ec6105dd565b6101f66000610630565b565b3360009081526001602052604090205460ff1661029c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f426173654173736574506f6f6c3a204f6e6c79206173736574206d616e61676560448201527f722063616e2063616c6c20746869732066756e6374696f6e000000000000000060648201526084015b60405180910390fd5b60025460ff1615610309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f5472616e736665727320617265206c6f636b65642e00000000000000000000006044820152606401610293565b6103116106a5565b6040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101829052309073ffffffffffffffffffffffffffffffffffffffff851690636352211e90602401602060405180830381865afa15801561037e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103a29190610873565b73ffffffffffffffffffffffffffffffffffffffff1614610445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732314173736574506f6f6c3a204e465420646f6573206e6f7420626560448201527f6c6f6e6720746f20617373657420706f6f6c00000000000000000000000000006064820152608401610293565b6040517f42842e0e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8381166024830152604482018390528416906342842e0e90606401600060405180830381600087803b1580156104bb57600080fd5b505af11580156104cf573d6000803e3d6000fd5b505050506104dd6001600355565b505050565b6104ea6105dd565b600280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6105236105dd565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260016020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6105816105dd565b73ffffffffffffffffffffffffffffffffffffffff81166105d1576040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260006004820152602401610293565b6105da81610630565b50565b60005473ffffffffffffffffffffffffffffffffffffffff1633146101f6576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610293565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002600354036106e1576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600355565b73ffffffffffffffffffffffffffffffffffffffff811681146105da57600080fd5b60008060008060006080868803121561072257600080fd5b853561072d816106e8565b9450602086013561073d816106e8565b935060408601359250606086013567ffffffffffffffff8082111561076157600080fd5b818801915088601f83011261077557600080fd5b81358181111561078457600080fd5b89602082850101111561079657600080fd5b9699959850939650602001949392505050565b6000806000606084860312156107be57600080fd5b83356107c9816106e8565b925060208401356107d9816106e8565b929592945050506040919091013590565b6000602082840312156107fc57600080fd5b8135610807816106e8565b9392505050565b8035801515811461081e57600080fd5b919050565b60006020828403121561083557600080fd5b6108078261080e565b6000806040838503121561085157600080fd5b823561085c816106e8565b915061086a6020840161080e565b90509250929050565b60006020828403121561088557600080fd5b8151610807816106e856fea2646970667358221220053091b9d1a059de9e2f0bfe8865f2b2c1c739cc9caae3edbe684e3503044fdc64736f6c63430008140033000000000000000000000000639ebd317364962ce8f785d3d523118841c2b81f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100a35760003560e01c80638da5cb5b11610076578063bff356181161005b578063bff35618146101ab578063d80359f1146101be578063f2fde38b146101d157600080fd5b80638da5cb5b1461014a5780639fc92cd91461017257600080fd5b806306e0961a146100a8578063150b7a02146100c4578063715018a61461012d5780638bfb07c914610137575b600080fd5b60025460ff165b60405190151581526020015b60405180910390f35b6100fc6100d236600461070a565b7f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020016100bb565b6101356101e4565b005b6101356101453660046107a9565b6101f8565b60005460405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100bb565b6100af6101803660046107ea565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205460ff1690565b6101356101b9366004610823565b6104e2565b6101356101cc36600461083e565b61051b565b6101356101df3660046107ea565b610579565b6101ec6105dd565b6101f66000610630565b565b3360009081526001602052604090205460ff1661029c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f426173654173736574506f6f6c3a204f6e6c79206173736574206d616e61676560448201527f722063616e2063616c6c20746869732066756e6374696f6e000000000000000060648201526084015b60405180910390fd5b60025460ff1615610309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f5472616e736665727320617265206c6f636b65642e00000000000000000000006044820152606401610293565b6103116106a5565b6040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101829052309073ffffffffffffffffffffffffffffffffffffffff851690636352211e90602401602060405180830381865afa15801561037e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103a29190610873565b73ffffffffffffffffffffffffffffffffffffffff1614610445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732314173736574506f6f6c3a204e465420646f6573206e6f7420626560448201527f6c6f6e6720746f20617373657420706f6f6c00000000000000000000000000006064820152608401610293565b6040517f42842e0e00000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8381166024830152604482018390528416906342842e0e90606401600060405180830381600087803b1580156104bb57600080fd5b505af11580156104cf573d6000803e3d6000fd5b505050506104dd6001600355565b505050565b6104ea6105dd565b600280547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6105236105dd565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260016020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6105816105dd565b73ffffffffffffffffffffffffffffffffffffffff81166105d1576040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260006004820152602401610293565b6105da81610630565b50565b60005473ffffffffffffffffffffffffffffffffffffffff1633146101f6576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610293565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6002600354036106e1576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600355565b73ffffffffffffffffffffffffffffffffffffffff811681146105da57600080fd5b60008060008060006080868803121561072257600080fd5b853561072d816106e8565b9450602086013561073d816106e8565b935060408601359250606086013567ffffffffffffffff8082111561076157600080fd5b818801915088601f83011261077557600080fd5b81358181111561078457600080fd5b89602082850101111561079657600080fd5b9699959850939650602001949392505050565b6000806000606084860312156107be57600080fd5b83356107c9816106e8565b925060208401356107d9816106e8565b929592945050506040919091013590565b6000602082840312156107fc57600080fd5b8135610807816106e8565b9392505050565b8035801515811461081e57600080fd5b919050565b60006020828403121561083557600080fd5b6108078261080e565b6000806040838503121561085157600080fd5b823561085c816106e8565b915061086a6020840161080e565b90509250929050565b60006020828403121561088557600080fd5b8151610807816106e856fea2646970667358221220053091b9d1a059de9e2f0bfe8865f2b2c1c739cc9caae3edbe684e3503044fdc64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000639ebd317364962ce8f785d3d523118841c2b81f
-----Decoded View---------------
Arg [0] : initialOwner (address): 0x639ebD317364962Ce8F785D3d523118841C2b81F
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000639ebd317364962ce8f785d3d523118841c2b81f
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
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.