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