@indexing/jiti 0.0.58 → 0.0.60

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/main.js CHANGED
@@ -3,6 +3,7 @@ var $8zHUo$viem = require("viem");
3
3
  var $8zHUo$tronweb = require("tronweb");
4
4
  var $8zHUo$cosmjsprotosigning = require("@cosmjs/proto-signing");
5
5
  var $8zHUo$cosmjsstargate = require("@cosmjs/stargate");
6
+ var $8zHUo$bs58 = require("bs58");
6
7
 
7
8
 
8
9
  function $parcel$export(e, n, v, s) {
@@ -57,6 +58,9 @@ const $6bd2ca253e883278$var$PARTIAL_VM_TO_NETWORK_MAP = {
57
58
  FILECOIN: [
58
59
  "FILECOIN"
59
60
  ],
61
+ HYPERCORE: [
62
+ "HYPERCORE"
63
+ ],
60
64
  RIPPLE: [
61
65
  "RIPPLE"
62
66
  ],
@@ -140,7 +144,7 @@ function $56acd58307ebf8e6$export$363ea1acea6aebd6(block) {
140
144
  case "SUI":
141
145
  return parseInt(block.sequence, 10);
142
146
  case "SVM":
143
- return block.blockHeight;
147
+ return block.parentSlot + 1;
144
148
  case "TON":
145
149
  return block.seqno;
146
150
  case "UTXO":
@@ -235,7 +239,7 @@ function $b8691f253b6baa6e$export$ec64f6024312bb14(block) {
235
239
  case "APTOS":
236
240
  return new Date(parseInt(block.transactions[0].timestamp, 10) / 1000);
237
241
  case "CARDANO":
238
- return new Date(block.timestamp * 1000);
242
+ return new Date(block.timestamp);
239
243
  case "COSMOS":
240
244
  return new Date(block.block.header.time);
241
245
  case "EVM":
@@ -807,7 +811,7 @@ const $60d24c82dc5feb2e$export$893111d8d332e195 = {
807
811
  match: (block)=>(0, $6bd2ca253e883278$export$ae001c77434c5340)(block) === "CARDANO",
808
812
  transform (block) {
809
813
  let transfers = [];
810
- const blockTimestamp = new Date(block.timestamp * 1000).toISOString();
814
+ const blockTimestamp = new Date(block.timestamp).toISOString();
811
815
  for (const tx of block.transactions || []){
812
816
  const typedTx = tx;
813
817
  if (!Array.isArray(typedTx.operations)) continue;
@@ -857,7 +861,7 @@ const $60d24c82dc5feb2e$export$893111d8d332e195 = {
857
861
  amount: 1110000n,
858
862
  blockNumber: 11443286,
859
863
  from: "addr1qymdv285few5tyqvya86rl97r9e608njs37shfew6l2nn473aw2pcnrcvfwfgg2dnew99m4tjj0apsu7232w2euzwpysndh0h3",
860
- timestamp: "+057068-01-19T05:23:20.000Z",
864
+ timestamp: "2025-02-05T03:34:53.000Z",
861
865
  to: "addr1q9syxu908lef7r6rsvk0h7gsx3rxj22cuykgx2a2l4hcfd8e9y2e9vtv4w9dyej96w99wwj8hwgc273862lk6a3vt30qjjrund",
862
866
  token: null,
863
867
  tokenType: "NATIVE",
@@ -1336,145 +1340,438 @@ const $3b9b8f5747dcca8e$export$722698bc663d0ac0 = {
1336
1340
 
1337
1341
 
1338
1342
 
1343
+
1344
+
1345
+ var $fc7ca671efecc378$require$Buffer = $8zHUo$buffer.Buffer;
1346
+ const $fc7ca671efecc378$var$SYSTEM_PROGRAM = "11111111111111111111111111111111";
1347
+ const $fc7ca671efecc378$var$WSOL_MINT = "So11111111111111111111111111111111111111112";
1348
+ const $fc7ca671efecc378$var$SPL_TOKEN_PROGRAM = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA";
1349
+ const $fc7ca671efecc378$var$SPL_TOKEN_2022_PROGRAM = "TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb";
1350
+ const $fc7ca671efecc378$var$ASSOCIATED_TOKEN_ACCOUNT_PROGRAM = "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL";
1339
1351
  const $fc7ca671efecc378$export$a51565c56ceacb0a = {
1340
1352
  match: (block)=>(0, $6bd2ca253e883278$export$ae001c77434c5340)(block) === "SVM",
1341
1353
  transform (block) {
1342
1354
  let transfers = [];
1343
1355
  for (const tx of block.transactions || []){
1356
+ const txTransfers = [];
1344
1357
  const svmTx = tx;
1345
1358
  const txHash = svmTx.transaction.signatures[0];
1346
1359
  const timestamp = block.blockTime ? new Date(block.blockTime * 1000).toISOString() : null;
1347
- const allAccounts = svmTx.transaction.message.accountKeys.concat(svmTx.meta.loadedAddresses.writable).concat(svmTx.meta.loadedAddresses.readonly);
1360
+ const allAccounts = svmTx.transaction.message.accountKeys.concat(svmTx.meta.loadedAddresses.writable).concat(svmTx.meta.loadedAddresses.readonly).map((a)=>typeof a === "string" ? a : a?.pubkey);
1348
1361
  let txFee = BigInt(svmTx.meta.fee);
1349
1362
  if (txFee < BigInt(10)) txFee = txFee * BigInt(Math.pow(10, 9));
1350
- const transfersByKey = {};
1351
- for (const post of svmTx.meta.postTokenBalances){
1352
- let matched = false;
1353
- for (const pre of svmTx.meta.preTokenBalances)if (post.mint === pre.mint && post.owner === pre.owner) {
1354
- let diff = BigInt(post.uiTokenAmount.amount) - BigInt(pre.uiTokenAmount.amount);
1355
- if (diff === BigInt(0)) {
1356
- matched = true;
1357
- continue;
1358
- }
1359
- const isNegDiff = diff < 0;
1360
- if (diff < 0) diff = -diff;
1361
- const key = `${post.mint}-${diff.toString()}`;
1362
- const txfer = {
1363
- amount: diff,
1364
- blockNumber: block.blockHeight,
1365
- from: pre.owner,
1366
- timestamp: timestamp,
1367
- to: post.owner,
1368
- transactionGasFee: txFee,
1369
- transactionHash: txHash,
1370
- token: post.mint,
1371
- tokenType: "TOKEN"
1372
- };
1373
- if (isNegDiff) delete txfer.to;
1374
- else delete txfer.from;
1375
- if (!transfersByKey[key]) transfersByKey[key] = [
1376
- txfer
1377
- ];
1378
- else {
1379
- let didMerge = false;
1380
- for(let tbi = 0; tbi < transfersByKey[key].length; tbi += 1)if (txfer.to && !transfersByKey[key][tbi].to || txfer.from && !transfersByKey[key][tbi].from) {
1381
- didMerge = true;
1382
- transfersByKey[key][tbi] = Object.assign(transfersByKey[key][tbi] || {}, txfer);
1383
- break;
1363
+ const signerIdx = svmTx.transaction.signatures.length - 1;
1364
+ const signer = allAccounts[signerIdx];
1365
+ const feePayer = allAccounts[0];
1366
+ // handle tx fee
1367
+ txTransfers.push({
1368
+ amount: txFee,
1369
+ blockNumber: block.parentSlot + 1,
1370
+ from: feePayer,
1371
+ index: "0",
1372
+ timestamp: timestamp,
1373
+ to: null,
1374
+ transactionGasFee: txFee,
1375
+ transactionHash: txHash,
1376
+ token: null,
1377
+ tokenType: "NATIVE"
1378
+ });
1379
+ const allUntypedInstructions = [];
1380
+ for(let idx = 0; idx < svmTx.transaction.message.instructions.length; idx += 1){
1381
+ allUntypedInstructions.push({
1382
+ ...svmTx.transaction.message.instructions[idx],
1383
+ index: idx
1384
+ });
1385
+ allUntypedInstructions.push(...svmTx.meta.innerInstructions.filter((ii)=>ii.index === idx).map((ii)=>ii.instructions.map((i, subIdx)=>({
1386
+ ...i,
1387
+ rootIndex: ii.index,
1388
+ index: subIdx
1389
+ }))).flat());
1390
+ }
1391
+ const allInstructions = allUntypedInstructions;
1392
+ const createdAccountsToOwner = {};
1393
+ const previousAccountsClose = {};
1394
+ for(let idx = 0; idx < allInstructions.length; idx += 1){
1395
+ if (svmTx.meta.status?.Err) continue;
1396
+ const inst = allInstructions[idx];
1397
+ const index = `${inst.rootIndex ? `${inst.rootIndex + 1}-` : ""}${inst.index + 1}`;
1398
+ try {
1399
+ const programId = allAccounts[inst.programIdIndex];
1400
+ const instData = (0, ($parcel$interopDefault($8zHUo$bs58))).decode(inst.data);
1401
+ const instSig = Array.from(instData).join(",");
1402
+ const matchingAccounts = inst.accounts.map((a)=>allAccounts[a]);
1403
+ // SPL Transfers
1404
+ if ([
1405
+ $fc7ca671efecc378$var$SPL_TOKEN_PROGRAM,
1406
+ $fc7ca671efecc378$var$SPL_TOKEN_2022_PROGRAM
1407
+ ].includes(programId)) {
1408
+ // TRANSFER, TRANSFER CHECKED
1409
+ if (instSig.startsWith("3,") && inst.accounts.length === 3 || instSig.startsWith("12,") && inst.accounts.length === 4) {
1410
+ const amountData = $fc7ca671efecc378$require$Buffer.from(instData).slice(1, 9);
1411
+ if (amountData.length < 8) continue;
1412
+ const amount = BigInt(amountData.readBigUInt64LE(0).toString());
1413
+ const fromIdx = inst.accounts[0];
1414
+ const toIdx = inst.accounts[inst.accounts.length - 2];
1415
+ let from = createdAccountsToOwner[allAccounts[fromIdx]];
1416
+ let to = createdAccountsToOwner[allAccounts[toIdx]];
1417
+ let mint;
1418
+ for (const ptb of svmTx.meta.preTokenBalances.concat(svmTx.meta.postTokenBalances)){
1419
+ if (ptb.accountIndex === fromIdx) {
1420
+ from = ptb.owner;
1421
+ if (!mint) mint = ptb.mint;
1422
+ }
1423
+ if (ptb.accountIndex === toIdx) {
1424
+ to = ptb.owner;
1425
+ if (!mint) mint = ptb.mint;
1426
+ }
1427
+ if (from && to && mint) break;
1428
+ }
1429
+ // @NOTE: should improve this - currently we assume unknown accounts belong to the signer
1430
+ if (!from) from = signer;
1431
+ if (!to) to = signer;
1432
+ txTransfers.push({
1433
+ amount: amount,
1434
+ blockNumber: block.parentSlot + 1,
1435
+ from: from,
1436
+ fromTokenAccount: allAccounts[fromIdx],
1437
+ index: index,
1438
+ timestamp: timestamp,
1439
+ to: to,
1440
+ toTokenAccount: allAccounts[toIdx],
1441
+ transactionGasFee: txFee,
1442
+ transactionHash: txHash,
1443
+ token: mint,
1444
+ tokenType: "TOKEN"
1445
+ });
1446
+ } else if (instSig === "9") {
1447
+ let solAmount = BigInt(svmTx.meta.preBalances[inst.accounts[0]] || 0);
1448
+ let from = matchingAccounts[0];
1449
+ let wSolAmount = (previousAccountsClose[from] || BigInt(0)) * BigInt(-1);
1450
+ const to = matchingAccounts[2];
1451
+ for (const t of txTransfers){
1452
+ if (t.to === from && !t.token || t.toTokenAccount === from && t.token === $fc7ca671efecc378$var$WSOL_MINT) {
1453
+ solAmount += t.amount;
1454
+ if (t.token === $fc7ca671efecc378$var$WSOL_MINT) wSolAmount -= t.amount;
1455
+ } else if (t.from === from && !t.token || t.fromTokenAccount === from && t.token === $fc7ca671efecc378$var$WSOL_MINT) {
1456
+ solAmount -= t.amount;
1457
+ if (t.token === $fc7ca671efecc378$var$WSOL_MINT) wSolAmount += t.amount;
1458
+ }
1459
+ }
1460
+ txTransfers.push({
1461
+ amount: solAmount,
1462
+ blockNumber: block.parentSlot + 1,
1463
+ from: from,
1464
+ index: index,
1465
+ timestamp: timestamp,
1466
+ to: to,
1467
+ transactionGasFee: txFee,
1468
+ transactionHash: txHash,
1469
+ token: null,
1470
+ tokenType: "NATIVE"
1471
+ });
1472
+ // handle wrap/unwrap of wSOL
1473
+ if (!previousAccountsClose[from]) previousAccountsClose[from] = BigInt(0);
1474
+ if (wSolAmount > BigInt(0)) {
1475
+ txTransfers.push({
1476
+ amount: wSolAmount,
1477
+ blockNumber: block.parentSlot + 1,
1478
+ from: from,
1479
+ index: `${index}-1`,
1480
+ timestamp: timestamp,
1481
+ to: $fc7ca671efecc378$var$WSOL_MINT,
1482
+ transactionGasFee: txFee,
1483
+ transactionHash: txHash,
1484
+ token: null,
1485
+ tokenType: "NATIVE"
1486
+ });
1487
+ txTransfers.push({
1488
+ amount: wSolAmount,
1489
+ blockNumber: block.parentSlot + 1,
1490
+ from: $fc7ca671efecc378$var$WSOL_MINT,
1491
+ index: `${index}-2`,
1492
+ timestamp: timestamp,
1493
+ to: to,
1494
+ transactionGasFee: txFee,
1495
+ transactionHash: txHash,
1496
+ token: $fc7ca671efecc378$var$WSOL_MINT,
1497
+ tokenType: "TOKEN"
1498
+ });
1499
+ previousAccountsClose[from] += wSolAmount;
1500
+ } else if (wSolAmount < BigInt(0)) {
1501
+ txTransfers.push({
1502
+ amount: wSolAmount * BigInt(-1),
1503
+ blockNumber: block.parentSlot + 1,
1504
+ from: $fc7ca671efecc378$var$WSOL_MINT,
1505
+ index: `${index}-1`,
1506
+ timestamp: timestamp,
1507
+ to: from,
1508
+ transactionGasFee: txFee,
1509
+ transactionHash: txHash,
1510
+ token: null,
1511
+ tokenType: "NATIVE"
1512
+ });
1513
+ txTransfers.push({
1514
+ amount: wSolAmount * BigInt(-1),
1515
+ blockNumber: block.parentSlot + 1,
1516
+ from: to,
1517
+ index: `${index}-2`,
1518
+ timestamp: timestamp,
1519
+ to: $fc7ca671efecc378$var$WSOL_MINT,
1520
+ transactionGasFee: txFee,
1521
+ transactionHash: txHash,
1522
+ token: $fc7ca671efecc378$var$WSOL_MINT,
1523
+ tokenType: "TOKEN"
1524
+ });
1525
+ previousAccountsClose[from] += wSolAmount;
1526
+ }
1384
1527
  }
1385
- if (!didMerge) transfersByKey[key].push(txfer);
1386
- }
1387
- matched = true;
1388
- }
1389
- if (!matched) {
1390
- let diff = BigInt(post.uiTokenAmount.amount);
1391
- const isNegDiff = diff < 0;
1392
- if (diff < 0) diff = -diff;
1393
- const key = `${post.mint}-${diff.toString()}`;
1394
- const txfer = {
1395
- amount: diff,
1396
- blockNumber: block.blockHeight,
1397
- from: null,
1398
- timestamp: timestamp,
1399
- to: post.owner,
1400
- token: post.mint,
1401
- tokenType: "TOKEN",
1402
- transactionGasFee: txFee,
1403
- transactionHash: txHash
1404
- };
1405
- if (isNegDiff) delete txfer.to;
1406
- else delete txfer.from;
1407
- if (!transfersByKey[key]) transfersByKey[key] = [
1408
- txfer
1409
- ];
1410
- else {
1411
- let didMerge = false;
1412
- for(let tbi = 0; tbi < transfersByKey[key].length; tbi += 1)if (txfer.to && !transfersByKey[key][tbi].to || txfer.from && !transfersByKey[key][tbi].from) {
1413
- didMerge = true;
1414
- transfersByKey[key][tbi] = Object.assign(transfersByKey[key][tbi] || {}, txfer);
1415
- break;
1528
+ } else if ([
1529
+ $fc7ca671efecc378$var$SYSTEM_PROGRAM
1530
+ ].includes(programId)) {
1531
+ // TRANSFER
1532
+ if (instSig.startsWith("2,0,0,0,")) {
1533
+ const amountData = $fc7ca671efecc378$require$Buffer.from(instData).slice(4);
1534
+ if (amountData.length < 8) continue;
1535
+ const amount = BigInt(amountData.readBigUInt64LE(0).toString());
1536
+ txTransfers.push({
1537
+ amount: amount,
1538
+ blockNumber: block.parentSlot + 1,
1539
+ from: matchingAccounts[0],
1540
+ index: index,
1541
+ timestamp: timestamp,
1542
+ to: matchingAccounts[1],
1543
+ transactionGasFee: txFee,
1544
+ transactionHash: txHash,
1545
+ token: null,
1546
+ tokenType: "NATIVE"
1547
+ });
1548
+ } else if (instSig.startsWith("0,0,0,0,")) {
1549
+ const amountData = $fc7ca671efecc378$require$Buffer.from(instData).slice(4, 12);
1550
+ const amount = BigInt(amountData.readBigUInt64LE(0).toString());
1551
+ txTransfers.push({
1552
+ amount: amount,
1553
+ blockNumber: block.parentSlot + 1,
1554
+ from: matchingAccounts[0],
1555
+ index: index,
1556
+ timestamp: timestamp,
1557
+ to: matchingAccounts[1],
1558
+ transactionGasFee: txFee,
1559
+ transactionHash: txHash,
1560
+ token: null,
1561
+ tokenType: "NATIVE"
1562
+ });
1563
+ createdAccountsToOwner[matchingAccounts[1]] = matchingAccounts[0];
1564
+ // try detecting an assignment of the new account
1565
+ const initInst = allInstructions[idx + 2];
1566
+ if (initInst && [
1567
+ $fc7ca671efecc378$var$SPL_TOKEN_PROGRAM,
1568
+ $fc7ca671efecc378$var$SPL_TOKEN_2022_PROGRAM
1569
+ ].includes(allAccounts[initInst.programIdIndex]) && initInst.accounts.length === 2 && initInst.accounts[0] === inst.accounts[1]) {
1570
+ const newOwner = (0, ($parcel$interopDefault($8zHUo$bs58))).encode($fc7ca671efecc378$require$Buffer.from((0, ($parcel$interopDefault($8zHUo$bs58))).decode(initInst.data)).slice(1));
1571
+ createdAccountsToOwner[matchingAccounts[1]] = newOwner;
1572
+ }
1573
+ } else if (instSig.startsWith("3,0,0,0,")) {
1574
+ const amountData = $fc7ca671efecc378$require$Buffer.from(instData).slice(instData.length - 48, instData.length - 40);
1575
+ const amount = BigInt(amountData.readBigUInt64LE(0).toString());
1576
+ txTransfers.push({
1577
+ amount: amount,
1578
+ blockNumber: block.parentSlot + 1,
1579
+ from: matchingAccounts[0],
1580
+ index: index,
1581
+ timestamp: timestamp,
1582
+ to: matchingAccounts[1],
1583
+ transactionGasFee: txFee,
1584
+ transactionHash: txHash,
1585
+ token: null,
1586
+ tokenType: "NATIVE"
1587
+ });
1588
+ createdAccountsToOwner[matchingAccounts[1]] = matchingAccounts[0];
1416
1589
  }
1417
- if (!didMerge) transfersByKey[key].push(txfer);
1418
1590
  }
1591
+ } catch (e) {
1592
+ // we only want valid transfers
1419
1593
  }
1420
1594
  }
1595
+ // handle non-explicit SOL cases
1596
+ const solTransferDiffs = {};
1597
+ for (const t of txTransfers){
1598
+ if (t.from === t.to || t.token) continue;
1599
+ if (!solTransferDiffs[t.from]) solTransferDiffs[t.from] = BigInt(0);
1600
+ if (!solTransferDiffs[t.to]) solTransferDiffs[t.to] = BigInt(0);
1601
+ solTransferDiffs[t.from] -= t.amount;
1602
+ solTransferDiffs[t.to] += t.amount;
1603
+ }
1604
+ const toReconcile = {};
1421
1605
  for(let i = 0; i < svmTx.meta.postBalances.length; i += 1){
1422
- const post = svmTx.meta.postBalances[i];
1423
- const pre = svmTx.meta.preBalances[i];
1424
- if (post !== undefined && pre !== undefined && post !== pre) {
1425
- let diff = BigInt(post) - BigInt(pre);
1426
- if (diff < 0) diff = -diff;
1427
- const key = `null-${diff.toString()}`;
1428
- const txfer = {
1429
- amount: diff,
1430
- blockNumber: block.blockHeight,
1431
- from: typeof allAccounts[i] === "string" ? allAccounts[i] : allAccounts[i]?.pubkey,
1432
- timestamp: timestamp,
1433
- to: typeof allAccounts[i] === "string" ? allAccounts[i] : allAccounts[i]?.pubkey?.toString(),
1434
- token: null,
1435
- tokenType: "NATIVE",
1436
- transactionGasFee: txFee,
1437
- transactionHash: txHash
1438
- };
1439
- if (post > pre) delete txfer.from;
1440
- else delete txfer.to;
1441
- if (!transfersByKey[key]) transfersByKey[key] = [
1442
- txfer
1443
- ];
1444
- else {
1445
- let didMerge = false;
1446
- for(let tbi = 0; tbi < transfersByKey[key].length; tbi += 1)if (txfer.to && !transfersByKey[key][tbi].to || txfer.from && !transfersByKey[key][tbi].from) {
1447
- didMerge = true;
1448
- transfersByKey[key][tbi] = Object.assign(transfersByKey[key][tbi] || {}, txfer);
1449
- break;
1606
+ const account = allAccounts[i];
1607
+ const diff = BigInt(svmTx.meta.postBalances[i]) - BigInt(svmTx.meta.preBalances[i] || 0);
1608
+ if (solTransferDiffs[account] !== diff) toReconcile[account] = diff - (solTransferDiffs[account] || BigInt(0));
1609
+ }
1610
+ if (Object.keys(toReconcile).length) {
1611
+ const wSolTxfers = [];
1612
+ for (const t of txTransfers){
1613
+ // handle [near] exact match
1614
+ if (toReconcile[t.from] && toReconcile[t.to] && toReconcile[t.from] > 0 && toReconcile[t.from] <= toReconcile[t.to] * BigInt(-1)) {
1615
+ txTransfers.push({
1616
+ amount: toReconcile[t.from],
1617
+ blockNumber: block.parentSlot + 1,
1618
+ from: t.to,
1619
+ index: t.index + "-1",
1620
+ timestamp: timestamp,
1621
+ to: t.from,
1622
+ token: null,
1623
+ tokenType: "NATIVE",
1624
+ transactionGasFee: txFee,
1625
+ transactionHash: txHash
1626
+ });
1627
+ toReconcile[t.to] += toReconcile[t.from];
1628
+ delete toReconcile[t.from];
1629
+ if (toReconcile[t.to] === BigInt(0)) delete toReconcile[t.to];
1630
+ } else if (t.token === $fc7ca671efecc378$var$WSOL_MINT) {
1631
+ wSolTxfers.push(t);
1632
+ if (toReconcile[t.fromTokenAccount]) {
1633
+ txTransfers.push({
1634
+ amount: t.amount,
1635
+ blockNumber: block.parentSlot + 1,
1636
+ from: t.fromTokenAccount,
1637
+ index: t.index + "-1",
1638
+ timestamp: timestamp,
1639
+ to: $fc7ca671efecc378$var$WSOL_MINT,
1640
+ token: null,
1641
+ tokenType: "NATIVE",
1642
+ transactionGasFee: txFee,
1643
+ transactionHash: txHash
1644
+ });
1645
+ toReconcile[t.fromTokenAccount] += t.amount;
1646
+ if (toReconcile[t.fromTokenAccount] === BigInt(0)) delete toReconcile[t.fromTokenAccount];
1647
+ }
1648
+ if (toReconcile[t.toTokenAccount]) {
1649
+ txTransfers.push({
1650
+ amount: t.amount,
1651
+ blockNumber: block.parentSlot + 1,
1652
+ from: $fc7ca671efecc378$var$WSOL_MINT,
1653
+ index: t.index + "-2",
1654
+ timestamp: timestamp,
1655
+ to: t.toTokenAccount,
1656
+ token: null,
1657
+ tokenType: "NATIVE",
1658
+ transactionGasFee: txFee,
1659
+ transactionHash: txHash
1660
+ });
1661
+ toReconcile[t.toTokenAccount] -= t.amount;
1662
+ if (toReconcile[t.toTokenAccount] === BigInt(0)) delete toReconcile[t.toTokenAccount];
1663
+ }
1664
+ }
1665
+ }
1666
+ for(const k in toReconcile){
1667
+ if (toReconcile[k] === BigInt(0)) delete toReconcile[k];
1668
+ for(const j in toReconcile)if (k !== j && toReconcile[k] === toReconcile[j] * BigInt(-1)) {
1669
+ txTransfers.push({
1670
+ amount: toReconcile[j] < BigInt(0) ? toReconcile[j] * BigInt(-1) : toReconcile[j],
1671
+ blockNumber: block.parentSlot + 1,
1672
+ from: toReconcile[j] < BigInt(0) ? j : k,
1673
+ timestamp: // index,
1674
+ timestamp,
1675
+ to: toReconcile[j] > BigInt(0) ? j : k,
1676
+ transactionGasFee: txFee,
1677
+ transactionHash: txHash,
1678
+ token: null,
1679
+ tokenType: "NATIVE"
1680
+ });
1681
+ delete toReconcile[k];
1682
+ delete toReconcile[j];
1683
+ }
1684
+ }
1685
+ // handle internal self transfers
1686
+ if (Object.values(toReconcile).reduce((a, b)=>a + b, BigInt(0)) === BigInt(0)) {
1687
+ const toSend = Object.entries(toReconcile).filter(([k, a])=>a < BigInt(0));
1688
+ toSend.sort((a, b)=>a[1] < b[1] ? 1 : 0);
1689
+ const toReceive = Object.entries(toReconcile).filter(([k, a])=>a > BigInt(0));
1690
+ toReceive.sort((a, b)=>a[1] > b[1] ? 1 : 0);
1691
+ for (const toPair of toReceive){
1692
+ let amountToSend = toPair[1];
1693
+ const to = toPair[0];
1694
+ while(amountToSend > BigInt(0)){
1695
+ const fromPair = toSend[0];
1696
+ if (!fromPair) break;
1697
+ const from = fromPair[0];
1698
+ let amount = amountToSend;
1699
+ if (toReconcile[from] * BigInt(-1) < amount) amount = toReconcile[from] * BigInt(-1);
1700
+ txTransfers.push({
1701
+ amount: amount,
1702
+ blockNumber: block.parentSlot + 1,
1703
+ from: from,
1704
+ timestamp: // index,
1705
+ timestamp,
1706
+ to: to,
1707
+ transactionGasFee: txFee,
1708
+ transactionHash: txHash,
1709
+ token: null,
1710
+ tokenType: "NATIVE"
1711
+ });
1712
+ toReconcile[from] += amount;
1713
+ if (toReconcile[from] === BigInt(0)) {
1714
+ delete toReconcile[from];
1715
+ toSend.shift();
1716
+ }
1717
+ amountToSend -= amount;
1450
1718
  }
1451
- if (!didMerge) transfersByKey[key].push(txfer);
1719
+ delete toReconcile[to];
1452
1720
  }
1453
1721
  }
1722
+ for(const k in toReconcile)if (toReconcile[k] === BigInt(0)) delete toReconcile[k];
1723
+ delete toReconcile[$fc7ca671efecc378$var$WSOL_MINT];
1454
1724
  }
1455
- const unmatchedFrom = {};
1456
- const unmatchedTo = {};
1457
- for(const key in transfersByKey)for (const txfer of transfersByKey[key]){
1458
- if (!txfer.from && txfer.token !== "So11111111111111111111111111111111111111112") {
1459
- if (!unmatchedFrom[txfer.token]) unmatchedFrom[txfer.token] = [];
1460
- unmatchedFrom[txfer.token].push(txfer);
1461
- delete transfersByKey[key];
1462
- } else if (!txfer.to) {
1463
- if (!unmatchedTo[txfer.token]) unmatchedTo[txfer.token] = [];
1464
- unmatchedTo[txfer.token].push(txfer);
1465
- delete transfersByKey[key];
1466
- } else transfers.push(txfer);
1725
+ // clean up SOL unwraps & token mints
1726
+ const tokenTransferDiffs = {};
1727
+ for (const t of txTransfers){
1728
+ if (t.from === t.to) continue;
1729
+ const key1 = `${t.from}-${t.token}`;
1730
+ const key2 = `${t.to}-${t.token}`;
1731
+ if (!tokenTransferDiffs[key1]) tokenTransferDiffs[key1] = BigInt(0);
1732
+ if (!tokenTransferDiffs[key2]) tokenTransferDiffs[key2] = BigInt(0);
1733
+ tokenTransferDiffs[key1] -= t.amount;
1734
+ tokenTransferDiffs[key2] += t.amount;
1467
1735
  }
1468
- for(const token in unmatchedFrom)if (unmatchedTo[token]?.length && unmatchedFrom[token]?.length) {
1469
- const unmatchedDiff = unmatchedTo[token].reduce((a, b)=>a + BigInt(b.amount), BigInt(0)) - unmatchedFrom[token].reduce((a, b)=>a + BigInt(b.amount), BigInt(0));
1470
- if (unmatchedDiff === BigInt(0) || token === "null") {
1471
- unmatchedTo[token].sort((a, b)=>a.amount > b.amount ? 1 : -1);
1472
- unmatchedFrom[token].forEach((um)=>{
1473
- um.from = unmatchedTo[token][0].from;
1474
- transfers.push(um);
1736
+ for (const post of svmTx.meta.postTokenBalances){
1737
+ const account = post.owner;
1738
+ const pre = svmTx.meta.preTokenBalances.find((p)=>p.mint === post.mint && p.owner === account && p.accountIndex === post.accountIndex);
1739
+ const diff = BigInt(post.uiTokenAmount.amount) - BigInt(pre?.uiTokenAmount.amount || 0);
1740
+ const key = `${account}-${post.mint}`;
1741
+ if (tokenTransferDiffs[key] !== diff && account !== post.mint) {
1742
+ const amount = diff - (tokenTransferDiffs[key] || BigInt(0));
1743
+ // try attributing to unwrapping wSOL
1744
+ if (amount > BigInt(0) && post.mint === $fc7ca671efecc378$var$WSOL_MINT) txTransfers.push({
1745
+ amount: amount,
1746
+ blockNumber: block.parentSlot + 1,
1747
+ from: $fc7ca671efecc378$var$WSOL_MINT,
1748
+ timestamp: // index,
1749
+ timestamp,
1750
+ to: account,
1751
+ transactionGasFee: txFee,
1752
+ transactionHash: txHash,
1753
+ token: $fc7ca671efecc378$var$WSOL_MINT,
1754
+ tokenType: "TOKEN"
1755
+ });
1756
+ else if (!pre && amount > BigInt(0)) txTransfers.push({
1757
+ amount: amount,
1758
+ blockNumber: block.parentSlot + 1,
1759
+ from: post.mint,
1760
+ timestamp: // index,
1761
+ timestamp,
1762
+ to: account,
1763
+ transactionGasFee: txFee,
1764
+ transactionHash: txHash,
1765
+ token: post.mint,
1766
+ tokenType: "TOKEN"
1475
1767
  });
1476
1768
  }
1477
1769
  }
1770
+ transfers.push(...txTransfers.map((t)=>{
1771
+ delete t.fromTokenAccount;
1772
+ delete t.toTokenAccount;
1773
+ return t;
1774
+ }));
1478
1775
  }
1479
1776
  return transfers;
1480
1777
  },
@@ -1482,52 +1779,307 @@ const $fc7ca671efecc378$export$a51565c56ceacb0a = {
1482
1779
  {
1483
1780
  params: {
1484
1781
  network: "SOLANA",
1485
- walletAddress: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1486
- contractAddress: "6MQpbiTC2YcogidTmKqMLK82qvE9z5QEm7EP3AEDpump"
1782
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
1487
1783
  },
1488
1784
  payload: "https://jiti.indexing.co/networks/solana/345871978",
1489
1785
  output: [
1490
1786
  {
1491
- amount: 10492578617n,
1492
- blockNumber: 324081557,
1787
+ amount: 2506024n,
1788
+ blockNumber: 345871978,
1493
1789
  from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1790
+ index: "0",
1494
1791
  timestamp: "2025-06-10T12:06:56.000Z",
1495
- to: "ChkRerg6X89xHYqV4iBqcboBdU1WA8Uvs9fp2yZrqbg",
1792
+ to: null,
1793
+ transactionGasFee: 2506024n,
1794
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1795
+ token: null,
1796
+ tokenType: "NATIVE"
1797
+ },
1798
+ {
1799
+ amount: 2039280n,
1800
+ blockNumber: 345871978,
1801
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1802
+ index: "3",
1803
+ timestamp: "2025-06-10T12:06:56.000Z",
1804
+ to: "CtFXczF6VRBE4KgJDebiwhB4Vheg87di5SgPcmMViu8j",
1805
+ transactionGasFee: 2506024n,
1806
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1807
+ token: null,
1808
+ tokenType: "NATIVE"
1809
+ },
1810
+ {
1811
+ amount: 16788125787n,
1812
+ blockNumber: 345871978,
1813
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1814
+ index: "5-2",
1815
+ timestamp: "2025-06-10T12:06:56.000Z",
1816
+ to: "GWPLjamb5ZxrGbTsYNWW7V3p1pAMryZSfaPFTdaEsWgC",
1817
+ transactionGasFee: 2506024n,
1818
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1496
1819
  token: "6MQpbiTC2YcogidTmKqMLK82qvE9z5QEm7EP3AEDpump",
1497
- tokenType: "TOKEN",
1820
+ tokenType: "TOKEN"
1821
+ },
1822
+ {
1823
+ amount: 2485415086n,
1824
+ blockNumber: 345871978,
1825
+ from: "GWPLjamb5ZxrGbTsYNWW7V3p1pAMryZSfaPFTdaEsWgC",
1826
+ index: "5-3",
1827
+ timestamp: "2025-06-10T12:06:56.000Z",
1828
+ to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1498
1829
  transactionGasFee: 2506024n,
1499
- transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
1830
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1831
+ token: "So11111111111111111111111111111111111111112",
1832
+ tokenType: "TOKEN"
1833
+ },
1834
+ {
1835
+ amount: 1246447n,
1836
+ blockNumber: 345871978,
1837
+ from: "GWPLjamb5ZxrGbTsYNWW7V3p1pAMryZSfaPFTdaEsWgC",
1838
+ index: "5-4",
1839
+ timestamp: "2025-06-10T12:06:56.000Z",
1840
+ to: "62qc2CNXwrYqQScmEdiZFFAnJR262PxWEuNQtxfafNgV",
1841
+ transactionGasFee: 2506024n,
1842
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1843
+ token: "So11111111111111111111111111111111111111112",
1844
+ tokenType: "TOKEN"
1845
+ },
1846
+ {
1847
+ amount: 1246447n,
1848
+ blockNumber: 345871978,
1849
+ from: "GWPLjamb5ZxrGbTsYNWW7V3p1pAMryZSfaPFTdaEsWgC",
1850
+ index: "5-5",
1851
+ timestamp: "2025-06-10T12:06:56.000Z",
1852
+ to: "4XFtPwmsuKo8bHZQWRLWt7Jh4QdhSg9X68g4CELDhpsH",
1853
+ transactionGasFee: 2506024n,
1854
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1855
+ token: "So11111111111111111111111111111111111111112",
1856
+ tokenType: "TOKEN"
1500
1857
  },
1501
1858
  {
1502
1859
  amount: 10492578617n,
1503
- blockNumber: 324081557,
1860
+ blockNumber: 345871978,
1504
1861
  from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1862
+ index: "5-9",
1505
1863
  timestamp: "2025-06-10T12:06:56.000Z",
1506
1864
  to: "3shatpFgdVVwy8Pr723iE9L1fozzaXNdGYKtgrSwHYeJ",
1865
+ transactionGasFee: 2506024n,
1866
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1507
1867
  token: "6MQpbiTC2YcogidTmKqMLK82qvE9z5QEm7EP3AEDpump",
1508
- tokenType: "TOKEN",
1868
+ tokenType: "TOKEN"
1869
+ },
1870
+ {
1871
+ amount: 1553440149n,
1872
+ blockNumber: 345871978,
1873
+ from: "3shatpFgdVVwy8Pr723iE9L1fozzaXNdGYKtgrSwHYeJ",
1874
+ index: "5-10",
1875
+ timestamp: "2025-06-10T12:06:56.000Z",
1876
+ to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1509
1877
  transactionGasFee: 2506024n,
1510
- transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
1878
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1879
+ token: "So11111111111111111111111111111111111111112",
1880
+ tokenType: "TOKEN"
1511
1881
  },
1512
1882
  {
1513
- amount: 16788125787n,
1514
- blockNumber: 324081557,
1883
+ amount: 10492578617n,
1884
+ blockNumber: 345871978,
1515
1885
  from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1886
+ index: "5-13",
1516
1887
  timestamp: "2025-06-10T12:06:56.000Z",
1517
- to: "GWPLjamb5ZxrGbTsYNWW7V3p1pAMryZSfaPFTdaEsWgC",
1888
+ to: "ChkRerg6X89xHYqV4iBqcboBdU1WA8Uvs9fp2yZrqbg",
1889
+ transactionGasFee: 2506024n,
1890
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1518
1891
  token: "6MQpbiTC2YcogidTmKqMLK82qvE9z5QEm7EP3AEDpump",
1519
- tokenType: "TOKEN",
1892
+ tokenType: "TOKEN"
1893
+ },
1894
+ {
1895
+ amount: 1552556053n,
1896
+ blockNumber: 345871978,
1897
+ from: "ChkRerg6X89xHYqV4iBqcboBdU1WA8Uvs9fp2yZrqbg",
1898
+ index: "5-14",
1899
+ timestamp: "2025-06-10T12:06:56.000Z",
1900
+ to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1520
1901
  transactionGasFee: 2506024n,
1521
- transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
1902
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1903
+ token: "So11111111111111111111111111111111111111112",
1904
+ tokenType: "TOKEN"
1522
1905
  },
1523
1906
  {
1524
1907
  amount: 4197031447n,
1525
- blockNumber: 324081557,
1908
+ blockNumber: 345871978,
1526
1909
  from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1910
+ index: "5-17",
1527
1911
  timestamp: "2025-06-10T12:06:56.000Z",
1528
1912
  to: "ANcfLC9JcbYbEWu71fE8973V8S6vD5hS98RNrz56hrT7",
1913
+ transactionGasFee: 2506024n,
1914
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1529
1915
  token: "6MQpbiTC2YcogidTmKqMLK82qvE9z5QEm7EP3AEDpump",
1530
- tokenType: "TOKEN",
1916
+ tokenType: "TOKEN"
1917
+ },
1918
+ {
1919
+ amount: 621470846n,
1920
+ blockNumber: 345871978,
1921
+ from: "ANcfLC9JcbYbEWu71fE8973V8S6vD5hS98RNrz56hrT7",
1922
+ index: "5-18",
1923
+ timestamp: "2025-06-10T12:06:56.000Z",
1924
+ to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1925
+ transactionGasFee: 2506024n,
1926
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1927
+ token: "So11111111111111111111111111111111111111112",
1928
+ tokenType: "TOKEN"
1929
+ },
1930
+ {
1931
+ amount: 6214921414n,
1932
+ blockNumber: 345871978,
1933
+ from: "CtFXczF6VRBE4KgJDebiwhB4Vheg87di5SgPcmMViu8j",
1934
+ index: "5-19",
1935
+ timestamp: "2025-06-10T12:06:56.000Z",
1936
+ to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1937
+ transactionGasFee: 2506024n,
1938
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1939
+ token: null,
1940
+ tokenType: "NATIVE"
1941
+ },
1942
+ {
1943
+ amount: 6212882134n,
1944
+ blockNumber: 345871978,
1945
+ from: "So11111111111111111111111111111111111111112",
1946
+ index: "5-19-1",
1947
+ timestamp: "2025-06-10T12:06:56.000Z",
1948
+ to: "CtFXczF6VRBE4KgJDebiwhB4Vheg87di5SgPcmMViu8j",
1949
+ transactionGasFee: 2506024n,
1950
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1951
+ token: null,
1952
+ tokenType: "NATIVE"
1953
+ },
1954
+ {
1955
+ amount: 6212882134n,
1956
+ blockNumber: 345871978,
1957
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1958
+ index: "5-19-2",
1959
+ timestamp: "2025-06-10T12:06:56.000Z",
1960
+ to: "So11111111111111111111111111111111111111112",
1961
+ transactionGasFee: 2506024n,
1962
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1963
+ token: "So11111111111111111111111111111111111111112",
1964
+ tokenType: "TOKEN"
1965
+ },
1966
+ {
1967
+ amount: 52809498n,
1968
+ blockNumber: 345871978,
1969
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1970
+ index: "5-20",
1971
+ timestamp: "2025-06-10T12:06:56.000Z",
1972
+ to: "9yj3zvLS3fDMqi1F8zhkaWfq8TZpZWHe6cz1Sgt7djXf",
1973
+ transactionGasFee: 2506024n,
1974
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1975
+ token: null,
1976
+ tokenType: "NATIVE"
1977
+ },
1978
+ {
1979
+ amount: 87500n,
1980
+ blockNumber: 345871978,
1981
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1982
+ index: "6",
1983
+ timestamp: "2025-06-10T12:06:56.000Z",
1984
+ to: "CcTNKBhQKYu7nB4eRrRFQoXEvpd6H5QnGKh93pwniBtp",
1985
+ transactionGasFee: 2506024n,
1986
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1987
+ token: null,
1988
+ tokenType: "NATIVE"
1989
+ },
1990
+ {
1991
+ amount: 2485415086n,
1992
+ blockNumber: 345871978,
1993
+ from: "AYFHMPRhwxiScs98wgYxpMLV4MFbvZRRZo2G5hdun9Fp",
1994
+ index: "5-3-1",
1995
+ timestamp: "2025-06-10T12:06:56.000Z",
1996
+ to: "So11111111111111111111111111111111111111112",
1997
+ token: null,
1998
+ tokenType: "NATIVE",
1999
+ transactionGasFee: 2506024n,
2000
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
2001
+ },
2002
+ {
2003
+ amount: 1246447n,
2004
+ blockNumber: 345871978,
2005
+ from: "AYFHMPRhwxiScs98wgYxpMLV4MFbvZRRZo2G5hdun9Fp",
2006
+ index: "5-4-1",
2007
+ timestamp: "2025-06-10T12:06:56.000Z",
2008
+ to: "So11111111111111111111111111111111111111112",
2009
+ token: null,
2010
+ tokenType: "NATIVE",
2011
+ transactionGasFee: 2506024n,
2012
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
2013
+ },
2014
+ {
2015
+ amount: 1246447n,
2016
+ blockNumber: 345871978,
2017
+ from: "So11111111111111111111111111111111111111112",
2018
+ index: "5-4-2",
2019
+ timestamp: "2025-06-10T12:06:56.000Z",
2020
+ to: "94qWNrtmfn42h3ZjUZwWvK1MEo9uVmmrBPd2hpNjYDjb",
2021
+ token: null,
2022
+ tokenType: "NATIVE",
2023
+ transactionGasFee: 2506024n,
2024
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
2025
+ },
2026
+ {
2027
+ amount: 1246447n,
2028
+ blockNumber: 345871978,
2029
+ from: "AYFHMPRhwxiScs98wgYxpMLV4MFbvZRRZo2G5hdun9Fp",
2030
+ index: "5-5-1",
2031
+ timestamp: "2025-06-10T12:06:56.000Z",
2032
+ to: "So11111111111111111111111111111111111111112",
2033
+ token: null,
2034
+ tokenType: "NATIVE",
2035
+ transactionGasFee: 2506024n,
2036
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
2037
+ },
2038
+ {
2039
+ amount: 1246447n,
2040
+ blockNumber: 345871978,
2041
+ from: "So11111111111111111111111111111111111111112",
2042
+ index: "5-5-2",
2043
+ timestamp: "2025-06-10T12:06:56.000Z",
2044
+ to: "F4qmtKg8FWBp85WsFGKzUKfyn6G6WiC5kerddYcuZq3c",
2045
+ token: null,
2046
+ tokenType: "NATIVE",
2047
+ transactionGasFee: 2506024n,
2048
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
2049
+ },
2050
+ {
2051
+ amount: 1553440149n,
2052
+ blockNumber: 345871978,
2053
+ from: "BT1NKpgNBBNbC9RRVuWPGBqFmqFznwsZKh3x2gDyykmq",
2054
+ index: "5-10-1",
2055
+ timestamp: "2025-06-10T12:06:56.000Z",
2056
+ to: "So11111111111111111111111111111111111111112",
2057
+ token: null,
2058
+ tokenType: "NATIVE",
2059
+ transactionGasFee: 2506024n,
2060
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
2061
+ },
2062
+ {
2063
+ amount: 1552556053n,
2064
+ blockNumber: 345871978,
2065
+ from: "DQwTf8dHkjtM6VuewpgET7MS7kX3EEXQDqvXkScC6tnB",
2066
+ index: "5-14-1",
2067
+ timestamp: "2025-06-10T12:06:56.000Z",
2068
+ to: "So11111111111111111111111111111111111111112",
2069
+ token: null,
2070
+ tokenType: "NATIVE",
2071
+ transactionGasFee: 2506024n,
2072
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
2073
+ },
2074
+ {
2075
+ amount: 621470846n,
2076
+ blockNumber: 345871978,
2077
+ from: "FLgakNeU6FWQ4d6qThc3YswxpHgupVusCbqqsaL5Ya3d",
2078
+ index: "5-18-1",
2079
+ timestamp: "2025-06-10T12:06:56.000Z",
2080
+ to: "So11111111111111111111111111111111111111112",
2081
+ token: null,
2082
+ tokenType: "NATIVE",
1531
2083
  transactionGasFee: 2506024n,
1532
2084
  transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
1533
2085
  }
@@ -1543,8 +2095,9 @@ const $fc7ca671efecc378$export$a51565c56ceacb0a = {
1543
2095
  output: [
1544
2096
  {
1545
2097
  amount: 3000350n,
1546
- blockNumber: 304546603,
2098
+ blockNumber: 326286476,
1547
2099
  from: "D89hHJT5Aqyx1trP6EnGY9jJUB3whgnq3aUvvCqedvzf",
2100
+ index: "1",
1548
2101
  timestamp: "2025-03-12T14:42:16.000Z",
1549
2102
  to: "HTd5J9YhYnN1nwCAQiykpNBjoDrgtPVUcpk9TBPMCV4b",
1550
2103
  transactionGasFee: 105000n,
@@ -1554,38 +2107,6 @@ const $fc7ca671efecc378$export$a51565c56ceacb0a = {
1554
2107
  }
1555
2108
  ]
1556
2109
  },
1557
- {
1558
- params: {
1559
- network: "SOLANA",
1560
- walletAddress: "5u3gUxSsiqddQf1QhRDRQqDaFe9f5S3pyVkVWy77gB85",
1561
- contractAddress: ""
1562
- },
1563
- payload: "https://jiti.indexing.co/networks/solana/291562718",
1564
- output: [
1565
- {
1566
- amount: 239999n,
1567
- blockNumber: 270452291,
1568
- from: "5u3gUxSsiqddQf1QhRDRQqDaFe9f5S3pyVkVWy77gB85",
1569
- timestamp: "2024-09-23T16:45:56.000Z",
1570
- to: "CebN5WGQ4jvEPvsVU4EoHEpgzq1VV7AbicfhtW4xC9iM",
1571
- token: null,
1572
- tokenType: "NATIVE",
1573
- transactionGasFee: 45000n,
1574
- transactionHash: "2TKq9VXjQocvyQGraxqRjyF8iASRPCmjJcGXkxYQbTknjFTToVB2rRSLMFCi5VwBx9uJ2fAN1YNt4Wr8TUVRuoMi"
1575
- },
1576
- {
1577
- amount: 1n,
1578
- blockNumber: 270452291,
1579
- from: "5u3gUxSsiqddQf1QhRDRQqDaFe9f5S3pyVkVWy77gB85",
1580
- timestamp: "2024-09-23T16:45:56.000Z",
1581
- to: "8MCjBNEBEyT5uAnDBupUxQ8eiKHJcf4vh546g4uM7cjF",
1582
- token: null,
1583
- tokenType: "NATIVE",
1584
- transactionGasFee: 45000n,
1585
- transactionHash: "2TKq9VXjQocvyQGraxqRjyF8iASRPCmjJcGXkxYQbTknjFTToVB2rRSLMFCi5VwBx9uJ2fAN1YNt4Wr8TUVRuoMi"
1586
- }
1587
- ]
1588
- },
1589
2110
  {
1590
2111
  params: {
1591
2112
  network: "SOLANA",
@@ -1596,8 +2117,9 @@ const $fc7ca671efecc378$export$a51565c56ceacb0a = {
1596
2117
  output: [
1597
2118
  {
1598
2119
  amount: 14216129n,
1599
- blockNumber: 303338729,
1600
- from: "8KbrpeSRYXYjWSSdG7gE1tR7Go8MmKKxKaei1gGc4U7Q",
2120
+ blockNumber: 325076237,
2121
+ from: "2MFoS3MPtvyQ4Wh4M9pdfPjz6UhVoNbFbGJAskCPCj3h",
2122
+ index: "6-9",
1601
2123
  timestamp: "2025-03-07T01:16:59.000Z",
1602
2124
  to: "5cuy7pMhTPhVZN9xuhgSbykRb986siGJb6vnEtkuBrSU",
1603
2125
  transactionGasFee: 353096n,
@@ -1615,37 +2137,124 @@ const $fc7ca671efecc378$export$a51565c56ceacb0a = {
1615
2137
  payload: "https://jiti.indexing.co/networks/solana/332450156",
1616
2138
  output: [
1617
2139
  {
1618
- amount: 19796403663n,
1619
- blockNumber: 310691098,
2140
+ amount: 80001n,
2141
+ blockNumber: 332450156,
2142
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2143
+ index: "0",
2144
+ timestamp: "2025-04-10T02:29:35.000Z",
2145
+ to: null,
2146
+ transactionGasFee: 80001n,
2147
+ transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk",
2148
+ token: null,
2149
+ tokenType: "NATIVE"
2150
+ },
2151
+ {
2152
+ amount: 2039280n,
2153
+ blockNumber: 332450156,
2154
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2155
+ index: "3-3",
2156
+ timestamp: "2025-04-10T02:29:35.000Z",
2157
+ to: "5XggDBvoRA65ss8NJV9BZjf57JzC64VHqZTag4AQJZzQ",
2158
+ transactionGasFee: 80001n,
2159
+ transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk",
2160
+ token: null,
2161
+ tokenType: "NATIVE"
2162
+ },
2163
+ {
2164
+ amount: 500000000n,
2165
+ blockNumber: 332450156,
2166
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2167
+ index: "3-6",
2168
+ timestamp: "2025-04-10T02:29:35.000Z",
2169
+ to: "5XggDBvoRA65ss8NJV9BZjf57JzC64VHqZTag4AQJZzQ",
2170
+ transactionGasFee: 80001n,
2171
+ transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk",
2172
+ token: null,
2173
+ tokenType: "NATIVE"
2174
+ },
2175
+ {
2176
+ amount: 97937250n,
2177
+ blockNumber: 332450156,
2178
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2179
+ index: "4-2",
2180
+ timestamp: "2025-04-10T02:29:35.000Z",
2181
+ to: "4acL7mD2J6GYJy2g3iVTvfpmHCQSZ1rb8DBuupjcVzHJ",
2182
+ transactionGasFee: 80001n,
2183
+ transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk",
2184
+ token: "So11111111111111111111111111111111111111112",
2185
+ tokenType: "TOKEN"
2186
+ },
2187
+ {
2188
+ amount: 3914205773n,
2189
+ blockNumber: 332450156,
2190
+ from: "4acL7mD2J6GYJy2g3iVTvfpmHCQSZ1rb8DBuupjcVzHJ",
2191
+ index: "4-3",
1620
2192
  timestamp: "2025-04-10T02:29:35.000Z",
1621
2193
  to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1622
2194
  transactionGasFee: 80001n,
1623
2195
  transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk",
1624
2196
  token: "CniPCE4b3s8gSUPhUiyMjXnytrEqUrMfSsnbBjLCpump",
1625
- tokenType: "TOKEN",
1626
- from: "4acL7mD2J6GYJy2g3iVTvfpmHCQSZ1rb8DBuupjcVzHJ"
2197
+ tokenType: "TOKEN"
1627
2198
  },
1628
2199
  {
1629
2200
  amount: 402062750n,
1630
- blockNumber: 310691098,
2201
+ blockNumber: 332450156,
1631
2202
  from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2203
+ index: "4-6",
2204
+ timestamp: "2025-04-10T02:29:35.000Z",
2205
+ to: "5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1",
2206
+ transactionGasFee: 80001n,
2207
+ transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk",
2208
+ token: "So11111111111111111111111111111111111111112",
2209
+ tokenType: "TOKEN"
2210
+ },
2211
+ {
2212
+ amount: 16051909872n,
2213
+ blockNumber: 332450156,
2214
+ from: "5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1",
2215
+ index: "4-7",
1632
2216
  timestamp: "2025-04-10T02:29:35.000Z",
1633
- to: "5yY5BGRgwa5rxvYPpMV9EkDpwp6w1vNNXUNzUCtMoFfR",
2217
+ to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2218
+ transactionGasFee: 80001n,
2219
+ transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk",
2220
+ token: "CniPCE4b3s8gSUPhUiyMjXnytrEqUrMfSsnbBjLCpump",
2221
+ tokenType: "TOKEN"
2222
+ },
2223
+ {
2224
+ amount: 2039280n,
2225
+ blockNumber: 332450156,
2226
+ from: "5XggDBvoRA65ss8NJV9BZjf57JzC64VHqZTag4AQJZzQ",
2227
+ index: "4-9",
2228
+ timestamp: "2025-04-10T02:29:35.000Z",
2229
+ to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1634
2230
  token: null,
1635
2231
  tokenType: "NATIVE",
1636
2232
  transactionGasFee: 80001n,
1637
2233
  transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk"
1638
2234
  },
1639
2235
  {
1640
- amount: 97937250n,
1641
- blockNumber: 310691098,
1642
- from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2236
+ amount: 500000000n,
2237
+ blockNumber: 332450156,
2238
+ from: "So11111111111111111111111111111111111111112",
2239
+ index: "4-9-2",
1643
2240
  timestamp: "2025-04-10T02:29:35.000Z",
1644
- to: "9zF2ZWTjnk6UkyWRxNtqy9UHims9u7LSaHGyhA5PwDSx",
1645
- token: null,
1646
- tokenType: "NATIVE",
2241
+ to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2242
+ token: "So11111111111111111111111111111111111111112",
2243
+ tokenType: "TOKEN",
1647
2244
  transactionGasFee: 80001n,
1648
2245
  transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk"
2246
+ },
2247
+ {
2248
+ amount: 169711982n,
2249
+ blockNumber: 332450156,
2250
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2251
+ index: "4-10",
2252
+ timestamp: "2025-04-10T02:29:35.000Z",
2253
+ to: "8psNvWTrdNTiVRNzAgsou9kETXNJm2SXZyaKuJraVRtf",
2254
+ transactionGasFee: 80001n,
2255
+ transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk",
2256
+ token: "CniPCE4b3s8gSUPhUiyMjXnytrEqUrMfSsnbBjLCpump",
2257
+ tokenType: "TOKEN"
1649
2258
  }
1650
2259
  ]
1651
2260
  },
@@ -1659,8 +2268,9 @@ const $fc7ca671efecc378$export$a51565c56ceacb0a = {
1659
2268
  output: [
1660
2269
  {
1661
2270
  amount: 2500000n,
1662
- blockNumber: 311062104,
2271
+ blockNumber: 332822080,
1663
2272
  from: "J1dHwpKBs8Jo4n7jWEJWwMGNH2DJQnApBFPnnYXg74v7",
2273
+ index: "4-1",
1664
2274
  timestamp: "2025-04-11T19:36:39.000Z",
1665
2275
  to: "3LoAYHuSd7Gh8d7RTFnhvYtiTiefdZ5ByamU42vkzd76",
1666
2276
  token: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
@@ -1669,22 +2279,12 @@ const $fc7ca671efecc378$export$a51565c56ceacb0a = {
1669
2279
  transactionHash: "xKTWvnhSRErcHCMozRMEue4MriNr1Any6LiaQzXrR7imZ1MpZxRqbyv9LLg4JQoDq4oJZpDqPmzxLCtMCkgj2hn"
1670
2280
  },
1671
2281
  {
1672
- amount: 1373625000n,
1673
- blockNumber: 311062104,
2282
+ amount: 2497500000n,
2283
+ blockNumber: 332822080,
1674
2284
  from: "J1dHwpKBs8Jo4n7jWEJWwMGNH2DJQnApBFPnnYXg74v7",
2285
+ index: "4-3",
1675
2286
  timestamp: "2025-04-11T19:36:39.000Z",
1676
- to: "5guD4Uz462GT4Y4gEuqyGsHZ59JGxFN4a3rF6KWguMcJ",
1677
- token: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
1678
- tokenType: "TOKEN",
1679
- transactionGasFee: 350362n,
1680
- transactionHash: "xKTWvnhSRErcHCMozRMEue4MriNr1Any6LiaQzXrR7imZ1MpZxRqbyv9LLg4JQoDq4oJZpDqPmzxLCtMCkgj2hn"
1681
- },
1682
- {
1683
- amount: 1123875000n,
1684
- blockNumber: 311062104,
1685
- from: "J1dHwpKBs8Jo4n7jWEJWwMGNH2DJQnApBFPnnYXg74v7",
1686
- timestamp: "2025-04-11T19:36:39.000Z",
1687
- to: "DH4xmaWDnTzKXehVaPSNy9tMKJxnYL5Mo5U3oTHFtNYJ",
2287
+ to: "4xDsmeTWPNjgSVSS1VTfzFq3iHZhp77ffPkAmkZkdu71",
1688
2288
  token: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
1689
2289
  tokenType: "TOKEN",
1690
2290
  transactionGasFee: 350362n,
@@ -1699,47 +2299,170 @@ const $fc7ca671efecc378$export$a51565c56ceacb0a = {
1699
2299
  },
1700
2300
  payload: "https://jiti.indexing.co/networks/solana/344836070",
1701
2301
  output: [
2302
+ {
2303
+ amount: 118174n,
2304
+ blockNumber: 344836070,
2305
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2306
+ index: "0",
2307
+ timestamp: "2025-06-05T18:30:59.000Z",
2308
+ to: null,
2309
+ transactionGasFee: 118174n,
2310
+ transactionHash: "2wQdUtEnCf77jiros6eCbQ1BrWrn1uw4nisy87kmgHhZMGX2CqBugaLdne6bvQR8mAdxinVLivcbVVfJAdTry2rw",
2311
+ token: null,
2312
+ tokenType: "NATIVE"
2313
+ },
2314
+ {
2315
+ amount: 2039280n,
2316
+ blockNumber: 344836070,
2317
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2318
+ index: "3",
2319
+ timestamp: "2025-06-05T18:30:59.000Z",
2320
+ to: "AnvCq4bLUX7CBid2kALUG1iQ9po81bq5wzxsjnTaNLyn",
2321
+ transactionGasFee: 118174n,
2322
+ transactionHash: "2wQdUtEnCf77jiros6eCbQ1BrWrn1uw4nisy87kmgHhZMGX2CqBugaLdne6bvQR8mAdxinVLivcbVVfJAdTry2rw",
2323
+ token: null,
2324
+ tokenType: "NATIVE"
2325
+ },
1702
2326
  {
1703
2327
  amount: 21234547656n,
1704
- blockNumber: 323048342,
2328
+ blockNumber: 344836070,
1705
2329
  from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2330
+ index: "5-3",
1706
2331
  timestamp: "2025-06-05T18:30:59.000Z",
2332
+ to: "ChkRerg6X89xHYqV4iBqcboBdU1WA8Uvs9fp2yZrqbg",
1707
2333
  transactionGasFee: 118174n,
1708
2334
  transactionHash: "2wQdUtEnCf77jiros6eCbQ1BrWrn1uw4nisy87kmgHhZMGX2CqBugaLdne6bvQR8mAdxinVLivcbVVfJAdTry2rw",
1709
2335
  token: "6MQpbiTC2YcogidTmKqMLK82qvE9z5QEm7EP3AEDpump",
1710
- tokenType: "TOKEN",
1711
- to: "ChkRerg6X89xHYqV4iBqcboBdU1WA8Uvs9fp2yZrqbg"
2336
+ tokenType: "TOKEN"
1712
2337
  },
1713
2338
  {
1714
- amount: 3272427086n,
1715
- blockNumber: 323048342,
1716
- from: "DQwTf8dHkjtM6VuewpgET7MS7kX3EEXQDqvXkScC6tnB",
2339
+ amount: 3300686091n,
2340
+ blockNumber: 344836070,
2341
+ from: "ChkRerg6X89xHYqV4iBqcboBdU1WA8Uvs9fp2yZrqbg",
2342
+ index: "5-4",
1717
2343
  timestamp: "2025-06-05T18:30:59.000Z",
1718
2344
  to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2345
+ transactionGasFee: 118174n,
2346
+ transactionHash: "2wQdUtEnCf77jiros6eCbQ1BrWrn1uw4nisy87kmgHhZMGX2CqBugaLdne6bvQR8mAdxinVLivcbVVfJAdTry2rw",
2347
+ token: "So11111111111111111111111111111111111111112",
2348
+ tokenType: "TOKEN"
2349
+ },
2350
+ {
2351
+ amount: 3302725371n,
2352
+ blockNumber: 344836070,
2353
+ from: "AnvCq4bLUX7CBid2kALUG1iQ9po81bq5wzxsjnTaNLyn",
2354
+ index: "5-5",
2355
+ timestamp: "2025-06-05T18:30:59.000Z",
2356
+ to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2357
+ transactionGasFee: 118174n,
2358
+ transactionHash: "2wQdUtEnCf77jiros6eCbQ1BrWrn1uw4nisy87kmgHhZMGX2CqBugaLdne6bvQR8mAdxinVLivcbVVfJAdTry2rw",
1719
2359
  token: null,
1720
- tokenType: "NATIVE",
2360
+ tokenType: "NATIVE"
2361
+ },
2362
+ {
2363
+ amount: 3300686091n,
2364
+ blockNumber: 344836070,
2365
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2366
+ index: "5-5-2",
2367
+ timestamp: "2025-06-05T18:30:59.000Z",
2368
+ to: "So11111111111111111111111111111111111111112",
1721
2369
  transactionGasFee: 118174n,
1722
- transactionHash: "2wQdUtEnCf77jiros6eCbQ1BrWrn1uw4nisy87kmgHhZMGX2CqBugaLdne6bvQR8mAdxinVLivcbVVfJAdTry2rw"
2370
+ transactionHash: "2wQdUtEnCf77jiros6eCbQ1BrWrn1uw4nisy87kmgHhZMGX2CqBugaLdne6bvQR8mAdxinVLivcbVVfJAdTry2rw",
2371
+ token: "So11111111111111111111111111111111111111112",
2372
+ tokenType: "TOKEN"
2373
+ },
2374
+ {
2375
+ amount: 28055831n,
2376
+ blockNumber: 344836070,
2377
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2378
+ index: "5-6",
2379
+ timestamp: "2025-06-05T18:30:59.000Z",
2380
+ to: "9yj3zvLS3fDMqi1F8zhkaWfq8TZpZWHe6cz1Sgt7djXf",
2381
+ transactionGasFee: 118174n,
2382
+ transactionHash: "2wQdUtEnCf77jiros6eCbQ1BrWrn1uw4nisy87kmgHhZMGX2CqBugaLdne6bvQR8mAdxinVLivcbVVfJAdTry2rw",
2383
+ token: null,
2384
+ tokenType: "NATIVE"
2385
+ },
2386
+ {
2387
+ amount: 85000n,
2388
+ blockNumber: 344836070,
2389
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2390
+ index: "6",
2391
+ timestamp: "2025-06-05T18:30:59.000Z",
2392
+ to: "6HRgJMRmjaj2svP9GpRbUU5TPzLAHnBW3sHgYVbirWYE",
2393
+ transactionGasFee: 118174n,
2394
+ transactionHash: "2wQdUtEnCf77jiros6eCbQ1BrWrn1uw4nisy87kmgHhZMGX2CqBugaLdne6bvQR8mAdxinVLivcbVVfJAdTry2rw",
2395
+ token: null,
2396
+ tokenType: "NATIVE"
1723
2397
  }
1724
2398
  ]
1725
2399
  },
1726
2400
  {
1727
2401
  params: {
1728
2402
  network: "SOLANA",
1729
- walletAddress: "Gaq4K6e5tY9Z8L9bcWFPhNbteb9YYekjzH6eQPx24B5i"
2403
+ walletAddress: "AVAZvHLR2PcWpDf8BXY4rVxNHYRBytycHkcB5z5QNXYm"
1730
2404
  },
1731
2405
  payload: "https://jiti.indexing.co/networks/solana/343762745",
1732
2406
  output: [
1733
2407
  {
1734
- amount: 704724041n,
1735
- blockNumber: 321976935,
2408
+ amount: 191568n,
2409
+ blockNumber: 343762745,
1736
2410
  from: "AVAZvHLR2PcWpDf8BXY4rVxNHYRBytycHkcB5z5QNXYm",
2411
+ index: "0",
1737
2412
  timestamp: "2025-05-31T21:20:52.000Z",
1738
- to: "Gaq4K6e5tY9Z8L9bcWFPhNbteb9YYekjzH6eQPx24B5i",
2413
+ to: null,
2414
+ transactionGasFee: 191568n,
2415
+ transactionHash: "5usAzMSrENJQscoRdxi48n22aMcFmJ1U7f2yGmwUk8AHSFCzLfRtBP7gVnsZbe7Jy9SG2VoeVbVSoVvu43tsdvm1",
1739
2416
  token: null,
1740
- tokenType: "NATIVE",
2417
+ tokenType: "NATIVE"
2418
+ },
2419
+ {
2420
+ amount: 7504823498621n,
2421
+ blockNumber: 343762745,
2422
+ from: "AVAZvHLR2PcWpDf8BXY4rVxNHYRBytycHkcB5z5QNXYm",
2423
+ index: "4-2",
2424
+ timestamp: "2025-05-31T21:20:52.000Z",
2425
+ to: "BXYKJpQvoZngmTGGr9U2NYQ2ND9Cw6B79ULzTkufcSXB",
2426
+ transactionGasFee: 191568n,
2427
+ transactionHash: "5usAzMSrENJQscoRdxi48n22aMcFmJ1U7f2yGmwUk8AHSFCzLfRtBP7gVnsZbe7Jy9SG2VoeVbVSoVvu43tsdvm1",
2428
+ token: "fnDj6iuSBBruq1GX5GQwxGa3MvAxiJbnPBSvHt4pump",
2429
+ tokenType: "TOKEN"
2430
+ },
2431
+ {
2432
+ amount: 52507862455n,
2433
+ blockNumber: 343762745,
2434
+ from: "5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1",
2435
+ index: "4-9",
2436
+ timestamp: "2025-05-31T21:20:52.000Z",
2437
+ to: "AVAZvHLR2PcWpDf8BXY4rVxNHYRBytycHkcB5z5QNXYm",
2438
+ transactionGasFee: 191568n,
2439
+ transactionHash: "5usAzMSrENJQscoRdxi48n22aMcFmJ1U7f2yGmwUk8AHSFCzLfRtBP7gVnsZbe7Jy9SG2VoeVbVSoVvu43tsdvm1",
2440
+ token: "JB2wezZLdzWfnaCfHxLg193RS3Rh51ThiXxEDWQDpump",
2441
+ tokenType: "TOKEN"
2442
+ },
2443
+ {
2444
+ amount: 2184670002n,
2445
+ blockNumber: 343762745,
2446
+ from: "EHks3xWvbScHwygkB1QMsz38rEmht5tE1yyAreRUWELj",
2447
+ index: "4-13",
2448
+ timestamp: "2025-05-31T21:20:52.000Z",
2449
+ to: "AVAZvHLR2PcWpDf8BXY4rVxNHYRBytycHkcB5z5QNXYm",
2450
+ transactionGasFee: 191568n,
2451
+ transactionHash: "5usAzMSrENJQscoRdxi48n22aMcFmJ1U7f2yGmwUk8AHSFCzLfRtBP7gVnsZbe7Jy9SG2VoeVbVSoVvu43tsdvm1",
2452
+ token: "JB2wezZLdzWfnaCfHxLg193RS3Rh51ThiXxEDWQDpump",
2453
+ tokenType: "TOKEN"
2454
+ },
2455
+ {
2456
+ amount: 54692532n,
2457
+ blockNumber: 343762745,
2458
+ from: "AVAZvHLR2PcWpDf8BXY4rVxNHYRBytycHkcB5z5QNXYm",
2459
+ index: "4-14",
2460
+ timestamp: "2025-05-31T21:20:52.000Z",
2461
+ to: "3CgvbiM3op4vjrrjH2zcrQUwsqh5veNVRjFCB9N6sRoD",
1741
2462
  transactionGasFee: 191568n,
1742
- transactionHash: "5usAzMSrENJQscoRdxi48n22aMcFmJ1U7f2yGmwUk8AHSFCzLfRtBP7gVnsZbe7Jy9SG2VoeVbVSoVvu43tsdvm1"
2463
+ transactionHash: "5usAzMSrENJQscoRdxi48n22aMcFmJ1U7f2yGmwUk8AHSFCzLfRtBP7gVnsZbe7Jy9SG2VoeVbVSoVvu43tsdvm1",
2464
+ token: "JB2wezZLdzWfnaCfHxLg193RS3Rh51ThiXxEDWQDpump",
2465
+ tokenType: "TOKEN"
1743
2466
  }
1744
2467
  ]
1745
2468
  },
@@ -1751,25 +2474,216 @@ const $fc7ca671efecc378$export$a51565c56ceacb0a = {
1751
2474
  payload: "https://jiti.indexing.co/networks/solana/375557379",
1752
2475
  output: [
1753
2476
  {
1754
- amount: 9990000n,
1755
- blockNumber: 353720952,
2477
+ amount: 5000n,
2478
+ blockNumber: 375557379,
2479
+ from: "moAGAQftMo19RY6YqStNdiDhNpejJaeNWgv5oczbp8U",
2480
+ index: "0",
1756
2481
  timestamp: "2025-10-24T20:23:09.000Z",
1757
- to: "moAGAQftMo19RY6YqStNdiDhNpejJaeNWgv5oczbp8U",
1758
- token: "So11111111111111111111111111111111111111112",
1759
- tokenType: "TOKEN",
2482
+ to: null,
2483
+ token: null,
2484
+ tokenType: "NATIVE",
1760
2485
  transactionGasFee: 5000n,
1761
2486
  transactionHash: "3UCamcERYHN9JrgwPqUshvabv2f7uHpbStwfG7bbPFsVSSjQrK21Q9joj7gNLD6Ab5XHehkaUKtYp7Vptv7Kswv3"
1762
2487
  },
1763
2488
  {
1764
2489
  amount: 9990000n,
1765
- blockNumber: 353720952,
2490
+ blockNumber: 375557379,
1766
2491
  from: "moAGAQftMo19RY6YqStNdiDhNpejJaeNWgv5oczbp8U",
2492
+ index: "2",
1767
2493
  timestamp: "2025-10-24T20:23:09.000Z",
1768
2494
  to: "5uQC5CfgqGP8B8bG64RATmZXfUKiHf1XRbYHkVKPwwny",
1769
2495
  token: null,
1770
2496
  tokenType: "NATIVE",
1771
2497
  transactionGasFee: 5000n,
1772
2498
  transactionHash: "3UCamcERYHN9JrgwPqUshvabv2f7uHpbStwfG7bbPFsVSSjQrK21Q9joj7gNLD6Ab5XHehkaUKtYp7Vptv7Kswv3"
2499
+ },
2500
+ {
2501
+ amount: 9990000n,
2502
+ blockNumber: 375557379,
2503
+ from: "So11111111111111111111111111111111111111112",
2504
+ timestamp: "2025-10-24T20:23:09.000Z",
2505
+ to: "moAGAQftMo19RY6YqStNdiDhNpejJaeNWgv5oczbp8U",
2506
+ token: "So11111111111111111111111111111111111111112",
2507
+ tokenType: "TOKEN",
2508
+ transactionGasFee: 5000n,
2509
+ transactionHash: "3UCamcERYHN9JrgwPqUshvabv2f7uHpbStwfG7bbPFsVSSjQrK21Q9joj7gNLD6Ab5XHehkaUKtYp7Vptv7Kswv3"
2510
+ }
2511
+ ]
2512
+ },
2513
+ {
2514
+ params: {
2515
+ network: "SOLANA",
2516
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2517
+ },
2518
+ payload: "https://jiti.indexing.co/networks/solana/377071751",
2519
+ output: [
2520
+ {
2521
+ amount: 5000n,
2522
+ blockNumber: 377071751,
2523
+ from: "CDr3sjXFHVPZYp8k7AUNHVJDN1sfvppLfPHd4Pwk8Mha",
2524
+ index: "0",
2525
+ timestamp: "2025-10-31T20:00:23.000Z",
2526
+ to: null,
2527
+ token: null,
2528
+ tokenType: "NATIVE",
2529
+ transactionGasFee: 5000n,
2530
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2531
+ },
2532
+ {
2533
+ amount: 2500n,
2534
+ blockNumber: 377071751,
2535
+ from: "CDr3sjXFHVPZYp8k7AUNHVJDN1sfvppLfPHd4Pwk8Mha",
2536
+ index: "1",
2537
+ timestamp: "2025-10-31T20:00:23.000Z",
2538
+ to: "F7p3dFrjRTbtRp8FRF6qHLomXbKRBzpvBLjtQcfcgmNe",
2539
+ token: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
2540
+ tokenType: "TOKEN",
2541
+ transactionGasFee: 5000n,
2542
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2543
+ },
2544
+ {
2545
+ amount: 2497500n,
2546
+ blockNumber: 377071751,
2547
+ from: "CDr3sjXFHVPZYp8k7AUNHVJDN1sfvppLfPHd4Pwk8Mha",
2548
+ index: "2-1",
2549
+ timestamp: "2025-10-31T20:00:23.000Z",
2550
+ to: "6LXutJvKUw8Q5ue2gCgKHQdAN4suWW8awzFVC6XCguFx",
2551
+ token: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
2552
+ tokenType: "TOKEN",
2553
+ transactionGasFee: 5000n,
2554
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2555
+ },
2556
+ {
2557
+ amount: 2497500n,
2558
+ blockNumber: 377071751,
2559
+ from: "6LXutJvKUw8Q5ue2gCgKHQdAN4suWW8awzFVC6XCguFx",
2560
+ index: "2-3",
2561
+ timestamp: "2025-10-31T20:00:23.000Z",
2562
+ to: "Enc6rB84ZwGxZU8aqAF41dRJxg3yesiJgD7uJFVhMraM",
2563
+ token: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
2564
+ tokenType: "TOKEN",
2565
+ transactionGasFee: 5000n,
2566
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2567
+ },
2568
+ {
2569
+ amount: 24n,
2570
+ blockNumber: 377071751,
2571
+ from: "Enc6rB84ZwGxZU8aqAF41dRJxg3yesiJgD7uJFVhMraM",
2572
+ index: "2-4",
2573
+ timestamp: "2025-10-31T20:00:23.000Z",
2574
+ to: "ATowQwFzdJBJ9VFSfoNKmuB8GiSeo8foM5vRriwmKmFB",
2575
+ token: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
2576
+ tokenType: "TOKEN",
2577
+ transactionGasFee: 5000n,
2578
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2579
+ },
2580
+ {
2581
+ amount: 24n,
2582
+ blockNumber: 377071751,
2583
+ from: "Enc6rB84ZwGxZU8aqAF41dRJxg3yesiJgD7uJFVhMraM",
2584
+ index: "2-5",
2585
+ timestamp: "2025-10-31T20:00:23.000Z",
2586
+ to: "45ruCyfdRkWpRNGEqWzjCiXRHkZs8WXCLQ67Pnpye7Hp",
2587
+ token: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
2588
+ tokenType: "TOKEN",
2589
+ transactionGasFee: 5000n,
2590
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2591
+ },
2592
+ {
2593
+ amount: 13258805n,
2594
+ blockNumber: 377071751,
2595
+ from: "Enc6rB84ZwGxZU8aqAF41dRJxg3yesiJgD7uJFVhMraM",
2596
+ index: "2-6",
2597
+ timestamp: "2025-10-31T20:00:23.000Z",
2598
+ to: "6LXutJvKUw8Q5ue2gCgKHQdAN4suWW8awzFVC6XCguFx",
2599
+ token: "So11111111111111111111111111111111111111112",
2600
+ tokenType: "TOKEN",
2601
+ transactionGasFee: 5000n,
2602
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2603
+ },
2604
+ {
2605
+ amount: 13258800n,
2606
+ blockNumber: 377071751,
2607
+ from: "6LXutJvKUw8Q5ue2gCgKHQdAN4suWW8awzFVC6XCguFx",
2608
+ index: "2-9",
2609
+ timestamp: "2025-10-31T20:00:23.000Z",
2610
+ to: "6nL4UZVRkn34Mxb7DGU91U86zhtF2PTX72Ncs64sUFx",
2611
+ token: "So11111111111111111111111111111111111111112",
2612
+ tokenType: "TOKEN",
2613
+ transactionGasFee: 5000n,
2614
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2615
+ },
2616
+ {
2617
+ amount: 1511170n,
2618
+ blockNumber: 377071751,
2619
+ from: "6nL4UZVRkn34Mxb7DGU91U86zhtF2PTX72Ncs64sUFx",
2620
+ index: "2-10",
2621
+ timestamp: "2025-10-31T20:00:23.000Z",
2622
+ to: "6LXutJvKUw8Q5ue2gCgKHQdAN4suWW8awzFVC6XCguFx",
2623
+ token: "4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R",
2624
+ tokenType: "TOKEN",
2625
+ transactionGasFee: 5000n,
2626
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2627
+ },
2628
+ {
2629
+ amount: 1511170n,
2630
+ blockNumber: 377071751,
2631
+ from: "6LXutJvKUw8Q5ue2gCgKHQdAN4suWW8awzFVC6XCguFx",
2632
+ index: "2-12",
2633
+ timestamp: "2025-10-31T20:00:23.000Z",
2634
+ to: "CDr3sjXFHVPZYp8k7AUNHVJDN1sfvppLfPHd4Pwk8Mha",
2635
+ token: "4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R",
2636
+ tokenType: "TOKEN",
2637
+ transactionGasFee: 5000n,
2638
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2639
+ },
2640
+ {
2641
+ amount: 13258805n,
2642
+ blockNumber: 377071751,
2643
+ from: "HZ5JFB1ZoZs6NQLr7bb4MMEXDgty4Vs1ZghoyX35mNnV",
2644
+ index: "2-6-1",
2645
+ timestamp: "2025-10-31T20:00:23.000Z",
2646
+ to: "So11111111111111111111111111111111111111112",
2647
+ token: null,
2648
+ tokenType: "NATIVE",
2649
+ transactionGasFee: 5000n,
2650
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2651
+ },
2652
+ {
2653
+ amount: 13258805n,
2654
+ blockNumber: 377071751,
2655
+ from: "So11111111111111111111111111111111111111112",
2656
+ index: "2-6-2",
2657
+ timestamp: "2025-10-31T20:00:23.000Z",
2658
+ to: "BuqEDKUwyAotZuK37V4JYEykZVKY8qo1zKbpfU9gkJMo",
2659
+ token: null,
2660
+ tokenType: "NATIVE",
2661
+ transactionGasFee: 5000n,
2662
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2663
+ },
2664
+ {
2665
+ amount: 13258800n,
2666
+ blockNumber: 377071751,
2667
+ from: "BuqEDKUwyAotZuK37V4JYEykZVKY8qo1zKbpfU9gkJMo",
2668
+ index: "2-9-1",
2669
+ timestamp: "2025-10-31T20:00:23.000Z",
2670
+ to: "So11111111111111111111111111111111111111112",
2671
+ token: null,
2672
+ tokenType: "NATIVE",
2673
+ transactionGasFee: 5000n,
2674
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2675
+ },
2676
+ {
2677
+ amount: 13258800n,
2678
+ blockNumber: 377071751,
2679
+ from: "So11111111111111111111111111111111111111112",
2680
+ index: "2-9-2",
2681
+ timestamp: "2025-10-31T20:00:23.000Z",
2682
+ to: "B6whMxirSzzNcSeJ1G4HDFTRKjPFcWovCL53uxG7LexB",
2683
+ token: null,
2684
+ tokenType: "NATIVE",
2685
+ transactionGasFee: 5000n,
2686
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
1773
2687
  }
1774
2688
  ]
1775
2689
  }
@@ -2148,8 +3062,9 @@ const $7dd402f6ad0dab6a$var$tokenTransfersTemplate = {
2148
3062
  txfer.from,
2149
3063
  txfer.to
2150
3064
  ].includes(_ctx.params.walletAddress)) return false;
3065
+ if (_ctx.params.transactionHash && txfer.transactionHash !== _ctx.params.transactionHash) return false;
2151
3066
  }
2152
- const key = `${txfer.transactionHash}-${txfer.from}-${txfer.to}-${txfer.amount}-${txfer.token}`;
3067
+ const key = `${txfer.transactionHash}-${txfer.from}-${txfer.to}-${txfer.amount}-${txfer.token}-${txfer.index}`;
2153
3068
  if (seenTransfers.has(key)) return false;
2154
3069
  seenTransfers.add(key);
2155
3070
  return true;
@@ -2232,6 +3147,9 @@ const $9af31dbb692f94e3$var$filterValuesTemplate = {
2232
3147
  fv
2233
3148
  ] : fv).flat();
2234
3149
  break;
3150
+ case "HYPERCORE":
3151
+ for (const subblock of block.blocks)for (const evt of subblock.events)finalValues.add(evt[0]);
3152
+ break;
2235
3153
  case "RIPPLE":
2236
3154
  for (const tx of block.transactions){
2237
3155
  finalValues.add(tx.Account);
@@ -4605,6 +5523,7 @@ const $9af31dbb692f94e3$var$filterValuesTemplate = {
4605
5523
  "6NDen7aDi65apHo8m1Vea4nuS6LyjQeM6pDNqcW4Q5Pg",
4606
5524
  "6NJmmYh9yAMKKcZPeedpLYX8v2m81nTecaWvdx5SX6Wm",
4607
5525
  "6NqvoPpSYCPEtLEukQaSNs7mS3yK6k285saH9o3vgC96",
5526
+ "6P4tvbzRY6Bh3MiWDHuLqyHywovsRwRpfskPvyeSoHsz",
4608
5527
  "6PvHaibtZhuba14dzbhGFJRASYX3Ka2oviRzSbXV2wYC",
4609
5528
  "6QXW5VkwsYwnV4iqaCZGHt42ZiY2nEZHD1qXm9yNbhVz",
4610
5529
  "6R9aM3PfnS4LyNGjeXugkRLeCFKVmcod9AEnbixtMTj3",
@@ -4682,6 +5601,7 @@ const $9af31dbb692f94e3$var$filterValuesTemplate = {
4682
5601
  "6mCzwUFcdTuz6fFJRA8nY1iXNRJqPpXU1PvCfANfVXhh",
4683
5602
  "6mHYpppqhbQH8Sd4hNMgucwYU1Zho389Q9bZ19T27859",
4684
5603
  "6mP9cw9Ludgbr5hGBTSCiw37jRaFpxQ9eWDRjUM57eE5",
5604
+ "6mQ8xEaHdTikyMvvMxUctYch6dUjnKgfoeib2msyMMi1",
4685
5605
  "6mc5i3FYmpA2SFUqSbTY1kdDVaj4WR3P3ex4QrGUxDE1",
4686
5606
  "6minRorGYiA5aEeDvXL1Usat6DCdaF46owL3oANVQ8uB",
4687
5607
  "6n8taYki7RscA1XW7xGmevLcqj855oSgDgjPe1dZyHfW",
@@ -6671,6 +7591,7 @@ const $9af31dbb692f94e3$var$filterValuesTemplate = {
6671
7591
  "FofDMBAJWzUDjefwFc9TbgTUKNSJyWehhjLLfY5aXpGt",
6672
7592
  "FoigPJ6kL6Gth5Er6t9d1Nkh96Skadqw63Ciyjxc1f8H",
6673
7593
  "FpCMFDFGYotvufJ7HrFHsWEiiQCGbkLCtwHiDnh7o28Q",
7594
+ "FpEzVYQ5MjuSut61Ka18tzYhQKLqndefubV7K2U1mrTz",
6674
7595
  "FpTQXdt7NjYsJWXaE9UgG2yPUshoFiW3nzXbXKz1CjKh",
6675
7596
  "FphFJA451qptiGyCeCN3xvrDi8cApGAnyR5vw2KxxQ1q",
6676
7597
  "FpjXN8mFf6eAor29zDXhTzoGQdZaGWq6QprR9958nQ64",
@@ -9676,8 +10597,340 @@ const $9af31dbb692f94e3$var$filterValuesTemplate = {
9676
10597
  "957928",
9677
10598
  "969084"
9678
10599
  ]
10600
+ },
10601
+ {
10602
+ params: {},
10603
+ payload: "https://jiti.indexing.co/networks/hyper_core/8041973",
10604
+ output: [
10605
+ "0x010461c14e146ac35fe42271bdc1134ee31c703a",
10606
+ "0x015e39316feeee42f363d69e2c0b438c2206a0f4",
10607
+ "0x023a3d058020fb76cca98f01b3c48c8938a22355",
10608
+ "0x0291639ea7178930475da17b579e1ac2de8faed8",
10609
+ "0x038bbb7ef7632606b3c53c4866a6d6c380a3fc68",
10610
+ "0x052fdac9ea5b7b9c04afa404dd79666741cf4aad",
10611
+ "0x05d9f6c39a75bd6f040d65eb75a4ea6e9e20b60b",
10612
+ "0x0631897de2f668ff8dfe5bfe23d63d5634035ce5",
10613
+ "0x068b957d05df7d7e559487b16e86f01e5f4ab784",
10614
+ "0x06c51f1fc98ff7cdee2b076ec5c8999af829b221",
10615
+ "0x07265663b688c5123e6600f9374f989e0869cdcd",
10616
+ "0x0762a621091357d600af930ad21ca493ab5b0282",
10617
+ "0x09bc1cf4d9f0b59e1425a8fde4d4b1f7d3c9410d",
10618
+ "0x09bf77ff40d9b8fb0fa2610b3da36705db58f05c",
10619
+ "0x0a06ec6754b628be489b2c40bba20c8580392a7b",
10620
+ "0x0a542ce9a85cfd58aae83d01495d7b834844d5fe",
10621
+ "0x0dd73d2b71efb30daf8cd48c9dfa8dc35868fe65",
10622
+ "0x0de0e164306a694e2da2568ff26584d7ac535feb",
10623
+ "0x0e1a27b09821969de9b3b219f98714bdd695e4d5",
10624
+ "0x0f626f3ecffcf9cc97c0f2f8307d4501f15908a9",
10625
+ "0x0fa962cd1d8c1db2822d131766c80ba34e128051",
10626
+ "0x0fd468a73084daa6ea77a9261e40fdec3e67e0c7",
10627
+ "0x10430387079cd877e4759f7af34779bdccfd1e2f",
10628
+ "0x11a72837d02c051c5b708c9352b27b7fc3ee016b",
10629
+ "0x123dbca6a27005a3c4ce10cb66ee8ece8fc13bff",
10630
+ "0x12ea01d4f9e031d6aad4ea72a371d24ea109bbc5",
10631
+ "0x13558be785661958932ceac35ba20de187275a42",
10632
+ "0x14ecb8b25e270b31cc270e3dd3ee220dd5dce16e",
10633
+ "0x161a14a48977f94d972e66028972194371c08d64",
10634
+ "0x162cc7c861ebd0c06b3d72319201150482518185",
10635
+ "0x1643e9aba4fcfb4e8c1a887090239e34f488cad6",
10636
+ "0x170a03a53fe05bf4ce6753cb0907d05e827bc3c6",
10637
+ "0x1764236a7db756478b8d6d91200e84485fcc5234",
10638
+ "0x176e6c0c9e8672e072cae98a35469ac6f8931e96",
10639
+ "0x17f9c6e2cca389e42553c00438f2224c0245b100",
10640
+ "0x18194850b4c0dac10af055fb5be772233be376b0",
10641
+ "0x187b07cb78a72e7968d9a51d523b5050efaaff70",
10642
+ "0x19263b1bbad9fb9e50578c84d656553858fb8f55",
10643
+ "0x192f8693ac0d3a4a395a04768109b78850513ed5",
10644
+ "0x1931db4f2aa47310c712156aa8c68be444499aa1",
10645
+ "0x193c6bcb33eab0b35989f2b6d1acc922b66409f2",
10646
+ "0x1b330ddca35c4ad475545b134bcedb79c4d4a585",
10647
+ "0x1ccc14e273def02ef2bf62b9bb6b6caa15805f9c",
10648
+ "0x1d1380c9df13a16189c39413433be01d43f7e7e6",
10649
+ "0x1d2a3b568e82678f22df040485b8cc006f3d0ea6",
10650
+ "0x1dd01835e0eb26abe597e2e69ffac1a6cd00283a",
10651
+ "0x1dd4af3383fce2ee4a40d9fb6766cbfcce2ddbce",
10652
+ "0x1deb5fba6353ac516a7a2197f81b3fc2d7283ebd",
10653
+ "0x1e1e5046b07be9a2d0f5223a723bf49e23b5ef73",
10654
+ "0x1ec15e24896f4feb55dd70d22dc3620ae3cc990c",
10655
+ "0x20faffd0045455e86b36b827d68f8f99f9c929b4",
10656
+ "0x2155422d571ee78f3bab97d8dddf15a6d9157acf",
10657
+ "0x21a21c11877569378cb95507e921203f5bb9d084",
10658
+ "0x223537ac9a856c31f4043e86ced86bb29f06653e",
10659
+ "0x2348718f3a78ffb97bdd0f5212ca4f6bed945c9a",
10660
+ "0x238c333116030256a9babcc83affbdf4c6c88d4b",
10661
+ "0x25118590d225e7c07e0924e33d3d64346e0a842c",
10662
+ "0x25bdd0a95d95319033360a2989219c697fc8a7d9",
10663
+ "0x26f68941b957f1edf0b2702296dc8d7a5af70686",
10664
+ "0x278752ff42bdf8c5124415ca261ecadba8542887",
10665
+ "0x27a8aa23b48f97d21cf397b48a01a98662df0bd8",
10666
+ "0x28f0233472b6a44e170e002a72845ca100be4a7e",
10667
+ "0x2a26b5d45d70857a0659137129d65973e93351d9",
10668
+ "0x2b584cce92cd8c695cd87dc299abc8a6eaec4151",
10669
+ "0x2cffce91b4e0c81df18726ff66b31b2b1545e1ad",
10670
+ "0x2db6f50126cf628c138de573a13ca3fcd2e22ed4",
10671
+ "0x2df22837da3f4fb34efb8c385af2d20501682431",
10672
+ "0x3045613bbaf85d6e0b86777accf5e66cf1732c78",
10673
+ "0x31b1ac74a39fa92604c3bccac20453f2e3eebfaa",
10674
+ "0x31ca8395cf837de08b24da3f660e77761dfb974b",
10675
+ "0x31dea2516beee92135b96f464eeec3cf292a13f2",
10676
+ "0x32051a0c36af1449e0eee08146a808115ccc40bb",
10677
+ "0x34827044cbd4b808fc1b189fce9f50e6dafae7c9",
10678
+ "0x348e5365acfa48a26ada7da840ca611e29c950ef",
10679
+ "0x34cf538ecc3923f0cbf9a820574982cad62df319",
10680
+ "0x34fb5ec7d4e939161946340ea2a1f29254b893de",
10681
+ "0x3617aa75c0f72a8da0b8c8032e466b83ce23ceb0",
10682
+ "0x363f4a8869ce8ef9959367a2395c73fe30a91000",
10683
+ "0x3674cca7bdb8dee6d47a0d1315561e4376374346",
10684
+ "0x38f96bba487a628d2a84afc3fe5c7d77eb07cb04",
10685
+ "0x39475d17bcd20adc540e647dae6781b153fbf3b1",
10686
+ "0x399965e15d4e61ec3529cc98b7f7ebb93b733336",
10687
+ "0x39e1c385d4c89df0cc19cf422ff6eac8a8f55539",
10688
+ "0x3b52fc863f776f29d26e292f2eb45523e4ad1487",
10689
+ "0x3f9a0ee7bba80568a211b7b894dfda46e902fca1",
10690
+ "0x409953a406f778516f8f58cc4beda14267e68c82",
10691
+ "0x4268c9e3c4476f91baabd87cff42feb378dc03bd",
10692
+ "0x4397598604cae735a828425c488aa9b459c282b9",
10693
+ "0x43fb821c5736e846bc28449bb03a04dcf533cd3a",
10694
+ "0x440888714a6afed60ff44e9975a96e6a36f7fac4",
10695
+ "0x44ec7c8f9c1311ad72e45656675d833b2bc024d3",
10696
+ "0x44f2cfc5285572c3d3cfabbea345b3d869866759",
10697
+ "0x464b58b389a49742adf93f86cfef71a2a0a0354b",
10698
+ "0x483e1d004247248d516865b9b9e893d48359ce10",
10699
+ "0x48d826da83e69844f2f84b2db50703a933d137a2",
10700
+ "0x48ea62a2cc8391fbbe210e8ee89db573a8ec145f",
10701
+ "0x492322b1fca1ab301a103b716a243b20cb3001aa",
10702
+ "0x49ba9baa20d355ba042af2be9772d2b2cd892f44",
10703
+ "0x4ac244a588268acfbc01e2122ed45d28fd15c358",
10704
+ "0x4b128473ba2e81dce030b9c82eee062ccc9616c2",
10705
+ "0x4b1d33556b6b21f11242c905d187f951e76241f4",
10706
+ "0x4bfcf28b7e8dc2b7a23940886b11e78417ffe2f2",
10707
+ "0x4c12a900576bf3e507c09802ab659cfb04343998",
10708
+ "0x4c8e087a21c3e33237347577487ee325c949f8b9",
10709
+ "0x4d969e59b312970cc07af266938a4433ccae0b4c",
10710
+ "0x4e1a43d3f255d7eb2f3d16764394d1b1cb0f1b20",
10711
+ "0x4e7cfe8e3e20284ba246978abaf301c5fb0ccc9c",
10712
+ "0x4ef1c5ae65ab5b37629b7aa523e7e95e7da528e3",
10713
+ "0x4fb31d5ffaa08be2128cb14485584d76eebef173",
10714
+ "0x4fccb3fc4eca6924517c8e084db385c9614f94a4",
10715
+ "0x5042080398480b5ac17f988aab91163abbe8575b",
10716
+ "0x504ec17f392b0aea095a1774146316bbeb464683",
10717
+ "0x5065be058d358e8089d2279cb991c1ca859ad2ac",
10718
+ "0x506aaeccc6f2035b834bdb2826b089114df6ab52",
10719
+ "0x51447a58623311e3e6c6e767d67dc36d890ad464",
10720
+ "0x5233199fc1fdd34439650c4450671b5f8806832c",
10721
+ "0x53dda50f698bf81c1c32aace91552dd094f0d01b",
10722
+ "0x54992cc59dbdc41bd67845f6c4dc5c5eb33d1daf",
10723
+ "0x549de4f045f71d962fff89e8c023b52b9db89c2c",
10724
+ "0x54e3f54df4b10ff63f7284733ed735e8e1507c20",
10725
+ "0x5518ff6534fbc8b6337f1a8074fc4669ac1572a1",
10726
+ "0x55f389689b39fdd29d063f8b1aa776666a2dd788",
10727
+ "0x562e6333d6d48437ce03c0fbb237f60d9ada2ae0",
10728
+ "0x57dd78cd36e76e2011e8f6dc25cabbaba994494b",
10729
+ "0x5c0efc47f192ba907aa3ecdc04c16040b22a451d",
10730
+ "0x5d510582063ed6c342d27d7746f551631ef68432",
10731
+ "0x5ed2b0ba63c6d5a82b91b61b500d58078486348d",
10732
+ "0x5fb096e3fe7da58aebb47d73cafaf039a1800661",
10733
+ "0x5fffee2555a15899ad656c1a80f1b35cd0b2c0c1",
10734
+ "0x60b3d20d5f32fcc33bd9dea65a0eea155bdc8eac",
10735
+ "0x621c5551678189b9a6c94d929924c225ff1d63ab",
10736
+ "0x622450a3048ae44a5c54e2b54c91b082313e1d23",
10737
+ "0x6802b4267f7f2bf7003dcf993c51542245b38329",
10738
+ "0x68d017f8c75d22af6a48aa6f2f697c658ec15599",
10739
+ "0x6ba889db7f923622d3548f621ecc2054b80c1817",
10740
+ "0x6ce8a609b7e76d22b3cf477c16453ef9ec9a188a",
10741
+ "0x6e6f2ca77afaee5a22dc3cf0f903f39a548a82a6",
10742
+ "0x6f90d048a511626ba5a6425db17f377826df336a",
10743
+ "0x703000b1f20e9628cbecf175aaf299d3ab565155",
10744
+ "0x70596a2e541fd2f3d66f4e53e17dac5d94619522",
10745
+ "0x727956612a8700627451204a3ae26268bd1a1525",
10746
+ "0x72d73fea74d7ff40c3e5a70e17f5b1aaf47dfc26",
10747
+ "0x755905f280573d4fb8d22ed4fda18048ab1f8d08",
10748
+ "0x75faaf11458b7fef61a445fb82ef213817c9774f",
10749
+ "0x762609396e425be0c3a5dba96a4a4d457b2a22ce",
10750
+ "0x7717a7a245d9f950e586822b8c9b46863ed7bd7e",
10751
+ "0x77ce3aa96c87c263517cb84729df663b7b92e1b0",
10752
+ "0x7824de8107507a487bc1eb72d764f5bdda3c76c7",
10753
+ "0x7a146ee9d212816c31a0a93531e23d4359aade10",
10754
+ "0x7af0b7a51c6bbf3970a5d0c79fc958f3d5ec58b7",
10755
+ "0x7afa2a23505d2fe7061151b2931de43a39a4faf8",
10756
+ "0x7fd284b3b84e67530e8d89e86288bff9fa0b20c7",
10757
+ "0x7fdafde5cfb5465924316eced2d3715494c517d1",
10758
+ "0x80196a7475464e06de641df6c66e6e278cd364d5",
10759
+ "0x80502eebab4868079947433f51e16cdb58c38e9c",
10760
+ "0x80878e30e2a23e71c35f1a5625cd3cf055649f11",
10761
+ "0x80d2f7ed506098c5e151bff10a93d3e9880f3215",
10762
+ "0x80f80b9cbad775b4fb9d699d34f5c5acc4615bdb",
10763
+ "0x80fd5f3557dea2f157fc5d6275bf2b85a1cc424b",
10764
+ "0x813870211739f662a28ea43ad52102ded6c716cf",
10765
+ "0x81e0b8cc66bad8db613e5aa77cc7225c03d0e8eb",
10766
+ "0x83027df4f3f749a1f9dd8bbc976eee49653c1d72",
10767
+ "0x8342b064d963c5ab6425c7edee4de0a31838b58a",
10768
+ "0x839fb7089af2091b9bd9487a977c41daf56394c0",
10769
+ "0x85b4f428f69617abcbaad94df50709f533c355e4",
10770
+ "0x86ce30a32452e8f13f1744ada385724515b5c613",
10771
+ "0x86e18aa23749afe925c02650e2974ad0112f24c1",
10772
+ "0x880ac484a1743862989a441d6d867238c7aa311c",
10773
+ "0x8917189c3b5036e34dc6759b8b4f7868e0301c90",
10774
+ "0x8b91b9508d13a756c80e180edcbc3161ac40a15b",
10775
+ "0x8c58d0919ad10db0fdbe1f8e0b715cfa0fc9728e",
10776
+ "0x8db976963ae5ae023a489762c3680a1f5e310682",
10777
+ "0x8def9f50456c6c4e37fa5d3d57f108ed23992dae",
10778
+ "0x8e32209749102c44a847c5cbb7b4706ae8baafbd",
10779
+ "0x8e403d0bea9dbf78fa62d2d980b3322d91250151",
10780
+ "0x8f61ec1cff19cc648cf76b86182d1a065fd1bf67",
10781
+ "0x8f8ce8014e0e41aab563627beede5b6861869fa2",
10782
+ "0x90088ab23e97a123d81404beda14504586c8ada9",
10783
+ "0x904e8b48dbf490f3c3bafe6a0d2894d3eb392e67",
10784
+ "0x91d11931c89ab5a88e1fcaf6fa137ab1c9b04179",
10785
+ "0x9266865bb6afb4c4f618544dd3b8c970f17aa664",
10786
+ "0x92c7d53dc3bac14722b281e74a3feba8f7ba040e",
10787
+ "0x9380413d90fdd69bc8590875e002475336aa7e79",
10788
+ "0x93f6bb0719e6d799c3b0b3e0844e31c41982ef14",
10789
+ "0x94d36132722d772fe053ea13c57bbdbdf435c085",
10790
+ "0x95995f302ad58138d791ce49f9f3b1274e80c60a",
10791
+ "0x95b5653dfd12b0bc13c08297869621c9650aa6bb",
10792
+ "0x9723f9485bffe25b6f03b79a0c2e8dc9642bb576",
10793
+ "0x97e060b0b3680efc5802d32d59ae31fad6ea8bc8",
10794
+ "0x9878b73eba4475a8ca8bb9be119c3f85df988e9d",
10795
+ "0x9887ac3b69538d77caa7f88c0688b740fb05a11f",
10796
+ "0x9894261fd45adeb3c30889db8f0de9b2ea4d04a4",
10797
+ "0x9970d443386312f7839f3adbe2d607b024ac20c6",
10798
+ "0x9b8d146ab4b61c281b993e3f85066249a6e9b0db",
10799
+ "0x9c2a2a966ed8e47f0c8b7e2ec2b91424f229f6a8",
10800
+ "0x9eb20a52a8d12dbe41248218c6c5f7770f3021cb",
10801
+ "0xa28f09361c1e003000320af6440b5d10a983647e",
10802
+ "0xa30d04e119791fe2e4cc36a8091eeb82d9650337",
10803
+ "0xa33a4a057334c7811ad5f45f3c4f0dfa3d081ff8",
10804
+ "0xa70ac79d24b8ea7dc8899d6c2df26488130b4be9",
10805
+ "0xa775d1bd91ee2cc4cae6113e5fd9c0c17b355277",
10806
+ "0xa880d6cc607a05ea617307ab3b0d335e8d8424ee",
10807
+ "0xa95db61bd736644051f14c644c92b93a63ce8242",
10808
+ "0xab04d040dec929a204298d44701476968b238b69",
10809
+ "0xac7476e14f768e3e67c195e79c2490dd20c70127",
10810
+ "0xaddacd90073a45407af690cc6058768584b883e3",
10811
+ "0xae78adaba70f18c15418001263504af373884520",
10812
+ "0xae7a0f9f663bb54bfe95378c7e3de7dd6e28d6bc",
10813
+ "0xae822bb60e9b636a79e692c0ee13e9a2ded7e5c9",
10814
+ "0xaf9f722a676230cc44045efe26fe9a85801ca4fa",
10815
+ "0xb0026ca48937bd18c5941c05decab68b0fcced8a",
10816
+ "0xb11259b152b5c32eed8d788a0566775b57328c0c",
10817
+ "0xb1938cc3babe6cb8812c85a337829425e30de935",
10818
+ "0xb19cb58fc03b66409051196822d6fd4262e5c429",
10819
+ "0xb2b1d1a7a034d9209a627e754ebb8d24988ca23a",
10820
+ "0xb3a38662575bdf1541013ce987934dba919851ea",
10821
+ "0xb4321b142b2a03ce20fcab2007ff6990b9acba93",
10822
+ "0xb4d6fe0f1504a55c65a986ef55b9148a6f0dae7a",
10823
+ "0xb6a766f531fa8e222f460df11d62b0f84b7b65f3",
10824
+ "0xb756c89e73c8711a881c009e10f79b1566f80cdb",
10825
+ "0xb8eb97eaed8367079894d2f1bed69bd220ec1dd5",
10826
+ "0xb92bc2168abb8afc0092f1ed58cee85c77cf8f5a",
10827
+ "0xbb20bcfb595320147312b081ca5a050ec2cfffeb",
10828
+ "0xbb475febf78b528f4f0d4ae1a12541406565199c",
10829
+ "0xbb658f27edd91dd9c05eb676ce1ffc6677603074",
10830
+ "0xbb828515677729c4db2f790a52cf14b1c659e19f",
10831
+ "0xbc456a41999f235cb959bc3cc88bd5a5c7d7e251",
10832
+ "0xbdb525a0755b92f2a546e5caf62ff60a8e770163",
10833
+ "0xbe60007eb1467bd6eceb402c0796ea36ff1d6c6a",
10834
+ "0xbea190067a74c6333e17add15251aff29fee4d05",
10835
+ "0xbeec40cd2711645a363fcd75c898fcaf70bce7b4",
10836
+ "0xbf1935fe7ab6d0aa3ee8d3da47c2f80e215b2a1c",
10837
+ "0xbfa317b7468a97e4e6a7a3c138b86ca0b7395477",
10838
+ "0xc12f80e8b763df7fa5b400767698fd86c87f7cb1",
10839
+ "0xc1e42f862d202b4a0ed552c1145735ee088f6ccf",
10840
+ "0xc1fd39727cd10fe97ccac228888f025309560a93",
10841
+ "0xc26841ffcbe4ed97ce39ce26b109f63c18c67cae",
10842
+ "0xc2f3a965e92aa4017d17f925f3df337127bb02ea",
10843
+ "0xc3f43a41a396e5049d6f96c7d444fc6c315b738a",
10844
+ "0xc512f7be1fd53c8ff526e6a067bebca18169b5c8",
10845
+ "0xc542f44ac010d9fde5544de51821d88c514a2d74",
10846
+ "0xc6ac58a7a63339898aeda32499a8238a46d88e84",
10847
+ "0xc86242898f4b63883f05628d8cf2c326071797b8",
10848
+ "0xcacf02ccefefe60f10762556ab996587d4f08f67",
10849
+ "0xcb364ba897f37fe13ad8df0c6b9ac7625e9f3757",
10850
+ "0xcb37f1fe07988e6ff6c21b28b986fed13ebfa549",
10851
+ "0xcb525be5530b95a1f3b2056f380ad3be61a648ea",
10852
+ "0xcbec2fd28c44cc34f69ce9e98029595157f47096",
10853
+ "0xcc287ae1d6fcba751ba55c2d35e9cb750ff2ffcd",
10854
+ "0xcd353d93f3f9fc70f248dccdc944da768b55d6b2",
10855
+ "0xcd873972d192d25972fc1d8e5b5cecab4c1429da",
10856
+ "0xce2cb0432d0c6e6ac01905f1b2e2ec877582237f",
10857
+ "0xcea95051b5f007cba9b6ffdc9e99c2d7e0342192",
10858
+ "0xcf075add75bcbd54768551e122a34f8bd84dde49",
10859
+ "0xcf0a36dec06e90263288100c11cf69828338e826",
10860
+ "0xcf2b172f8b8b8f95936386829ce4480148fc940c",
10861
+ "0xd02928c445d780ea954fe0b6f0be0f6cb9727678",
10862
+ "0xd080b654474d679c03df4fd676aa818c1adfa608",
10863
+ "0xd2df0afc8b18f9506ee0db0abd66727b329edc91",
10864
+ "0xd34788e2f96758972c27678725808e50ef843f01",
10865
+ "0xd3d123f0f62559c62745ef0b631a21a95916b6b1",
10866
+ "0xd47776750bf095ae3f0461e06ce312c2e6026e7e",
10867
+ "0xd4c1f7e8d876c4749228d515473d36f919583d1d",
10868
+ "0xd598516dcc699ced64ee441b20f41cb2eff9c098",
10869
+ "0xd63c228ea09e4d999f5fb3ed7d3529756e3a724f",
10870
+ "0xd7d73ce417f8b27d30dd9e09b43462cbecbbc6c6",
10871
+ "0xd8727dda96b1375ea5dd936e658d4265cab300a5",
10872
+ "0xd88927f71d480ed7b4cbb867c5200d8fd9e09f31",
10873
+ "0xd911e53d53b663972254e086450fd6198a25961e",
10874
+ "0xd92b87bdbfa4ca9d5bf9fa86ed89da810320af07",
10875
+ "0xda0ff39a47b355190c15e5c8d3c026088c0aa1d6",
10876
+ "0xda949f94ca319ed6ccb4048af840acf0bab8feb8",
10877
+ "0xdab4bc9946e470fd56f7c1a5d79854cba2c447c6",
10878
+ "0xdd21d4610dc36792372769758e53aa9e312b14a0",
10879
+ "0xdd334f7e8977c80e3ce0e5675d496b75a2de153e",
10880
+ "0xddb28c943cdbaa51a3ce5452a388271163f4e02f",
10881
+ "0xde236b0b3b367d5ad2a2c42b914bded79d03fe28",
10882
+ "0xe011d7ef88be6fd31e8de046fe8d0a7f19948384",
10883
+ "0xe041d60c09c3608a783603b81a2d70a8efdf6060",
10884
+ "0xe056eebc2c7acfc782d47ebe18ad71735480f72a",
10885
+ "0xe13c095580cf6fcb9c087308668062b76b4939e2",
10886
+ "0xe298fb51a03dc6efe6f42de608961c5a123b8406",
10887
+ "0xe2990ce029db870c805e90a1a8a1d8a1c52255d6",
10888
+ "0xe3b3482482899b4890ec5a2093cba2a558d0c14f",
10889
+ "0xe4d9263e8069f7b0f1f6ef14f0ac2debe318d2b1",
10890
+ "0xe5987151afa18aaab2da7ad00f8b0f1e7173b2d3",
10891
+ "0xe65bac8dd067e2bf78e78c6fb3b18903d55db802",
10892
+ "0xe6fcc492fb5ea091bdbe2e1a9f163e5039f144bc",
10893
+ "0xe7c489f250dee5b083fe34b4b3fc439a12402de2",
10894
+ "0xe7fefc0f713a5d7f02cc41977a5e0d69dbe7ba22",
10895
+ "0xe86b057f5eb764c9738d6b0d38170befd0723664",
10896
+ "0xe8de5d2ae47fa0a00d1de7a36b2a2d75b63a80f7",
10897
+ "0xe99d7d7f6a3664e19dfb14872d8c81813e15ab33",
10898
+ "0xe9acfdc9322f6f924f007016c082e6891a3c653c",
10899
+ "0xeaa123246b396028fc8fea0175f013c13e097157",
10900
+ "0xebc07f90e20df3b959805911c3649dc40fea2c28",
10901
+ "0xec7c3257d80aa80d06d996517020744e40a70b05",
10902
+ "0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00",
10903
+ "0xed7c45acfd7d2d3b21f3039d86e1da540596d23a",
10904
+ "0xedef301f13c37e789d00c3393df6b5e2ae7c0635",
10905
+ "0xee162a5a60829bd346f0c1ac3514b21fe5f4b290",
10906
+ "0xeed00c28271a0b35d5c306c8b8c46379ec9c5904",
10907
+ "0xef02a2b7a2cc912396d6a839db0acdee0a665c3a",
10908
+ "0xf0480a7892bc260658e82359f3c9374bc0a75444",
10909
+ "0xf093ca16e6a17e1698fc3aeb5df19feb7be904f0",
10910
+ "0xf27ebb91ea420f73b59b205ac7e0b77a90ec8f3c",
10911
+ "0xf28a9c278685e0b6da09b1bf844bbfaafc0f79af",
10912
+ "0xf36c562be0598b8ce109998b6aa2d53ffcd8316b",
10913
+ "0xf41d43af482e7762212a8fd87156525783927515",
10914
+ "0xf51182207e3687985471e0da21cacf5ffc552e5d",
10915
+ "0xf5c48df6137af44ab93ee34d1d94db206547bc78",
10916
+ "0xf76d45170559ad58dafd512246f679b7d71f6315",
10917
+ "0xf795c3de729dd537f9baf40fe0ffe373c96e6e92",
10918
+ "0xf8c5362479968e9b9643c9f3b93fbaf3db008acd",
10919
+ "0xf8d5995566d01ec6817ff041402d33f97ba6cc31",
10920
+ "0xf9109ada2f73c62e9889b45453065f0d99260a2d",
10921
+ "0xf94d29a246d909f386b3ecb631b3670dc01a0efb",
10922
+ "0xf961453fac6b70e1d3616b613717413abc88bad3",
10923
+ "0xf9aa2b8b6fc1ba884a10a677767cef449e529c72",
10924
+ "0xfb076dc52e7b750fb7779811048993541db4e572",
10925
+ "0xfb22906e051b252edbfa18102fea82fecfbae4b9",
10926
+ "0xfe664464cdd10b869939f6652eac2cd8889e9c62",
10927
+ "0xfe72c242af1a4ca8114c6a170ba4a823785241ce",
10928
+ "0xff9152cce6fbd30988b1aef70df6f086c99e2c55",
10929
+ "0xfffa6fc6acc3dbe04b175862376f1c5ff88cf9c1",
10930
+ "0xffffffffffffffffffffffffffffffffffffffff"
10931
+ ]
9679
10932
  }
9680
- ].slice(0)
10933
+ ]
9681
10934
  };
9682
10935
  var $9af31dbb692f94e3$export$2e2bcd8739ae039 = $9af31dbb692f94e3$var$filterValuesTemplate;
9683
10936