Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
AnimalverseBlackMarketETH
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2025-03-03
*/
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;
// Uncomment this line to use console.log
// import "hardhat/console.sol";
contract AnimalverseBlackMarketETH {
address payable owner;
/// Set an owner of this contract when deploy as the deployer
constructor() {
owner = payable(msg.sender);
}
/// Event emitted when a purchase is successful
event Purchase(
address indexed buyer,
address indexed seller,
uint256 amount,
uint256 commission,
uint256[] productIds
);
/// Validates that the sender originated the transfer is different than the target destination.
modifier validateDestination(address payable destinationAddress) {
require(
destinationAddress != address(0),
"Invalid destination address"
);
require(
msg.sender != destinationAddress,
"Sender and recipient cannot be the same."
);
_;
}
/// Validates that the amount to transfer is not zero.
modifier validateTransferAmount(uint256 amount) {
require(amount > 0, "Transfer amount has to be greater than 0.");
_;
}
/// Redirects 5% of the total transferred funds to the contract owner and transfers the rest to the target address.
/// @param destinationAddress The target address to send fund to.
/// @param productIds List of product ids to purchase
function purchaseWithETH(
address payable destinationAddress,
uint256[] memory productIds
)
public
payable
validateDestination(destinationAddress)
validateTransferAmount(msg.value)
{
uint256 commission = (msg.value * 5) / 100; // 5% commission
uint256 payout = msg.value - commission;
bool success;
(success, ) = owner.call{value: commission}("");
require(success, "Transfer to owner failed");
(success, ) = destinationAddress.call{value: payout}("");
require(success, "Transfer to seller failed");
emit Purchase(
msg.sender,
destinationAddress,
msg.value,
commission,
productIds
);
}
/// Fallback function to handle Ether sent to the contract
receive() external payable {
revert("This contract does not accept direct Ether transfers.");
}
// Fallback function to reject any accidental direct transfers
fallback() external payable {
revert("This contract does not accept direct Ether transfers.");
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":true,"internalType":"address","name":"seller","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"commission","type":"uint256"},{"indexed":false,"internalType":"uint256[]","name":"productIds","type":"uint256[]"}],"name":"Purchase","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address payable","name":"destinationAddress","type":"address"},{"internalType":"uint256[]","name":"productIds","type":"uint256[]"}],"name":"purchaseWithETH","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
608060405234801561001057600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610be9806100606000396000f3fe6080604052600436106100225760003560e01c8063db714b391461009d57610062565b36610062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161005990610478565b60405180910390fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161009490610478565b60405180910390fd5b6100b760048036038101906100b29190610699565b6100b9565b005b81600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161012090610741565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161018e906107d3565b60405180910390fd5b34600081116101db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101d290610865565b60405180910390fd5b600060646005346101ec91906108b4565b6101f69190610925565b9050600081346102069190610956565b905060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161024f906109bb565b60006040518083038185875af1925050503d806000811461028c576040519150601f19603f3d011682016040523d82523d6000602084013e610291565b606091505b505080915050806102d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ce90610a1c565b60405180910390fd5b8673ffffffffffffffffffffffffffffffffffffffff16826040516102fb906109bb565b60006040518083038185875af1925050503d8060008114610338576040519150601f19603f3d011682016040523d82523d6000602084013e61033d565b606091505b50508091505080610383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161037a90610a88565b60405180910390fd5b8673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4ed0cc3af6daabc221db8a229b7b3674b3d59be92b42a54d0cf05a171865954834868a6040516103e493929190610b75565b60405180910390a350505050505050565b600082825260208201905092915050565b7f5468697320636f6e747261637420646f6573206e6f742061636365707420646960008201527f72656374204574686572207472616e73666572732e0000000000000000000000602082015250565b60006104626035836103f5565b915061046d82610406565b604082019050919050565b6000602082019050818103600083015261049181610455565b9050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006104d7826104ac565b9050919050565b6104e7816104cc565b81146104f257600080fd5b50565b600081359050610504816104de565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6105588261050f565b810181811067ffffffffffffffff8211171561057757610576610520565b5b80604052505050565b600061058a610498565b9050610596828261054f565b919050565b600067ffffffffffffffff8211156105b6576105b5610520565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b6105df816105cc565b81146105ea57600080fd5b50565b6000813590506105fc816105d6565b92915050565b60006106156106108461059b565b610580565b90508083825260208201905060208402830185811115610638576106376105c7565b5b835b81811015610661578061064d88826105ed565b84526020840193505060208101905061063a565b5050509392505050565b600082601f8301126106805761067f61050a565b5b8135610690848260208601610602565b91505092915050565b600080604083850312156106b0576106af6104a2565b5b60006106be858286016104f5565b925050602083013567ffffffffffffffff8111156106df576106de6104a7565b5b6106eb8582860161066b565b9150509250929050565b7f496e76616c69642064657374696e6174696f6e20616464726573730000000000600082015250565b600061072b601b836103f5565b9150610736826106f5565b602082019050919050565b6000602082019050818103600083015261075a8161071e565b9050919050565b7f53656e64657220616e6420726563697069656e742063616e6e6f74206265207460008201527f68652073616d652e000000000000000000000000000000000000000000000000602082015250565b60006107bd6028836103f5565b91506107c882610761565b604082019050919050565b600060208201905081810360008301526107ec816107b0565b9050919050565b7f5472616e7366657220616d6f756e742068617320746f2062652067726561746560008201527f72207468616e20302e0000000000000000000000000000000000000000000000602082015250565b600061084f6029836103f5565b915061085a826107f3565b604082019050919050565b6000602082019050818103600083015261087e81610842565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006108bf826105cc565b91506108ca836105cc565b92508282026108d8816105cc565b915082820484148315176108ef576108ee610885565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000610930826105cc565b915061093b836105cc565b92508261094b5761094a6108f6565b5b828204905092915050565b6000610961826105cc565b915061096c836105cc565b925082820390508181111561098457610983610885565b5b92915050565b600081905092915050565b50565b60006109a560008361098a565b91506109b082610995565b600082019050919050565b60006109c682610998565b9150819050919050565b7f5472616e7366657220746f206f776e6572206661696c65640000000000000000600082015250565b6000610a066018836103f5565b9150610a11826109d0565b602082019050919050565b60006020820190508181036000830152610a35816109f9565b9050919050565b7f5472616e7366657220746f2073656c6c6572206661696c656400000000000000600082015250565b6000610a726019836103f5565b9150610a7d82610a3c565b602082019050919050565b60006020820190508181036000830152610aa181610a65565b9050919050565b610ab1816105cc565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b610aec816105cc565b82525050565b6000610afe8383610ae3565b60208301905092915050565b6000602082019050919050565b6000610b2282610ab7565b610b2c8185610ac2565b9350610b3783610ad3565b8060005b83811015610b68578151610b4f8882610af2565b9750610b5a83610b0a565b925050600181019050610b3b565b5085935050505092915050565b6000606082019050610b8a6000830186610aa8565b610b976020830185610aa8565b8181036040830152610ba98184610b17565b905094935050505056fea26469706673582212208bfb00e903458c3c7b4a6f030fc8f54c4bd6aee66b2f2d1c515ccb9602f6afea64736f6c63430008180033
Deployed Bytecode
0x6080604052600436106100225760003560e01c8063db714b391461009d57610062565b36610062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161005990610478565b60405180910390fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161009490610478565b60405180910390fd5b6100b760048036038101906100b29190610699565b6100b9565b005b81600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161012090610741565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1603610197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161018e906107d3565b60405180910390fd5b34600081116101db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101d290610865565b60405180910390fd5b600060646005346101ec91906108b4565b6101f69190610925565b9050600081346102069190610956565b905060008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161024f906109bb565b60006040518083038185875af1925050503d806000811461028c576040519150601f19603f3d011682016040523d82523d6000602084013e610291565b606091505b505080915050806102d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ce90610a1c565b60405180910390fd5b8673ffffffffffffffffffffffffffffffffffffffff16826040516102fb906109bb565b60006040518083038185875af1925050503d8060008114610338576040519150601f19603f3d011682016040523d82523d6000602084013e61033d565b606091505b50508091505080610383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161037a90610a88565b60405180910390fd5b8673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4ed0cc3af6daabc221db8a229b7b3674b3d59be92b42a54d0cf05a171865954834868a6040516103e493929190610b75565b60405180910390a350505050505050565b600082825260208201905092915050565b7f5468697320636f6e747261637420646f6573206e6f742061636365707420646960008201527f72656374204574686572207472616e73666572732e0000000000000000000000602082015250565b60006104626035836103f5565b915061046d82610406565b604082019050919050565b6000602082019050818103600083015261049181610455565b9050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006104d7826104ac565b9050919050565b6104e7816104cc565b81146104f257600080fd5b50565b600081359050610504816104de565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6105588261050f565b810181811067ffffffffffffffff8211171561057757610576610520565b5b80604052505050565b600061058a610498565b9050610596828261054f565b919050565b600067ffffffffffffffff8211156105b6576105b5610520565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b6105df816105cc565b81146105ea57600080fd5b50565b6000813590506105fc816105d6565b92915050565b60006106156106108461059b565b610580565b90508083825260208201905060208402830185811115610638576106376105c7565b5b835b81811015610661578061064d88826105ed565b84526020840193505060208101905061063a565b5050509392505050565b600082601f8301126106805761067f61050a565b5b8135610690848260208601610602565b91505092915050565b600080604083850312156106b0576106af6104a2565b5b60006106be858286016104f5565b925050602083013567ffffffffffffffff8111156106df576106de6104a7565b5b6106eb8582860161066b565b9150509250929050565b7f496e76616c69642064657374696e6174696f6e20616464726573730000000000600082015250565b600061072b601b836103f5565b9150610736826106f5565b602082019050919050565b6000602082019050818103600083015261075a8161071e565b9050919050565b7f53656e64657220616e6420726563697069656e742063616e6e6f74206265207460008201527f68652073616d652e000000000000000000000000000000000000000000000000602082015250565b60006107bd6028836103f5565b91506107c882610761565b604082019050919050565b600060208201905081810360008301526107ec816107b0565b9050919050565b7f5472616e7366657220616d6f756e742068617320746f2062652067726561746560008201527f72207468616e20302e0000000000000000000000000000000000000000000000602082015250565b600061084f6029836103f5565b915061085a826107f3565b604082019050919050565b6000602082019050818103600083015261087e81610842565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006108bf826105cc565b91506108ca836105cc565b92508282026108d8816105cc565b915082820484148315176108ef576108ee610885565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000610930826105cc565b915061093b836105cc565b92508261094b5761094a6108f6565b5b828204905092915050565b6000610961826105cc565b915061096c836105cc565b925082820390508181111561098457610983610885565b5b92915050565b600081905092915050565b50565b60006109a560008361098a565b91506109b082610995565b600082019050919050565b60006109c682610998565b9150819050919050565b7f5472616e7366657220746f206f776e6572206661696c65640000000000000000600082015250565b6000610a066018836103f5565b9150610a11826109d0565b602082019050919050565b60006020820190508181036000830152610a35816109f9565b9050919050565b7f5472616e7366657220746f2073656c6c6572206661696c656400000000000000600082015250565b6000610a726019836103f5565b9150610a7d82610a3c565b602082019050919050565b60006020820190508181036000830152610aa181610a65565b9050919050565b610ab1816105cc565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b610aec816105cc565b82525050565b6000610afe8383610ae3565b60208301905092915050565b6000602082019050919050565b6000610b2282610ab7565b610b2c8185610ac2565b9350610b3783610ad3565b8060005b83811015610b68578151610b4f8882610af2565b9750610b5a83610b0a565b925050600181019050610b3b565b5085935050505092915050565b6000606082019050610b8a6000830186610aa8565b610b976020830185610aa8565b8181036040830152610ba98184610b17565b905094935050505056fea26469706673582212208bfb00e903458c3c7b4a6f030fc8f54c4bd6aee66b2f2d1c515ccb9602f6afea64736f6c63430008180033
Deployed Bytecode Sourcemap
147:2524:0:-:0;;;;;;;;;;;;;;;;;;;;;;;2411:63;;;;;;;;;;:::i;:::-;;;;;;;;147:2524;2597:63;;;;;;;;;;:::i;:::-;;;;;;;;1496:805;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;1673:18;816:1;786:32;;:18;:32;;;764:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;920:18;906:32;;:10;:32;;;884:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;1725:9:::1;1170:1;1161:6;:10;1153:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;1752:18:::2;1791:3;1786:1;1774:9;:13;;;;:::i;:::-;1773:21;;;;:::i;:::-;1752:42;;1822:14;1851:10;1839:9;:22;;;;:::i;:::-;1822:39;;1874:12;1911:5:::0;::::2;;;;;;;;;;:10;;1929;1911:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1897:47;;;;;1963:7;1955:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;2026:18;:23;;2057:6;2026:42;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2012:56;;;;;2087:7;2079:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;2190:18;2142:151;;2165:10;2142:151;;;2223:9;2247:10;2272;2142:151;;;;;;;;:::i;:::-;;;;;;;;1741:560;;;1017:1:::1;1496:805:::0;;;:::o;7:169:1:-;91:11;125:6;120:3;113:19;165:4;160:3;156:14;141:29;;7:169;;;;:::o;182:240::-;322:34;318:1;310:6;306:14;299:58;391:23;386:2;378:6;374:15;367:48;182:240;:::o;428:366::-;570:3;591:67;655:2;650:3;591:67;:::i;:::-;584:74;;667:93;756:3;667:93;:::i;:::-;785:2;780:3;776:12;769:19;;428:366;;;:::o;800:419::-;966:4;1004:2;993:9;989:18;981:26;;1053:9;1047:4;1043:20;1039:1;1028:9;1024:17;1017:47;1081:131;1207:4;1081:131;:::i;:::-;1073:139;;800:419;;;:::o;1225:75::-;1258:6;1291:2;1285:9;1275:19;;1225:75;:::o;1306:117::-;1415:1;1412;1405:12;1429:117;1538:1;1535;1528:12;1552:126;1589:7;1629:42;1622:5;1618:54;1607:65;;1552:126;;;:::o;1684:104::-;1729:7;1758:24;1776:5;1758:24;:::i;:::-;1747:35;;1684:104;;;:::o;1794:138::-;1875:32;1901:5;1875:32;:::i;:::-;1868:5;1865:43;1855:71;;1922:1;1919;1912:12;1855:71;1794:138;:::o;1938:155::-;1992:5;2030:6;2017:20;2008:29;;2046:41;2081:5;2046:41;:::i;:::-;1938:155;;;;:::o;2099:117::-;2208:1;2205;2198:12;2222:102;2263:6;2314:2;2310:7;2305:2;2298:5;2294:14;2290:28;2280:38;;2222:102;;;:::o;2330:180::-;2378:77;2375:1;2368:88;2475:4;2472:1;2465:15;2499:4;2496:1;2489:15;2516:281;2599:27;2621:4;2599:27;:::i;:::-;2591:6;2587:40;2729:6;2717:10;2714:22;2693:18;2681:10;2678:34;2675:62;2672:88;;;2740:18;;:::i;:::-;2672:88;2780:10;2776:2;2769:22;2559:238;2516:281;;:::o;2803:129::-;2837:6;2864:20;;:::i;:::-;2854:30;;2893:33;2921:4;2913:6;2893:33;:::i;:::-;2803:129;;;:::o;2938:311::-;3015:4;3105:18;3097:6;3094:30;3091:56;;;3127:18;;:::i;:::-;3091:56;3177:4;3169:6;3165:17;3157:25;;3237:4;3231;3227:15;3219:23;;2938:311;;;:::o;3255:117::-;3364:1;3361;3354:12;3378:77;3415:7;3444:5;3433:16;;3378:77;;;:::o;3461:122::-;3534:24;3552:5;3534:24;:::i;:::-;3527:5;3524:35;3514:63;;3573:1;3570;3563:12;3514:63;3461:122;:::o;3589:139::-;3635:5;3673:6;3660:20;3651:29;;3689:33;3716:5;3689:33;:::i;:::-;3589:139;;;;:::o;3751:710::-;3847:5;3872:81;3888:64;3945:6;3888:64;:::i;:::-;3872:81;:::i;:::-;3863:90;;3973:5;4002:6;3995:5;3988:21;4036:4;4029:5;4025:16;4018:23;;4089:4;4081:6;4077:17;4069:6;4065:30;4118:3;4110:6;4107:15;4104:122;;;4137:79;;:::i;:::-;4104:122;4252:6;4235:220;4269:6;4264:3;4261:15;4235:220;;;4344:3;4373:37;4406:3;4394:10;4373:37;:::i;:::-;4368:3;4361:50;4440:4;4435:3;4431:14;4424:21;;4311:144;4295:4;4290:3;4286:14;4279:21;;4235:220;;;4239:21;3853:608;;3751:710;;;;;:::o;4484:370::-;4555:5;4604:3;4597:4;4589:6;4585:17;4581:27;4571:122;;4612:79;;:::i;:::-;4571:122;4729:6;4716:20;4754:94;4844:3;4836:6;4829:4;4821:6;4817:17;4754:94;:::i;:::-;4745:103;;4561:293;4484:370;;;;:::o;4860:700::-;4961:6;4969;5018:2;5006:9;4997:7;4993:23;4989:32;4986:119;;;5024:79;;:::i;:::-;4986:119;5144:1;5169:61;5222:7;5213:6;5202:9;5198:22;5169:61;:::i;:::-;5159:71;;5115:125;5307:2;5296:9;5292:18;5279:32;5338:18;5330:6;5327:30;5324:117;;;5360:79;;:::i;:::-;5324:117;5465:78;5535:7;5526:6;5515:9;5511:22;5465:78;:::i;:::-;5455:88;;5250:303;4860:700;;;;;:::o;5566:177::-;5706:29;5702:1;5694:6;5690:14;5683:53;5566:177;:::o;5749:366::-;5891:3;5912:67;5976:2;5971:3;5912:67;:::i;:::-;5905:74;;5988:93;6077:3;5988:93;:::i;:::-;6106:2;6101:3;6097:12;6090:19;;5749:366;;;:::o;6121:419::-;6287:4;6325:2;6314:9;6310:18;6302:26;;6374:9;6368:4;6364:20;6360:1;6349:9;6345:17;6338:47;6402:131;6528:4;6402:131;:::i;:::-;6394:139;;6121:419;;;:::o;6546:227::-;6686:34;6682:1;6674:6;6670:14;6663:58;6755:10;6750:2;6742:6;6738:15;6731:35;6546:227;:::o;6779:366::-;6921:3;6942:67;7006:2;7001:3;6942:67;:::i;:::-;6935:74;;7018:93;7107:3;7018:93;:::i;:::-;7136:2;7131:3;7127:12;7120:19;;6779:366;;;:::o;7151:419::-;7317:4;7355:2;7344:9;7340:18;7332:26;;7404:9;7398:4;7394:20;7390:1;7379:9;7375:17;7368:47;7432:131;7558:4;7432:131;:::i;:::-;7424:139;;7151:419;;;:::o;7576:228::-;7716:34;7712:1;7704:6;7700:14;7693:58;7785:11;7780:2;7772:6;7768:15;7761:36;7576:228;:::o;7810:366::-;7952:3;7973:67;8037:2;8032:3;7973:67;:::i;:::-;7966:74;;8049:93;8138:3;8049:93;:::i;:::-;8167:2;8162:3;8158:12;8151:19;;7810:366;;;:::o;8182:419::-;8348:4;8386:2;8375:9;8371:18;8363:26;;8435:9;8429:4;8425:20;8421:1;8410:9;8406:17;8399:47;8463:131;8589:4;8463:131;:::i;:::-;8455:139;;8182:419;;;:::o;8607:180::-;8655:77;8652:1;8645:88;8752:4;8749:1;8742:15;8776:4;8773:1;8766:15;8793:410;8833:7;8856:20;8874:1;8856:20;:::i;:::-;8851:25;;8890:20;8908:1;8890:20;:::i;:::-;8885:25;;8945:1;8942;8938:9;8967:30;8985:11;8967:30;:::i;:::-;8956:41;;9146:1;9137:7;9133:15;9130:1;9127:22;9107:1;9100:9;9080:83;9057:139;;9176:18;;:::i;:::-;9057:139;8841:362;8793:410;;;;:::o;9209:180::-;9257:77;9254:1;9247:88;9354:4;9351:1;9344:15;9378:4;9375:1;9368:15;9395:185;9435:1;9452:20;9470:1;9452:20;:::i;:::-;9447:25;;9486:20;9504:1;9486:20;:::i;:::-;9481:25;;9525:1;9515:35;;9530:18;;:::i;:::-;9515:35;9572:1;9569;9565:9;9560:14;;9395:185;;;;:::o;9586:194::-;9626:4;9646:20;9664:1;9646:20;:::i;:::-;9641:25;;9680:20;9698:1;9680:20;:::i;:::-;9675:25;;9724:1;9721;9717:9;9709:17;;9748:1;9742:4;9739:11;9736:37;;;9753:18;;:::i;:::-;9736:37;9586:194;;;;:::o;9786:147::-;9887:11;9924:3;9909:18;;9786:147;;;;:::o;9939:114::-;;:::o;10059:398::-;10218:3;10239:83;10320:1;10315:3;10239:83;:::i;:::-;10232:90;;10331:93;10420:3;10331:93;:::i;:::-;10449:1;10444:3;10440:11;10433:18;;10059:398;;;:::o;10463:379::-;10647:3;10669:147;10812:3;10669:147;:::i;:::-;10662:154;;10833:3;10826:10;;10463:379;;;:::o;10848:174::-;10988:26;10984:1;10976:6;10972:14;10965:50;10848:174;:::o;11028:366::-;11170:3;11191:67;11255:2;11250:3;11191:67;:::i;:::-;11184:74;;11267:93;11356:3;11267:93;:::i;:::-;11385:2;11380:3;11376:12;11369:19;;11028:366;;;:::o;11400:419::-;11566:4;11604:2;11593:9;11589:18;11581:26;;11653:9;11647:4;11643:20;11639:1;11628:9;11624:17;11617:47;11681:131;11807:4;11681:131;:::i;:::-;11673:139;;11400:419;;;:::o;11825:175::-;11965:27;11961:1;11953:6;11949:14;11942:51;11825:175;:::o;12006:366::-;12148:3;12169:67;12233:2;12228:3;12169:67;:::i;:::-;12162:74;;12245:93;12334:3;12245:93;:::i;:::-;12363:2;12358:3;12354:12;12347:19;;12006:366;;;:::o;12378:419::-;12544:4;12582:2;12571:9;12567:18;12559:26;;12631:9;12625:4;12621:20;12617:1;12606:9;12602:17;12595:47;12659:131;12785:4;12659:131;:::i;:::-;12651:139;;12378:419;;;:::o;12803:118::-;12890:24;12908:5;12890:24;:::i;:::-;12885:3;12878:37;12803:118;;:::o;12927:114::-;12994:6;13028:5;13022:12;13012:22;;12927:114;;;:::o;13047:184::-;13146:11;13180:6;13175:3;13168:19;13220:4;13215:3;13211:14;13196:29;;13047:184;;;;:::o;13237:132::-;13304:4;13327:3;13319:11;;13357:4;13352:3;13348:14;13340:22;;13237:132;;;:::o;13375:108::-;13452:24;13470:5;13452:24;:::i;:::-;13447:3;13440:37;13375:108;;:::o;13489:179::-;13558:10;13579:46;13621:3;13613:6;13579:46;:::i;:::-;13657:4;13652:3;13648:14;13634:28;;13489:179;;;;:::o;13674:113::-;13744:4;13776;13771:3;13767:14;13759:22;;13674:113;;;:::o;13823:732::-;13942:3;13971:54;14019:5;13971:54;:::i;:::-;14041:86;14120:6;14115:3;14041:86;:::i;:::-;14034:93;;14151:56;14201:5;14151:56;:::i;:::-;14230:7;14261:1;14246:284;14271:6;14268:1;14265:13;14246:284;;;14347:6;14341:13;14374:63;14433:3;14418:13;14374:63;:::i;:::-;14367:70;;14460:60;14513:6;14460:60;:::i;:::-;14450:70;;14306:224;14293:1;14290;14286:9;14281:14;;14246:284;;;14250:14;14546:3;14539:10;;13947:608;;;13823:732;;;;:::o;14561:593::-;14760:4;14798:2;14787:9;14783:18;14775:26;;14811:71;14879:1;14868:9;14864:17;14855:6;14811:71;:::i;:::-;14892:72;14960:2;14949:9;14945:18;14936:6;14892:72;:::i;:::-;15011:9;15005:4;15001:20;14996:2;14985:9;14981:18;14974:48;15039:108;15142:4;15133:6;15039:108;:::i;:::-;15031:116;;14561:593;;;;;;:::o
Swarm Source
ipfs://8bfb00e903458c3c7b4a6f030fc8f54c4bd6aee66b2f2d1c515ccb9602f6afea
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.