@indexing/jiti 0.0.57 → 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
@@ -1,8 +1,9 @@
1
- import {keccak256 as $hgUW1$keccak256, decodeEventLog as $hgUW1$decodeEventLog, parseAbi as $hgUW1$parseAbi, sha256 as $hgUW1$sha256} from "viem";
2
1
  import {Buffer as $hgUW1$Buffer} from "buffer";
2
+ import {sha256 as $hgUW1$sha256, keccak256 as $hgUW1$keccak256, decodeEventLog as $hgUW1$decodeEventLog, parseAbi as $hgUW1$parseAbi} from "viem";
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) {
@@ -29,9 +30,9 @@ var $81c1b644006d48ec$exports = {};
29
30
 
30
31
 
31
32
  var $fde9406d76ec24a9$exports = {};
32
- var $cc5213c20a6615f3$exports = {};
33
+ var $82293038337e7b3f$exports = {};
33
34
 
34
- $parcel$export($cc5213c20a6615f3$exports, "blockToTimestamp", () => $cc5213c20a6615f3$export$ec64f6024312bb14);
35
+ $parcel$export($82293038337e7b3f$exports, "blockToBeat", () => $82293038337e7b3f$export$363ea1acea6aebd6);
35
36
  var $09654dffcb68affa$exports = {};
36
37
 
37
38
  $parcel$export($09654dffcb68affa$exports, "blockToVM", () => $09654dffcb68affa$export$ae001c77434c5340);
@@ -103,13 +104,129 @@ function $09654dffcb68affa$export$ae001c77434c5340(block) {
103
104
  }
104
105
 
105
106
 
107
+ function $82293038337e7b3f$export$363ea1acea6aebd6(block) {
108
+ const vm = (0, $09654dffcb68affa$export$ae001c77434c5340)(block);
109
+ switch(vm){
110
+ case "APTOS":
111
+ return parseInt(block.block_height, 10);
112
+ case "CARDANO":
113
+ return block.block_identifier.index;
114
+ case "COSMOS":
115
+ {
116
+ const typedBlock = block;
117
+ return Number(typedBlock.block.header.height);
118
+ }
119
+ case "EVM":
120
+ return block.number;
121
+ case "FILECOIN":
122
+ return block.Height;
123
+ case "RIPPLE":
124
+ return parseInt(block.ledger_index, 10);
125
+ case "STARKNET":
126
+ return block.block_number;
127
+ case "STELLAR":
128
+ return block.sequence;
129
+ case "SUBSTRATE":
130
+ return block.blockNumber;
131
+ case "SUI":
132
+ return parseInt(block.sequence, 10);
133
+ case "SVM":
134
+ return block.parentSlot + 1;
135
+ case "TON":
136
+ return block.seqno;
137
+ case "UTXO":
138
+ return block.height;
139
+ }
140
+ return null;
141
+ }
142
+
143
+
144
+ var $e23c2d0dc0ca1317$exports = {};
145
+
146
+ $parcel$export($e23c2d0dc0ca1317$exports, "blockToTransactionHashes", () => $e23c2d0dc0ca1317$export$eda46897866e27cc);
147
+
148
+
149
+
150
+ var $e23c2d0dc0ca1317$require$Buffer = $hgUW1$Buffer;
151
+ function $e23c2d0dc0ca1317$export$eda46897866e27cc(block) {
152
+ const vm = (0, $09654dffcb68affa$export$ae001c77434c5340)(block);
153
+ const hashes = new Set();
154
+ try {
155
+ switch(vm){
156
+ case "APTOS":
157
+ for (const tx of block.transactions || [])hashes.add(tx.hash);
158
+ break;
159
+ case "CARDANO":
160
+ for (const tx of block.transactions || []){
161
+ const typedTx = tx;
162
+ hashes.add(typedTx.transaction_identifier?.hash);
163
+ }
164
+ break;
165
+ case "COSMOS":
166
+ {
167
+ const typedBlock = block;
168
+ for (const txRaw of typedBlock.block.data.txs || []){
169
+ const txHash = (0, $hgUW1$sha256)(new Uint8Array($e23c2d0dc0ca1317$require$Buffer.from(txRaw, "base64")));
170
+ hashes.add(txHash.slice(2).toUpperCase());
171
+ }
172
+ break;
173
+ }
174
+ case "EVM":
175
+ for (const tx of block.transactions)hashes.add(tx.hash);
176
+ break;
177
+ case "FILECOIN":
178
+ {
179
+ const typedBlock = block;
180
+ for (const msgGroup of typedBlock.messages){
181
+ const secpkMessages = msgGroup.blockMessages.SecpkMessages || [];
182
+ for (const msg of secpkMessages)hashes.add(msg.CID["/"]);
183
+ }
184
+ break;
185
+ }
186
+ case "RIPPLE":
187
+ for (const tx of block.transactions || [])hashes.add(tx.hash);
188
+ break;
189
+ case "STARKNET":
190
+ for (const tx of block.transactions || [])hashes.add(tx.transaction_hash);
191
+ break;
192
+ case "STELLAR":
193
+ for (const tx of block.transactions || [])hashes.add(tx.hash);
194
+ break;
195
+ case "SUBSTRATE":
196
+ for (const extrinsic of block.extrinsics)hashes.add(extrinsic.hash);
197
+ break;
198
+ case "SUI":
199
+ for (const tx of block.transactions || [])hashes.add(tx.digest);
200
+ break;
201
+ case "SVM":
202
+ for (const tx of block.transactions || [])hashes.add(tx.transaction.signatures[0]);
203
+ break;
204
+ case "TON":
205
+ for (const shard of block.shards || [])for (const tx of shard.transactions || [])hashes.add(tx.transacion_id.hash);
206
+ break;
207
+ case "UTXO":
208
+ for (const tx of block.tx)hashes.add(tx.txid);
209
+ break;
210
+ }
211
+ return Array.from(hashes).filter((v)=>v?.length);
212
+ } catch (e) {
213
+ console.error(e);
214
+ return [];
215
+ }
216
+ }
217
+
218
+
219
+ var $cc5213c20a6615f3$exports = {};
220
+
221
+ $parcel$export($cc5213c20a6615f3$exports, "blockToTimestamp", () => $cc5213c20a6615f3$export$ec64f6024312bb14);
222
+
106
223
  function $cc5213c20a6615f3$export$ec64f6024312bb14(block) {
107
224
  const vm = (0, $09654dffcb68affa$export$ae001c77434c5340)(block);
108
225
  switch(vm){
109
226
  case "APTOS":
110
227
  return new Date(parseInt(block.transactions[0].timestamp, 10) / 1000);
111
228
  case "CARDANO":
112
- return new Date(block.timestamp * 1000);
229
+ return new Date(block.timestamp);
113
230
  case "COSMOS":
114
231
  return new Date(block.block.header.time);
115
232
  case "EVM":
@@ -442,6 +559,8 @@ function $8331f131029dede8$export$146821f89c094be4(evt) {
442
559
  }
443
560
 
444
561
 
562
+ $parcel$exportWildcard($fde9406d76ec24a9$exports, $82293038337e7b3f$exports);
563
+ $parcel$exportWildcard($fde9406d76ec24a9$exports, $e23c2d0dc0ca1317$exports);
445
564
  $parcel$exportWildcard($fde9406d76ec24a9$exports, $cc5213c20a6615f3$exports);
446
565
  $parcel$exportWildcard($fde9406d76ec24a9$exports, $09654dffcb68affa$exports);
447
566
  $parcel$exportWildcard($fde9406d76ec24a9$exports, $42564d9f228fe302$exports);
@@ -679,7 +798,7 @@ const $8860a67278817de8$export$893111d8d332e195 = {
679
798
  match: (block)=>(0, $09654dffcb68affa$export$ae001c77434c5340)(block) === "CARDANO",
680
799
  transform (block) {
681
800
  let transfers = [];
682
- const blockTimestamp = new Date(block.timestamp * 1000).toISOString();
801
+ const blockTimestamp = new Date(block.timestamp).toISOString();
683
802
  for (const tx of block.transactions || []){
684
803
  const typedTx = tx;
685
804
  if (!Array.isArray(typedTx.operations)) continue;
@@ -729,7 +848,7 @@ const $8860a67278817de8$export$893111d8d332e195 = {
729
848
  amount: 1110000n,
730
849
  blockNumber: 11443286,
731
850
  from: "addr1qymdv285few5tyqvya86rl97r9e608njs37shfew6l2nn473aw2pcnrcvfwfgg2dnew99m4tjj0apsu7232w2euzwpysndh0h3",
732
- timestamp: "+057068-01-19T05:23:20.000Z",
851
+ timestamp: "2025-02-05T03:34:53.000Z",
733
852
  to: "addr1q9syxu908lef7r6rsvk0h7gsx3rxj22cuykgx2a2l4hcfd8e9y2e9vtv4w9dyej96w99wwj8hwgc273862lk6a3vt30qjjrund",
734
853
  token: null,
735
854
  tokenType: "NATIVE",
@@ -1208,145 +1327,438 @@ const $f9f6601c9222cc8e$export$722698bc663d0ac0 = {
1208
1327
 
1209
1328
 
1210
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";
1211
1338
  const $64e1e522540ffc4e$export$a51565c56ceacb0a = {
1212
1339
  match: (block)=>(0, $09654dffcb68affa$export$ae001c77434c5340)(block) === "SVM",
1213
1340
  transform (block) {
1214
1341
  let transfers = [];
1215
1342
  for (const tx of block.transactions || []){
1343
+ const txTransfers = [];
1216
1344
  const svmTx = tx;
1217
1345
  const txHash = svmTx.transaction.signatures[0];
1218
1346
  const timestamp = block.blockTime ? new Date(block.blockTime * 1000).toISOString() : null;
1219
- 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);
1220
1348
  let txFee = BigInt(svmTx.meta.fee);
1221
1349
  if (txFee < BigInt(10)) txFee = txFee * BigInt(Math.pow(10, 9));
1222
- const transfersByKey = {};
1223
- for (const post of svmTx.meta.postTokenBalances){
1224
- let matched = false;
1225
- for (const pre of svmTx.meta.preTokenBalances)if (post.mint === pre.mint && post.owner === pre.owner) {
1226
- let diff = BigInt(post.uiTokenAmount.amount) - BigInt(pre.uiTokenAmount.amount);
1227
- if (diff === BigInt(0)) {
1228
- matched = true;
1229
- continue;
1230
- }
1231
- const isNegDiff = diff < 0;
1232
- if (diff < 0) diff = -diff;
1233
- const key = `${post.mint}-${diff.toString()}`;
1234
- const txfer = {
1235
- amount: diff,
1236
- blockNumber: block.blockHeight,
1237
- from: pre.owner,
1238
- timestamp: timestamp,
1239
- to: post.owner,
1240
- transactionGasFee: txFee,
1241
- transactionHash: txHash,
1242
- token: post.mint,
1243
- tokenType: "TOKEN"
1244
- };
1245
- if (isNegDiff) delete txfer.to;
1246
- else delete txfer.from;
1247
- if (!transfersByKey[key]) transfersByKey[key] = [
1248
- txfer
1249
- ];
1250
- else {
1251
- let didMerge = false;
1252
- for(let tbi = 0; tbi < transfersByKey[key].length; tbi += 1)if (txfer.to && !transfersByKey[key][tbi].to || txfer.from && !transfersByKey[key][tbi].from) {
1253
- didMerge = true;
1254
- transfersByKey[key][tbi] = Object.assign(transfersByKey[key][tbi] || {}, txfer);
1255
- 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
+ }
1256
1514
  }
1257
- if (!didMerge) transfersByKey[key].push(txfer);
1258
- }
1259
- matched = true;
1260
- }
1261
- if (!matched) {
1262
- let diff = BigInt(post.uiTokenAmount.amount);
1263
- const isNegDiff = diff < 0;
1264
- if (diff < 0) diff = -diff;
1265
- const key = `${post.mint}-${diff.toString()}`;
1266
- const txfer = {
1267
- amount: diff,
1268
- blockNumber: block.blockHeight,
1269
- from: null,
1270
- timestamp: timestamp,
1271
- to: post.owner,
1272
- token: post.mint,
1273
- tokenType: "TOKEN",
1274
- transactionGasFee: txFee,
1275
- transactionHash: txHash
1276
- };
1277
- if (isNegDiff) delete txfer.to;
1278
- else delete txfer.from;
1279
- if (!transfersByKey[key]) transfersByKey[key] = [
1280
- txfer
1281
- ];
1282
- else {
1283
- let didMerge = false;
1284
- for(let tbi = 0; tbi < transfersByKey[key].length; tbi += 1)if (txfer.to && !transfersByKey[key][tbi].to || txfer.from && !transfersByKey[key][tbi].from) {
1285
- didMerge = true;
1286
- transfersByKey[key][tbi] = Object.assign(transfersByKey[key][tbi] || {}, txfer);
1287
- 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];
1288
1576
  }
1289
- if (!didMerge) transfersByKey[key].push(txfer);
1290
1577
  }
1578
+ } catch (e) {
1579
+ // we only want valid transfers
1291
1580
  }
1292
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 = {};
1293
1592
  for(let i = 0; i < svmTx.meta.postBalances.length; i += 1){
1294
- const post = svmTx.meta.postBalances[i];
1295
- const pre = svmTx.meta.preBalances[i];
1296
- if (post !== undefined && pre !== undefined && post !== pre) {
1297
- let diff = BigInt(post) - BigInt(pre);
1298
- if (diff < 0) diff = -diff;
1299
- const key = `null-${diff.toString()}`;
1300
- const txfer = {
1301
- amount: diff,
1302
- blockNumber: block.blockHeight,
1303
- from: typeof allAccounts[i] === "string" ? allAccounts[i] : allAccounts[i]?.pubkey,
1304
- timestamp: timestamp,
1305
- to: typeof allAccounts[i] === "string" ? allAccounts[i] : allAccounts[i]?.pubkey?.toString(),
1306
- token: null,
1307
- tokenType: "NATIVE",
1308
- transactionGasFee: txFee,
1309
- transactionHash: txHash
1310
- };
1311
- if (post > pre) delete txfer.from;
1312
- else delete txfer.to;
1313
- if (!transfersByKey[key]) transfersByKey[key] = [
1314
- txfer
1315
- ];
1316
- else {
1317
- let didMerge = false;
1318
- for(let tbi = 0; tbi < transfersByKey[key].length; tbi += 1)if (txfer.to && !transfersByKey[key][tbi].to || txfer.from && !transfersByKey[key][tbi].from) {
1319
- didMerge = true;
1320
- transfersByKey[key][tbi] = Object.assign(transfersByKey[key][tbi] || {}, txfer);
1321
- 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];
1650
+ }
1651
+ }
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;
1322
1705
  }
1323
- if (!didMerge) transfersByKey[key].push(txfer);
1706
+ delete toReconcile[to];
1324
1707
  }
1325
1708
  }
1709
+ for(const k in toReconcile)if (toReconcile[k] === BigInt(0)) delete toReconcile[k];
1710
+ delete toReconcile[$64e1e522540ffc4e$var$WSOL_MINT];
1326
1711
  }
1327
- const unmatchedFrom = {};
1328
- const unmatchedTo = {};
1329
- for(const key in transfersByKey)for (const txfer of transfersByKey[key]){
1330
- if (!txfer.from && txfer.token !== "So11111111111111111111111111111111111111112") {
1331
- if (!unmatchedFrom[txfer.token]) unmatchedFrom[txfer.token] = [];
1332
- unmatchedFrom[txfer.token].push(txfer);
1333
- delete transfersByKey[key];
1334
- } else if (!txfer.to) {
1335
- if (!unmatchedTo[txfer.token]) unmatchedTo[txfer.token] = [];
1336
- unmatchedTo[txfer.token].push(txfer);
1337
- delete transfersByKey[key];
1338
- } 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;
1339
1722
  }
1340
- for(const token in unmatchedFrom)if (unmatchedTo[token]?.length && unmatchedFrom[token]?.length) {
1341
- const unmatchedDiff = unmatchedTo[token].reduce((a, b)=>a + BigInt(b.amount), BigInt(0)) - unmatchedFrom[token].reduce((a, b)=>a + BigInt(b.amount), BigInt(0));
1342
- if (unmatchedDiff === BigInt(0) || token === "null") {
1343
- unmatchedTo[token].sort((a, b)=>a.amount > b.amount ? 1 : -1);
1344
- unmatchedFrom[token].forEach((um)=>{
1345
- um.from = unmatchedTo[token][0].from;
1346
- 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"
1347
1754
  });
1348
1755
  }
1349
1756
  }
1757
+ transfers.push(...txTransfers.map((t)=>{
1758
+ delete t.fromTokenAccount;
1759
+ delete t.toTokenAccount;
1760
+ return t;
1761
+ }));
1350
1762
  }
1351
1763
  return transfers;
1352
1764
  },
@@ -1354,125 +1766,350 @@ const $64e1e522540ffc4e$export$a51565c56ceacb0a = {
1354
1766
  {
1355
1767
  params: {
1356
1768
  network: "SOLANA",
1357
- walletAddress: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1358
- contractAddress: "6MQpbiTC2YcogidTmKqMLK82qvE9z5QEm7EP3AEDpump"
1769
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
1359
1770
  },
1360
1771
  payload: "https://jiti.indexing.co/networks/solana/345871978",
1361
1772
  output: [
1362
1773
  {
1363
- amount: 10492578617n,
1364
- blockNumber: 324081557,
1774
+ amount: 2506024n,
1775
+ blockNumber: 345871978,
1365
1776
  from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1777
+ index: "0",
1366
1778
  timestamp: "2025-06-10T12:06:56.000Z",
1367
- 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",
1368
1806
  token: "6MQpbiTC2YcogidTmKqMLK82qvE9z5QEm7EP3AEDpump",
1369
- 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",
1370
1816
  transactionGasFee: 2506024n,
1371
- 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"
1372
1844
  },
1373
1845
  {
1374
1846
  amount: 10492578617n,
1375
- blockNumber: 324081557,
1847
+ blockNumber: 345871978,
1376
1848
  from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1849
+ index: "5-9",
1377
1850
  timestamp: "2025-06-10T12:06:56.000Z",
1378
1851
  to: "3shatpFgdVVwy8Pr723iE9L1fozzaXNdGYKtgrSwHYeJ",
1852
+ transactionGasFee: 2506024n,
1853
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1379
1854
  token: "6MQpbiTC2YcogidTmKqMLK82qvE9z5QEm7EP3AEDpump",
1380
- 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",
1381
1864
  transactionGasFee: 2506024n,
1382
- transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
1865
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1866
+ token: "So11111111111111111111111111111111111111112",
1867
+ tokenType: "TOKEN"
1383
1868
  },
1384
1869
  {
1385
- amount: 16788125787n,
1386
- blockNumber: 324081557,
1870
+ amount: 10492578617n,
1871
+ blockNumber: 345871978,
1387
1872
  from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1873
+ index: "5-13",
1388
1874
  timestamp: "2025-06-10T12:06:56.000Z",
1389
- to: "GWPLjamb5ZxrGbTsYNWW7V3p1pAMryZSfaPFTdaEsWgC",
1875
+ to: "ChkRerg6X89xHYqV4iBqcboBdU1WA8Uvs9fp2yZrqbg",
1876
+ transactionGasFee: 2506024n,
1877
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1390
1878
  token: "6MQpbiTC2YcogidTmKqMLK82qvE9z5QEm7EP3AEDpump",
1391
- 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",
1392
1888
  transactionGasFee: 2506024n,
1393
- transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
1889
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1890
+ token: "So11111111111111111111111111111111111111112",
1891
+ tokenType: "TOKEN"
1394
1892
  },
1395
1893
  {
1396
1894
  amount: 4197031447n,
1397
- blockNumber: 324081557,
1895
+ blockNumber: 345871978,
1398
1896
  from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1897
+ index: "5-17",
1399
1898
  timestamp: "2025-06-10T12:06:56.000Z",
1400
1899
  to: "ANcfLC9JcbYbEWu71fE8973V8S6vD5hS98RNrz56hrT7",
1401
- token: "6MQpbiTC2YcogidTmKqMLK82qvE9z5QEm7EP3AEDpump",
1402
- tokenType: "TOKEN",
1403
1900
  transactionGasFee: 2506024n,
1404
- transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
1405
- }
1406
- ]
1407
- },
1408
- {
1409
- params: {
1410
- network: "SOLANA",
1411
- walletAddress: "D89hHJT5Aqyx1trP6EnGY9jJUB3whgnq3aUvvCqedvzf",
1412
- contractAddress: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
1413
- },
1414
- payload: "https://jiti.indexing.co/networks/solana/326286476",
1415
- output: [
1901
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR",
1902
+ token: "6MQpbiTC2YcogidTmKqMLK82qvE9z5QEm7EP3AEDpump",
1903
+ tokenType: "TOKEN"
1904
+ },
1416
1905
  {
1417
- amount: 3000350n,
1418
- blockNumber: 304546603,
1419
- from: "D89hHJT5Aqyx1trP6EnGY9jJUB3whgnq3aUvvCqedvzf",
1420
- timestamp: "2025-03-12T14:42:16.000Z",
1421
- to: "HTd5J9YhYnN1nwCAQiykpNBjoDrgtPVUcpk9TBPMCV4b",
1422
- transactionGasFee: 105000n,
1423
- transactionHash: "3HKaqRRPyA2NHvmf3xzJpgTemxXcextCRmgwWfHpKhDqDbJSqCdy8GtH5zG8tHQU2Dcznf7JgMP7sCLQSoNPw2E5",
1424
- token: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
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",
1425
1915
  tokenType: "TOKEN"
1426
- }
1427
- ]
1428
- },
1429
- {
1430
- params: {
1431
- network: "SOLANA",
1432
- walletAddress: "5u3gUxSsiqddQf1QhRDRQqDaFe9f5S3pyVkVWy77gB85",
1433
- contractAddress: ""
1434
- },
1435
- payload: "https://jiti.indexing.co/networks/solana/291562718",
1436
- output: [
1916
+ },
1437
1917
  {
1438
- amount: 239999n,
1439
- blockNumber: 270452291,
1440
- from: "5u3gUxSsiqddQf1QhRDRQqDaFe9f5S3pyVkVWy77gB85",
1441
- timestamp: "2024-09-23T16:45:56.000Z",
1442
- to: "CebN5WGQ4jvEPvsVU4EoHEpgzq1VV7AbicfhtW4xC9iM",
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",
1443
1926
  token: null,
1444
- tokenType: "NATIVE",
1445
- transactionGasFee: 45000n,
1446
- transactionHash: "2TKq9VXjQocvyQGraxqRjyF8iASRPCmjJcGXkxYQbTknjFTToVB2rRSLMFCi5VwBx9uJ2fAN1YNt4Wr8TUVRuoMi"
1927
+ tokenType: "NATIVE"
1447
1928
  },
1448
1929
  {
1449
- amount: 1n,
1450
- blockNumber: 270452291,
1451
- from: "5u3gUxSsiqddQf1QhRDRQqDaFe9f5S3pyVkVWy77gB85",
1452
- timestamp: "2024-09-23T16:45:56.000Z",
1453
- to: "8MCjBNEBEyT5uAnDBupUxQ8eiKHJcf4vh546g4uM7cjF",
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",
1454
1938
  token: null,
1455
- tokenType: "NATIVE",
1456
- transactionGasFee: 45000n,
1457
- transactionHash: "2TKq9VXjQocvyQGraxqRjyF8iASRPCmjJcGXkxYQbTknjFTToVB2rRSLMFCi5VwBx9uJ2fAN1YNt4Wr8TUVRuoMi"
1458
- }
1459
- ]
1460
- },
1461
- {
1462
- params: {
1463
- network: "SOLANA",
1464
- walletAddress: "5cuy7pMhTPhVZN9xuhgSbykRb986siGJb6vnEtkuBrSU",
1465
- contractAddress: "27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4"
1466
- },
1467
- payload: "https://jiti.indexing.co/networks/solana/325076237",
1468
- output: [
1939
+ tokenType: "NATIVE"
1940
+ },
1469
1941
  {
1470
- amount: 14216129n,
1471
- blockNumber: 303338729,
1472
- from: "8KbrpeSRYXYjWSSdG7gE1tR7Go8MmKKxKaei1gGc4U7Q",
1473
- timestamp: "2025-03-07T01:16:59.000Z",
1474
- to: "5cuy7pMhTPhVZN9xuhgSbykRb986siGJb6vnEtkuBrSU",
1475
- transactionGasFee: 353096n,
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",
2070
+ transactionGasFee: 2506024n,
2071
+ transactionHash: "65sABMeYatoyzsp1mL6UjAXoBqUdw47HR33ouvR9BFNipTNydqvWTt8PMbVqZZfvnX3TzwB3XSdk55cy3N6u8okR"
2072
+ }
2073
+ ]
2074
+ },
2075
+ {
2076
+ params: {
2077
+ network: "SOLANA",
2078
+ walletAddress: "D89hHJT5Aqyx1trP6EnGY9jJUB3whgnq3aUvvCqedvzf",
2079
+ contractAddress: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
2080
+ },
2081
+ payload: "https://jiti.indexing.co/networks/solana/326286476",
2082
+ output: [
2083
+ {
2084
+ amount: 3000350n,
2085
+ blockNumber: 326286476,
2086
+ from: "D89hHJT5Aqyx1trP6EnGY9jJUB3whgnq3aUvvCqedvzf",
2087
+ index: "1",
2088
+ timestamp: "2025-03-12T14:42:16.000Z",
2089
+ to: "HTd5J9YhYnN1nwCAQiykpNBjoDrgtPVUcpk9TBPMCV4b",
2090
+ transactionGasFee: 105000n,
2091
+ transactionHash: "3HKaqRRPyA2NHvmf3xzJpgTemxXcextCRmgwWfHpKhDqDbJSqCdy8GtH5zG8tHQU2Dcznf7JgMP7sCLQSoNPw2E5",
2092
+ token: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
2093
+ tokenType: "TOKEN"
2094
+ }
2095
+ ]
2096
+ },
2097
+ {
2098
+ params: {
2099
+ network: "SOLANA",
2100
+ walletAddress: "5cuy7pMhTPhVZN9xuhgSbykRb986siGJb6vnEtkuBrSU",
2101
+ contractAddress: "27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4"
2102
+ },
2103
+ payload: "https://jiti.indexing.co/networks/solana/325076237",
2104
+ output: [
2105
+ {
2106
+ amount: 14216129n,
2107
+ blockNumber: 325076237,
2108
+ from: "2MFoS3MPtvyQ4Wh4M9pdfPjz6UhVoNbFbGJAskCPCj3h",
2109
+ index: "6-9",
2110
+ timestamp: "2025-03-07T01:16:59.000Z",
2111
+ to: "5cuy7pMhTPhVZN9xuhgSbykRb986siGJb6vnEtkuBrSU",
2112
+ transactionGasFee: 353096n,
1476
2113
  transactionHash: "54qvCYcmUvPX6K3KuKG1nGRJWq6696LxwPNsx7DX5rcRsLbFntGEuWCjHTVc5wMcUZhKs1MuXeqpuDswrvNjETNQ",
1477
2114
  token: "27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4",
1478
2115
  tokenType: "TOKEN"
@@ -1487,37 +2124,124 @@ const $64e1e522540ffc4e$export$a51565c56ceacb0a = {
1487
2124
  payload: "https://jiti.indexing.co/networks/solana/332450156",
1488
2125
  output: [
1489
2126
  {
1490
- amount: 19796403663n,
1491
- 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",
1492
2179
  timestamp: "2025-04-10T02:29:35.000Z",
1493
2180
  to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
1494
2181
  transactionGasFee: 80001n,
1495
2182
  transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk",
1496
2183
  token: "CniPCE4b3s8gSUPhUiyMjXnytrEqUrMfSsnbBjLCpump",
1497
- tokenType: "TOKEN",
1498
- from: "4acL7mD2J6GYJy2g3iVTvfpmHCQSZ1rb8DBuupjcVzHJ"
2184
+ tokenType: "TOKEN"
1499
2185
  },
1500
2186
  {
1501
2187
  amount: 402062750n,
1502
- blockNumber: 310691098,
2188
+ blockNumber: 332450156,
1503
2189
  from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2190
+ index: "4-6",
1504
2191
  timestamp: "2025-04-10T02:29:35.000Z",
1505
- to: "5yY5BGRgwa5rxvYPpMV9EkDpwp6w1vNNXUNzUCtMoFfR",
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",
2203
+ timestamp: "2025-04-10T02:29:35.000Z",
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",
1506
2217
  token: null,
1507
2218
  tokenType: "NATIVE",
1508
2219
  transactionGasFee: 80001n,
1509
2220
  transactionHash: "32T7ANVqz1sHBoKhfk3omrRqwDCJFYMi6TfuAwyqHPCZPCihdWTU9t9i5D6tGwuytWRwRqnEXksMPMWbFbfBzVUk"
1510
2221
  },
1511
2222
  {
1512
- amount: 97937250n,
1513
- blockNumber: 310691098,
1514
- from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2223
+ amount: 500000000n,
2224
+ blockNumber: 332450156,
2225
+ from: "So11111111111111111111111111111111111111112",
2226
+ index: "4-9-2",
1515
2227
  timestamp: "2025-04-10T02:29:35.000Z",
1516
- to: "9zF2ZWTjnk6UkyWRxNtqy9UHims9u7LSaHGyhA5PwDSx",
1517
- token: null,
1518
- tokenType: "NATIVE",
2228
+ to: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2229
+ token: "So11111111111111111111111111111111111111112",
2230
+ tokenType: "TOKEN",
1519
2231
  transactionGasFee: 80001n,
1520
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"
1521
2245
  }
1522
2246
  ]
1523
2247
  },
@@ -1531,8 +2255,9 @@ const $64e1e522540ffc4e$export$a51565c56ceacb0a = {
1531
2255
  output: [
1532
2256
  {
1533
2257
  amount: 2500000n,
1534
- blockNumber: 311062104,
2258
+ blockNumber: 332822080,
1535
2259
  from: "J1dHwpKBs8Jo4n7jWEJWwMGNH2DJQnApBFPnnYXg74v7",
2260
+ index: "4-1",
1536
2261
  timestamp: "2025-04-11T19:36:39.000Z",
1537
2262
  to: "3LoAYHuSd7Gh8d7RTFnhvYtiTiefdZ5ByamU42vkzd76",
1538
2263
  token: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
@@ -1541,22 +2266,12 @@ const $64e1e522540ffc4e$export$a51565c56ceacb0a = {
1541
2266
  transactionHash: "xKTWvnhSRErcHCMozRMEue4MriNr1Any6LiaQzXrR7imZ1MpZxRqbyv9LLg4JQoDq4oJZpDqPmzxLCtMCkgj2hn"
1542
2267
  },
1543
2268
  {
1544
- amount: 1373625000n,
1545
- blockNumber: 311062104,
2269
+ amount: 2497500000n,
2270
+ blockNumber: 332822080,
1546
2271
  from: "J1dHwpKBs8Jo4n7jWEJWwMGNH2DJQnApBFPnnYXg74v7",
2272
+ index: "4-3",
1547
2273
  timestamp: "2025-04-11T19:36:39.000Z",
1548
- to: "5guD4Uz462GT4Y4gEuqyGsHZ59JGxFN4a3rF6KWguMcJ",
1549
- token: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
1550
- tokenType: "TOKEN",
1551
- transactionGasFee: 350362n,
1552
- transactionHash: "xKTWvnhSRErcHCMozRMEue4MriNr1Any6LiaQzXrR7imZ1MpZxRqbyv9LLg4JQoDq4oJZpDqPmzxLCtMCkgj2hn"
1553
- },
1554
- {
1555
- amount: 1123875000n,
1556
- blockNumber: 311062104,
1557
- from: "J1dHwpKBs8Jo4n7jWEJWwMGNH2DJQnApBFPnnYXg74v7",
1558
- timestamp: "2025-04-11T19:36:39.000Z",
1559
- to: "DH4xmaWDnTzKXehVaPSNy9tMKJxnYL5Mo5U3oTHFtNYJ",
2274
+ to: "4xDsmeTWPNjgSVSS1VTfzFq3iHZhp77ffPkAmkZkdu71",
1560
2275
  token: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
1561
2276
  tokenType: "TOKEN",
1562
2277
  transactionGasFee: 350362n,
@@ -1571,47 +2286,170 @@ const $64e1e522540ffc4e$export$a51565c56ceacb0a = {
1571
2286
  },
1572
2287
  payload: "https://jiti.indexing.co/networks/solana/344836070",
1573
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
+ },
1574
2313
  {
1575
2314
  amount: 21234547656n,
1576
- blockNumber: 323048342,
2315
+ blockNumber: 344836070,
1577
2316
  from: "DgC9bBDvJYeVyTqcp8nW5F5USNvxBiZ9NMoTUVy5UVPz",
2317
+ index: "5-3",
1578
2318
  timestamp: "2025-06-05T18:30:59.000Z",
2319
+ to: "ChkRerg6X89xHYqV4iBqcboBdU1WA8Uvs9fp2yZrqbg",
1579
2320
  transactionGasFee: 118174n,
1580
2321
  transactionHash: "2wQdUtEnCf77jiros6eCbQ1BrWrn1uw4nisy87kmgHhZMGX2CqBugaLdne6bvQR8mAdxinVLivcbVVfJAdTry2rw",
1581
2322
  token: "6MQpbiTC2YcogidTmKqMLK82qvE9z5QEm7EP3AEDpump",
1582
- tokenType: "TOKEN",
1583
- to: "ChkRerg6X89xHYqV4iBqcboBdU1WA8Uvs9fp2yZrqbg"
2323
+ tokenType: "TOKEN"
1584
2324
  },
1585
2325
  {
1586
- amount: 3272427086n,
1587
- blockNumber: 323048342,
1588
- from: "DQwTf8dHkjtM6VuewpgET7MS7kX3EEXQDqvXkScC6tnB",
2326
+ amount: 3300686091n,
2327
+ blockNumber: 344836070,
2328
+ from: "ChkRerg6X89xHYqV4iBqcboBdU1WA8Uvs9fp2yZrqbg",
2329
+ index: "5-4",
1589
2330
  timestamp: "2025-06-05T18:30:59.000Z",
1590
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",
1591
2346
  token: null,
1592
- 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",
1593
2380
  transactionGasFee: 118174n,
1594
- transactionHash: "2wQdUtEnCf77jiros6eCbQ1BrWrn1uw4nisy87kmgHhZMGX2CqBugaLdne6bvQR8mAdxinVLivcbVVfJAdTry2rw"
2381
+ transactionHash: "2wQdUtEnCf77jiros6eCbQ1BrWrn1uw4nisy87kmgHhZMGX2CqBugaLdne6bvQR8mAdxinVLivcbVVfJAdTry2rw",
2382
+ token: null,
2383
+ tokenType: "NATIVE"
1595
2384
  }
1596
2385
  ]
1597
2386
  },
1598
2387
  {
1599
2388
  params: {
1600
2389
  network: "SOLANA",
1601
- walletAddress: "Gaq4K6e5tY9Z8L9bcWFPhNbteb9YYekjzH6eQPx24B5i"
2390
+ walletAddress: "AVAZvHLR2PcWpDf8BXY4rVxNHYRBytycHkcB5z5QNXYm"
1602
2391
  },
1603
2392
  payload: "https://jiti.indexing.co/networks/solana/343762745",
1604
2393
  output: [
1605
2394
  {
1606
- amount: 704724041n,
1607
- blockNumber: 321976935,
2395
+ amount: 191568n,
2396
+ blockNumber: 343762745,
1608
2397
  from: "AVAZvHLR2PcWpDf8BXY4rVxNHYRBytycHkcB5z5QNXYm",
2398
+ index: "0",
1609
2399
  timestamp: "2025-05-31T21:20:52.000Z",
1610
- to: "Gaq4K6e5tY9Z8L9bcWFPhNbteb9YYekjzH6eQPx24B5i",
2400
+ to: null,
2401
+ transactionGasFee: 191568n,
2402
+ transactionHash: "5usAzMSrENJQscoRdxi48n22aMcFmJ1U7f2yGmwUk8AHSFCzLfRtBP7gVnsZbe7Jy9SG2VoeVbVSoVvu43tsdvm1",
1611
2403
  token: null,
1612
- 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",
1613
2413
  transactionGasFee: 191568n,
1614
- transactionHash: "5usAzMSrENJQscoRdxi48n22aMcFmJ1U7f2yGmwUk8AHSFCzLfRtBP7gVnsZbe7Jy9SG2VoeVbVSoVvu43tsdvm1"
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",
2437
+ transactionGasFee: 191568n,
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"
1615
2453
  }
1616
2454
  ]
1617
2455
  },
@@ -1623,25 +2461,216 @@ const $64e1e522540ffc4e$export$a51565c56ceacb0a = {
1623
2461
  payload: "https://jiti.indexing.co/networks/solana/375557379",
1624
2462
  output: [
1625
2463
  {
1626
- amount: 9990000n,
1627
- blockNumber: 353720952,
2464
+ amount: 5000n,
2465
+ blockNumber: 375557379,
2466
+ from: "moAGAQftMo19RY6YqStNdiDhNpejJaeNWgv5oczbp8U",
2467
+ index: "0",
1628
2468
  timestamp: "2025-10-24T20:23:09.000Z",
1629
- to: "moAGAQftMo19RY6YqStNdiDhNpejJaeNWgv5oczbp8U",
1630
- token: "So11111111111111111111111111111111111111112",
1631
- tokenType: "TOKEN",
2469
+ to: null,
2470
+ token: null,
2471
+ tokenType: "NATIVE",
1632
2472
  transactionGasFee: 5000n,
1633
2473
  transactionHash: "3UCamcERYHN9JrgwPqUshvabv2f7uHpbStwfG7bbPFsVSSjQrK21Q9joj7gNLD6Ab5XHehkaUKtYp7Vptv7Kswv3"
1634
2474
  },
1635
2475
  {
1636
2476
  amount: 9990000n,
1637
- blockNumber: 353720952,
2477
+ blockNumber: 375557379,
1638
2478
  from: "moAGAQftMo19RY6YqStNdiDhNpejJaeNWgv5oczbp8U",
2479
+ index: "2",
1639
2480
  timestamp: "2025-10-24T20:23:09.000Z",
1640
2481
  to: "5uQC5CfgqGP8B8bG64RATmZXfUKiHf1XRbYHkVKPwwny",
1641
2482
  token: null,
1642
2483
  tokenType: "NATIVE",
1643
2484
  transactionGasFee: 5000n,
1644
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"
1645
2674
  }
1646
2675
  ]
1647
2676
  }
@@ -2020,8 +3049,9 @@ const $0ab1acc1eff391f6$var$tokenTransfersTemplate = {
2020
3049
  txfer.from,
2021
3050
  txfer.to
2022
3051
  ].includes(_ctx.params.walletAddress)) return false;
3052
+ if (_ctx.params.transactionHash && txfer.transactionHash !== _ctx.params.transactionHash) return false;
2023
3053
  }
2024
- 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}`;
2025
3055
  if (seenTransfers.has(key)) return false;
2026
3056
  seenTransfers.add(key);
2027
3057
  return true;
@@ -4477,6 +5507,7 @@ const $dc0c078500ed1fea$var$filterValuesTemplate = {
4477
5507
  "6NDen7aDi65apHo8m1Vea4nuS6LyjQeM6pDNqcW4Q5Pg",
4478
5508
  "6NJmmYh9yAMKKcZPeedpLYX8v2m81nTecaWvdx5SX6Wm",
4479
5509
  "6NqvoPpSYCPEtLEukQaSNs7mS3yK6k285saH9o3vgC96",
5510
+ "6P4tvbzRY6Bh3MiWDHuLqyHywovsRwRpfskPvyeSoHsz",
4480
5511
  "6PvHaibtZhuba14dzbhGFJRASYX3Ka2oviRzSbXV2wYC",
4481
5512
  "6QXW5VkwsYwnV4iqaCZGHt42ZiY2nEZHD1qXm9yNbhVz",
4482
5513
  "6R9aM3PfnS4LyNGjeXugkRLeCFKVmcod9AEnbixtMTj3",
@@ -4554,6 +5585,7 @@ const $dc0c078500ed1fea$var$filterValuesTemplate = {
4554
5585
  "6mCzwUFcdTuz6fFJRA8nY1iXNRJqPpXU1PvCfANfVXhh",
4555
5586
  "6mHYpppqhbQH8Sd4hNMgucwYU1Zho389Q9bZ19T27859",
4556
5587
  "6mP9cw9Ludgbr5hGBTSCiw37jRaFpxQ9eWDRjUM57eE5",
5588
+ "6mQ8xEaHdTikyMvvMxUctYch6dUjnKgfoeib2msyMMi1",
4557
5589
  "6mc5i3FYmpA2SFUqSbTY1kdDVaj4WR3P3ex4QrGUxDE1",
4558
5590
  "6minRorGYiA5aEeDvXL1Usat6DCdaF46owL3oANVQ8uB",
4559
5591
  "6n8taYki7RscA1XW7xGmevLcqj855oSgDgjPe1dZyHfW",
@@ -6543,6 +7575,7 @@ const $dc0c078500ed1fea$var$filterValuesTemplate = {
6543
7575
  "FofDMBAJWzUDjefwFc9TbgTUKNSJyWehhjLLfY5aXpGt",
6544
7576
  "FoigPJ6kL6Gth5Er6t9d1Nkh96Skadqw63Ciyjxc1f8H",
6545
7577
  "FpCMFDFGYotvufJ7HrFHsWEiiQCGbkLCtwHiDnh7o28Q",
7578
+ "FpEzVYQ5MjuSut61Ka18tzYhQKLqndefubV7K2U1mrTz",
6546
7579
  "FpTQXdt7NjYsJWXaE9UgG2yPUshoFiW3nzXbXKz1CjKh",
6547
7580
  "FphFJA451qptiGyCeCN3xvrDi8cApGAnyR5vw2KxxQ1q",
6548
7581
  "FpjXN8mFf6eAor29zDXhTzoGQdZaGWq6QprR9958nQ64",