Source Code
Latest 25 from a total of 31 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 18010000 | 910 days ago | IN | 0.005 ETH | 0.00061249 | ||||
| Transfer | 17999373 | 911 days ago | IN | 0.1 ETH | 0.00083902 | ||||
| Transfer | 17987800 | 913 days ago | IN | 0.07 ETH | 0.00061655 | ||||
| Transfer | 17987285 | 913 days ago | IN | 0.1 ETH | 0.0008164 | ||||
| Transfer | 17987281 | 913 days ago | IN | 0.01 ETH | 0.00074822 | ||||
| Transfer | 17987227 | 913 days ago | IN | 0.16 ETH | 0.00086486 | ||||
| Transfer | 17986433 | 913 days ago | IN | 0.12 ETH | 0.00080972 | ||||
| Transfer | 17986281 | 913 days ago | IN | 0.08 ETH | 0.0012119 | ||||
| Transfer | 17986165 | 913 days ago | IN | 0.1 ETH | 0.00110564 | ||||
| Transfer | 17986127 | 913 days ago | IN | 0.2 ETH | 0.00173021 | ||||
| Transfer | 17985766 | 913 days ago | IN | 1 ETH | 0.00137974 | ||||
| Transfer | 17979708 | 914 days ago | IN | 0.05 ETH | 0.0022565 | ||||
| Transfer | 17979146 | 914 days ago | IN | 0.1 ETH | 0.00182775 | ||||
| Transfer | 17971473 | 915 days ago | IN | 0.002 ETH | 0.0021288 | ||||
| Transfer | 17971140 | 915 days ago | IN | 0.15 ETH | 0.00264139 | ||||
| Transfer | 17966059 | 916 days ago | IN | 0.2 ETH | 0.00149981 | ||||
| Transfer | 17965809 | 916 days ago | IN | 1.5 ETH | 0.00169762 | ||||
| Transfer | 17965657 | 916 days ago | IN | 2.2 ETH | 0.0014015 | ||||
| Transfer | 17965655 | 916 days ago | IN | 0.053 ETH | 0.00141886 | ||||
| Transfer | 17965647 | 916 days ago | IN | 0.063 ETH | 0.00127364 | ||||
| Transfer | 17965643 | 916 days ago | IN | 1 ETH | 0.00119982 | ||||
| Transfer | 17965639 | 916 days ago | IN | 0.05432 ETH | 0.00104935 | ||||
| Transfer | 17965637 | 916 days ago | IN | 0.5 ETH | 0.00106567 | ||||
| Transfer | 17965635 | 916 days ago | IN | 0.1 ETH | 0.00107819 | ||||
| Transfer | 17965035 | 916 days ago | IN | 1 ETH | 0.0009884 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 18010000 | 910 days ago | 0.005 ETH | ||||
| Transfer | 17999373 | 911 days ago | 0.1 ETH | ||||
| Transfer | 17987800 | 913 days ago | 0.07 ETH | ||||
| Transfer | 17987285 | 913 days ago | 0.1 ETH | ||||
| Transfer | 17987281 | 913 days ago | 0.01 ETH | ||||
| Transfer | 17987227 | 913 days ago | 0.16 ETH | ||||
| Transfer | 17986433 | 913 days ago | 0.12 ETH | ||||
| Transfer | 17986281 | 913 days ago | 0.08 ETH | ||||
| Transfer | 17986165 | 913 days ago | 0.1 ETH | ||||
| Transfer | 17986127 | 913 days ago | 0.2 ETH | ||||
| Transfer | 17985766 | 913 days ago | 1 ETH | ||||
| Transfer | 17979708 | 914 days ago | 0.05 ETH | ||||
| Transfer | 17979146 | 914 days ago | 0.1 ETH | ||||
| Transfer | 17971473 | 915 days ago | 0.002 ETH | ||||
| Transfer | 17971140 | 915 days ago | 0.15 ETH | ||||
| Transfer | 17966059 | 916 days ago | 0.2 ETH | ||||
| Transfer | 17965809 | 916 days ago | 1.5 ETH | ||||
| Transfer | 17965657 | 916 days ago | 2.2 ETH | ||||
| Transfer | 17965655 | 916 days ago | 0.053 ETH | ||||
| Transfer | 17965647 | 916 days ago | 0.063 ETH | ||||
| Transfer | 17965643 | 916 days ago | 1 ETH | ||||
| Transfer | 17965639 | 916 days ago | 0.05432 ETH | ||||
| Transfer | 17965637 | 916 days ago | 0.5 ETH | ||||
| Transfer | 17965635 | 916 days ago | 0.1 ETH | ||||
| Transfer | 17965035 | 916 days ago | 1 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
PresaleTokens
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-08-17
*/
// Sources flattened with hardhat v2.17.1 https://hardhat.org
// SPDX-License-Identifier: MIT
// File @openzeppelin/contracts/utils/Context.sol@v4.9.3
// Original license: 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;
}
}
// File @openzeppelin/contracts/access/Ownable.sol@v4.9.3
// Original license: SPDX_License_Identifier: MIT
// 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/PresaleTokens.sol
// Original license: SPDX_License_Identifier: MIT
pragma solidity ^0.8.9;
/// @title Allow users to invest ETH (or USDT) in token presale BLUBLU
/// @author AlexAltrex
/// @notice
contract PresaleTokens is Ownable {
mapping(address => uint) payments;
address payable addressToTransfer = payable(0xBa8842Dbe4d5E42CEC5ac65c247dF0010162c1Cc);
receive() external payable {
payments[msg.sender] = payments[msg.sender] + msg.value;
(bool success,) = addressToTransfer.call{value: msg.value}("");
require(success, "PresaleTokens: Transfer failed");
}
/// @notice Return amount of ETH that account invest
function getPayment() public view returns (uint) {
return payments[msg.sender];
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"getPayment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
608060405273ba8842dbe4d5e42cec5ac65c247df0010162c1cc600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034801561006557600080fd5b5061008261007761008760201b60201c565b61008f60201b60201c565b610153565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6107fe806101626000396000f3fe6080604052600436106100435760003560e01c8063715018a6146101ac5780638da5cb5b146101c3578063bb328a7d146101ee578063f2fde38b14610219576101a7565b366101a75734600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461009391906104cd565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163460405161011e90610554565b60006040518083038185875af1925050503d806000811461015b576040519150601f19603f3d011682016040523d82523d6000602084013e610160565b606091505b50509050806101a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b906105c6565b60405180910390fd5b50005b600080fd5b3480156101b857600080fd5b506101c1610242565b005b3480156101cf57600080fd5b506101d8610256565b6040516101e59190610627565b60405180910390f35b3480156101fa57600080fd5b5061020361027f565b6040516102109190610651565b60405180910390f35b34801561022557600080fd5b50610240600480360381019061023b919061069d565b6102c6565b005b61024a61034a565b61025460006103c8565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b6102ce61034a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561033e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103359061073c565b60405180910390fd5b610347816103c8565b50565b61035261048c565b73ffffffffffffffffffffffffffffffffffffffff16610370610256565b73ffffffffffffffffffffffffffffffffffffffff16146103c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103bd906107a8565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104d882610494565b91506104e383610494565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156105185761051761049e565b5b828201905092915050565b600081905092915050565b50565b600061053e600083610523565b91506105498261052e565b600082019050919050565b600061055f82610531565b9150819050919050565b600082825260208201905092915050565b7f50726573616c65546f6b656e733a205472616e73666572206661696c65640000600082015250565b60006105b0601e83610569565b91506105bb8261057a565b602082019050919050565b600060208201905081810360008301526105df816105a3565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610611826105e6565b9050919050565b61062181610606565b82525050565b600060208201905061063c6000830184610618565b92915050565b61064b81610494565b82525050565b60006020820190506106666000830184610642565b92915050565b600080fd5b61067a81610606565b811461068557600080fd5b50565b60008135905061069781610671565b92915050565b6000602082840312156106b3576106b261066c565b5b60006106c184828501610688565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000610726602683610569565b9150610731826106ca565b604082019050919050565b6000602082019050818103600083015261075581610719565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000610792602083610569565b915061079d8261075c565b602082019050919050565b600060208201905081810360008301526107c181610785565b905091905056fea264697066735822122057aaa3849bd68a0f969ba8a90bc3749c87bc17be78e6b1579051e39ec771fab364736f6c63430008090033
Deployed Bytecode
0x6080604052600436106100435760003560e01c8063715018a6146101ac5780638da5cb5b146101c3578063bb328a7d146101ee578063f2fde38b14610219576101a7565b366101a75734600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461009391906104cd565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163460405161011e90610554565b60006040518083038185875af1925050503d806000811461015b576040519150601f19603f3d011682016040523d82523d6000602084013e610160565b606091505b50509050806101a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161019b906105c6565b60405180910390fd5b50005b600080fd5b3480156101b857600080fd5b506101c1610242565b005b3480156101cf57600080fd5b506101d8610256565b6040516101e59190610627565b60405180910390f35b3480156101fa57600080fd5b5061020361027f565b6040516102109190610651565b60405180910390f35b34801561022557600080fd5b50610240600480360381019061023b919061069d565b6102c6565b005b61024a61034a565b61025460006103c8565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b6102ce61034a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561033e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103359061073c565b60405180910390fd5b610347816103c8565b50565b61035261048c565b73ffffffffffffffffffffffffffffffffffffffff16610370610256565b73ffffffffffffffffffffffffffffffffffffffff16146103c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103bd906107a8565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104d882610494565b91506104e383610494565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156105185761051761049e565b5b828201905092915050565b600081905092915050565b50565b600061053e600083610523565b91506105498261052e565b600082019050919050565b600061055f82610531565b9150819050919050565b600082825260208201905092915050565b7f50726573616c65546f6b656e733a205472616e73666572206661696c65640000600082015250565b60006105b0601e83610569565b91506105bb8261057a565b602082019050919050565b600060208201905081810360008301526105df816105a3565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610611826105e6565b9050919050565b61062181610606565b82525050565b600060208201905061063c6000830184610618565b92915050565b61064b81610494565b82525050565b60006020820190506106666000830184610642565b92915050565b600080fd5b61067a81610606565b811461068557600080fd5b50565b60008135905061069781610671565b92915050565b6000602082840312156106b3576106b261066c565b5b60006106c184828501610688565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000610726602683610569565b9150610731826106ca565b604082019050919050565b6000602082019050818103600083015261075581610719565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000610792602083610569565b915061079d8261075c565b602082019050919050565b600060208201905081810360008301526107c181610785565b905091905056fea264697066735822122057aaa3849bd68a0f969ba8a90bc3749c87bc17be78e6b1579051e39ec771fab364736f6c63430008090033
Deployed Bytecode Sourcemap
4022:580:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4285:9;4262:8;:20;4271:10;4262:20;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;4239:8;:20;4248:10;4239:20;;;;;;;;;;;;;;;:55;;;;4306:12;4323:17;;;;;;;;;;;:22;;4353:9;4323:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4305:62;;;4386:7;4378:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;4228:208;4022:580;;;;;2979:103;;;;;;;;;;;;;:::i;:::-;;2338:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4502:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3237:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2979:103;2224:13;:11;:13::i;:::-;3044:30:::1;3071:1;3044:18;:30::i;:::-;2979:103::o:0;2338:87::-;2384:7;2411:6;;;;;;;;;;;2404:13;;2338:87;:::o;4502:95::-;4545:4;4569:8;:20;4578:10;4569:20;;;;;;;;;;;;;;;;4562:27;;4502:95;:::o;3237:201::-;2224:13;:11;:13::i;:::-;3346:1:::1;3326:22;;:8;:22;;;;3318:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3402:28;3421:8;3402:18;:28::i;:::-;3237:201:::0;:::o;2503:132::-;2578:12;:10;:12::i;:::-;2567:23;;:7;:5;:7::i;:::-;:23;;;2559:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2503:132::o;3598:191::-;3672:16;3691:6;;;;;;;;;;;3672:25;;3717:8;3708:6;;:17;;;;;;;;;;;;;;;;;;3772:8;3741:40;;3762:8;3741:40;;;;;;;;;;;;3661:128;3598:191;:::o;834:98::-;887:7;914:10;907:17;;834:98;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:180::-;138:77;135:1;128:88;235:4;232:1;225:15;259:4;256:1;249:15;276:305;316:3;335:20;353:1;335:20;:::i;:::-;330:25;;369:20;387:1;369:20;:::i;:::-;364:25;;523:1;455:66;451:74;448:1;445:81;442:107;;;529:18;;:::i;:::-;442:107;573:1;570;566:9;559:16;;276:305;;;;:::o;587:147::-;688:11;725:3;710:18;;587:147;;;;:::o;740:114::-;;:::o;860:398::-;1019:3;1040:83;1121:1;1116:3;1040:83;:::i;:::-;1033:90;;1132:93;1221:3;1132:93;:::i;:::-;1250:1;1245:3;1241:11;1234:18;;860:398;;;:::o;1264:379::-;1448:3;1470:147;1613:3;1470:147;:::i;:::-;1463:154;;1634:3;1627:10;;1264:379;;;:::o;1649:169::-;1733:11;1767:6;1762:3;1755:19;1807:4;1802:3;1798:14;1783:29;;1649:169;;;;:::o;1824:180::-;1964:32;1960:1;1952:6;1948:14;1941:56;1824:180;:::o;2010:366::-;2152:3;2173:67;2237:2;2232:3;2173:67;:::i;:::-;2166:74;;2249:93;2338:3;2249:93;:::i;:::-;2367:2;2362:3;2358:12;2351:19;;2010:366;;;:::o;2382:419::-;2548:4;2586:2;2575:9;2571:18;2563:26;;2635:9;2629:4;2625:20;2621:1;2610:9;2606:17;2599:47;2663:131;2789:4;2663:131;:::i;:::-;2655:139;;2382:419;;;:::o;2807:126::-;2844:7;2884:42;2877:5;2873:54;2862:65;;2807:126;;;:::o;2939:96::-;2976:7;3005:24;3023:5;3005:24;:::i;:::-;2994:35;;2939:96;;;:::o;3041:118::-;3128:24;3146:5;3128:24;:::i;:::-;3123:3;3116:37;3041:118;;:::o;3165:222::-;3258:4;3296:2;3285:9;3281:18;3273:26;;3309:71;3377:1;3366:9;3362:17;3353:6;3309:71;:::i;:::-;3165:222;;;;:::o;3393:118::-;3480:24;3498:5;3480:24;:::i;:::-;3475:3;3468:37;3393:118;;:::o;3517:222::-;3610:4;3648:2;3637:9;3633:18;3625:26;;3661:71;3729:1;3718:9;3714:17;3705:6;3661:71;:::i;:::-;3517:222;;;;:::o;3826:117::-;3935:1;3932;3925:12;4072:122;4145:24;4163:5;4145:24;:::i;:::-;4138:5;4135:35;4125:63;;4184:1;4181;4174:12;4125:63;4072:122;:::o;4200:139::-;4246:5;4284:6;4271:20;4262:29;;4300:33;4327:5;4300:33;:::i;:::-;4200:139;;;;:::o;4345:329::-;4404:6;4453:2;4441:9;4432:7;4428:23;4424:32;4421:119;;;4459:79;;:::i;:::-;4421:119;4579:1;4604:53;4649:7;4640:6;4629:9;4625:22;4604:53;:::i;:::-;4594:63;;4550:117;4345:329;;;;:::o;4680:225::-;4820:34;4816:1;4808:6;4804:14;4797:58;4889:8;4884:2;4876:6;4872:15;4865:33;4680:225;:::o;4911:366::-;5053:3;5074:67;5138:2;5133:3;5074:67;:::i;:::-;5067:74;;5150:93;5239:3;5150:93;:::i;:::-;5268:2;5263:3;5259:12;5252:19;;4911:366;;;:::o;5283:419::-;5449:4;5487:2;5476:9;5472:18;5464:26;;5536:9;5530:4;5526:20;5522:1;5511:9;5507:17;5500:47;5564:131;5690:4;5564:131;:::i;:::-;5556:139;;5283:419;;;:::o;5708:182::-;5848:34;5844:1;5836:6;5832:14;5825:58;5708:182;:::o;5896:366::-;6038:3;6059:67;6123:2;6118:3;6059:67;:::i;:::-;6052:74;;6135:93;6224:3;6135:93;:::i;:::-;6253:2;6248:3;6244:12;6237:19;;5896:366;;;:::o;6268:419::-;6434:4;6472:2;6461:9;6457:18;6449:26;;6521:9;6515:4;6511:20;6507:1;6496:9;6492:17;6485:47;6549:131;6675:4;6549:131;:::i;:::-;6541:139;;6268:419;;;:::o
Swarm Source
ipfs://57aaa3849bd68a0f969ba8a90bc3749c87bc17be78e6b1579051e39ec771fab3
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
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.