Overview
ETH Balance
ETH Value
$0.00Latest 25 from a total of 37 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Buy | 31342651 | 1210 days ago | IN | 0 ETH | 0.00006029 | ||||
| Buy | 31340204 | 1210 days ago | IN | 0 ETH | 0.00008083 | ||||
| Buy | 31339652 | 1210 days ago | IN | 0 ETH | 0.00006619 | ||||
| Buy | 31339605 | 1210 days ago | IN | 0 ETH | 0.00006619 | ||||
| Buy | 31339564 | 1210 days ago | IN | 0 ETH | 0.00006619 | ||||
| Buy | 31339486 | 1210 days ago | IN | 0 ETH | 0.00006619 | ||||
| Buy | 31339471 | 1210 days ago | IN | 0 ETH | 0.00006981 | ||||
| Buy | 31339463 | 1210 days ago | IN | 0 ETH | 0.00012504 | ||||
| Buy | 31339457 | 1210 days ago | IN | 0 ETH | 0.00006619 | ||||
| Buy | 31339434 | 1210 days ago | IN | 0 ETH | 0.00006981 | ||||
| Buy | 31339431 | 1210 days ago | IN | 0 ETH | 0.00006619 | ||||
| Buy | 31339373 | 1210 days ago | IN | 0 ETH | 0.00006619 | ||||
| Buy | 31339328 | 1210 days ago | IN | 0 ETH | 0.0000606 | ||||
| Buy | 31339303 | 1210 days ago | IN | 0 ETH | 0.0000606 | ||||
| Buy | 31339275 | 1210 days ago | IN | 0 ETH | 0.00006892 | ||||
| Buy | 31339270 | 1210 days ago | IN | 0 ETH | 0.0000606 | ||||
| Buy | 31339254 | 1210 days ago | IN | 0 ETH | 0.00006862 | ||||
| Buy | 31339209 | 1210 days ago | IN | 0 ETH | 0.00006354 | ||||
| Buy | 31339177 | 1210 days ago | IN | 0 ETH | 0.00006801 | ||||
| Buy | 31339164 | 1210 days ago | IN | 0 ETH | 0.00006354 | ||||
| Buy | 31339164 | 1210 days ago | IN | 0 ETH | 0.00007433 | ||||
| Buy | 31339156 | 1210 days ago | IN | 0 ETH | 0.00100372 | ||||
| Buy | 31339153 | 1210 days ago | IN | 0 ETH | 0.00005013 | ||||
| Buy | 31339145 | 1210 days ago | IN | 0 ETH | 0.00008787 | ||||
| Buy | 31339145 | 1210 days ago | IN | 0 ETH | 0.00007524 |
Latest 25 internal transactions (View All)
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 31342651 | 1210 days ago | 0 ETH | ||||
| 31342651 | 1210 days ago | 0 ETH | ||||
| 31340204 | 1210 days ago | 0 ETH | ||||
| 31340204 | 1210 days ago | 0 ETH | ||||
| 31339652 | 1210 days ago | 0 ETH | ||||
| 31339652 | 1210 days ago | 0 ETH | ||||
| 31339605 | 1210 days ago | 0 ETH | ||||
| 31339605 | 1210 days ago | 0 ETH | ||||
| 31339564 | 1210 days ago | 0 ETH | ||||
| 31339564 | 1210 days ago | 0 ETH | ||||
| 31339486 | 1210 days ago | 0 ETH | ||||
| 31339486 | 1210 days ago | 0 ETH | ||||
| 31339471 | 1210 days ago | 0 ETH | ||||
| 31339471 | 1210 days ago | 0 ETH | ||||
| 31339463 | 1210 days ago | 0 ETH | ||||
| 31339463 | 1210 days ago | 0 ETH | ||||
| 31339457 | 1210 days ago | 0 ETH | ||||
| 31339457 | 1210 days ago | 0 ETH | ||||
| 31339434 | 1210 days ago | 0 ETH | ||||
| 31339434 | 1210 days ago | 0 ETH | ||||
| 31339431 | 1210 days ago | 0 ETH | ||||
| 31339431 | 1210 days ago | 0 ETH | ||||
| 31339373 | 1210 days ago | 0 ETH | ||||
| 31339373 | 1210 days ago | 0 ETH | ||||
| 31339328 | 1210 days ago | 0 ETH |
Cross-Chain Transactions
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x2528D150...cB1Bd79b1 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
interface IERC721 {
function balanceOf(address) external view returns (uint256);
function safeTransferMany(address, uint[] memory) external;
function claim(address) external;
}
interface IERC20 {
function balanceOf(address) external view returns (uint256);
function transfer(address, uint) external;
function transferFrom(address, address, uint) external;
}
contract NFTSale is Ownable {
uint public price;
IERC721 public nft;
IERC20 public token;
uint[] public availableIds;
constructor (IERC721 _nft, IERC20 _token) {
nft = _nft;
token = _token;
}
function setPrice(uint _price) external onlyOwner {
price = _price;
}
function available() external view returns (uint) {
return nft.balanceOf(address(this));
}
function buy(uint _amount) external {
require(_amount <= availableIds.length, "Not enough for sale");
uint _tokenAmount = _amount*price;
token.transferFrom(msg.sender, owner(), _tokenAmount);
uint[] memory _sold = new uint[](_amount);
for (uint i=0; i<_amount; i++) {
_sold[i] = availableIds[(availableIds.length-i) - 1];
}
for (uint i=0; i<_amount; i++) {
availableIds.pop();
}
nft.safeTransferMany(msg.sender, _sold);
}
function recovertoken() external {
token.transfer(owner(), token.balanceOf(address(this)));
}
function recoverNft() external onlyOwner {
nft.safeTransferMany(owner(), availableIds);
availableIds = new uint[](0);
}
function setIds(uint[] calldata _ids) external onlyOwner {
availableIds = _ids;
}
function claimPendingRev(address _tigAsset) external {
nft.claim(_tigAsset);
IERC20(_tigAsset).transfer(owner(), IERC20(_tigAsset).balanceOf(address(this)));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../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.
*
* 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 anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing 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);
}
}// SPDX-License-Identifier: MIT
// 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;
}
}{
"optimizer": {
"enabled": true,
"runs": 1000000
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"metadata": {
"useLiteralContent": true
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract IERC721","name":"_nft","type":"address"},{"internalType":"contract IERC20","name":"_token","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":"available","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"availableIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tigAsset","type":"address"}],"name":"claimPendingRev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nft","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recoverNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"recovertoken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"setIds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
0x608060405234801561001057600080fd5b5060405161105638038061105683398101604081905261002f916100d1565b61003833610069565b600280546001600160a01b039384166001600160a01b0319918216179091556003805492909316911617905561010b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146100ce57600080fd5b50565b600080604083850312156100e457600080fd5b82516100ef816100b9565b6020840151909250610100816100b9565b809150509250929050565b610f3c8061011a6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063a80203761161008c578063d96a094a11610066578063d96a094a146101c9578063e2735fd1146101dc578063f2fde38b146101ef578063fc0c546a1461020257600080fd5b8063a80203761461019b578063b45f900d146101ae578063d528d118146101b657600080fd5b80638da5cb5b116100c85780638da5cb5b1461015957806391b7f5ed14610177578063a035b1fe1461018a578063a67638581461019357600080fd5b806347ccca02146100ef57806348a0d75414610139578063715018a61461014f575b600080fd5b60025461010f9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b610141610222565b604051908152602001610130565b6101576102ba565b005b60005473ffffffffffffffffffffffffffffffffffffffff1661010f565b610157610185366004610c3e565b6102ce565b61014160015481565b6101576102db565b6101576101a9366004610c57565b61042f565b610157610603565b6101416101c4366004610c3e565b6106e3565b6101576101d7366004610c3e565b610704565b6101576101ea366004610c94565b6109e0565b6101576101fd366004610c57565b6109f9565b60035461010f9073ffffffffffffffffffffffffffffffffffffffff1681565b6002546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009173ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa158015610291573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102b59190610d09565b905090565b6102c2610aad565b6102cc6000610b2e565b565b6102d6610aad565b600155565b60035473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61031860005473ffffffffffffffffffffffffffffffffffffffff1690565b6003546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff909116906370a0823190602401602060405180830381865afa158015610386573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103aa9190610d09565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b15801561041557600080fd5b505af1158015610429573d6000803e3d6000fd5b50505050565b6002546040517f1e83409a00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff838116600483015290911690631e83409a90602401600060405180830381600087803b15801561049c57600080fd5b505af11580156104b0573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6104ef60005473ffffffffffffffffffffffffffffffffffffffff1690565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401602060405180830381865afa158015610559573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061057d9190610d09565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b1580156105e857600080fd5b505af11580156105fc573d6000803e3d6000fd5b5050505050565b61060b610aad565b60025473ffffffffffffffffffffffffffffffffffffffff1663d6651c7061064860005473ffffffffffffffffffffffffffffffffffffffff1690565b60046040518363ffffffff1660e01b8152600401610667929190610d22565b600060405180830381600087803b15801561068157600080fd5b505af1158015610695573d6000803e3d6000fd5b50600092506106a2915050565b6040519080825280602002602001820160405280156106cb578160200160208202803683370190505b5080516106e091600491602090910190610ba3565b50565b600481815481106106f357600080fd5b600091825260209091200154905081565b600454811115610775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f7420656e6f75676820666f722073616c650000000000000000000000000060448201526064015b60405180910390fd5b6000600154826107859190610de9565b60035490915073ffffffffffffffffffffffffffffffffffffffff166323b872dd336107c660005473ffffffffffffffffffffffffffffffffffffffff1690565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff92831660048201529116602482015260448101849052606401600060405180830381600087803b15801561083a57600080fd5b505af115801561084e573d6000803e3d6000fd5b5050505060008267ffffffffffffffff81111561086d5761086d610d8b565b604051908082528060200260200182016040528015610896578160200160208202803683370190505b50905060005b8381101561090a57600480546001906108b6908490610e06565b6108c09190610e06565b815481106108d0576108d0610e19565b90600052602060002001548282815181106108ed576108ed610e19565b60209081029190910101528061090281610e48565b91505061089c565b5060005b8381101561095057600480548061092757610927610e80565b60019003818190600052602060002001600090559055808061094890610e48565b91505061090e565b506002546040517fd6651c7000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063d6651c70906109a99033908590600401610eaf565b600060405180830381600087803b1580156109c357600080fd5b505af11580156109d7573d6000803e3d6000fd5b50505050505050565b6109e8610aad565b6109f460048383610bee565b505050565b610a01610aad565b73ffffffffffffffffffffffffffffffffffffffff8116610aa4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161076c565b6106e081610b2e565b60005473ffffffffffffffffffffffffffffffffffffffff1633146102cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076c565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054828255906000526020600020908101928215610bde579160200282015b82811115610bde578251825591602001919060010190610bc3565b50610bea929150610c29565b5090565b828054828255906000526020600020908101928215610bde579160200282015b82811115610bde578235825591602001919060010190610c0e565b5b80821115610bea5760008155600101610c2a565b600060208284031215610c5057600080fd5b5035919050565b600060208284031215610c6957600080fd5b813573ffffffffffffffffffffffffffffffffffffffff81168114610c8d57600080fd5b9392505050565b60008060208385031215610ca757600080fd5b823567ffffffffffffffff80821115610cbf57600080fd5b818501915085601f830112610cd357600080fd5b813581811115610ce257600080fd5b8660208260051b8501011115610cf757600080fd5b60209290920196919550909350505050565b600060208284031215610d1b57600080fd5b5051919050565b60006040820173ffffffffffffffffffffffffffffffffffffffff8516835260206040818501528185548084526060860191508660005282600020935060005b81811015610d7e57845483526001948501949284019201610d62565b5090979650505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082028115828204841417610e0057610e00610dba565b92915050565b81810381811115610e0057610e00610dba565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610e7957610e79610dba565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60006040820173ffffffffffffffffffffffffffffffffffffffff851683526020604081850152818551808452606086019150828701935060005b81811015610d7e57845183529383019391830191600101610eea56fea264697066735822122066077524b69fbd2f1028ac2a9f05a2855500f40d706d69c434f34c11945c696664736f6c63430008110033000000000000000000000000303c470c0e0342a1ccdd70b0a17a14b599ff1474000000000000000000000000fd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063a80203761161008c578063d96a094a11610066578063d96a094a146101c9578063e2735fd1146101dc578063f2fde38b146101ef578063fc0c546a1461020257600080fd5b8063a80203761461019b578063b45f900d146101ae578063d528d118146101b657600080fd5b80638da5cb5b116100c85780638da5cb5b1461015957806391b7f5ed14610177578063a035b1fe1461018a578063a67638581461019357600080fd5b806347ccca02146100ef57806348a0d75414610139578063715018a61461014f575b600080fd5b60025461010f9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b610141610222565b604051908152602001610130565b6101576102ba565b005b60005473ffffffffffffffffffffffffffffffffffffffff1661010f565b610157610185366004610c3e565b6102ce565b61014160015481565b6101576102db565b6101576101a9366004610c57565b61042f565b610157610603565b6101416101c4366004610c3e565b6106e3565b6101576101d7366004610c3e565b610704565b6101576101ea366004610c94565b6109e0565b6101576101fd366004610c57565b6109f9565b60035461010f9073ffffffffffffffffffffffffffffffffffffffff1681565b6002546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009173ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa158015610291573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102b59190610d09565b905090565b6102c2610aad565b6102cc6000610b2e565b565b6102d6610aad565b600155565b60035473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61031860005473ffffffffffffffffffffffffffffffffffffffff1690565b6003546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff909116906370a0823190602401602060405180830381865afa158015610386573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103aa9190610d09565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b15801561041557600080fd5b505af1158015610429573d6000803e3d6000fd5b50505050565b6002546040517f1e83409a00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff838116600483015290911690631e83409a90602401600060405180830381600087803b15801561049c57600080fd5b505af11580156104b0573d6000803e3d6000fd5b505050508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6104ef60005473ffffffffffffffffffffffffffffffffffffffff1690565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401602060405180830381865afa158015610559573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061057d9190610d09565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b1580156105e857600080fd5b505af11580156105fc573d6000803e3d6000fd5b5050505050565b61060b610aad565b60025473ffffffffffffffffffffffffffffffffffffffff1663d6651c7061064860005473ffffffffffffffffffffffffffffffffffffffff1690565b60046040518363ffffffff1660e01b8152600401610667929190610d22565b600060405180830381600087803b15801561068157600080fd5b505af1158015610695573d6000803e3d6000fd5b50600092506106a2915050565b6040519080825280602002602001820160405280156106cb578160200160208202803683370190505b5080516106e091600491602090910190610ba3565b50565b600481815481106106f357600080fd5b600091825260209091200154905081565b600454811115610775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f7420656e6f75676820666f722073616c650000000000000000000000000060448201526064015b60405180910390fd5b6000600154826107859190610de9565b60035490915073ffffffffffffffffffffffffffffffffffffffff166323b872dd336107c660005473ffffffffffffffffffffffffffffffffffffffff1690565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff92831660048201529116602482015260448101849052606401600060405180830381600087803b15801561083a57600080fd5b505af115801561084e573d6000803e3d6000fd5b5050505060008267ffffffffffffffff81111561086d5761086d610d8b565b604051908082528060200260200182016040528015610896578160200160208202803683370190505b50905060005b8381101561090a57600480546001906108b6908490610e06565b6108c09190610e06565b815481106108d0576108d0610e19565b90600052602060002001548282815181106108ed576108ed610e19565b60209081029190910101528061090281610e48565b91505061089c565b5060005b8381101561095057600480548061092757610927610e80565b60019003818190600052602060002001600090559055808061094890610e48565b91505061090e565b506002546040517fd6651c7000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063d6651c70906109a99033908590600401610eaf565b600060405180830381600087803b1580156109c357600080fd5b505af11580156109d7573d6000803e3d6000fd5b50505050505050565b6109e8610aad565b6109f460048383610bee565b505050565b610a01610aad565b73ffffffffffffffffffffffffffffffffffffffff8116610aa4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161076c565b6106e081610b2e565b60005473ffffffffffffffffffffffffffffffffffffffff1633146102cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161076c565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054828255906000526020600020908101928215610bde579160200282015b82811115610bde578251825591602001919060010190610bc3565b50610bea929150610c29565b5090565b828054828255906000526020600020908101928215610bde579160200282015b82811115610bde578235825591602001919060010190610c0e565b5b80821115610bea5760008155600101610c2a565b600060208284031215610c5057600080fd5b5035919050565b600060208284031215610c6957600080fd5b813573ffffffffffffffffffffffffffffffffffffffff81168114610c8d57600080fd5b9392505050565b60008060208385031215610ca757600080fd5b823567ffffffffffffffff80821115610cbf57600080fd5b818501915085601f830112610cd357600080fd5b813581811115610ce257600080fd5b8660208260051b8501011115610cf757600080fd5b60209290920196919550909350505050565b600060208284031215610d1b57600080fd5b5051919050565b60006040820173ffffffffffffffffffffffffffffffffffffffff8516835260206040818501528185548084526060860191508660005282600020935060005b81811015610d7e57845483526001948501949284019201610d62565b5090979650505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082028115828204841417610e0057610e00610dba565b92915050565b81810381811115610e0057610e00610dba565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610e7957610e79610dba565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60006040820173ffffffffffffffffffffffffffffffffffffffff851683526020604081850152818551808452606086019150828701935060005b81811015610d7e57845183529383019391830191600101610eea56fea264697066735822122066077524b69fbd2f1028ac2a9f05a2855500f40d706d69c434f34c11945c696664736f6c63430008110033
Net Worth in USD
Net Worth in ETH
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.