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