@indexing/jiti 0.0.48 → 0.0.50
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 +309 -6
- package/dist/main.js.map +1 -1
- package/dist/module.js +309 -6
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -54,6 +54,11 @@ const $6bd2ca253e883278$var$PARTIAL_VM_TO_NETWORK_MAP = {
|
|
|
54
54
|
RIPPLE: [
|
|
55
55
|
"RIPPLE"
|
|
56
56
|
],
|
|
57
|
+
SNAPCHAIN: [
|
|
58
|
+
"CAST_PROTOCOL",
|
|
59
|
+
"FARCASTER",
|
|
60
|
+
"SNAPCHAIN"
|
|
61
|
+
],
|
|
57
62
|
STARKNET: [
|
|
58
63
|
"STARKNET"
|
|
59
64
|
],
|
|
@@ -173,7 +178,7 @@ const $25d5bdd23cba31eb$export$ace043a4f2efe476 = {
|
|
|
173
178
|
if (partial.tokenAddress?.toLowerCase().includes("aptos_coin")) finalToken = null;
|
|
174
179
|
else finalToken = partial.tokenAddress?.toLowerCase();
|
|
175
180
|
transfers.push({
|
|
176
|
-
amount: BigInt(partial.amount),
|
|
181
|
+
amount: BigInt(partial.amount || 0),
|
|
177
182
|
blockNumber: parseInt(block.block_height, 10),
|
|
178
183
|
from: partial.from,
|
|
179
184
|
to: partial.to,
|
|
@@ -397,7 +402,12 @@ const $f9ab50a3e879ac1c$export$b5fd4920e8b7d913 = {
|
|
|
397
402
|
const blockNumber = Number(typedBlock.block.header.height);
|
|
398
403
|
const blockTimestamp = new Date(typedBlock.block.header.time).toISOString();
|
|
399
404
|
for (const txRaw of typedBlock.block.data.txs || []){
|
|
400
|
-
|
|
405
|
+
let decoded;
|
|
406
|
+
try {
|
|
407
|
+
decoded = (0, $8zHUo$cosmjsprotosigning.decodeTxRaw)(new Uint8Array($f9ab50a3e879ac1c$require$Buffer.from(txRaw, "base64")));
|
|
408
|
+
} catch (e) {
|
|
409
|
+
continue;
|
|
410
|
+
}
|
|
401
411
|
const txHash = (0, $8zHUo$viem.sha256)(new Uint8Array($f9ab50a3e879ac1c$require$Buffer.from(txRaw, "base64")));
|
|
402
412
|
const transactionGasFee = BigInt(decoded.authInfo.fee?.amount?.[0]?.amount || "0");
|
|
403
413
|
const registry = new (0, $8zHUo$cosmjsprotosigning.Registry)((0, $8zHUo$cosmjsstargate.defaultRegistryTypes));
|
|
@@ -410,8 +420,8 @@ const $f9ab50a3e879ac1c$export$b5fd4920e8b7d913 = {
|
|
|
410
420
|
blockNumber: blockNumber,
|
|
411
421
|
from: decodedMsg.sender,
|
|
412
422
|
to: decodedMsg.receiver,
|
|
413
|
-
amount: BigInt(decodedMsg.token
|
|
414
|
-
token: decodedMsg.token
|
|
423
|
+
amount: BigInt(decodedMsg.token?.amount || 0),
|
|
424
|
+
token: decodedMsg.token?.denom,
|
|
415
425
|
tokenType: "NATIVE",
|
|
416
426
|
timestamp: blockTimestamp,
|
|
417
427
|
transactionHash: txHash.slice(2).toUpperCase(),
|
|
@@ -693,6 +703,101 @@ function $414c83047563e72e$export$685b7dc2197cd06c(rawBlock) {
|
|
|
693
703
|
}
|
|
694
704
|
|
|
695
705
|
|
|
706
|
+
var $7fd98ef3967673b0$exports = {};
|
|
707
|
+
|
|
708
|
+
$parcel$export($7fd98ef3967673b0$exports, "snapchainTimestampFromMsg", () => $7fd98ef3967673b0$export$f69db31cc49f73fd);
|
|
709
|
+
$parcel$export($7fd98ef3967673b0$exports, "snapchainParseEvent", () => $7fd98ef3967673b0$export$146821f89c094be4);
|
|
710
|
+
|
|
711
|
+
var $7fd98ef3967673b0$require$Buffer = $8zHUo$buffer.Buffer;
|
|
712
|
+
function $7fd98ef3967673b0$var$getValueFromObject(obj, path) {
|
|
713
|
+
if (!obj || !path || !path.length) return undefined;
|
|
714
|
+
const parts = path.replace(/\.\./g, ".__dot__").split(".");
|
|
715
|
+
if (parts[0].startsWith("__dot__")) parts[0] = parts[0].replace(/__dot__/, ".");
|
|
716
|
+
if (parts.length === 1) return obj[parts[0]];
|
|
717
|
+
return $7fd98ef3967673b0$var$getValueFromObject(obj[parts[0]], parts.slice(1).join("."));
|
|
718
|
+
}
|
|
719
|
+
function $7fd98ef3967673b0$export$f69db31cc49f73fd(msg) {
|
|
720
|
+
return new Date(parseInt(msg.timestamp || msg.data?.timestamp) * 1000 + 1609459200000);
|
|
721
|
+
}
|
|
722
|
+
function $7fd98ef3967673b0$export$146821f89c094be4(evt) {
|
|
723
|
+
if (!evt?.data?.type) return null;
|
|
724
|
+
const data = evt.data;
|
|
725
|
+
const processed = {
|
|
726
|
+
fid: data.fid,
|
|
727
|
+
signer: evt.signer,
|
|
728
|
+
timestamp: $7fd98ef3967673b0$export$f69db31cc49f73fd(data).toISOString()
|
|
729
|
+
};
|
|
730
|
+
switch(data.type){
|
|
731
|
+
case "MESSAGE_TYPE_CAST_ADD":
|
|
732
|
+
processed._dataType = "cast";
|
|
733
|
+
processed.hash = evt.hash;
|
|
734
|
+
processed.embeds = $7fd98ef3967673b0$var$getValueFromObject(data, "cast_add_body.embeds");
|
|
735
|
+
processed.parentCastUrl = $7fd98ef3967673b0$var$getValueFromObject(data, "cast_add_body.parent_url");
|
|
736
|
+
processed.parentCastFid = $7fd98ef3967673b0$var$getValueFromObject(data, "cast_add_body.parent_cast_id.fid");
|
|
737
|
+
processed.parentCastHash = $7fd98ef3967673b0$var$getValueFromObject(data, "cast_add_body.parent_cast_id.hash");
|
|
738
|
+
processed.text = $7fd98ef3967673b0$var$getValueFromObject(data, "cast_add_body.text");
|
|
739
|
+
processed.mentions = $7fd98ef3967673b0$var$getValueFromObject(data, "cast_add_body.mentions");
|
|
740
|
+
processed.mentionsPositions = $7fd98ef3967673b0$var$getValueFromObject(data, "cast_add_body.mentions_positions");
|
|
741
|
+
processed.deletedAt = "";
|
|
742
|
+
break;
|
|
743
|
+
case "MESSAGE_TYPE_CAST_REMOVE":
|
|
744
|
+
processed._dataType = "cast";
|
|
745
|
+
processed.hash = $7fd98ef3967673b0$var$getValueFromObject(data, "cast_remove_body.target_hash");
|
|
746
|
+
if (typeof processed.hash === "string" && !processed.hash?.startsWith("0x")) processed.hash = "0x" + $7fd98ef3967673b0$require$Buffer.from(processed.hash, "base64").toString("hex");
|
|
747
|
+
processed.deletedAt = processed.timestamp;
|
|
748
|
+
break;
|
|
749
|
+
case "MESSAGE_TYPE_REACTION_ADD":
|
|
750
|
+
case "MESSAGE_TYPE_REACTION_REMOVE":
|
|
751
|
+
processed._dataType = "reaction";
|
|
752
|
+
processed.targetCastFid = $7fd98ef3967673b0$var$getValueFromObject(data, "reaction_body.target_cast_id.fid");
|
|
753
|
+
processed.targetCastHash = $7fd98ef3967673b0$var$getValueFromObject(data, "reaction_body.target_cast_id.hash");
|
|
754
|
+
processed.type = $7fd98ef3967673b0$var$getValueFromObject(data, "reaction_body.type")?.split("_TYPE_").pop().toLowerCase();
|
|
755
|
+
if (data.type === "MESSAGE_TYPE_REACTION_REMOVE") processed.deletedAt = processed.timestamp;
|
|
756
|
+
else processed.deletedAt = "";
|
|
757
|
+
break;
|
|
758
|
+
case "MESSAGE_TYPE_LINK_ADD":
|
|
759
|
+
case "MESSAGE_TYPE_LINK_REMOVE":
|
|
760
|
+
processed._dataType = "link";
|
|
761
|
+
processed.target_fid = $7fd98ef3967673b0$var$getValueFromObject(data, "link_body.target_fid");
|
|
762
|
+
processed.type = $7fd98ef3967673b0$var$getValueFromObject(data, "link_body.type");
|
|
763
|
+
if (data.type === "MESSAGE_TYPE_LINK_REMOVE") processed.deletedAt = processed.timestamp;
|
|
764
|
+
else processed.deletedAt = "";
|
|
765
|
+
break;
|
|
766
|
+
case "MESSAGE_TYPE_VERIFICATION_ADD_ETH_ADDRESS":
|
|
767
|
+
processed._dataType = "verification";
|
|
768
|
+
processed.address = $7fd98ef3967673b0$var$getValueFromObject(data, "verification_add_address_body.address");
|
|
769
|
+
if (processed.address?.startsWith("0x")) processed.address = processed.address.toLowerCase();
|
|
770
|
+
processed.deletedAt = "";
|
|
771
|
+
break;
|
|
772
|
+
case "MESSAGE_TYPE_VERIFICATION_REMOVE":
|
|
773
|
+
processed._dataType = "verification";
|
|
774
|
+
processed.address = $7fd98ef3967673b0$var$getValueFromObject(data, "verification_remove_body.address");
|
|
775
|
+
if (processed.address?.startsWith("0x")) processed.address = processed.address.toLowerCase();
|
|
776
|
+
processed.deletedAt = processed.timestamp;
|
|
777
|
+
break;
|
|
778
|
+
case "MESSAGE_TYPE_USER_DATA_ADD":
|
|
779
|
+
{
|
|
780
|
+
processed._dataType = "user_data";
|
|
781
|
+
const key = $7fd98ef3967673b0$var$getValueFromObject(data, "user_data_body.type")?.split("_").pop().toLowerCase();
|
|
782
|
+
if (key) processed.data = {
|
|
783
|
+
[key]: $7fd98ef3967673b0$var$getValueFromObject(data, "user_data_body.value")
|
|
784
|
+
};
|
|
785
|
+
break;
|
|
786
|
+
}
|
|
787
|
+
case "MESSAGE_TYPE_USERNAME_PROOF":
|
|
788
|
+
return null;
|
|
789
|
+
default:
|
|
790
|
+
return null;
|
|
791
|
+
}
|
|
792
|
+
for(const k in processed){
|
|
793
|
+
if (processed[k] === null || processed[k] === undefined) delete processed[k];
|
|
794
|
+
if (k === "deletedAt" && processed[k] === "") processed[k] = null;
|
|
795
|
+
if ((k.endsWith("Hash") || k === "hash") && processed[k] && !processed[k].startsWith("0x")) processed[k] = "0x" + $7fd98ef3967673b0$require$Buffer.from(processed[k], "base64").toString("hex");
|
|
796
|
+
}
|
|
797
|
+
return processed;
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
|
|
696
801
|
$parcel$exportWildcard($d7167569386d0d4c$exports, $b8691f253b6baa6e$exports);
|
|
697
802
|
$parcel$exportWildcard($d7167569386d0d4c$exports, $6bd2ca253e883278$exports);
|
|
698
803
|
$parcel$exportWildcard($d7167569386d0d4c$exports, $596a656635c74d50$exports);
|
|
@@ -700,6 +805,7 @@ $parcel$exportWildcard($d7167569386d0d4c$exports, $e5566e47593dc3e2$exports);
|
|
|
700
805
|
$parcel$exportWildcard($d7167569386d0d4c$exports, $da55be3e40667945$exports);
|
|
701
806
|
$parcel$exportWildcard($d7167569386d0d4c$exports, $f7a3fb164436c9c3$exports);
|
|
702
807
|
$parcel$exportWildcard($d7167569386d0d4c$exports, $414c83047563e72e$exports);
|
|
808
|
+
$parcel$exportWildcard($d7167569386d0d4c$exports, $7fd98ef3967673b0$exports);
|
|
703
809
|
|
|
704
810
|
|
|
705
811
|
|
|
@@ -1877,6 +1983,7 @@ const $7dd402f6ad0dab6a$var$tokenTransfersTemplate = {
|
|
|
1877
1983
|
var $7dd402f6ad0dab6a$export$2e2bcd8739ae039 = $7dd402f6ad0dab6a$var$tokenTransfersTemplate;
|
|
1878
1984
|
|
|
1879
1985
|
|
|
1986
|
+
|
|
1880
1987
|
const $9af31dbb692f94e3$var$NULL_ADDRESS = "0x0000000000000000000000000000000000000000";
|
|
1881
1988
|
const $9af31dbb692f94e3$var$filterValuesTemplate = {
|
|
1882
1989
|
key: "filter_values",
|
|
@@ -1902,7 +2009,7 @@ const $9af31dbb692f94e3$var$filterValuesTemplate = {
|
|
|
1902
2009
|
finalValues = Array.from(finalValues.values()).filter((v)=>v?.length > 3).map((v)=>v.startsWith("0x") && v.length === 66 ? v.toLowerCase() : v);
|
|
1903
2010
|
break;
|
|
1904
2011
|
case "COSMOS":
|
|
1905
|
-
for (const tx of block.txs_results){
|
|
2012
|
+
for (const tx of block.txs_results || []){
|
|
1906
2013
|
for (const evt of tx.events || [])for (const attr of evt.attributes || []){
|
|
1907
2014
|
const val = attr.value;
|
|
1908
2015
|
if (typeof val === "string" && val?.length > 35 && val?.length < 70) {
|
|
@@ -1915,6 +2022,7 @@ const $9af31dbb692f94e3$var$filterValuesTemplate = {
|
|
|
1915
2022
|
}
|
|
1916
2023
|
}
|
|
1917
2024
|
}
|
|
2025
|
+
finalValues = Array.from(finalValues.values()).filter((v)=>v?.length && /^[A-z0-9]+$/.test(v));
|
|
1918
2026
|
break;
|
|
1919
2027
|
case "EVM":
|
|
1920
2028
|
for (const tx of block.transactions || []){
|
|
@@ -1953,6 +2061,24 @@ const $9af31dbb692f94e3$var$filterValuesTemplate = {
|
|
|
1953
2061
|
for(const key in tx)if (tx[key]?.issuer) finalValues.add(tx[key]?.issuer);
|
|
1954
2062
|
}
|
|
1955
2063
|
break;
|
|
2064
|
+
case "SNAPCHAIN":
|
|
2065
|
+
{
|
|
2066
|
+
const typedBlock = block;
|
|
2067
|
+
let parsed = [];
|
|
2068
|
+
if (typedBlock.processed?.length) parsed = typedBlock.processed;
|
|
2069
|
+
else {
|
|
2070
|
+
const shards = typedBlock.shards ? typedBlock.shards : [
|
|
2071
|
+
block
|
|
2072
|
+
];
|
|
2073
|
+
const messages = shards.map((s)=>s.transactions?.map((t)=>t.user_messages || []).flat()).flat();
|
|
2074
|
+
parsed = messages.map((0, $7fd98ef3967673b0$export$146821f89c094be4));
|
|
2075
|
+
}
|
|
2076
|
+
for (const p of parsed){
|
|
2077
|
+
if (!p) continue;
|
|
2078
|
+
finalValues.add(`${p.fid}`);
|
|
2079
|
+
}
|
|
2080
|
+
break;
|
|
2081
|
+
}
|
|
1956
2082
|
case "STARKNET":
|
|
1957
2083
|
for (const tx of block.transactions || []){
|
|
1958
2084
|
const from = tx.send_address?.toLowerCase() || $9af31dbb692f94e3$var$NULL_ADDRESS;
|
|
@@ -9178,8 +9304,185 @@ const $9af31dbb692f94e3$var$filterValuesTemplate = {
|
|
|
9178
9304
|
"0xcf6884a33693df6c33b57b5adf66118da99057ea7c985ada4fbb396672f71fd1",
|
|
9179
9305
|
"0xf000a96be506d1be0a696348aa7a52c0715d88e16593abca800b35cd70518490"
|
|
9180
9306
|
]
|
|
9307
|
+
},
|
|
9308
|
+
{
|
|
9309
|
+
params: {},
|
|
9310
|
+
payload: "https://jiti.indexing.co/networks/cast_protocol/14863292",
|
|
9311
|
+
output: [
|
|
9312
|
+
"1023860",
|
|
9313
|
+
"1039346",
|
|
9314
|
+
"1060442",
|
|
9315
|
+
"1078023",
|
|
9316
|
+
"1100071",
|
|
9317
|
+
"1115733",
|
|
9318
|
+
"1136215",
|
|
9319
|
+
"1149176",
|
|
9320
|
+
"1158447",
|
|
9321
|
+
"1181611",
|
|
9322
|
+
"1190222",
|
|
9323
|
+
"1190224",
|
|
9324
|
+
"1293795",
|
|
9325
|
+
"285998",
|
|
9326
|
+
"291813",
|
|
9327
|
+
"308094",
|
|
9328
|
+
"315240",
|
|
9329
|
+
"516359",
|
|
9330
|
+
"549592",
|
|
9331
|
+
"7637",
|
|
9332
|
+
"773458",
|
|
9333
|
+
"832276",
|
|
9334
|
+
"957217",
|
|
9335
|
+
"968720"
|
|
9336
|
+
]
|
|
9337
|
+
},
|
|
9338
|
+
{
|
|
9339
|
+
params: {},
|
|
9340
|
+
payload: "https://jiti.indexing.co/networks/celestia/7496481",
|
|
9341
|
+
output: [
|
|
9342
|
+
"celestia10er54gljsfdt2c638ayndpahrr9590mncfcpl3",
|
|
9343
|
+
"celestia17xpfvakm2amg962yls6f84z3kell8c5lpnjs3s",
|
|
9344
|
+
"celestia1ldf3mhs0z5h5effkkyvc5scpy0xah00t98xfml"
|
|
9345
|
+
]
|
|
9346
|
+
},
|
|
9347
|
+
{
|
|
9348
|
+
params: {},
|
|
9349
|
+
payload: "https://jiti.indexing.co/networks/injective/133343704",
|
|
9350
|
+
output: [
|
|
9351
|
+
"0x21f3eed62ddc64458129c0dcbff32b3f54c92084db787eb5cf7c20e69a1de033",
|
|
9352
|
+
"0xe7df227480a497a8fe0811d4d9136e74fa8f83e9000074616c69732d75736474",
|
|
9353
|
+
"1225173393peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
|
|
9354
|
+
"1233796937peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
|
|
9355
|
+
"1241634179peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
|
|
9356
|
+
"1250417137peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
|
|
9357
|
+
"14158133000peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
|
|
9358
|
+
"14212603544peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
|
|
9359
|
+
"1peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
|
|
9360
|
+
"619992652peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
|
|
9361
|
+
"620004155peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
|
|
9362
|
+
"629994219peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
|
|
9363
|
+
"630018486peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
|
|
9364
|
+
"866763289peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
|
|
9365
|
+
"899000000peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
|
|
9366
|
+
"900000000peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
|
|
9367
|
+
"902000000peggy0xdAC17F958D2ee523a2206206994597C13D831ec7",
|
|
9368
|
+
"inj12423gsxq64jax0ghtdcjdt30x3wtq6md63ec2x",
|
|
9369
|
+
"inj12vpajtjf5cvmk2w737m0t8qwwkyjz0xgvxwyus",
|
|
9370
|
+
"inj13hqsrfuehaj6d09fnyh5602trlztysymxrfjvs",
|
|
9371
|
+
"inj13npv2370futcvy8j2qxmq59recxftufdjnljlq",
|
|
9372
|
+
"inj144w02j59yh5jwf6ufe6pf3uasckw7cca833r6r",
|
|
9373
|
+
"inj14vnmw2wee3xtrsqfvpcqg35jg9v7j2vdpzx0kk",
|
|
9374
|
+
"inj14xvft0xh82cu44kvtj0jsyp8tssqanyufpn26n",
|
|
9375
|
+
"inj15cqe6e94w4pjj3ycm2lmpaf8zc8qtxnm4j2e5m",
|
|
9376
|
+
"inj15z55ukc7wd97ephadyc3nmdy7ts8ln99xwrchn",
|
|
9377
|
+
"inj16mynjh2fpkm5970zxdwxr8pfh9zemhlrxczh7f",
|
|
9378
|
+
"inj17n8kpnavff2xx86s9rgv8vjy64mkxagflyz6rr",
|
|
9379
|
+
"inj17xpfvakm2amg962yls6f84z3kell8c5l6s5ye9",
|
|
9380
|
+
"inj180qqam730rzf4efq0rk4c752eglxf3mlmza3xe",
|
|
9381
|
+
"inj18t8vwhnsdk0u0h5pd7u7nnlmv8yx7r243vqk8e",
|
|
9382
|
+
"inj19l0hx5qvghgcnxel0ju2vtuv3su74khnaees0c",
|
|
9383
|
+
"inj19z7379t2cycrm8cmsfxx0p5f0cj5jpjzv726vz",
|
|
9384
|
+
"inj19zpejr68rk8a00eavzp4hxz9m9hdlpqzdvsdeh",
|
|
9385
|
+
"inj1ax24sjxls440qgpeagxtvl4rgxduvqk86tm8xd",
|
|
9386
|
+
"inj1dd9qeprk8t3pjsxuv3ukz8xp0kk64tqm4m8vdq",
|
|
9387
|
+
"inj1e7t9u68y7502pgzv24fcww5eq2asc8qecmgeck",
|
|
9388
|
+
"inj1e9u3ljf356hgtgjr7380nupnj38trm5a0mv9re",
|
|
9389
|
+
"inj1ew6kqpwyuhps6j5mpj47pyhcwulzm0drc7ttvy",
|
|
9390
|
+
"inj1f7aaq5vlefhxh3hvmsxxd8dfnpd26mu3z6e797",
|
|
9391
|
+
"inj1g9prkzgfjk0wgeg6uwx808u0p7h7d5j08ryfgw",
|
|
9392
|
+
"inj1gnt4c7nfelz50ueqamxejh5hh76474xnj3gs3a",
|
|
9393
|
+
"inj1hny8rk4455rkynj44l42jdss5sjvg3kvv58tdh",
|
|
9394
|
+
"inj1jr7v0g7nvc9hadz3djyjpdqdmalxzu62997n0d",
|
|
9395
|
+
"inj1ku8h6nkgp4hrf5nc5uukx30f2w6r4g2747x0z0",
|
|
9396
|
+
"inj1l74zlrsd2ydyq6jupj6qxgu40dayjqxjzh8ywd",
|
|
9397
|
+
"inj1r3tj245qe2hvxthqe3rxqsm8zss8sz6u0zpvst",
|
|
9398
|
+
"inj1rknucfv74ul9xxxe2tzdw63w7zdzak0zdvvctj",
|
|
9399
|
+
"inj1s9hhrdgzerf79w963gv6kez4hvp3jds5avsc6e",
|
|
9400
|
+
"inj1snp7q6v56fvc0xcmzkmvgnf9pth8d86whe5hz2",
|
|
9401
|
+
"inj1tfu0tmzffp7elc7tp7f5ale4zugagf28uwn890",
|
|
9402
|
+
"inj1tpzed9lvfc44p3r5ev4llhv03ykfv0ev2tqjj0",
|
|
9403
|
+
"inj1ul0jyayq5jt63lsgz82djymwwnaglqlfdw894u",
|
|
9404
|
+
"inj1vs7wjfd489g69m498fgqa9lkkwqkl3zdcgx08r",
|
|
9405
|
+
"inj1yl6nwv02m26pxnm7gxdetk63tgaxat5z39e37c",
|
|
9406
|
+
"inj1znedx2afn3md4nu9wdnh7q6ksxyjfn3tpf9832"
|
|
9407
|
+
]
|
|
9408
|
+
},
|
|
9409
|
+
{
|
|
9410
|
+
params: {},
|
|
9411
|
+
payload: "https://jiti.indexing.co/networks/aptos/431238610",
|
|
9412
|
+
output: [
|
|
9413
|
+
"0x03cce78e71ad0b34d22069d0f7941b84785dbcbbba10b569db052a7862639c3a",
|
|
9414
|
+
"0x111ae3e5bc816a5e63c2da97d0aa3886519e0cd5e4b046659fa35796bd11542a",
|
|
9415
|
+
"0x1ef2be2a92393c09ac5bc5e5b934a831611ebab5c4f2419d1d35f0552abec5f6",
|
|
9416
|
+
"0x34b74d880555e3972e1e95c4e215f7d8a2653797d4bd949c8890b5f5e4a97040",
|
|
9417
|
+
"0x381dad0b9af7bc810881258761d6ef2c35c9e3fb6891db5e4d008a7f090d56c9",
|
|
9418
|
+
"0x3b38735644d0be8ac37ebd84a1e42fa5c2487495ef8782f6c694b1a147f82426",
|
|
9419
|
+
"0x45c798416c158c1fd93fed2e40fbc2cd9f27bd640e6a6ed7ce58c9e4f413695b",
|
|
9420
|
+
"0x46d8639fb27ff13f625a652b4dd3e81f3a5d5dc82c2b52b8432337b3baa5685a",
|
|
9421
|
+
"0x5a96fab415f43721a44c5a761ecfcccc3dae9c21f34313f0e594b49d8d4564f4",
|
|
9422
|
+
"0x621fd48a608f1823f2ad11552e387950c3eb9e405c4af6ced2e20faa2bcddade",
|
|
9423
|
+
"0x623ceb896d7b03e8a7c8dd3af0f5a486ac025d466b92ead6fd6316add377bd60",
|
|
9424
|
+
"0x9ec0f229bc76ed56f4488b6e152e7ab37d12cc4eb25ed73d11f4af79b32e8093",
|
|
9425
|
+
"0xa13eae62dc5401fe6b016ece8360f81d0f87c20c1004ab09545dcfbfea9b6377",
|
|
9426
|
+
"0xbc3557a52bcac15d470e6ffa421eeea105baffd8471d6aa2c0238380f363ccd3",
|
|
9427
|
+
"0xc1f907d4bce871f9f0b78d8ce46cb62de2b14e2045338655312b9a861e5a9d4b",
|
|
9428
|
+
"0xda116c9007ec7baa411e11e0fecbebe5618c3a4707b35d14f5a804e3ed377bcc",
|
|
9429
|
+
"0xde2fb400352ecaa78ef076361b675a95f851f9b4943b7a07907a2b5c908385b8",
|
|
9430
|
+
"0xe7f571ba7d04d6bc88f519289bc4f94a54fb25634128b3f9884d64904db32c12"
|
|
9431
|
+
]
|
|
9432
|
+
},
|
|
9433
|
+
{
|
|
9434
|
+
params: {},
|
|
9435
|
+
payload: "https://jiti.indexing.co/networks/farcaster/2442805",
|
|
9436
|
+
output: [
|
|
9437
|
+
"1053494",
|
|
9438
|
+
"1066546",
|
|
9439
|
+
"1090343",
|
|
9440
|
+
"1131909",
|
|
9441
|
+
"1134046",
|
|
9442
|
+
"1134910",
|
|
9443
|
+
"1135798",
|
|
9444
|
+
"1139813",
|
|
9445
|
+
"1146560",
|
|
9446
|
+
"1148283",
|
|
9447
|
+
"1163463",
|
|
9448
|
+
"1164305",
|
|
9449
|
+
"1167631",
|
|
9450
|
+
"1167984",
|
|
9451
|
+
"1181162",
|
|
9452
|
+
"1182140",
|
|
9453
|
+
"1186458",
|
|
9454
|
+
"1198272",
|
|
9455
|
+
"1230161",
|
|
9456
|
+
"1275123",
|
|
9457
|
+
"1278167",
|
|
9458
|
+
"12938",
|
|
9459
|
+
"1322761",
|
|
9460
|
+
"1332557",
|
|
9461
|
+
"1334507",
|
|
9462
|
+
"1337870",
|
|
9463
|
+
"1337940",
|
|
9464
|
+
"310644",
|
|
9465
|
+
"319554",
|
|
9466
|
+
"377148",
|
|
9467
|
+
"430267",
|
|
9468
|
+
"432992",
|
|
9469
|
+
"448300",
|
|
9470
|
+
"455743",
|
|
9471
|
+
"467181",
|
|
9472
|
+
"474644",
|
|
9473
|
+
"511842",
|
|
9474
|
+
"541835",
|
|
9475
|
+
"618593",
|
|
9476
|
+
"789371",
|
|
9477
|
+
"864838",
|
|
9478
|
+
"897445",
|
|
9479
|
+
"902685",
|
|
9480
|
+
"905676",
|
|
9481
|
+
"957928",
|
|
9482
|
+
"969084"
|
|
9483
|
+
]
|
|
9181
9484
|
}
|
|
9182
|
-
]
|
|
9485
|
+
].slice(0)
|
|
9183
9486
|
};
|
|
9184
9487
|
var $9af31dbb692f94e3$export$2e2bcd8739ae039 = $9af31dbb692f94e3$var$filterValuesTemplate;
|
|
9185
9488
|
|