More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 27 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 2310647 | 35 hrs ago | IN | 0 ETH | 0.00000652 | ||||
Withdraw | 2285352 | 43 hrs ago | IN | 0 ETH | 0.00000539 | ||||
Withdraw | 2284093 | 43 hrs ago | IN | 0 ETH | 0.00000637 | ||||
Withdraw | 2283771 | 43 hrs ago | IN | 0 ETH | 0.0000058 | ||||
Withdraw | 2280164 | 44 hrs ago | IN | 0 ETH | 0.00000594 | ||||
Withdraw | 2279415 | 44 hrs ago | IN | 0 ETH | 0.00000536 | ||||
Withdraw | 2279380 | 44 hrs ago | IN | 0 ETH | 0.00000519 | ||||
Withdraw | 2279367 | 44 hrs ago | IN | 0 ETH | 0.00000568 | ||||
Withdraw | 2277952 | 45 hrs ago | IN | 0 ETH | 0.00000494 | ||||
Withdraw | 2277716 | 45 hrs ago | IN | 0 ETH | 0.00000515 | ||||
Withdraw | 2277702 | 45 hrs ago | IN | 0 ETH | 0.00000528 | ||||
Withdraw | 2277673 | 45 hrs ago | IN | 0 ETH | 0.00000563 | ||||
Mint | 2277309 | 45 hrs ago | IN | 0 ETH | 0.0000049 | ||||
Mint | 2276167 | 45 hrs ago | IN | 0 ETH | 0.00000516 | ||||
Transfer | 2275554 | 45 hrs ago | IN | 0.16 ETH | 0.00000607 | ||||
Transfer | 2275546 | 45 hrs ago | IN | 0.08 ETH | 0.00000552 | ||||
Transfer | 2275506 | 45 hrs ago | IN | 1.6 ETH | 0.00000674 | ||||
Transfer | 2275479 | 45 hrs ago | IN | 0.8 ETH | 0.00000522 | ||||
Transfer | 2275446 | 45 hrs ago | IN | 0.08 ETH | 0.00000556 | ||||
Transfer | 2275439 | 45 hrs ago | IN | 0.8 ETH | 0.00000602 | ||||
Transfer | 2275435 | 45 hrs ago | IN | 0.08 ETH | 0.00000584 | ||||
Transfer | 2275426 | 45 hrs ago | IN | 0.72 ETH | 0.00000556 | ||||
Transfer | 2275403 | 45 hrs ago | IN | 0.8 ETH | 0.0000059 | ||||
Transfer | 2275261 | 45 hrs ago | IN | 1.6 ETH | 0.00000587 | ||||
Transfer | 2275231 | 45 hrs ago | IN | 0.08 ETH | 0.0000075 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
2310647 | 35 hrs ago | 0.08 ETH | ||||
2310647 | 35 hrs ago | 0.08 ETH | ||||
2285352 | 43 hrs ago | 0.08 ETH | ||||
2284093 | 43 hrs ago | 1.6 ETH | ||||
2284093 | 43 hrs ago | 1.6 ETH | ||||
2280164 | 44 hrs ago | 1.6 ETH | ||||
2279415 | 44 hrs ago | 0.16 ETH | ||||
2279380 | 44 hrs ago | 0.08 ETH | ||||
2279367 | 44 hrs ago | 0.72 ETH | ||||
2277952 | 45 hrs ago | 0.8 ETH | ||||
2277716 | 45 hrs ago | 0.8 ETH | ||||
2277702 | 45 hrs ago | 0.8 ETH | ||||
2277673 | 45 hrs ago | 0.4 ETH | ||||
2275554 | 45 hrs ago | 0.16 ETH | ||||
2275546 | 45 hrs ago | 0.08 ETH | ||||
2275506 | 45 hrs ago | 1.6 ETH | ||||
2275479 | 45 hrs ago | 0.8 ETH | ||||
2275446 | 45 hrs ago | 0.08 ETH | ||||
2275439 | 45 hrs ago | 0.8 ETH | ||||
2275435 | 45 hrs ago | 0.08 ETH | ||||
2275426 | 45 hrs ago | 0.72 ETH | ||||
2275403 | 45 hrs ago | 0.8 ETH | ||||
2275261 | 45 hrs ago | 1.6 ETH | ||||
2275231 | 45 hrs ago | 0.08 ETH | ||||
2275201 | 45 hrs ago | 0.4 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
MintOCH
Compiler Version
v0.8.28-1.0.1
ZkSolc Version
v1.5.7
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.28; interface IOCH { function publicMint(address to, uint64 quantity) external payable; function PUBLIC_MINT_TIMESTAMP() external view returns (uint40); function totalSupply() external view returns (uint256); } contract MintOCH { error InvalidAmount(); error WithdrawalFailed(); error OnePerPerson(); error NotStarted(); error WithdrawalsNotEnabled(); error AlreadyStarted(); struct Deposit { address user; uint96 balance; } uint256 public constant cost = 0.069 ether; uint256 public constant costWithFee = 0.08 ether; IOCH public constant OCH = IOCH(0x7c47ea32FD27d1a74Fc6e9F31Ce8162e6Ce070eB); uint256 public immutable startTime; uint256 public constant _MAX_TOTAL_SUPPLY = 10000; address public immutable _owner; Deposit[] public deposits; mapping(address => uint256) public indexToAddress; constructor() { _owner = msg.sender; startTime = uint256(OCH.PUBLIC_MINT_TIMESTAMP()); } receive() external payable { deposit(); } function deposit() public payable { if (block.timestamp >= startTime) revert AlreadyStarted(); if (msg.value % costWithFee != 0) { revert InvalidAmount(); } if (indexToAddress[msg.sender] == 0) { indexToAddress[msg.sender] = deposits.length; deposits.push(Deposit(msg.sender, uint96(msg.value))); } else { deposits[indexToAddress[msg.sender]].balance += uint96(msg.value); if (deposits[indexToAddress[msg.sender]].balance > costWithFee * 5) { revert InvalidAmount(); } } } function mint() external { uint256 nextTokenId = OCH.totalSupply() + 1; for (uint256 i = 0; i < deposits.length; i++) { uint256 mintCount = deposits[i].balance / costWithFee; uint256 differenceToRefund; if (nextTokenId + mintCount > _MAX_TOTAL_SUPPLY) { differenceToRefund = (nextTokenId + mintCount) - _MAX_TOTAL_SUPPLY; mintCount = _MAX_TOTAL_SUPPLY - nextTokenId; } if (mintCount > 0) { // new minter for each batch of 10 for (uint256 j = 0; j < mintCount; j += 10) { uint256 batchSize = j + 10 < mintCount ? 10 : mintCount - j; new Minter{value: cost * batchSize}(deposits[i].user, batchSize); } } unchecked { nextTokenId += mintCount; } delete deposits[i]; payable(_owner).call{value: (costWithFee - cost) * mintCount}(""); deposits[i].user.call{value: differenceToRefund * costWithFee}(""); } } function withdraw() external { uint256 balance = deposits[indexToAddress[msg.sender]].balance; deposits[indexToAddress[msg.sender]].balance = 0; payable(msg.sender).call{value: balance}(""); } function ownerWithdraw() external { if (msg.sender != _owner) revert WithdrawalFailed(); (bool success, ) = payable(_owner).call{value: address(this).balance }(""); if (!success) revert WithdrawalFailed(); } } contract Minter { IOCH public constant OCH = IOCH(0x7c47ea32FD27d1a74Fc6e9F31Ce8162e6Ce070eB); constructor(address minter, uint256 mintCount) payable { OCH.publicMint{value: msg.value}(minter, uint64(mintCount)); } }
{ "viaIR": false, "codegen": "yul", "remappings": [ "forge-std/=lib/forge-std/src/" ], "evmVersion": "shanghai", "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "optimizer": { "enabled": true, "mode": "3", "fallback_to_optimizing_for_size": false, "disable_system_request_memoization": true }, "metadata": {}, "libraries": {}, "enableEraVMExtensions": false, "forceEVMLA": false }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyStarted","type":"error"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"NotStarted","type":"error"},{"inputs":[],"name":"OnePerPerson","type":"error"},{"inputs":[],"name":"WithdrawalFailed","type":"error"},{"inputs":[],"name":"WithdrawalsNotEnabled","type":"error"},{"inputs":[],"name":"OCH","outputs":[{"internalType":"contract IOCH","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_MAX_TOTAL_SUPPLY","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costWithFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"deposits","outputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint96","name":"balance","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"indexToAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ownerWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
9c4d535b00000000000000000000000000000000000000000000000000000000000000000100014fca00656c3cc7232e5ae90474704ce4bd7db09b1900ff384d75f100f300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0002000000000002000b0000000000020000006003100270000001130330019700010000003103550000000100200190000001e30000c13d0000008002000039000000400020043f000000040030008c000002280000413d000000000201043b000000e0022002700000011a0020009c000001810000c13d0000000001000416000000000001004b000002d10000c13d0000013901000041000000800010043f0000000001000414000001130010009c0000011301008041000000c0011002100000013a011001c70000011602000041044604410000040f00000060031002700000011303300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000000800a0000390000002a0000613d000000000801034f000000008908043c000000000a9a043600000000005a004b000000260000c13d000000000006004b000000370000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00010000000103550000000100200190000002a70000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000002d10000413d000000800100043d000300010010003e000001540000613d0000012901000041000000000010044300000000010004120000000400100443000000200100003900000024001004430000000001000414000001130010009c0000011301008041000000c0011002100000012d011001c70000800502000039044604410000040f0000000100200190000001e20000613d000000000201043b000000000100041a000000000001004b0000000303000029000003290000613d0001012a0020019b0000000008000019000000600000013d00000003039000290000000108800039000000000100041a000000000018004b000003290000813d000001350280009a000600000002001d000000000202041a000000a002200270000001370920012a000300000003001d000000000093001a000001540000413d00000003030000290000000002930019000027100220008c000200000000001d000000720000a13d000027100030008c000001540000213d00000003030000290000271009300089000200000002001d000000000009004b000400000008001d000500000009001d000000ba0000613d0000000001000019000001420010009c000001540000213d0000000a041000390000000002190049000000000094004b0000000a0200403900000138032000d1000001380130012a000000000012004b000001540000c13d000000000100041a000000000081004b000002890000a13d000000000000043f000000400100043d0000013b0010009c0000032b0000813d000700000004001d0000000604000029000000000404041a000000a405100039000000000025043500000024021000390000013c0500004100000000005204350000012a024001970000008404100039000000000024043500000064021000390000000004000414000000400500003900000000005204350000004402100039000000600500003900000000005204350000013d02000041000000000021043500000004021000390000000000020435000001130010009c00000113010080410000004001100210000001130040009c0000011304008041000000c002400210000000000121019f0000013e011001c7000000000003004b000000ac0000613d000080090200003900008006040000390000000105000039000000ad0000013d00008006020000390446043c0000040f0000000100200190000000050900002900000007020000290000015d0000613d000000000101043b000000000001004b0000015a0000613d000000000092004b00000000010200190000000408000029000000770000413d000000000100041a000000000081004b000002890000a13d000000000000043f0000000601000029000000000001041b0000013f039000d10000013f0130012a000000000019004b000001540000c13d00000000010004140000000102000029000000040020008c000000cb0000c13d0000000002000031000000000002004b000000df0000c13d000001040000013d000001130010009c0000011301008041000000c001100210000000000003004b000000d50000613d00000130011001c7000080090200003900000001040000290000000005000019000000d60000013d00000001020000290446043c0000040f0000006002100270000001130020019d0000011302200197000100000001035500000004080000290000000509000029000000000002004b000001040000613d0000001f0120003900000143011001970000003f011000390000014303100197000000400100043d0000000003310019000000000013004b00000000040000390000000104004039000001310030009c0000032b0000213d00000001004001900000032b0000c13d000000400030043f0000000005210436000001430320019800000000013500190000000104000367000000f70000613d000000000604034f000000006706043c0000000005750436000000000015004b000000f30000c13d0000001f05200190000001040000613d000000000334034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000000100041a000000000081004b000002890000a13d000000000000043f0000000601000029000000000101041a0000012a041001970000000201000029000000000001004b0000011e0000613d00000137031000d100000000011300d9000001370010009c000001540000c13d0000000001000414000000040040008c0000012c0000613d000000000003004b000001210000613d000001130010009c0000011301008041000000c00110021000000130011001c700008009020000390000000005000019000001250000013d0000000001000414000000040040008c0000012c0000613d000001130010009c0000011301008041000000c00110021000000000020400190446043c0000040f00010000000103550000006001100270000001130010019d000001130210019700000004080000290000000509000029000000000002004b0000005b0000613d0000001f0120003900000143011001970000003f011000390000014303100197000000400100043d0000000003310019000000000013004b00000000040000390000000104004039000001310030009c0000032b0000213d00000001004001900000032b0000c13d000000400030043f0000000005210436000001430320019800000000013500190000000104000367000001460000613d000000000604034f000000006706043c0000000005750436000000000015004b000001420000c13d0000001f022001900000005b0000613d000000000334034f0000000302200210000000000401043300000000042401cf000000000424022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000242019f00000000002104350000005b0000013d0000014001000041000000000010043f0000001101000039000000040010043f0000014101000041000004480001043000000001010003670000000002000031000001610000013d00010000000103550000006002100270000001130020019d000001130220019700000143052001980000001f0620018f000000400300043d00000000045300190000016c0000613d000000000701034f0000000008030019000000007907043c0000000008980436000000000048004b000001680000c13d000000000006004b000001790000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000001130020009c00000113020080410000006001200210000001130030009c00000113030080410000004002300210000000000112019f00000448000104300000011b0020009c000001920000a13d0000011c0020009c000001c60000213d000001200020009c000002b30000613d000001210020009c0000022d0000613d000001220020009c000002d10000c13d0000000001000416000000000001004b000002d10000c13d0000271001000039000000800010043f0000012b01000041000004470001042e000001230020009c000001cd0000a13d000001240020009c0000023d0000613d000001250020009c000002440000613d000001260020009c000002d10000c13d0000000001000416000000000001004b000002d10000c13d0000012901000041000000000010044300000000010004120000000400100443000000200100003900000024001004430000000001000414000001130010009c0000011301008041000000c0011002100000012d011001c70000800502000039044604410000040f0000000100200190000001e20000613d000000000101043b0000012a011001970000000002000411000000000012004b000003310000c13d0000012e010000410000000000100443000000000100041000000004001004430000000001000414000001130010009c0000011301008041000000c0011002100000012f011001c70000800a02000039044604410000040f0000000100200190000001e20000613d000000000301043b00000000010004140000000002000411000000040020008c000002f10000c13d00000001020000390000000001000031000002ff0000013d0000011d0020009c000002ba0000613d0000011e0020009c0000028f0000613d0000011f0020009c0000022a0000613d000002d10000013d000001270020009c000002a00000613d000001280020009c000002d10000c13d000000240030008c000002d10000413d0000000002000416000000000002004b000002d10000c13d0000000401100370000000000101043b0000012a0010009c000002d10000213d000000000010043f0000000101000039000000200010043f044604110000040f000000000101041a000000800010043f0000012b01000041000004470001042e000000000001042f000000c001000039000000400010043f0000000001000416000000000001004b000002d10000c13d0000000001000411000000a00010043f0000011401000041000000c00010043f0000000001000414000001130010009c0000011301008041000000c00110021000000115011001c70000011602000041044604410000040f00000060031002700000011303300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000c0057001bf000000c00a000039000002020000613d000000000801034f000000008908043c000000000a9a043600000000005a004b000001fe0000c13d000000000006004b0000020f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00010000000103550000000100200190000002d30000613d0000001f01400039000000600110018f000000c001100039000000400010043f000000200030008c000002d10000413d000000c00100043d000001180010009c000002d10000213d000000800010043f00000140000004430000016000100443000000a00100043d00000020020000390000018000200443000001a0001004430000010000200443000000020100003900000120001004430000011901000041000004470001042e000000000003004b000002d10000c13d044603700000040f0000000001000019000004470001042e0000000001000416000000000001004b000002d10000c13d0000000001000412000b00000001001d000a00000000003d0000800501000039000000440300003900000000040004150000000b0440008a000000050440021000000129020000410446041e0000040f000000800010043f0000012b01000041000004470001042e0000000001000416000000000001004b000002d10000c13d0000013701000041000000800010043f0000012b01000041000004470001042e0000000001000416000000000001004b000002d10000c13d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001130010009c0000011301008041000000c00110021000000134011001c70000801002000039044604410000040f0000000100200190000002d10000613d000000000101043b000000000101041a000000000200041a000000000012004b000002890000a13d000001350110009a000000000101041a000700000001001d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001130010009c0000011301008041000000c00110021000000134011001c70000801002000039044604410000040f0000000100200190000002d10000613d000000000101043b000000000101041a000000000200041a000000000012004b000002890000a13d000000000000043f000001350110009a000000000201041a0000012a02200197000000000021041b00000000010004140000000002000411000000040020008c000002860000613d0000000702000029000000a003200270000001130010009c0000011301008041000000c001100210000001360020009c00000130011081c700000000040004110000800902000039000000000204401900000000050000190446043c0000040f0000006002100270000001130020019d0001000000010355044603410000040f0000000001000019000004470001042e0000014001000041000000000010043f0000003201000039000000040010043f000001410100004100000448000104300000000001000416000000000001004b000002d10000c13d0000000001000412000900000001001d000800200000003d000080050100003900000044030000390000000004000415000000090440008a000000050440021000000129020000410446041e0000040f0000012a01100197000000800010043f0000012b01000041000004470001042e0000000001000416000000000001004b000002d10000c13d0000013801000041000000800010043f0000012b01000041000004470001042e0000001f0530018f0000011706300198000000400200043d0000000004620019000002de0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000002ae0000c13d000002de0000013d0000000001000416000000000001004b000002d10000c13d0000011601000041000000800010043f0000012b01000041000004470001042e000000240030008c000002d10000413d0000000002000416000000000002004b000002d10000c13d0000000401100370000000000101043b000000000200041a000000000021004b000002d10000813d044603350000040f000000000101041a000000400200043d0000002003200039000000a00410027000000000004304350000012a011001970000000000120435000001130020009c000001130200804100000040012002100000012c011001c7000004470001042e000000000100001900000448000104300000001f0530018f0000011706300198000000400200043d0000000004620019000002de0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000002da0000c13d000000000005004b000002eb0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000001130020009c00000113020080410000004002200210000000000112019f0000044800010430000001130010009c0000011301008041000000c001100210000000000003004b000002fa0000613d00000130011001c70000800902000039000000000400041100000000050000190446043c0000040f00010000000103550000006001100270000001130010019d0000011301100197000000000001004b000003270000613d0000001f0410003900000143044001970000003f044000390000014305400197000000400400043d0000000005540019000000000045004b00000000060000390000000106004039000001310050009c0000032b0000213d00000001006001900000032b0000c13d000000400050043f000000000614043600000143031001980000001f0410018f000000000136001900000001050003670000031a0000613d000000000705034f000000007807043c0000000006860436000000000016004b000003160000c13d000000000004004b000003270000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003104350000000100200190000003310000613d0000000001000019000004470001042e0000014001000041000000000010043f0000004101000039000000040010043f000001410100004100000448000104300000013201000041000000000010043f00000133010000410000044800010430000000000200041a000000000012004b0000033b0000a13d000001350110009a000000000000043f000000000001042d0000014001000041000000000010043f0000003201000039000000040010043f000001410100004100000448000104300000000001000032000003690000613d0000001f0310003900000143033001970000003f033000390000014304300197000000400300043d0000000004430019000000000034004b00000000050000390000000105004039000001310040009c0000036a0000213d00000001005001900000036a0000c13d000000400040043f000000000513043600000143021001980000001f0310018f000000000125001900000001040003670000035c0000613d000000000604034f000000006706043c0000000005750436000000000015004b000003580000c13d000000000003004b000003690000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000000000001042d0000014001000041000000000010043f0000004101000039000000040010043f000001410100004100000448000104300001000000000002000001290100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000001130010009c0000011301008041000000c0011002100000012d011001c70000800502000039044604410000040f0000000100200190000003f30000613d000000000101043b000100000001001d000001440100004100000000001004430000000001000414000001130010009c0000011301008041000000c00110021000000145011001c70000800b02000039044604410000040f0000000100200190000003f30000613d000000000101043b000000010010006c000004000000813d0000000001000416000001371010012a000000000001004b000003f60000c13d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001130010009c0000011301008041000000c00110021000000134011001c70000801002000039044604410000040f0000000100200190000003f40000613d000000000200041a000000000101043b000000000101041a000000000001004b000003cb0000613d000000000012004b000003fa0000a13d00000000020004160000014703200197000001350110009a000000000201041a000000a0042002700000000003340019000001480030009c0000040a0000813d0000012a02200197000000a003300210000000000223019f000000000021041b0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001130010009c0000011301008041000000c00110021000000134011001c70000801002000039044604410000040f0000000100200190000003f40000613d000000000101043b000000000101041a000000000200041a000000000012004b000003fa0000a13d000000000000043f000001350110009a000000000101041a000001490010009c000003f60000213d000000000001042d000100000002001d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001130010009c0000011301008041000000c00110021000000134011001c70000801002000039044604410000040f0000000100200190000003f40000613d000000000101043b0000000104000029000000000041041b000000400100043d0000014b0010009c000004040000813d0000004002100039000000400020043f00000000020004110000000002210436000000000300041600000147033001970000000000320435000001310040009c000004040000213d0000000103400039000000000030041b000000000000043f00000000010104330000012a011001970000000002020433000000a002200210000000000112019f000001350240009a000000000012041b000000000001042d000000000001042f000000000100001900000448000104300000014a01000041000000000010043f000001330100004100000448000104300000014001000041000000000010043f0000003201000039000000040010043f000001410100004100000448000104300000014601000041000000000010043f000001330100004100000448000104300000014001000041000000000010043f0000004101000039000000040010043f000001410100004100000448000104300000014001000041000000000010043f0000001101000039000000040010043f00000141010000410000044800010430000000000001042f0000000001000414000001130010009c0000011301008041000000c00110021000000134011001c70000801002000039044604410000040f00000001002001900000041c0000613d000000000101043b000000000001042d0000000001000019000004480001043000000000050100190000000000200443000000050030008c0000042c0000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b000004240000413d000001130030009c000001130300804100000060013002100000000002000414000001130020009c0000011302008041000000c002200210000000000112019f0000014c011001c70000000002050019044604410000040f00000001002001900000043b0000613d000000000101043b000000000001042d000000000001042f0000043f002104210000000102000039000000000001042d0000000002000019000000000001042d00000444002104230000000102000039000000000001042d0000000002000019000000000001042d0000044600000432000004470001042e000004480001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff9a4f41ba000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000c000000000000000000000000000000000000000007c47ea32fd27d1a74fc6e9f31ce8162e6ce070eb00000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000000000ffffffffff00000002000000000000000000000000000000c0000001000000000000000000000000000000000000000000000000000000000000000000000000001249c58b0000000000000000000000000000000000000000000000000000000050ea3a2e00000000000000000000000000000000000000000000000000000000b02c43cf00000000000000000000000000000000000000000000000000000000b02c43d000000000000000000000000000000000000000000000000000000000b2bdfa7b00000000000000000000000000000000000000000000000000000000d0e30db00000000000000000000000000000000000000000000000000000000050ea3a2f0000000000000000000000000000000000000000000000000000000078e9792500000000000000000000000000000000000000000000000000000000961df4ac00000000000000000000000000000000000000000000000000000000311059110000000000000000000000000000000000000000000000000000000031105912000000000000000000000000000000000000000000000000000000003ccfd60b000000000000000000000000000000000000000000000000000000004311de8f0000000000000000000000000000000000000000000000000000000013faede60000000000000000000000000000000000000000000000000000000015718831310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000004000000000000000000000000002000002000000000000000000000000000000440000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000002000000000000000000000000000000240000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff27fcd9d10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000200000000000000000000000000000000000040000000000000000000000000d6f21326ab749d5729fcba5677c79037b459436ab7bff709c9d06ce9f10c1a9d0000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000f523226980800018160ddd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7c01000041231e1bfb87464668d6e3d5a971778089e37264ffc800d0bfa92e349a9c4d535bdea7cd8a978f128b93471df48c7dbab89d703809115bdc118c235bfd02000000000000000000000000000000000000c400000000000000000000000000000000000000000000000000000000000000000000000000271471148780004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000001fbde445000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000100000000000000000000000000000000058d15e176280000ffffffffffffffffffffffffffffffffffffffff2c5211c600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc0020000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003fe8b15a9836b73009fa3d08a3bfbe716d8d99ddf0ef32ffa8c2773896d9e31d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.