Overview
ETH Balance
0.0615 ETH
Eth Value
$214.24 (@ $3,483.63/ETH)More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 426 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint | 17591824 | 543 days ago | IN | 0.0315 ETH | 0.00224099 | ||||
Mint | 17428827 | 566 days ago | IN | 0.03 ETH | 0.00258707 | ||||
Set Price | 17428825 | 566 days ago | IN | 0 ETH | 0.00104202 | ||||
Withdraw | 16780147 | 658 days ago | IN | 0 ETH | 0.0014112 | ||||
Mint | 16515418 | 695 days ago | IN | 0.105 ETH | 0.00198315 | ||||
Mint | 16395241 | 712 days ago | IN | 0.105 ETH | 0.00164799 | ||||
Mint | 16219038 | 736 days ago | IN | 0.105 ETH | 0.00139422 | ||||
Withdraw | 15924669 | 777 days ago | IN | 0 ETH | 0.00045468 | ||||
Mint | 15913273 | 779 days ago | IN | 0.21 ETH | 0.0013571 | ||||
Withdraw | 15844835 | 789 days ago | IN | 0 ETH | 0.0003152 | ||||
Mint | 15833102 | 790 days ago | IN | 0.105 ETH | 0.00408559 | ||||
Mint | 15672171 | 813 days ago | IN | 0.21 ETH | 0.00123145 | ||||
Mint | 15662723 | 814 days ago | IN | 0.105 ETH | 0.00042407 | ||||
Mint | 15653526 | 815 days ago | IN | 0.105 ETH | 0.00102753 | ||||
Mint | 15653500 | 815 days ago | IN | 0.105 ETH | 0.00117429 | ||||
Mint | 15653476 | 815 days ago | IN | 0.105 ETH | 0.00080996 | ||||
Mint | 15646431 | 816 days ago | IN | 0.945 ETH | 0.00547463 | ||||
Mint | 15646305 | 816 days ago | IN | 0.315 ETH | 0.00240495 | ||||
Mint | 15646285 | 816 days ago | IN | 0.105 ETH | 0.00120976 | ||||
Mint | 15644934 | 816 days ago | IN | 0.21 ETH | 0.00115385 | ||||
Mint | 15644632 | 817 days ago | IN | 0.105 ETH | 0.00090748 | ||||
Mint | 15644610 | 817 days ago | IN | 0.105 ETH | 0.00093324 | ||||
Mint | 15643200 | 817 days ago | IN | 0.105 ETH | 0.00081413 | ||||
Mint | 15643153 | 817 days ago | IN | 0.105 ETH | 0.00073475 | ||||
Mint | 15643120 | 817 days ago | IN | 0.105 ETH | 0.00079924 |
Latest 9 internal transactions
Advanced mode:
Loading...
Loading
Contract Name:
FastFoodTradersFactory
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-05 */ // File: @openzeppelin/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: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.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 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); } } // File: contracts/library/Withdrawable.sol abstract contract Withdrawable { address internal _withdrawAddress; constructor(address withdrawAddress__) { _withdrawAddress = withdrawAddress__; } modifier onlyWithdrawer() { require(msg.sender == _withdrawAddress); _; } function withdraw() external onlyWithdrawer { _withdraw(); } function _withdraw() internal { payable(_withdrawAddress).transfer(address(this).balance); } function setWithdrawAddress(address newWithdrawAddress) external onlyWithdrawer { _withdrawAddress = newWithdrawAddress; } function withdrawAddress() external view returns (address) { return _withdrawAddress; } } // File: contracts/library/IMintableNft.sol interface IMintableNft { function mint(address to) external; } // File: contracts/library/Factory.sol contract Factory is Ownable, Withdrawable { IMintableNft public nft; uint256 public pricePpm; bool whiteListEnabled = true; mapping(address => bool) whiteList; constructor(address nftAddress, uint256 pricePpm_) Withdrawable(msg.sender) { nft = IMintableNft(nftAddress); pricePpm = pricePpm_; } function mint(address to, uint256 count) external payable { if (whiteListEnabled) { require( whiteList[msg.sender], "mint enable only for whitelist at moment" ); } uint256 needPriice = pricePpm * 1e15 * count; require(msg.value >= needPriice, "not enough ether value"); for (uint256 i = 0; i < count; ++i) nft.mint(to); } function setPrice(uint256 newPricePpm) external onlyOwner { pricePpm = newPricePpm; } function setWhiteListEnabled(bool enabled) external onlyOwner { whiteListEnabled = enabled; } function addToWhiteList(address[] memory accounts) external onlyOwner { for (uint256 i = 0; i < accounts.length; ++i) { whiteList[accounts[i]] = true; } } function removeFromWhiteList(address[] memory accounts) external onlyOwner { for (uint256 i = 0; i < accounts.length; ++i) { whiteList[accounts[i]] = false; } } } // File: contracts/FastFoodTrader/FastFoodTradersFactory.sol contract FastFoodTradersFactory is Factory { constructor(address nftAddress) Factory(nftAddress, 100) {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"nftAddress","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":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"addToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"nft","outputs":[{"internalType":"contract IMintableNft","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePpm","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"removeFromWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPricePpm","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setWhiteListEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWithdrawAddress","type":"address"}],"name":"setWithdrawAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526004805460ff1916600117905534801561001d57600080fd5b506040516109c83803806109c883398101604081905261003c916100d2565b8060643361004981610082565b600180546001600160a01b039283166001600160a01b031991821617909155600280549490921693169290921790915560035550610102565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100e457600080fd5b81516001600160a01b03811681146100fb57600080fd5b9392505050565b6108b7806101116000396000f3fe6080604052600436106100c25760003560e01c806347ccca021161007f5780638da5cb5b116100595780638da5cb5b146101e157806391b7f5ed146101ff578063b11560c51461021f578063f2fde38b1461023f57600080fd5b806347ccca021461018c578063715018a6146101ac578063740d73f3146101c157600080fd5b80631581b600146100c75780631c28da6e146100fe578063343a45b2146101225780633ab1a494146101445780633ccfd60b1461016457806340c10f1914610179575b600080fd5b3480156100d357600080fd5b506001546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b34801561010a57600080fd5b5061011460035481565b6040519081526020016100f5565b34801561012e57600080fd5b5061014261013d36600461069d565b61025f565b005b34801561015057600080fd5b5061014261015f3660046106e2565b61027a565b34801561017057600080fd5b506101426102b3565b6101426101873660046106fd565b6102d4565b34801561019857600080fd5b506002546100e1906001600160a01b031681565b3480156101b857600080fd5b50610142610442565b3480156101cd57600080fd5b506101426101dc36600461073d565b610454565b3480156101ed57600080fd5b506000546001600160a01b03166100e1565b34801561020b57600080fd5b5061014261021a366004610802565b6104c6565b34801561022b57600080fd5b5061014261023a36600461073d565b6104d3565b34801561024b57600080fd5b5061014261025a3660046106e2565b610541565b6102676105ba565b6004805460ff1916911515919091179055565b6001546001600160a01b0316331461029157600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b031633146102ca57600080fd5b6102d2610614565b565b60045460ff1615610354573360009081526005602052604090205460ff166103545760405162461bcd60e51b815260206004820152602860248201527f6d696e7420656e61626c65206f6e6c7920666f722077686974656c69737420616044820152671d081b5bdb595b9d60c21b60648201526084015b60405180910390fd5b60008160035466038d7ea4c6800061036c9190610831565b6103769190610831565b9050803410156103c15760405162461bcd60e51b81526020600482015260166024820152756e6f7420656e6f7567682065746865722076616c756560501b604482015260640161034b565b60005b8281101561043c576002546040516335313c2160e11b81526001600160a01b03868116600483015290911690636a62784290602401600060405180830381600087803b15801561041357600080fd5b505af1158015610427573d6000803e3d6000fd5b505050508061043590610850565b90506103c4565b50505050565b61044a6105ba565b6102d2600061064d565b61045c6105ba565b60005b81518110156104c2576001600560008484815181106104805761048061086b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790556104bb81610850565b905061045f565b5050565b6104ce6105ba565b600355565b6104db6105ba565b60005b81518110156104c2576000600560008484815181106104ff576104ff61086b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905561053a81610850565b90506104de565b6105496105ba565b6001600160a01b0381166105ae5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161034b565b6105b78161064d565b50565b6000546001600160a01b031633146102d25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161034b565b6001546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156105b7573d6000803e3d6000fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156106af57600080fd5b813580151581146106bf57600080fd5b9392505050565b80356001600160a01b03811681146106dd57600080fd5b919050565b6000602082840312156106f457600080fd5b6106bf826106c6565b6000806040838503121561071057600080fd5b610719836106c6565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561075057600080fd5b823567ffffffffffffffff8082111561076857600080fd5b818501915085601f83011261077c57600080fd5b81358181111561078e5761078e610727565b8060051b604051601f19603f830116810181811085821117156107b3576107b3610727565b6040529182528482019250838101850191888311156107d157600080fd5b938501935b828510156107f6576107e7856106c6565b845293850193928501926107d6565b98975050505050505050565b60006020828403121561081457600080fd5b5035919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561084b5761084b61081b565b500290565b60006000198214156108645761086461081b565b5060010190565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220b1faf983ce6b5664fc9489b1539b288adc09c50e37d86f474fd75824a18579bb64736f6c634300080a0033000000000000000000000000a297af378409c200011a50f683745f6c56fb5fc9
Deployed Bytecode
0x6080604052600436106100c25760003560e01c806347ccca021161007f5780638da5cb5b116100595780638da5cb5b146101e157806391b7f5ed146101ff578063b11560c51461021f578063f2fde38b1461023f57600080fd5b806347ccca021461018c578063715018a6146101ac578063740d73f3146101c157600080fd5b80631581b600146100c75780631c28da6e146100fe578063343a45b2146101225780633ab1a494146101445780633ccfd60b1461016457806340c10f1914610179575b600080fd5b3480156100d357600080fd5b506001546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b34801561010a57600080fd5b5061011460035481565b6040519081526020016100f5565b34801561012e57600080fd5b5061014261013d36600461069d565b61025f565b005b34801561015057600080fd5b5061014261015f3660046106e2565b61027a565b34801561017057600080fd5b506101426102b3565b6101426101873660046106fd565b6102d4565b34801561019857600080fd5b506002546100e1906001600160a01b031681565b3480156101b857600080fd5b50610142610442565b3480156101cd57600080fd5b506101426101dc36600461073d565b610454565b3480156101ed57600080fd5b506000546001600160a01b03166100e1565b34801561020b57600080fd5b5061014261021a366004610802565b6104c6565b34801561022b57600080fd5b5061014261023a36600461073d565b6104d3565b34801561024b57600080fd5b5061014261025a3660046106e2565b610541565b6102676105ba565b6004805460ff1916911515919091179055565b6001546001600160a01b0316331461029157600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b031633146102ca57600080fd5b6102d2610614565b565b60045460ff1615610354573360009081526005602052604090205460ff166103545760405162461bcd60e51b815260206004820152602860248201527f6d696e7420656e61626c65206f6e6c7920666f722077686974656c69737420616044820152671d081b5bdb595b9d60c21b60648201526084015b60405180910390fd5b60008160035466038d7ea4c6800061036c9190610831565b6103769190610831565b9050803410156103c15760405162461bcd60e51b81526020600482015260166024820152756e6f7420656e6f7567682065746865722076616c756560501b604482015260640161034b565b60005b8281101561043c576002546040516335313c2160e11b81526001600160a01b03868116600483015290911690636a62784290602401600060405180830381600087803b15801561041357600080fd5b505af1158015610427573d6000803e3d6000fd5b505050508061043590610850565b90506103c4565b50505050565b61044a6105ba565b6102d2600061064d565b61045c6105ba565b60005b81518110156104c2576001600560008484815181106104805761048061086b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790556104bb81610850565b905061045f565b5050565b6104ce6105ba565b600355565b6104db6105ba565b60005b81518110156104c2576000600560008484815181106104ff576104ff61086b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905561053a81610850565b90506104de565b6105496105ba565b6001600160a01b0381166105ae5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161034b565b6105b78161064d565b50565b6000546001600160a01b031633146102d25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161034b565b6001546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156105b7573d6000803e3d6000fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156106af57600080fd5b813580151581146106bf57600080fd5b9392505050565b80356001600160a01b03811681146106dd57600080fd5b919050565b6000602082840312156106f457600080fd5b6106bf826106c6565b6000806040838503121561071057600080fd5b610719836106c6565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561075057600080fd5b823567ffffffffffffffff8082111561076857600080fd5b818501915085601f83011261077c57600080fd5b81358181111561078e5761078e610727565b8060051b604051601f19603f830116810181811085821117156107b3576107b3610727565b6040529182528482019250838101850191888311156107d157600080fd5b938501935b828510156107f6576107e7856106c6565b845293850193928501926107d6565b98975050505050505050565b60006020828403121561081457600080fd5b5035919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561084b5761084b61081b565b500290565b60006000198214156108645761086461081b565b5060010190565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220b1faf983ce6b5664fc9489b1539b288adc09c50e37d86f474fd75824a18579bb64736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a297af378409c200011a50f683745f6c56fb5fc9
-----Decoded View---------------
Arg [0] : nftAddress (address): 0xa297AF378409c200011a50F683745f6C56fB5FC9
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a297af378409c200011a50f683745f6c56fb5fc9
Deployed Bytecode Sourcemap
6059:112:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4289:101;;;;;;;;;;-1:-1:-1;4366:16:0;;-1:-1:-1;;;;;4366:16:0;4289:101;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;4289:101:0;;;;;;;;4643:23;;;;;;;;;;;;;;;;;;;368:25:1;;;356:2;341:18;4643:23:0;222:177:1;5475:107:0;;;;;;;;;;-1:-1:-1;5475:107:0;;;;;:::i;:::-;;:::i;:::-;;4122:159;;;;;;;;;;-1:-1:-1;4122:159:0;;;;;:::i;:::-;;:::i;3926:74::-;;;;;;;;;;;;;:::i;4929:431::-;;;;;;:::i;:::-;;:::i;4613:23::-;;;;;;;;;;-1:-1:-1;4613:23:0;;;;-1:-1:-1;;;;;4613:23:0;;;2776:103;;;;;;;;;;;;;:::i;5590:190::-;;;;;;;;;;-1:-1:-1;5590:190:0;;;;;:::i;:::-;;:::i;2128:87::-;;;;;;;;;;-1:-1:-1;2174:7:0;2201:6;-1:-1:-1;;;;;2201:6:0;2128:87;;5368:99;;;;;;;;;;-1:-1:-1;5368:99:0;;;;;:::i;:::-;;:::i;5788:196::-;;;;;;;;;;-1:-1:-1;5788:196:0;;;;;:::i;:::-;;:::i;3034:201::-;;;;;;;;;;-1:-1:-1;3034:201:0;;;;;:::i;:::-;;:::i;5475:107::-;2014:13;:11;:13::i;:::-;5548:16:::1;:26:::0;;-1:-1:-1;;5548:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;5475:107::o;4122:159::-;3881:16;;-1:-1:-1;;;;;3881:16:0;3867:10;:30;3859:39;;;;;;4236:16:::1;:37:::0;;-1:-1:-1;;;;;;4236:37:0::1;-1:-1:-1::0;;;;;4236:37:0;;;::::1;::::0;;;::::1;::::0;;4122:159::o;3926:74::-;3881:16;;-1:-1:-1;;;;;3881:16:0;3867:10;:30;3859:39;;;;;;3981:11:::1;:9;:11::i;:::-;3926:74::o:0;4929:431::-;5002:16;;;;4998:172;;;5071:10;5061:21;;;;:9;:21;;;;;;;;5035:123;;;;-1:-1:-1;;;5035:123:0;;3183:2:1;5035:123:0;;;3165:21:1;3222:2;3202:18;;;3195:30;3261:34;3241:18;;;3234:62;-1:-1:-1;;;3312:18:1;;;3305:38;3360:19;;5035:123:0;;;;;;;;;5180:18;5219:5;5201:8;;5212:4;5201:15;;;;:::i;:::-;:23;;;;:::i;:::-;5180:44;;5256:10;5243:9;:23;;5235:58;;;;-1:-1:-1;;;5235:58:0;;3897:2:1;5235:58:0;;;3879:21:1;3936:2;3916:18;;;3909:30;-1:-1:-1;;;3955:18:1;;;3948:52;4017:18;;5235:58:0;3695:346:1;5235:58:0;5309:9;5304:48;5328:5;5324:1;:9;5304:48;;;5340:3;;:12;;-1:-1:-1;;;5340:12:0;;-1:-1:-1;;;;;178:32:1;;;5340:12:0;;;160:51:1;5340:3:0;;;;:8;;133:18:1;;5340:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5335:3;;;;:::i;:::-;;;5304:48;;;;4987:373;4929:431;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;5590:190::-:0;2014:13;:11;:13::i;:::-;5676:9:::1;5671:102;5695:8;:15;5691:1;:19;5671:102;;;5757:4;5732:9;:22;5742:8;5751:1;5742:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;5732:22:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;5732:22:0;:29;;-1:-1:-1;;5732:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;5712:3:::1;::::0;::::1;:::i;:::-;;;5671:102;;;;5590:190:::0;:::o;5368:99::-;2014:13;:11;:13::i;:::-;5437:8:::1;:22:::0;5368:99::o;5788:196::-;2014:13;:11;:13::i;:::-;5879:9:::1;5874:103;5898:8;:15;5894:1;:19;5874:103;;;5960:5;5935:9;:22;5945:8;5954:1;5945:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;5935:22:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;5935:22:0;:30;;-1:-1:-1;;5935:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;5915:3:::1;::::0;::::1;:::i;:::-;;;5874:103;;3034:201:::0;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;3123:22:0;::::1;3115:73;;;::::0;-1:-1:-1;;;3115:73:0;;4520:2:1;3115:73:0::1;::::0;::::1;4502:21:1::0;4559:2;4539:18;;;4532:30;4598:34;4578:18;;;4571:62;-1:-1:-1;;;4649:18:1;;;4642:36;4695:19;;3115:73:0::1;4318:402:1::0;3115:73:0::1;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;2293:132::-;2174:7;2201:6;-1:-1:-1;;;;;2201:6:0;759:10;2357:23;2349:68;;;;-1:-1:-1;;;2349:68:0;;4927:2:1;2349:68:0;;;4909:21:1;;;4946:18;;;4939:30;5005:34;4985:18;;;4978:62;5057:18;;2349:68:0;4725:356:1;4008:106:0;4057:16;;4049:57;;-1:-1:-1;;;;;4057:16:0;;;;4084:21;4049:57;;;;;4057:16;4049:57;4057:16;4049:57;4084:21;4057:16;4049:57;;;;;;;;;;;;;;;;;;;3395:191;3469:16;3488:6;;-1:-1:-1;;;;;3505:17:0;;;-1:-1:-1;;;;;;3505:17:0;;;;;;3538:40;;3488:6;;;;;;;3538:40;;3469:16;3538:40;3458:128;3395:191;:::o;404:273:1:-;460:6;513:2;501:9;492:7;488:23;484:32;481:52;;;529:1;526;519:12;481:52;568:9;555:23;621:5;614:13;607:21;600:5;597:32;587:60;;643:1;640;633:12;587:60;666:5;404:273;-1:-1:-1;;;404:273:1:o;682:173::-;750:20;;-1:-1:-1;;;;;799:31:1;;789:42;;779:70;;845:1;842;835:12;779:70;682:173;;;:::o;860:186::-;919:6;972:2;960:9;951:7;947:23;943:32;940:52;;;988:1;985;978:12;940:52;1011:29;1030:9;1011:29;:::i;1051:254::-;1119:6;1127;1180:2;1168:9;1159:7;1155:23;1151:32;1148:52;;;1196:1;1193;1186:12;1148:52;1219:29;1238:9;1219:29;:::i;:::-;1209:39;1295:2;1280:18;;;;1267:32;;-1:-1:-1;;;1051:254:1:o;1538:127::-;1599:10;1594:3;1590:20;1587:1;1580:31;1630:4;1627:1;1620:15;1654:4;1651:1;1644:15;1670:1121;1754:6;1785:2;1828;1816:9;1807:7;1803:23;1799:32;1796:52;;;1844:1;1841;1834:12;1796:52;1884:9;1871:23;1913:18;1954:2;1946:6;1943:14;1940:34;;;1970:1;1967;1960:12;1940:34;2008:6;1997:9;1993:22;1983:32;;2053:7;2046:4;2042:2;2038:13;2034:27;2024:55;;2075:1;2072;2065:12;2024:55;2111:2;2098:16;2133:2;2129;2126:10;2123:36;;;2139:18;;:::i;:::-;2185:2;2182:1;2178:10;2217:2;2211:9;2280:2;2276:7;2271:2;2267;2263:11;2259:25;2251:6;2247:38;2335:6;2323:10;2320:22;2315:2;2303:10;2300:18;2297:46;2294:72;;;2346:18;;:::i;:::-;2382:2;2375:22;2432:18;;;2466:15;;;;-1:-1:-1;2508:11:1;;;2504:20;;;2536:19;;;2533:39;;;2568:1;2565;2558:12;2533:39;2592:11;;;;2612:148;2628:6;2623:3;2620:15;2612:148;;;2694:23;2713:3;2694:23;:::i;:::-;2682:36;;2645:12;;;;2738;;;;2612:148;;;2779:6;1670:1121;-1:-1:-1;;;;;;;;1670:1121:1:o;2796:180::-;2855:6;2908:2;2896:9;2887:7;2883:23;2879:32;2876:52;;;2924:1;2921;2914:12;2876:52;-1:-1:-1;2947:23:1;;2796:180;-1:-1:-1;2796:180:1:o;3390:127::-;3451:10;3446:3;3442:20;3439:1;3432:31;3482:4;3479:1;3472:15;3506:4;3503:1;3496:15;3522:168;3562:7;3628:1;3624;3620:6;3616:14;3613:1;3610:21;3605:1;3598:9;3591:17;3587:45;3584:71;;;3635:18;;:::i;:::-;-1:-1:-1;3675:9:1;;3522:168::o;4046:135::-;4085:3;-1:-1:-1;;4106:17:1;;4103:43;;;4126:18;;:::i;:::-;-1:-1:-1;4173:1:1;4162:13;;4046:135::o;4186:127::-;4247:10;4242:3;4238:20;4235:1;4228:31;4278:4;4275:1;4268:15;4302:4;4299:1;4292:15
Swarm Source
ipfs://b1faf983ce6b5664fc9489b1539b288adc09c50e37d86f474fd75824a18579bb
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,483.63 | 0.0615 | $214.24 |
Loading...
Loading
[ Download: CSV Export ]
[ 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.