@indexing/jiti 0.0.58 → 0.0.59

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) {
@@ -140,7 +141,7 @@ function $56acd58307ebf8e6$export$363ea1acea6aebd6(block) {
140
141
  case "SUI":
141
142
  return parseInt(block.sequence, 10);
142
143
  case "SVM":
143
- return block.blockHeight;
144
+ return block.parentSlot + 1;
144
145
  case "TON":
145
146
  return block.seqno;
146
147
  case "UTXO":
@@ -235,7 +236,7 @@ function $b8691f253b6baa6e$export$ec64f6024312bb14(block) {
235
236
  case "APTOS":
236
237
  return new Date(parseInt(block.transactions[0].timestamp, 10) / 1000);
237
238
  case "CARDANO":
238
- return new Date(block.timestamp * 1000);
239
+ return new Date(block.timestamp);
239
240
  case "COSMOS":
240
241
  return new Date(block.block.header.time);
241
242
  case "EVM":
@@ -807,7 +808,7 @@ const $60d24c82dc5feb2e$export$893111d8d332e195 = {
807
808
  match: (block)=>(0, $6bd2ca253e883278$export$ae001c77434c5340)(block) === "CARDANO",
808
809
  transform (block) {
809
810
  let transfers = [];
810
- const blockTimestamp = new Date(block.timestamp * 1000).toISOString();
811
+ const blockTimestamp = new Date(block.timestamp).toISOString();
811
812
  for (const tx of block.transactions || []){
812
813
  const typedTx = tx;
813
814
  if (!Array.isArray(typedTx.operations)) continue;
@@ -857,7 +858,7 @@ const $60d24c82dc5feb2e$export$893111d8d332e195 = {
857
858
  amount: 1110000n,
858
859
  blockNumber: 11443286,
859
860
  from: "addr1qymdv285few5tyqvya86rl97r9e608njs37shfew6l2nn473aw2pcnrcvfwfgg2dnew99m4tjj0apsu7232w2euzwpysndh0h3",
860
- timestamp: "+057068-01-19T05:23:20.000Z",
861
+ timestamp: "2025-02-05T03:34:53.000Z",
861
862
  to: "addr1q9syxu908lef7r6rsvk0h7gsx3rxj22cuykgx2a2l4hcfd8e9y2e9vtv4w9dyej96w99wwj8hwgc273862lk6a3vt30qjjrund",
862
863
  token: null,
863
864
  tokenType: "NATIVE",
@@ -1336,145 +1337,438 @@ const $3b9b8f5747dcca8e$export$722698bc663d0ac0 = {
1336
1337
 
1337
1338
 
1338
1339
 
1340
+
1341
+
1342
+ var $fc7ca671efecc378$require$Buffer = $8zHUo$buffer.Buffer;
1343
+ const $fc7ca671efecc378$var$SYSTEM_PROGRAM = "11111111111111111111111111111111";
1344
+ const $fc7ca671efecc378$var$WSOL_MINT = "So11111111111111111111111111111111111111112";
1345
+ const $fc7ca671efecc378$var$SPL_TOKEN_PROGRAM = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA";
1346
+ const $fc7ca671efecc378$var$SPL_TOKEN_2022_PROGRAM = "TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb";
1347
+ const $fc7ca671efecc378$var$ASSOCIATED_TOKEN_ACCOUNT_PROGRAM = "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL";
1339
1348
  const $fc7ca671efecc378$export$a51565c56ceacb0a = {
1340
1349
  match: (block)=>(0, $6bd2ca253e883278$export$ae001c77434c5340)(block) === "SVM",
1341
1350
  transform (block) {
1342
1351
  let transfers = [];
1343
1352
  for (const tx of block.transactions || []){
1353
+ const txTransfers = [];
1344
1354
  const svmTx = tx;
1345
1355
  const txHash = svmTx.transaction.signatures[0];
1346
1356
  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);
1357
+ 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
1358
  let txFee = BigInt(svmTx.meta.fee);
1349
1359
  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;
1360
+ const signerIdx = svmTx.transaction.signatures.length - 1;
1361
+ const signer = allAccounts[signerIdx];
1362
+ const feePayer = allAccounts[0];
1363
+ // handle tx fee
1364
+ txTransfers.push({
1365
+ amount: txFee,
1366
+ blockNumber: block.parentSlot + 1,
1367
+ from: feePayer,
1368
+ index: "0",
1369
+ timestamp: timestamp,
1370
+ to: null,
1371
+ transactionGasFee: txFee,
1372
+ transactionHash: txHash,
1373
+ token: null,
1374
+ tokenType: "NATIVE"
1375
+ });
1376
+ const allUntypedInstructions = [];
1377
+ for(let idx = 0; idx < svmTx.transaction.message.instructions.length; idx += 1){
1378
+ allUntypedInstructions.push({
1379
+ ...svmTx.transaction.message.instructions[idx],
1380
+ index: idx
1381
+ });
1382
+ allUntypedInstructions.push(...svmTx.meta.innerInstructions.filter((ii)=>ii.index === idx).map((ii)=>ii.instructions.map((i, subIdx)=>({
1383
+ ...i,
1384
+ rootIndex: ii.index,
1385
+ index: subIdx
1386
+ }))).flat());
1387
+ }
1388
+ const allInstructions = allUntypedInstructions;
1389
+ const createdAccountsToOwner = {};
1390
+ const previousAccountsClose = {};
1391
+ for(let idx = 0; idx < allInstructions.length; idx += 1){
1392
+ if (svmTx.meta.status?.Err) continue;
1393
+ const inst = allInstructions[idx];
1394
+ const index = `${inst.rootIndex ? `${inst.rootIndex + 1}-` : ""}${inst.index + 1}`;
1395
+ try {
1396
+ const programId = allAccounts[inst.programIdIndex];
1397
+ const instData = (0, ($parcel$interopDefault($8zHUo$bs58))).decode(inst.data);
1398
+ const instSig = Array.from(instData).join(",");
1399
+ const matchingAccounts = inst.accounts.map((a)=>allAccounts[a]);
1400
+ // SPL Transfers
1401
+ if ([
1402
+ $fc7ca671efecc378$var$SPL_TOKEN_PROGRAM,
1403
+ $fc7ca671efecc378$var$SPL_TOKEN_2022_PROGRAM
1404
+ ].includes(programId)) {
1405
+ // TRANSFER, TRANSFER CHECKED
1406
+ if (instSig.startsWith("3,") && inst.accounts.length === 3 || instSig.startsWith("12,") && inst.accounts.length === 4) {
1407
+ const amountData = $fc7ca671efecc378$require$Buffer.from(instData).slice(1, 9);
1408
+ if (amountData.length < 8) continue;
1409
+ const amount = BigInt(amountData.readBigUInt64LE(0).toString());
1410
+ const fromIdx = inst.accounts[0];
1411
+ const toIdx = inst.accounts[inst.accounts.length - 2];
1412
+ let from = createdAccountsToOwner[allAccounts[fromIdx]];
1413
+ let to = createdAccountsToOwner[allAccounts[toIdx]];
1414
+ let mint;
1415
+ for (const ptb of svmTx.meta.preTokenBalances.concat(svmTx.meta.postTokenBalances)){
1416
+ if (ptb.accountIndex === fromIdx) {
1417
+ from = ptb.owner;
1418
+ if (!mint) mint = ptb.mint;
1419
+ }
1420
+ if (ptb.accountIndex === toIdx) {
1421
+ to = ptb.owner;
1422
+ if (!mint) mint = ptb.mint;
1423
+ }
1424
+ if (from && to && mint) break;
1425
+ }
1426
+ // @NOTE: should improve this - currently we assume unknown accounts belong to the signer
1427
+ if (!from) from = signer;
1428
+ if (!to) to = signer;
1429
+ txTransfers.push({
1430
+ amount: amount,
1431
+ blockNumber: block.parentSlot + 1,
1432
+ from: from,
1433
+ fromTokenAccount: allAccounts[fromIdx],
1434
+ index: index,
1435
+ timestamp: timestamp,
1436
+ to: to,
1437
+ toTokenAccount: allAccounts[toIdx],
1438
+ transactionGasFee: txFee,
1439
+ transactionHash: txHash,
1440
+ token: mint,
1441
+ tokenType: "TOKEN"
1442
+ });
1443
+ } else if (instSig === "9") {
1444
+ let solAmount = BigInt(svmTx.meta.preBalances[inst.accounts[0]] || 0);
1445
+ let from = matchingAccounts[0];
1446
+ let wSolAmount = (previousAccountsClose[from] || BigInt(0)) * BigInt(-1);
1447
+ const to = matchingAccounts[2];
1448
+ for (const t of txTransfers){
1449
+ if (t.to === from && !t.token || t.toTokenAccount === from && t.token === $fc7ca671efecc378$var$WSOL_MINT) {
1450
+ solAmount += t.amount;
1451
+ if (t.token === $fc7ca671efecc378$var$WSOL_MINT) wSolAmount -= t.amount;
1452
+ } else if (t.from === from && !t.token || t.fromTokenAccount === from && t.token === $fc7ca671efecc378$var$WSOL_MINT) {
1453
+ solAmount -= t.amount;
1454
+ if (t.token === $fc7ca671efecc378$var$WSOL_MINT) wSolAmount += t.amount;
1455
+ }
1456
+ }
1457
+ txTransfers.push({
1458
+ amount: solAmount,
1459
+ blockNumber: block.parentSlot + 1,
1460
+ from: from,
1461
+ index: index,
1462
+ timestamp: timestamp,
1463
+ to: to,
1464
+ transactionGasFee: txFee,
1465
+ transactionHash: txHash,
1466
+ token: null,
1467
+ tokenType: "NATIVE"
1468
+ });
1469
+ // handle wrap/unwrap of wSOL
1470
+ if (!previousAccountsClose[from]) previousAccountsClose[from] = BigInt(0);
1471
+ if (wSolAmount > BigInt(0)) {
1472
+ txTransfers.push({
1473
+ amount: wSolAmount,
1474
+ blockNumber: block.parentSlot + 1,
1475
+ from: from,
1476
+ index: `${index}-1`,
1477
+ timestamp: timestamp,
1478
+ to: $fc7ca671efecc378$var$WSOL_MINT,
1479
+ transactionGasFee: txFee,
1480
+ transactionHash: txHash,
1481
+ token: null,
1482
+ tokenType: "NATIVE"
1483
+ });
1484
+ txTransfers.push({
1485
+ amount: wSolAmount,
1486
+ blockNumber: block.parentSlot + 1,
1487
+ from: $fc7ca671efecc378$var$WSOL_MINT,
1488
+ index: `${index}-2`,
1489
+ timestamp: timestamp,
1490
+ to: to,
1491
+ transactionGasFee: txFee,
1492
+ transactionHash: txHash,
1493
+ token: $fc7ca671efecc378$var$WSOL_MINT,
1494
+ tokenType: "TOKEN"
1495
+ });
1496
+ previousAccountsClose[from] += wSolAmount;
1497
+ } else if (wSolAmount < BigInt(0)) {
1498
+ txTransfers.push({
1499
+ amount: wSolAmount * BigInt(-1),
1500
+ blockNumber: block.parentSlot + 1,
1501
+ from: $fc7ca671efecc378$var$WSOL_MINT,
1502
+ index: `${index}-1`,
1503
+ timestamp: timestamp,
1504
+ to: from,
1505
+ transactionGasFee: txFee,
1506
+ transactionHash: txHash,
1507
+ token: null,
1508
+ tokenType: "NATIVE"
1509
+ });
1510
+ txTransfers.push({
1511
+ amount: wSolAmount * BigInt(-1),
1512
+ blockNumber: block.parentSlot + 1,
1513
+ from: to,
1514
+ index: `${index}-2`,
1515
+ timestamp: timestamp,
1516
+ to: $fc7ca671efecc378$var$WSOL_MINT,
1517
+ transactionGasFee: txFee,
1518
+ transactionHash: txHash,
1519
+ token: $fc7ca671efecc378$var$WSOL_MINT,
1520
+ tokenType: "TOKEN"
1521
+ });
1522
+ previousAccountsClose[from] += wSolAmount;
1523
+ }
1384
1524
  }
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;
1525
+ } else if ([
1526
+ $fc7ca671efecc378$var$SYSTEM_PROGRAM
1527
+ ].includes(programId)) {
1528
+ // TRANSFER
1529
+ if (instSig.startsWith("2,0,0,0,")) {
1530
+ const amountData = $fc7ca671efecc378$require$Buffer.from(instData).slice(4);
1531
+ if (amountData.length < 8) continue;
1532
+ const amount = BigInt(amountData.readBigUInt64LE(0).toString());
1533
+ txTransfers.push({
1534
+ amount: amount,
1535
+ blockNumber: block.parentSlot + 1,
1536
+ from: matchingAccounts[0],
1537
+ index: index,
1538
+ timestamp: timestamp,
1539
+ to: matchingAccounts[1],
1540
+ transactionGasFee: txFee,
1541
+ transactionHash: txHash,
1542
+ token: null,
1543
+ tokenType: "NATIVE"
1544
+ });
1545
+ } else if (instSig.startsWith("0,0,0,0,")) {
1546
+ const amountData = $fc7ca671efecc378$require$Buffer.from(instData).slice(4, 12);
1547
+ const amount = BigInt(amountData.readBigUInt64LE(0).toString());
1548
+ txTransfers.push({
1549
+ amount: amount,
1550
+ blockNumber: block.parentSlot + 1,
1551
+ from: matchingAccounts[0],
1552
+ index: index,
1553
+ timestamp: timestamp,
1554
+ to: matchingAccounts[1],
1555
+ transactionGasFee: txFee,
1556
+ transactionHash: txHash,
1557
+ token: null,
1558
+ tokenType: "NATIVE"
1559
+ });
1560
+ createdAccountsToOwner[matchingAccounts[1]] = matchingAccounts[0];
1561
+ // try detecting an assignment of the new account
1562
+ const initInst = allInstructions[idx + 2];
1563
+ if (initInst && [
1564
+ $fc7ca671efecc378$var$SPL_TOKEN_PROGRAM,
1565
+ $fc7ca671efecc378$var$SPL_TOKEN_2022_PROGRAM
1566
+ ].includes(allAccounts[initInst.programIdIndex]) && initInst.accounts.length === 2 && initInst.accounts[0] === inst.accounts[1]) {
1567
+ const newOwner = (0, ($parcel$interopDefault($8zHUo$bs58))).encode($fc7ca671efecc378$require$Buffer.from((0, ($parcel$interopDefault($8zHUo$bs58))).decode(initInst.data)).slice(1));
1568
+ createdAccountsToOwner[matchingAccounts[1]] = newOwner;
1569
+ }
1570
+ } else if (instSig.startsWith("3,0,0,0,")) {
1571
+ const amountData = $fc7ca671efecc378$require$Buffer.from(instData).slice(instData.length - 48, instData.length - 40);
1572
+ const amount = BigInt(amountData.readBigUInt64LE(0).toString());
1573
+ txTransfers.push({
1574
+ amount: amount,
1575
+ blockNumber: block.parentSlot + 1,
1576
+ from: matchingAccounts[0],
1577
+ index: index,
1578
+ timestamp: timestamp,
1579
+ to: matchingAccounts[1],
1580
+ transactionGasFee: txFee,
1581
+ transactionHash: txHash,
1582
+ token: null,
1583
+ tokenType: "NATIVE"
1584
+ });
1585
+ createdAccountsToOwner[matchingAccounts[1]] = matchingAccounts[0];
1416
1586
  }
1417
- if (!didMerge) transfersByKey[key].push(txfer);
1418
1587
  }
1588
+ } catch (e) {
1589
+ // we only want valid transfers
1419
1590
  }
1420
1591
  }
1592
+ // handle non-explicit SOL cases
1593
+ const solTransferDiffs = {};
1594
+ for (const t of txTransfers){
1595
+ if (t.from === t.to || t.token) continue;
1596
+ if (!solTransferDiffs[t.from]) solTransferDiffs[t.from] = BigInt(0);
1597
+ if (!solTransferDiffs[t.to]) solTransferDiffs[t.to] = BigInt(0);
1598
+ solTransferDiffs[t.from] -= t.amount;
1599
+ solTransferDiffs[t.to] += t.amount;
1600
+ }
1601
+ const toReconcile = {};
1421
1602
  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;
1603
+ const account = allAccounts[i];
1604
+ const diff = BigInt(svmTx.meta.postBalances[i]) - BigInt(svmTx.meta.preBalances[i] || 0);
1605
+ if (solTransferDiffs[account] !== diff) toReconcile[account] = diff - (solTransferDiffs[account] || BigInt(0));
1606
+ }
1607
+ if (Object.keys(toReconcile).length) {
1608
+ const wSolTxfers = [];
1609
+ for (const t of txTransfers){
1610
+ // handle [near] exact match
1611
+ if (toReconcile[t.from] && toReconcile[t.to] && toReconcile[t.from] > 0 && toReconcile[t.from] <= toReconcile[t.to] * BigInt(-1)) {
1612
+ txTransfers.push({
1613
+ amount: toReconcile[t.from],
1614
+ blockNumber: block.parentSlot + 1,
1615
+ from: t.to,
1616
+ index: t.index + "-1",
1617
+ timestamp: timestamp,
1618
+ to: t.from,
1619
+ token: null,
1620
+ tokenType: "NATIVE",
1621
+ transactionGasFee: txFee,
1622
+ transactionHash: txHash
1623
+ });
1624
+ toReconcile[t.to] += toReconcile[t.from];
1625
+ delete toReconcile[t.from];
1626
+ if (toReconcile[t.to] === BigInt(0)) delete toReconcile[t.to];
1627
+ } else if (t.token === $fc7ca671efecc378$var$WSOL_MINT) {
1628
+ wSolTxfers.push(t);
1629
+ if (toReconcile[t.fromTokenAccount]) {
1630
+ txTransfers.push({
1631
+ amount: t.amount,
1632
+ blockNumber: block.parentSlot + 1,
1633
+ from: t.fromTokenAccount,
1634
+ index: t.index + "-1",
1635
+ timestamp: timestamp,
1636
+ to: $fc7ca671efecc378$var$WSOL_MINT,
1637
+ token: null,
1638
+ tokenType: "NATIVE",
1639
+ transactionGasFee: txFee,
1640
+ transactionHash: txHash
1641
+ });
1642
+ toReconcile[t.fromTokenAccount] += t.amount;
1643
+ if (toReconcile[t.fromTokenAccount] === BigInt(0)) delete toReconcile[t.fromTokenAccount];
1644
+ }
1645
+ if (toReconcile[t.toTokenAccount]) {
1646
+ txTransfers.push({
1647
+ amount: t.amount,
1648
+ blockNumber: block.parentSlot + 1,
1649
+ from: $fc7ca671efecc378$var$WSOL_MINT,
1650
+ index: t.index + "-2",
1651
+ timestamp: timestamp,
1652
+ to: t.toTokenAccount,
1653
+ token: null,
1654
+ tokenType: "NATIVE",
1655
+ transactionGasFee: txFee,
1656
+ transactionHash: txHash
1657
+ });
1658
+ toReconcile[t.toTokenAccount] -= t.amount;
1659
+ if (toReconcile[t.toTokenAccount] === BigInt(0)) delete toReconcile[t.toTokenAccount];
1450
1660
  }
1451
- if (!didMerge) transfersByKey[key].push(txfer);
1452
1661
  }
1453
1662
  }
1663
+ for(const k in toReconcile){
1664
+ if (toReconcile[k] === BigInt(0)) delete toReconcile[k];
1665
+ for(const j in toReconcile)if (k !== j && toReconcile[k] === toReconcile[j] * BigInt(-1)) {
1666
+ txTransfers.push({
1667
+ amount: toReconcile[j] < BigInt(0) ? toReconcile[j] * BigInt(-1) : toReconcile[j],
1668
+ blockNumber: block.parentSlot + 1,
1669
+ from: toReconcile[j] < BigInt(0) ? j : k,
1670
+ timestamp: // index,
1671
+ timestamp,
1672
+ to: toReconcile[j] > BigInt(0) ? j : k,
1673
+ transactionGasFee: txFee,
1674
+ transactionHash: txHash,
1675
+ token: null,
1676
+ tokenType: "NATIVE"
1677
+ });
1678
+ delete toReconcile[k];
1679
+ delete toReconcile[j];
1680
+ }
1681
+ }
1682
+ // handle internal self transfers
1683
+ if (Object.values(toReconcile).reduce((a, b)=>a + b, BigInt(0)) === BigInt(0)) {
1684
+ const toSend = Object.entries(toReconcile).filter(([k, a])=>a < BigInt(0));
1685
+ toSend.sort((a, b)=>a[1] < b[1] ? 1 : 0);
1686
+ const toReceive = Object.entries(toReconcile).filter(([k, a])=>a > BigInt(0));
1687
+ toReceive.sort((a, b)=>a[1] > b[1] ? 1 : 0);
1688
+ for (const toPair of toReceive){
1689
+ let amountToSend = toPair[1];
1690
+ const to = toPair[0];
1691
+ while(amountToSend > BigInt(0)){
1692
+ const fromPair = toSend[0];
1693
+ if (!fromPair) break;
1694
+ const from = fromPair[0];
1695
+ let amount = amountToSend;
1696
+ if (toReconcile[from] * BigInt(-1) < amount) amount = toReconcile[from] * BigInt(-1);
1697
+ txTransfers.push({
1698
+ amount: amount,
1699
+ blockNumber: block.parentSlot + 1,
1700
+ from: from,
1701
+ timestamp: // index,
1702
+ timestamp,
1703
+ to: to,
1704
+ transactionGasFee: txFee,
1705
+ transactionHash: txHash,
1706
+ token: null,
1707
+ tokenType: "NATIVE"
1708
+ });
1709
+ toReconcile[from] += amount;
1710
+ if (toReconcile[from] === BigInt(0)) {
1711
+ delete toReconcile[from];
1712
+ toSend.shift();
1713
+ }
1714
+ amountToSend -= amount;
1715
+ }
1716
+ delete toReconcile[to];
1717
+ }
1718
+ }
1719
+ for(const k in toReconcile)if (toReconcile[k] === BigInt(0)) delete toReconcile[k];
1720
+ delete toReconcile[$fc7ca671efecc378$var$WSOL_MINT];
1454
1721
  }
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);
1722
+ // clean up SOL unwraps & token mints
1723
+ const tokenTransferDiffs = {};
1724
+ for (const t of txTransfers){
1725
+ if (t.from === t.to) continue;
1726
+ const key1 = `${t.from}-${t.token}`;
1727
+ const key2 = `${t.to}-${t.token}`;
1728
+ if (!tokenTransferDiffs[key1]) tokenTransferDiffs[key1] = BigInt(0);
1729
+ if (!tokenTransferDiffs[key2]) tokenTransferDiffs[key2] = BigInt(0);
1730
+ tokenTransferDiffs[key1] -= t.amount;
1731
+ tokenTransferDiffs[key2] += t.amount;
1467
1732
  }
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);
1733
+ for (const post of svmTx.meta.postTokenBalances){
1734
+ const account = post.owner;
1735
+ const pre = svmTx.meta.preTokenBalances.find((p)=>p.mint === post.mint && p.owner === account && p.accountIndex === post.accountIndex);
1736
+ const diff = BigInt(post.uiTokenAmount.amount) - BigInt(pre?.uiTokenAmount.amount || 0);
1737
+ const key = `${account}-${post.mint}`;
1738
+ if (tokenTransferDiffs[key] !== diff && account !== post.mint) {
1739
+ const amount = diff - (tokenTransferDiffs[key] || BigInt(0));
1740
+ // try attributing to unwrapping wSOL
1741
+ if (amount > BigInt(0) && post.mint === $fc7ca671efecc378$var$WSOL_MINT) txTransfers.push({
1742
+ amount: amount,
1743
+ blockNumber: block.parentSlot + 1,
1744
+ from: $fc7ca671efecc378$var$WSOL_MINT,
1745
+ timestamp: // index,
1746
+ timestamp,
1747
+ to: account,
1748
+ transactionGasFee: txFee,
1749
+ transactionHash: txHash,
1750
+ token: $fc7ca671efecc378$var$WSOL_MINT,
1751
+ tokenType: "TOKEN"
1752
+ });
1753
+ else if (!pre && amount > BigInt(0)) txTransfers.push({
1754
+ amount: amount,
1755
+ blockNumber: block.parentSlot + 1,
1756
+ from: post.mint,
1757
+ timestamp: // index,
1758
+ timestamp,
1759
+ to: account,
1760
+ transactionGasFee: txFee,
1761
+ transactionHash: txHash,
1762
+ token: post.mint,
1763
+ tokenType: "TOKEN"
1475
1764
  });
1476
1765
  }
1477
1766
  }
1767
+ transfers.push(...txTransfers.map((t)=>{
1768
+ delete t.fromTokenAccount;
1769
+ delete t.toTokenAccount;
1770
+ return t;
1771
+ }));
1478
1772
  }
1479
1773
  return transfers;
1480
1774
  },
@@ -1482,52 +1776,307 @@ const $fc7ca671efecc378$export$a51565c56ceacb0a = {
1482
1776
  {
1483
1777
  params: {
1484
1778
  network: "SOLANA",
1485
- walletAddress: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1486
- contractAddress: "6MQpbiTC2YcogidTmKqMLK82qvE9z5QEm7EP3AEDpump"
1779
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
1487
1780
  },
1488
1781
  payload: "https://jiti.indexing.co/networks/solana/345871978",
1489
1782
  output: [
1490
1783
  {
1491
- amount: 10492578617n,
1492
- blockNumber: 324081557,
1784
+ amount: 2506024n,
1785
+ blockNumber: 345871978,
1493
1786
  from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1787
+ index: "0",
1494
1788
  timestamp: "2025-06-10T12:06:56.000Z",
1495
- to: "ChkRerg6X89xHYqV4iBqcboBdU1WA8Uvs9fp2yZrqbg",
1789
+ to: null,
1790
+ transactionGasFee: 2506024n,
1791
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1792
+ token: null,
1793
+ tokenType: "NATIVE"
1794
+ },
1795
+ {
1796
+ amount: 2039280n,
1797
+ blockNumber: 345871978,
1798
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1799
+ index: "3",
1800
+ timestamp: "2025-06-10T12:06:56.000Z",
1801
+ to: "CtFXczF6VRBE4KgJDebiwhB4Vheg87di5SgPcmMViu8j",
1802
+ transactionGasFee: 2506024n,
1803
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1804
+ token: null,
1805
+ tokenType: "NATIVE"
1806
+ },
1807
+ {
1808
+ amount: 16788125787n,
1809
+ blockNumber: 345871978,
1810
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1811
+ index: "5-2",
1812
+ timestamp: "2025-06-10T12:06:56.000Z",
1813
+ to: "GWPLjamb5ZxrGbTsYNWW7V3p1pAMryZSfaPFTdaEsWgC",
1814
+ transactionGasFee: 2506024n,
1815
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1496
1816
  token: "6MQpbiTC2YcogidTmKqMLK82qvE9z5QEm7EP3AEDpump",
1497
- tokenType: "TOKEN",
1817
+ tokenType: "TOKEN"
1818
+ },
1819
+ {
1820
+ amount: 2485415086n,
1821
+ blockNumber: 345871978,
1822
+ from: "GWPLjamb5ZxrGbTsYNWW7V3p1pAMryZSfaPFTdaEsWgC",
1823
+ index: "5-3",
1824
+ timestamp: "2025-06-10T12:06:56.000Z",
1825
+ to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1498
1826
  transactionGasFee: 2506024n,
1499
- transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
1827
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1828
+ token: "So11111111111111111111111111111111111111112",
1829
+ tokenType: "TOKEN"
1830
+ },
1831
+ {
1832
+ amount: 1246447n,
1833
+ blockNumber: 345871978,
1834
+ from: "GWPLjamb5ZxrGbTsYNWW7V3p1pAMryZSfaPFTdaEsWgC",
1835
+ index: "5-4",
1836
+ timestamp: "2025-06-10T12:06:56.000Z",
1837
+ to: "62qc2CNXwrYqQScmEdiZFFAnJR262PxWEuNQtxfafNgV",
1838
+ transactionGasFee: 2506024n,
1839
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1840
+ token: "So11111111111111111111111111111111111111112",
1841
+ tokenType: "TOKEN"
1842
+ },
1843
+ {
1844
+ amount: 1246447n,
1845
+ blockNumber: 345871978,
1846
+ from: "GWPLjamb5ZxrGbTsYNWW7V3p1pAMryZSfaPFTdaEsWgC",
1847
+ index: "5-5",
1848
+ timestamp: "2025-06-10T12:06:56.000Z",
1849
+ to: "4XFtPwmsuKo8bHZQWRLWt7Jh4QdhSg9X68g4CELDhpsH",
1850
+ transactionGasFee: 2506024n,
1851
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1852
+ token: "So11111111111111111111111111111111111111112",
1853
+ tokenType: "TOKEN"
1500
1854
  },
1501
1855
  {
1502
1856
  amount: 10492578617n,
1503
- blockNumber: 324081557,
1857
+ blockNumber: 345871978,
1504
1858
  from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1859
+ index: "5-9",
1505
1860
  timestamp: "2025-06-10T12:06:56.000Z",
1506
1861
  to: "3shatpFgdVVwy8Pr723iE9L1fozzaXNdGYKtgrSwHYeJ",
1862
+ transactionGasFee: 2506024n,
1863
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1507
1864
  token: "6MQpbiTC2YcogidTmKqMLK82qvE9z5QEm7EP3AEDpump",
1508
- tokenType: "TOKEN",
1865
+ tokenType: "TOKEN"
1866
+ },
1867
+ {
1868
+ amount: 1553440149n,
1869
+ blockNumber: 345871978,
1870
+ from: "3shatpFgdVVwy8Pr723iE9L1fozzaXNdGYKtgrSwHYeJ",
1871
+ index: "5-10",
1872
+ timestamp: "2025-06-10T12:06:56.000Z",
1873
+ to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1509
1874
  transactionGasFee: 2506024n,
1510
- transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
1875
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1876
+ token: "So11111111111111111111111111111111111111112",
1877
+ tokenType: "TOKEN"
1511
1878
  },
1512
1879
  {
1513
- amount: 16788125787n,
1514
- blockNumber: 324081557,
1880
+ amount: 10492578617n,
1881
+ blockNumber: 345871978,
1515
1882
  from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1883
+ index: "5-13",
1516
1884
  timestamp: "2025-06-10T12:06:56.000Z",
1517
- to: "GWPLjamb5ZxrGbTsYNWW7V3p1pAMryZSfaPFTdaEsWgC",
1885
+ to: "ChkRerg6X89xHYqV4iBqcboBdU1WA8Uvs9fp2yZrqbg",
1886
+ transactionGasFee: 2506024n,
1887
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1518
1888
  token: "6MQpbiTC2YcogidTmKqMLK82qvE9z5QEm7EP3AEDpump",
1519
- tokenType: "TOKEN",
1889
+ tokenType: "TOKEN"
1890
+ },
1891
+ {
1892
+ amount: 1552556053n,
1893
+ blockNumber: 345871978,
1894
+ from: "ChkRerg6X89xHYqV4iBqcboBdU1WA8Uvs9fp2yZrqbg",
1895
+ index: "5-14",
1896
+ timestamp: "2025-06-10T12:06:56.000Z",
1897
+ to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1520
1898
  transactionGasFee: 2506024n,
1521
- transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
1899
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1900
+ token: "So11111111111111111111111111111111111111112",
1901
+ tokenType: "TOKEN"
1522
1902
  },
1523
1903
  {
1524
1904
  amount: 4197031447n,
1525
- blockNumber: 324081557,
1905
+ blockNumber: 345871978,
1526
1906
  from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1907
+ index: "5-17",
1527
1908
  timestamp: "2025-06-10T12:06:56.000Z",
1528
1909
  to: "ANcfLC9JcbYbEWu71fE8973V8S6vD5hS98RNrz56hrT7",
1910
+ transactionGasFee: 2506024n,
1911
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1529
1912
  token: "6MQpbiTC2YcogidTmKqMLK82qvE9z5QEm7EP3AEDpump",
1530
- tokenType: "TOKEN",
1913
+ tokenType: "TOKEN"
1914
+ },
1915
+ {
1916
+ amount: 621470846n,
1917
+ blockNumber: 345871978,
1918
+ from: "ANcfLC9JcbYbEWu71fE8973V8S6vD5hS98RNrz56hrT7",
1919
+ index: "5-18",
1920
+ timestamp: "2025-06-10T12:06:56.000Z",
1921
+ to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1922
+ transactionGasFee: 2506024n,
1923
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1924
+ token: "So11111111111111111111111111111111111111112",
1925
+ tokenType: "TOKEN"
1926
+ },
1927
+ {
1928
+ amount: 6214921414n,
1929
+ blockNumber: 345871978,
1930
+ from: "CtFXczF6VRBE4KgJDebiwhB4Vheg87di5SgPcmMViu8j",
1931
+ index: "5-19",
1932
+ timestamp: "2025-06-10T12:06:56.000Z",
1933
+ to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1934
+ transactionGasFee: 2506024n,
1935
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1936
+ token: null,
1937
+ tokenType: "NATIVE"
1938
+ },
1939
+ {
1940
+ amount: 6212882134n,
1941
+ blockNumber: 345871978,
1942
+ from: "So11111111111111111111111111111111111111112",
1943
+ index: "5-19-1",
1944
+ timestamp: "2025-06-10T12:06:56.000Z",
1945
+ to: "CtFXczF6VRBE4KgJDebiwhB4Vheg87di5SgPcmMViu8j",
1946
+ transactionGasFee: 2506024n,
1947
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1948
+ token: null,
1949
+ tokenType: "NATIVE"
1950
+ },
1951
+ {
1952
+ amount: 6212882134n,
1953
+ blockNumber: 345871978,
1954
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1955
+ index: "5-19-2",
1956
+ timestamp: "2025-06-10T12:06:56.000Z",
1957
+ to: "So11111111111111111111111111111111111111112",
1958
+ transactionGasFee: 2506024n,
1959
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1960
+ token: "So11111111111111111111111111111111111111112",
1961
+ tokenType: "TOKEN"
1962
+ },
1963
+ {
1964
+ amount: 52809498n,
1965
+ blockNumber: 345871978,
1966
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1967
+ index: "5-20",
1968
+ timestamp: "2025-06-10T12:06:56.000Z",
1969
+ to: "9yj3zvLS3fDMqi1F8zhkaWfq8TZpZWHe6cz1Sgt7djXf",
1970
+ transactionGasFee: 2506024n,
1971
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1972
+ token: null,
1973
+ tokenType: "NATIVE"
1974
+ },
1975
+ {
1976
+ amount: 87500n,
1977
+ blockNumber: 345871978,
1978
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1979
+ index: "6",
1980
+ timestamp: "2025-06-10T12:06:56.000Z",
1981
+ to: "CcTNKBhQKYu7nB4eRrRFQoXEvpd6H5QnGKh93pwniBtp",
1982
+ transactionGasFee: 2506024n,
1983
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1984
+ token: null,
1985
+ tokenType: "NATIVE"
1986
+ },
1987
+ {
1988
+ amount: 2485415086n,
1989
+ blockNumber: 345871978,
1990
+ from: "AYFHMPRhwxiScs98wgYxpMLV4MFbvZRRZo2G5hdun9Fp",
1991
+ index: "5-3-1",
1992
+ timestamp: "2025-06-10T12:06:56.000Z",
1993
+ to: "So11111111111111111111111111111111111111112",
1994
+ token: null,
1995
+ tokenType: "NATIVE",
1996
+ transactionGasFee: 2506024n,
1997
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
1998
+ },
1999
+ {
2000
+ amount: 1246447n,
2001
+ blockNumber: 345871978,
2002
+ from: "AYFHMPRhwxiScs98wgYxpMLV4MFbvZRRZo2G5hdun9Fp",
2003
+ index: "5-4-1",
2004
+ timestamp: "2025-06-10T12:06:56.000Z",
2005
+ to: "So11111111111111111111111111111111111111112",
2006
+ token: null,
2007
+ tokenType: "NATIVE",
2008
+ transactionGasFee: 2506024n,
2009
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
2010
+ },
2011
+ {
2012
+ amount: 1246447n,
2013
+ blockNumber: 345871978,
2014
+ from: "So11111111111111111111111111111111111111112",
2015
+ index: "5-4-2",
2016
+ timestamp: "2025-06-10T12:06:56.000Z",
2017
+ to: "94qWNrtmfn42h3ZjUZwWvK1MEo9uVmmrBPd2hpNjYDjb",
2018
+ token: null,
2019
+ tokenType: "NATIVE",
2020
+ transactionGasFee: 2506024n,
2021
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
2022
+ },
2023
+ {
2024
+ amount: 1246447n,
2025
+ blockNumber: 345871978,
2026
+ from: "AYFHMPRhwxiScs98wgYxpMLV4MFbvZRRZo2G5hdun9Fp",
2027
+ index: "5-5-1",
2028
+ timestamp: "2025-06-10T12:06:56.000Z",
2029
+ to: "So11111111111111111111111111111111111111112",
2030
+ token: null,
2031
+ tokenType: "NATIVE",
2032
+ transactionGasFee: 2506024n,
2033
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
2034
+ },
2035
+ {
2036
+ amount: 1246447n,
2037
+ blockNumber: 345871978,
2038
+ from: "So11111111111111111111111111111111111111112",
2039
+ index: "5-5-2",
2040
+ timestamp: "2025-06-10T12:06:56.000Z",
2041
+ to: "F4qmtKg8FWBp85WsFGKzUKfyn6G6WiC5kerddYcuZq3c",
2042
+ token: null,
2043
+ tokenType: "NATIVE",
2044
+ transactionGasFee: 2506024n,
2045
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
2046
+ },
2047
+ {
2048
+ amount: 1553440149n,
2049
+ blockNumber: 345871978,
2050
+ from: "BT1NKpgNBBNbC9RRVuWPGBqFmqFznwsZKh3x2gDyykmq",
2051
+ index: "5-10-1",
2052
+ timestamp: "2025-06-10T12:06:56.000Z",
2053
+ to: "So11111111111111111111111111111111111111112",
2054
+ token: null,
2055
+ tokenType: "NATIVE",
2056
+ transactionGasFee: 2506024n,
2057
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
2058
+ },
2059
+ {
2060
+ amount: 1552556053n,
2061
+ blockNumber: 345871978,
2062
+ from: "DQwTf8dHkjtM6VuewpgET7MS7kX3EEXQDqvXkScC6tnB",
2063
+ index: "5-14-1",
2064
+ timestamp: "2025-06-10T12:06:56.000Z",
2065
+ to: "So11111111111111111111111111111111111111112",
2066
+ token: null,
2067
+ tokenType: "NATIVE",
2068
+ transactionGasFee: 2506024n,
2069
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
2070
+ },
2071
+ {
2072
+ amount: 621470846n,
2073
+ blockNumber: 345871978,
2074
+ from: "FLgakNeU6FWQ4d6qThc3YswxpHgupVusCbqqsaL5Ya3d",
2075
+ index: "5-18-1",
2076
+ timestamp: "2025-06-10T12:06:56.000Z",
2077
+ to: "So11111111111111111111111111111111111111112",
2078
+ token: null,
2079
+ tokenType: "NATIVE",
1531
2080
  transactionGasFee: 2506024n,
1532
2081
  transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
1533
2082
  }
@@ -1543,8 +2092,9 @@ const $fc7ca671efecc378$export$a51565c56ceacb0a = {
1543
2092
  output: [
1544
2093
  {
1545
2094
  amount: 3000350n,
1546
- blockNumber: 304546603,
2095
+ blockNumber: 326286476,
1547
2096
  from: "D89hHJT5Aqyx1trP6EnGY9jJUB3whgnq3aUvvCqedvzf",
2097
+ index: "1",
1548
2098
  timestamp: "2025-03-12T14:42:16.000Z",
1549
2099
  to: "HTd5J9YhYnN1nwCAQiykpNBjoDrgtPVUcpk9TBPMCV4b",
1550
2100
  transactionGasFee: 105000n,
@@ -1554,38 +2104,6 @@ const $fc7ca671efecc378$export$a51565c56ceacb0a = {
1554
2104
  }
1555
2105
  ]
1556
2106
  },
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
2107
  {
1590
2108
  params: {
1591
2109
  network: "SOLANA",
@@ -1596,8 +2114,9 @@ const $fc7ca671efecc378$export$a51565c56ceacb0a = {
1596
2114
  output: [
1597
2115
  {
1598
2116
  amount: 14216129n,
1599
- blockNumber: 303338729,
1600
- from: "8KbrpeSRYXYjWSSdG7gE1tR7Go8MmKKxKaei1gGc4U7Q",
2117
+ blockNumber: 325076237,
2118
+ from: "2MFoS3MPtvyQ4Wh4M9pdfPjz6UhVoNbFbGJAskCPCj3h",
2119
+ index: "6-9",
1601
2120
  timestamp: "2025-03-07T01:16:59.000Z",
1602
2121
  to: "5cuy7pMhTPhVZN9xuhgSbykRb986siGJb6vnEtkuBrSU",
1603
2122
  transactionGasFee: 353096n,
@@ -1615,37 +2134,124 @@ const $fc7ca671efecc378$export$a51565c56ceacb0a = {
1615
2134
  payload: "https://jiti.indexing.co/networks/solana/332450156",
1616
2135
  output: [
1617
2136
  {
1618
- amount: 19796403663n,
1619
- blockNumber: 310691098,
2137
+ amount: 80001n,
2138
+ blockNumber: 332450156,
2139
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2140
+ index: "0",
2141
+ timestamp: "2025-04-10T02:29:35.000Z",
2142
+ to: null,
2143
+ transactionGasFee: 80001n,
2144
+ transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk",
2145
+ token: null,
2146
+ tokenType: "NATIVE"
2147
+ },
2148
+ {
2149
+ amount: 2039280n,
2150
+ blockNumber: 332450156,
2151
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2152
+ index: "3-3",
2153
+ timestamp: "2025-04-10T02:29:35.000Z",
2154
+ to: "5XggDBvoRA65ss8NJV9BZjf57JzC64VHqZTag4AQJZzQ",
2155
+ transactionGasFee: 80001n,
2156
+ transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk",
2157
+ token: null,
2158
+ tokenType: "NATIVE"
2159
+ },
2160
+ {
2161
+ amount: 500000000n,
2162
+ blockNumber: 332450156,
2163
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2164
+ index: "3-6",
2165
+ timestamp: "2025-04-10T02:29:35.000Z",
2166
+ to: "5XggDBvoRA65ss8NJV9BZjf57JzC64VHqZTag4AQJZzQ",
2167
+ transactionGasFee: 80001n,
2168
+ transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk",
2169
+ token: null,
2170
+ tokenType: "NATIVE"
2171
+ },
2172
+ {
2173
+ amount: 97937250n,
2174
+ blockNumber: 332450156,
2175
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2176
+ index: "4-2",
2177
+ timestamp: "2025-04-10T02:29:35.000Z",
2178
+ to: "4acL7mD2J6GYJy2g3iVTvfpmHCQSZ1rb8DBuupjcVzHJ",
2179
+ transactionGasFee: 80001n,
2180
+ transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk",
2181
+ token: "So11111111111111111111111111111111111111112",
2182
+ tokenType: "TOKEN"
2183
+ },
2184
+ {
2185
+ amount: 3914205773n,
2186
+ blockNumber: 332450156,
2187
+ from: "4acL7mD2J6GYJy2g3iVTvfpmHCQSZ1rb8DBuupjcVzHJ",
2188
+ index: "4-3",
1620
2189
  timestamp: "2025-04-10T02:29:35.000Z",
1621
2190
  to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1622
2191
  transactionGasFee: 80001n,
1623
2192
  transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk",
1624
2193
  token: "CniPCE4b3s8gSUPhUiyMjXnytrEqUrMfSsnbBjLCpump",
1625
- tokenType: "TOKEN",
1626
- from: "4acL7mD2J6GYJy2g3iVTvfpmHCQSZ1rb8DBuupjcVzHJ"
2194
+ tokenType: "TOKEN"
1627
2195
  },
1628
2196
  {
1629
2197
  amount: 402062750n,
1630
- blockNumber: 310691098,
2198
+ blockNumber: 332450156,
1631
2199
  from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2200
+ index: "4-6",
2201
+ timestamp: "2025-04-10T02:29:35.000Z",
2202
+ to: "5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1",
2203
+ transactionGasFee: 80001n,
2204
+ transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk",
2205
+ token: "So11111111111111111111111111111111111111112",
2206
+ tokenType: "TOKEN"
2207
+ },
2208
+ {
2209
+ amount: 16051909872n,
2210
+ blockNumber: 332450156,
2211
+ from: "5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1",
2212
+ index: "4-7",
1632
2213
  timestamp: "2025-04-10T02:29:35.000Z",
1633
- to: "5yY5BGRgwa5rxvYPpMV9EkDpwp6w1vNNXUNzUCtMoFfR",
2214
+ to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2215
+ transactionGasFee: 80001n,
2216
+ transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk",
2217
+ token: "CniPCE4b3s8gSUPhUiyMjXnytrEqUrMfSsnbBjLCpump",
2218
+ tokenType: "TOKEN"
2219
+ },
2220
+ {
2221
+ amount: 2039280n,
2222
+ blockNumber: 332450156,
2223
+ from: "5XggDBvoRA65ss8NJV9BZjf57JzC64VHqZTag4AQJZzQ",
2224
+ index: "4-9",
2225
+ timestamp: "2025-04-10T02:29:35.000Z",
2226
+ to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1634
2227
  token: null,
1635
2228
  tokenType: "NATIVE",
1636
2229
  transactionGasFee: 80001n,
1637
2230
  transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk"
1638
2231
  },
1639
2232
  {
1640
- amount: 97937250n,
1641
- blockNumber: 310691098,
1642
- from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2233
+ amount: 500000000n,
2234
+ blockNumber: 332450156,
2235
+ from: "So11111111111111111111111111111111111111112",
2236
+ index: "4-9-2",
1643
2237
  timestamp: "2025-04-10T02:29:35.000Z",
1644
- to: "9zF2ZWTjnk6UkyWRxNtqy9UHims9u7LSaHGyhA5PwDSx",
1645
- token: null,
1646
- tokenType: "NATIVE",
2238
+ to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2239
+ token: "So11111111111111111111111111111111111111112",
2240
+ tokenType: "TOKEN",
1647
2241
  transactionGasFee: 80001n,
1648
2242
  transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk"
2243
+ },
2244
+ {
2245
+ amount: 169711982n,
2246
+ blockNumber: 332450156,
2247
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2248
+ index: "4-10",
2249
+ timestamp: "2025-04-10T02:29:35.000Z",
2250
+ to: "8psNvWTrdNTiVRNzAgsou9kETXNJm2SXZyaKuJraVRtf",
2251
+ transactionGasFee: 80001n,
2252
+ transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk",
2253
+ token: "CniPCE4b3s8gSUPhUiyMjXnytrEqUrMfSsnbBjLCpump",
2254
+ tokenType: "TOKEN"
1649
2255
  }
1650
2256
  ]
1651
2257
  },
@@ -1659,8 +2265,9 @@ const $fc7ca671efecc378$export$a51565c56ceacb0a = {
1659
2265
  output: [
1660
2266
  {
1661
2267
  amount: 2500000n,
1662
- blockNumber: 311062104,
2268
+ blockNumber: 332822080,
1663
2269
  from: "J1dHwpKBs8Jo4n7jWEJWwMGNH2DJQnApBFPnnYXg74v7",
2270
+ index: "4-1",
1664
2271
  timestamp: "2025-04-11T19:36:39.000Z",
1665
2272
  to: "3LoAYHuSd7Gh8d7RTFnhvYtiTiefdZ5ByamU42vkzd76",
1666
2273
  token: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
@@ -1669,22 +2276,12 @@ const $fc7ca671efecc378$export$a51565c56ceacb0a = {
1669
2276
  transactionHash: "xKTWvnhSRErcHCMozRMEue4MriNr1Any6LiaQzXrR7imZ1MpZxRqbyv9LLg4JQoDq4oJZpDqPmzxLCtMCkgj2hn"
1670
2277
  },
1671
2278
  {
1672
- amount: 1373625000n,
1673
- blockNumber: 311062104,
2279
+ amount: 2497500000n,
2280
+ blockNumber: 332822080,
1674
2281
  from: "J1dHwpKBs8Jo4n7jWEJWwMGNH2DJQnApBFPnnYXg74v7",
2282
+ index: "4-3",
1675
2283
  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",
2284
+ to: "4xDsmeTWPNjgSVSS1VTfzFq3iHZhp77ffPkAmkZkdu71",
1688
2285
  token: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
1689
2286
  tokenType: "TOKEN",
1690
2287
  transactionGasFee: 350362n,
@@ -1699,47 +2296,170 @@ const $fc7ca671efecc378$export$a51565c56ceacb0a = {
1699
2296
  },
1700
2297
  payload: "https://jiti.indexing.co/networks/solana/344836070",
1701
2298
  output: [
2299
+ {
2300
+ amount: 118174n,
2301
+ blockNumber: 344836070,
2302
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2303
+ index: "0",
2304
+ timestamp: "2025-06-05T18:30:59.000Z",
2305
+ to: null,
2306
+ transactionGasFee: 118174n,
2307
+ transactionHash: "2wQdUtEnCf77jiros6eCbQ1BrWrn1uw4nisy87kmgHhZMGX2CqBugaLdne6bvQR8mAdxinVLivcbVVfJAdTry2rw",
2308
+ token: null,
2309
+ tokenType: "NATIVE"
2310
+ },
2311
+ {
2312
+ amount: 2039280n,
2313
+ blockNumber: 344836070,
2314
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2315
+ index: "3",
2316
+ timestamp: "2025-06-05T18:30:59.000Z",
2317
+ to: "AnvCq4bLUX7CBid2kALUG1iQ9po81bq5wzxsjnTaNLyn",
2318
+ transactionGasFee: 118174n,
2319
+ transactionHash: "2wQdUtEnCf77jiros6eCbQ1BrWrn1uw4nisy87kmgHhZMGX2CqBugaLdne6bvQR8mAdxinVLivcbVVfJAdTry2rw",
2320
+ token: null,
2321
+ tokenType: "NATIVE"
2322
+ },
1702
2323
  {
1703
2324
  amount: 21234547656n,
1704
- blockNumber: 323048342,
2325
+ blockNumber: 344836070,
1705
2326
  from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2327
+ index: "5-3",
1706
2328
  timestamp: "2025-06-05T18:30:59.000Z",
2329
+ to: "ChkRerg6X89xHYqV4iBqcboBdU1WA8Uvs9fp2yZrqbg",
1707
2330
  transactionGasFee: 118174n,
1708
2331
  transactionHash: "2wQdUtEnCf77jiros6eCbQ1BrWrn1uw4nisy87kmgHhZMGX2CqBugaLdne6bvQR8mAdxinVLivcbVVfJAdTry2rw",
1709
2332
  token: "6MQpbiTC2YcogidTmKqMLK82qvE9z5QEm7EP3AEDpump",
1710
- tokenType: "TOKEN",
1711
- to: "ChkRerg6X89xHYqV4iBqcboBdU1WA8Uvs9fp2yZrqbg"
2333
+ tokenType: "TOKEN"
1712
2334
  },
1713
2335
  {
1714
- amount: 3272427086n,
1715
- blockNumber: 323048342,
1716
- from: "DQwTf8dHkjtM6VuewpgET7MS7kX3EEXQDqvXkScC6tnB",
2336
+ amount: 3300686091n,
2337
+ blockNumber: 344836070,
2338
+ from: "ChkRerg6X89xHYqV4iBqcboBdU1WA8Uvs9fp2yZrqbg",
2339
+ index: "5-4",
1717
2340
  timestamp: "2025-06-05T18:30:59.000Z",
1718
2341
  to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2342
+ transactionGasFee: 118174n,
2343
+ transactionHash: "2wQdUtEnCf77jiros6eCbQ1BrWrn1uw4nisy87kmgHhZMGX2CqBugaLdne6bvQR8mAdxinVLivcbVVfJAdTry2rw",
2344
+ token: "So11111111111111111111111111111111111111112",
2345
+ tokenType: "TOKEN"
2346
+ },
2347
+ {
2348
+ amount: 3302725371n,
2349
+ blockNumber: 344836070,
2350
+ from: "AnvCq4bLUX7CBid2kALUG1iQ9po81bq5wzxsjnTaNLyn",
2351
+ index: "5-5",
2352
+ timestamp: "2025-06-05T18:30:59.000Z",
2353
+ to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2354
+ transactionGasFee: 118174n,
2355
+ transactionHash: "2wQdUtEnCf77jiros6eCbQ1BrWrn1uw4nisy87kmgHhZMGX2CqBugaLdne6bvQR8mAdxinVLivcbVVfJAdTry2rw",
1719
2356
  token: null,
1720
- tokenType: "NATIVE",
2357
+ tokenType: "NATIVE"
2358
+ },
2359
+ {
2360
+ amount: 3300686091n,
2361
+ blockNumber: 344836070,
2362
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2363
+ index: "5-5-2",
2364
+ timestamp: "2025-06-05T18:30:59.000Z",
2365
+ to: "So11111111111111111111111111111111111111112",
2366
+ transactionGasFee: 118174n,
2367
+ transactionHash: "2wQdUtEnCf77jiros6eCbQ1BrWrn1uw4nisy87kmgHhZMGX2CqBugaLdne6bvQR8mAdxinVLivcbVVfJAdTry2rw",
2368
+ token: "So11111111111111111111111111111111111111112",
2369
+ tokenType: "TOKEN"
2370
+ },
2371
+ {
2372
+ amount: 28055831n,
2373
+ blockNumber: 344836070,
2374
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2375
+ index: "5-6",
2376
+ timestamp: "2025-06-05T18:30:59.000Z",
2377
+ to: "9yj3zvLS3fDMqi1F8zhkaWfq8TZpZWHe6cz1Sgt7djXf",
2378
+ transactionGasFee: 118174n,
2379
+ transactionHash: "2wQdUtEnCf77jiros6eCbQ1BrWrn1uw4nisy87kmgHhZMGX2CqBugaLdne6bvQR8mAdxinVLivcbVVfJAdTry2rw",
2380
+ token: null,
2381
+ tokenType: "NATIVE"
2382
+ },
2383
+ {
2384
+ amount: 85000n,
2385
+ blockNumber: 344836070,
2386
+ from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2387
+ index: "6",
2388
+ timestamp: "2025-06-05T18:30:59.000Z",
2389
+ to: "6HRgJMRmjaj2svP9GpRbUU5TPzLAHnBW3sHgYVbirWYE",
1721
2390
  transactionGasFee: 118174n,
1722
- transactionHash: "2wQdUtEnCf77jiros6eCbQ1BrWrn1uw4nisy87kmgHhZMGX2CqBugaLdne6bvQR8mAdxinVLivcbVVfJAdTry2rw"
2391
+ transactionHash: "2wQdUtEnCf77jiros6eCbQ1BrWrn1uw4nisy87kmgHhZMGX2CqBugaLdne6bvQR8mAdxinVLivcbVVfJAdTry2rw",
2392
+ token: null,
2393
+ tokenType: "NATIVE"
1723
2394
  }
1724
2395
  ]
1725
2396
  },
1726
2397
  {
1727
2398
  params: {
1728
2399
  network: "SOLANA",
1729
- walletAddress: "Gaq4K6e5tY9Z8L9bcWFPhNbteb9YYekjzH6eQPx24B5i"
2400
+ walletAddress: "AVAZvHLR2PcWpDf8BXY4rVxNHYRBytycHkcB5z5QNXYm"
1730
2401
  },
1731
2402
  payload: "https://jiti.indexing.co/networks/solana/343762745",
1732
2403
  output: [
1733
2404
  {
1734
- amount: 704724041n,
1735
- blockNumber: 321976935,
2405
+ amount: 191568n,
2406
+ blockNumber: 343762745,
1736
2407
  from: "AVAZvHLR2PcWpDf8BXY4rVxNHYRBytycHkcB5z5QNXYm",
2408
+ index: "0",
1737
2409
  timestamp: "2025-05-31T21:20:52.000Z",
1738
- to: "Gaq4K6e5tY9Z8L9bcWFPhNbteb9YYekjzH6eQPx24B5i",
2410
+ to: null,
2411
+ transactionGasFee: 191568n,
2412
+ transactionHash: "5usAzMSrENJQscoRdxi48n22aMcFmJ1U7f2yGmwUk8AHSFCzLfRtBP7gVnsZbe7Jy9SG2VoeVbVSoVvu43tsdvm1",
1739
2413
  token: null,
1740
- tokenType: "NATIVE",
2414
+ tokenType: "NATIVE"
2415
+ },
2416
+ {
2417
+ amount: 7504823498621n,
2418
+ blockNumber: 343762745,
2419
+ from: "AVAZvHLR2PcWpDf8BXY4rVxNHYRBytycHkcB5z5QNXYm",
2420
+ index: "4-2",
2421
+ timestamp: "2025-05-31T21:20:52.000Z",
2422
+ to: "BXYKJpQvoZngmTGGr9U2NYQ2ND9Cw6B79ULzTkufcSXB",
2423
+ transactionGasFee: 191568n,
2424
+ transactionHash: "5usAzMSrENJQscoRdxi48n22aMcFmJ1U7f2yGmwUk8AHSFCzLfRtBP7gVnsZbe7Jy9SG2VoeVbVSoVvu43tsdvm1",
2425
+ token: "fnDj6iuSBBruq1GX5GQwxGa3MvAxiJbnPBSvHt4pump",
2426
+ tokenType: "TOKEN"
2427
+ },
2428
+ {
2429
+ amount: 52507862455n,
2430
+ blockNumber: 343762745,
2431
+ from: "5Q544fKrFoe6tsEbD7S8EmxGTJYAKtTVhAW5Q5pge4j1",
2432
+ index: "4-9",
2433
+ timestamp: "2025-05-31T21:20:52.000Z",
2434
+ to: "AVAZvHLR2PcWpDf8BXY4rVxNHYRBytycHkcB5z5QNXYm",
2435
+ transactionGasFee: 191568n,
2436
+ transactionHash: "5usAzMSrENJQscoRdxi48n22aMcFmJ1U7f2yGmwUk8AHSFCzLfRtBP7gVnsZbe7Jy9SG2VoeVbVSoVvu43tsdvm1",
2437
+ token: "JB2wezZLdzWfnaCfHxLg193RS3Rh51ThiXxEDWQDpump",
2438
+ tokenType: "TOKEN"
2439
+ },
2440
+ {
2441
+ amount: 2184670002n,
2442
+ blockNumber: 343762745,
2443
+ from: "EHks3xWvbScHwygkB1QMsz38rEmht5tE1yyAreRUWELj",
2444
+ index: "4-13",
2445
+ timestamp: "2025-05-31T21:20:52.000Z",
2446
+ to: "AVAZvHLR2PcWpDf8BXY4rVxNHYRBytycHkcB5z5QNXYm",
1741
2447
  transactionGasFee: 191568n,
1742
- transactionHash: "5usAzMSrENJQscoRdxi48n22aMcFmJ1U7f2yGmwUk8AHSFCzLfRtBP7gVnsZbe7Jy9SG2VoeVbVSoVvu43tsdvm1"
2448
+ transactionHash: "5usAzMSrENJQscoRdxi48n22aMcFmJ1U7f2yGmwUk8AHSFCzLfRtBP7gVnsZbe7Jy9SG2VoeVbVSoVvu43tsdvm1",
2449
+ token: "JB2wezZLdzWfnaCfHxLg193RS3Rh51ThiXxEDWQDpump",
2450
+ tokenType: "TOKEN"
2451
+ },
2452
+ {
2453
+ amount: 54692532n,
2454
+ blockNumber: 343762745,
2455
+ from: "AVAZvHLR2PcWpDf8BXY4rVxNHYRBytycHkcB5z5QNXYm",
2456
+ index: "4-14",
2457
+ timestamp: "2025-05-31T21:20:52.000Z",
2458
+ to: "3CgvbiM3op4vjrrjH2zcrQUwsqh5veNVRjFCB9N6sRoD",
2459
+ transactionGasFee: 191568n,
2460
+ transactionHash: "5usAzMSrENJQscoRdxi48n22aMcFmJ1U7f2yGmwUk8AHSFCzLfRtBP7gVnsZbe7Jy9SG2VoeVbVSoVvu43tsdvm1",
2461
+ token: "JB2wezZLdzWfnaCfHxLg193RS3Rh51ThiXxEDWQDpump",
2462
+ tokenType: "TOKEN"
1743
2463
  }
1744
2464
  ]
1745
2465
  },
@@ -1751,25 +2471,216 @@ const $fc7ca671efecc378$export$a51565c56ceacb0a = {
1751
2471
  payload: "https://jiti.indexing.co/networks/solana/375557379",
1752
2472
  output: [
1753
2473
  {
1754
- amount: 9990000n,
1755
- blockNumber: 353720952,
2474
+ amount: 5000n,
2475
+ blockNumber: 375557379,
2476
+ from: "moAGAQftMo19RY6YqStNdiDhNpejJaeNWgv5oczbp8U",
2477
+ index: "0",
1756
2478
  timestamp: "2025-10-24T20:23:09.000Z",
1757
- to: "moAGAQftMo19RY6YqStNdiDhNpejJaeNWgv5oczbp8U",
1758
- token: "So11111111111111111111111111111111111111112",
1759
- tokenType: "TOKEN",
2479
+ to: null,
2480
+ token: null,
2481
+ tokenType: "NATIVE",
1760
2482
  transactionGasFee: 5000n,
1761
2483
  transactionHash: "3UCamcERYHN9JrgwPqUshvabv2f7uHpbStwfG7bbPFsVSSjQrK21Q9joj7gNLD6Ab5XHehkaUKtYp7Vptv7Kswv3"
1762
2484
  },
1763
2485
  {
1764
2486
  amount: 9990000n,
1765
- blockNumber: 353720952,
2487
+ blockNumber: 375557379,
1766
2488
  from: "moAGAQftMo19RY6YqStNdiDhNpejJaeNWgv5oczbp8U",
2489
+ index: "2",
1767
2490
  timestamp: "2025-10-24T20:23:09.000Z",
1768
2491
  to: "5uQC5CfgqGP8B8bG64RATmZXfUKiHf1XRbYHkVKPwwny",
1769
2492
  token: null,
1770
2493
  tokenType: "NATIVE",
1771
2494
  transactionGasFee: 5000n,
1772
2495
  transactionHash: "3UCamcERYHN9JrgwPqUshvabv2f7uHpbStwfG7bbPFsVSSjQrK21Q9joj7gNLD6Ab5XHehkaUKtYp7Vptv7Kswv3"
2496
+ },
2497
+ {
2498
+ amount: 9990000n,
2499
+ blockNumber: 375557379,
2500
+ from: "So11111111111111111111111111111111111111112",
2501
+ timestamp: "2025-10-24T20:23:09.000Z",
2502
+ to: "moAGAQftMo19RY6YqStNdiDhNpejJaeNWgv5oczbp8U",
2503
+ token: "So11111111111111111111111111111111111111112",
2504
+ tokenType: "TOKEN",
2505
+ transactionGasFee: 5000n,
2506
+ transactionHash: "3UCamcERYHN9JrgwPqUshvabv2f7uHpbStwfG7bbPFsVSSjQrK21Q9joj7gNLD6Ab5XHehkaUKtYp7Vptv7Kswv3"
2507
+ }
2508
+ ]
2509
+ },
2510
+ {
2511
+ params: {
2512
+ network: "SOLANA",
2513
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2514
+ },
2515
+ payload: "https://jiti.indexing.co/networks/solana/377071751",
2516
+ output: [
2517
+ {
2518
+ amount: 5000n,
2519
+ blockNumber: 377071751,
2520
+ from: "CDr3sjXFHVPZYp8k7AUNHVJDN1sfvppLfPHd4Pwk8Mha",
2521
+ index: "0",
2522
+ timestamp: "2025-10-31T20:00:23.000Z",
2523
+ to: null,
2524
+ token: null,
2525
+ tokenType: "NATIVE",
2526
+ transactionGasFee: 5000n,
2527
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2528
+ },
2529
+ {
2530
+ amount: 2500n,
2531
+ blockNumber: 377071751,
2532
+ from: "CDr3sjXFHVPZYp8k7AUNHVJDN1sfvppLfPHd4Pwk8Mha",
2533
+ index: "1",
2534
+ timestamp: "2025-10-31T20:00:23.000Z",
2535
+ to: "F7p3dFrjRTbtRp8FRF6qHLomXbKRBzpvBLjtQcfcgmNe",
2536
+ token: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
2537
+ tokenType: "TOKEN",
2538
+ transactionGasFee: 5000n,
2539
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2540
+ },
2541
+ {
2542
+ amount: 2497500n,
2543
+ blockNumber: 377071751,
2544
+ from: "CDr3sjXFHVPZYp8k7AUNHVJDN1sfvppLfPHd4Pwk8Mha",
2545
+ index: "2-1",
2546
+ timestamp: "2025-10-31T20:00:23.000Z",
2547
+ to: "6LXutJvKUw8Q5ue2gCgKHQdAN4suWW8awzFVC6XCguFx",
2548
+ token: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
2549
+ tokenType: "TOKEN",
2550
+ transactionGasFee: 5000n,
2551
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2552
+ },
2553
+ {
2554
+ amount: 2497500n,
2555
+ blockNumber: 377071751,
2556
+ from: "6LXutJvKUw8Q5ue2gCgKHQdAN4suWW8awzFVC6XCguFx",
2557
+ index: "2-3",
2558
+ timestamp: "2025-10-31T20:00:23.000Z",
2559
+ to: "Enc6rB84ZwGxZU8aqAF41dRJxg3yesiJgD7uJFVhMraM",
2560
+ token: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
2561
+ tokenType: "TOKEN",
2562
+ transactionGasFee: 5000n,
2563
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2564
+ },
2565
+ {
2566
+ amount: 24n,
2567
+ blockNumber: 377071751,
2568
+ from: "Enc6rB84ZwGxZU8aqAF41dRJxg3yesiJgD7uJFVhMraM",
2569
+ index: "2-4",
2570
+ timestamp: "2025-10-31T20:00:23.000Z",
2571
+ to: "ATowQwFzdJBJ9VFSfoNKmuB8GiSeo8foM5vRriwmKmFB",
2572
+ token: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
2573
+ tokenType: "TOKEN",
2574
+ transactionGasFee: 5000n,
2575
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2576
+ },
2577
+ {
2578
+ amount: 24n,
2579
+ blockNumber: 377071751,
2580
+ from: "Enc6rB84ZwGxZU8aqAF41dRJxg3yesiJgD7uJFVhMraM",
2581
+ index: "2-5",
2582
+ timestamp: "2025-10-31T20:00:23.000Z",
2583
+ to: "45ruCyfdRkWpRNGEqWzjCiXRHkZs8WXCLQ67Pnpye7Hp",
2584
+ token: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
2585
+ tokenType: "TOKEN",
2586
+ transactionGasFee: 5000n,
2587
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2588
+ },
2589
+ {
2590
+ amount: 13258805n,
2591
+ blockNumber: 377071751,
2592
+ from: "Enc6rB84ZwGxZU8aqAF41dRJxg3yesiJgD7uJFVhMraM",
2593
+ index: "2-6",
2594
+ timestamp: "2025-10-31T20:00:23.000Z",
2595
+ to: "6LXutJvKUw8Q5ue2gCgKHQdAN4suWW8awzFVC6XCguFx",
2596
+ token: "So11111111111111111111111111111111111111112",
2597
+ tokenType: "TOKEN",
2598
+ transactionGasFee: 5000n,
2599
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2600
+ },
2601
+ {
2602
+ amount: 13258800n,
2603
+ blockNumber: 377071751,
2604
+ from: "6LXutJvKUw8Q5ue2gCgKHQdAN4suWW8awzFVC6XCguFx",
2605
+ index: "2-9",
2606
+ timestamp: "2025-10-31T20:00:23.000Z",
2607
+ to: "6nL4UZVRkn34Mxb7DGU91U86zhtF2PTX72Ncs64sUFx",
2608
+ token: "So11111111111111111111111111111111111111112",
2609
+ tokenType: "TOKEN",
2610
+ transactionGasFee: 5000n,
2611
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2612
+ },
2613
+ {
2614
+ amount: 1511170n,
2615
+ blockNumber: 377071751,
2616
+ from: "6nL4UZVRkn34Mxb7DGU91U86zhtF2PTX72Ncs64sUFx",
2617
+ index: "2-10",
2618
+ timestamp: "2025-10-31T20:00:23.000Z",
2619
+ to: "6LXutJvKUw8Q5ue2gCgKHQdAN4suWW8awzFVC6XCguFx",
2620
+ token: "4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R",
2621
+ tokenType: "TOKEN",
2622
+ transactionGasFee: 5000n,
2623
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2624
+ },
2625
+ {
2626
+ amount: 1511170n,
2627
+ blockNumber: 377071751,
2628
+ from: "6LXutJvKUw8Q5ue2gCgKHQdAN4suWW8awzFVC6XCguFx",
2629
+ index: "2-12",
2630
+ timestamp: "2025-10-31T20:00:23.000Z",
2631
+ to: "CDr3sjXFHVPZYp8k7AUNHVJDN1sfvppLfPHd4Pwk8Mha",
2632
+ token: "4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R",
2633
+ tokenType: "TOKEN",
2634
+ transactionGasFee: 5000n,
2635
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2636
+ },
2637
+ {
2638
+ amount: 13258805n,
2639
+ blockNumber: 377071751,
2640
+ from: "HZ5JFB1ZoZs6NQLr7bb4MMEXDgty4Vs1ZghoyX35mNnV",
2641
+ index: "2-6-1",
2642
+ timestamp: "2025-10-31T20:00:23.000Z",
2643
+ to: "So11111111111111111111111111111111111111112",
2644
+ token: null,
2645
+ tokenType: "NATIVE",
2646
+ transactionGasFee: 5000n,
2647
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2648
+ },
2649
+ {
2650
+ amount: 13258805n,
2651
+ blockNumber: 377071751,
2652
+ from: "So11111111111111111111111111111111111111112",
2653
+ index: "2-6-2",
2654
+ timestamp: "2025-10-31T20:00:23.000Z",
2655
+ to: "BuqEDKUwyAotZuK37V4JYEykZVKY8qo1zKbpfU9gkJMo",
2656
+ token: null,
2657
+ tokenType: "NATIVE",
2658
+ transactionGasFee: 5000n,
2659
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2660
+ },
2661
+ {
2662
+ amount: 13258800n,
2663
+ blockNumber: 377071751,
2664
+ from: "BuqEDKUwyAotZuK37V4JYEykZVKY8qo1zKbpfU9gkJMo",
2665
+ index: "2-9-1",
2666
+ timestamp: "2025-10-31T20:00:23.000Z",
2667
+ to: "So11111111111111111111111111111111111111112",
2668
+ token: null,
2669
+ tokenType: "NATIVE",
2670
+ transactionGasFee: 5000n,
2671
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
2672
+ },
2673
+ {
2674
+ amount: 13258800n,
2675
+ blockNumber: 377071751,
2676
+ from: "So11111111111111111111111111111111111111112",
2677
+ index: "2-9-2",
2678
+ timestamp: "2025-10-31T20:00:23.000Z",
2679
+ to: "B6whMxirSzzNcSeJ1G4HDFTRKjPFcWovCL53uxG7LexB",
2680
+ token: null,
2681
+ tokenType: "NATIVE",
2682
+ transactionGasFee: 5000n,
2683
+ transactionHash: "2asCG9FQdkcbRiX56dCoUMByE871biTZmctv6DBo5EYMkJWCrJ4hNVBkrFGwjQCK2T6XPPeLkd8hWkji9WqjUxF6"
1773
2684
  }
1774
2685
  ]
1775
2686
  }
@@ -2148,8 +3059,9 @@ const $7dd402f6ad0dab6a$var$tokenTransfersTemplate = {
2148
3059
  txfer.from,
2149
3060
  txfer.to
2150
3061
  ].includes(_ctx.params.walletAddress)) return false;
3062
+ if (_ctx.params.transactionHash && txfer.transactionHash !== _ctx.params.transactionHash) return false;
2151
3063
  }
2152
- const key = `${txfer.transactionHash}-${txfer.from}-${txfer.to}-${txfer.amount}-${txfer.token}`;
3064
+ const key = `${txfer.transactionHash}-${txfer.from}-${txfer.to}-${txfer.amount}-${txfer.token}-${txfer.index}`;
2153
3065
  if (seenTransfers.has(key)) return false;
2154
3066
  seenTransfers.add(key);
2155
3067
  return true;
@@ -4605,6 +5517,7 @@ const $9af31dbb692f94e3$var$filterValuesTemplate = {
4605
5517
  "6NDen7aDi65apHo8m1Vea4nuS6LyjQeM6pDNqcW4Q5Pg",
4606
5518
  "6NJmmYh9yAMKKcZPeedpLYX8v2m81nTecaWvdx5SX6Wm",
4607
5519
  "6NqvoPpSYCPEtLEukQaSNs7mS3yK6k285saH9o3vgC96",
5520
+ "6P4tvbzRY6Bh3MiWDHuLqyHywovsRwRpfskPvyeSoHsz",
4608
5521
  "6PvHaibtZhuba14dzbhGFJRASYX3Ka2oviRzSbXV2wYC",
4609
5522
  "6QXW5VkwsYwnV4iqaCZGHt42ZiY2nEZHD1qXm9yNbhVz",
4610
5523
  "6R9aM3PfnS4LyNGjeXugkRLeCFKVmcod9AEnbixtMTj3",
@@ -4682,6 +5595,7 @@ const $9af31dbb692f94e3$var$filterValuesTemplate = {
4682
5595
  "6mCzwUFcdTuz6fFJRA8nY1iXNRJqPpXU1PvCfANfVXhh",
4683
5596
  "6mHYpppqhbQH8Sd4hNMgucwYU1Zho389Q9bZ19T27859",
4684
5597
  "6mP9cw9Ludgbr5hGBTSCiw37jRaFpxQ9eWDRjUM57eE5",
5598
+ "6mQ8xEaHdTikyMvvMxUctYch6dUjnKgfoeib2msyMMi1",
4685
5599
  "6mc5i3FYmpA2SFUqSbTY1kdDVaj4WR3P3ex4QrGUxDE1",
4686
5600
  "6minRorGYiA5aEeDvXL1Usat6DCdaF46owL3oANVQ8uB",
4687
5601
  "6n8taYki7RscA1XW7xGmevLcqj855oSgDgjPe1dZyHfW",
@@ -6671,6 +7585,7 @@ const $9af31dbb692f94e3$var$filterValuesTemplate = {
6671
7585
  "FofDMBAJWzUDjefwFc9TbgTUKNSJyWehhjLLfY5aXpGt",
6672
7586
  "FoigPJ6kL6Gth5Er6t9d1Nkh96Skadqw63Ciyjxc1f8H",
6673
7587
  "FpCMFDFGYotvufJ7HrFHsWEiiQCGbkLCtwHiDnh7o28Q",
7588
+ "FpEzVYQ5MjuSut61Ka18tzYhQKLqndefubV7K2U1mrTz",
6674
7589
  "FpTQXdt7NjYsJWXaE9UgG2yPUshoFiW3nzXbXKz1CjKh",
6675
7590
  "FphFJA451qptiGyCeCN3xvrDi8cApGAnyR5vw2KxxQ1q",
6676
7591
  "FpjXN8mFf6eAor29zDXhTzoGQdZaGWq6QprR9958nQ64",