@fileverse-dev/formulajs 4.4.11-mod-22-patch-5 → 4.4.11-mod-23-patch-1

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.
@@ -20,16 +20,138 @@ var ERROR_MESSAGES_FLAG = {
20
20
  INVALID_API_KEY: "_INVALID_KEY",
21
21
  RATE_LIMIT: "_RATE_LIMIT_REACHED",
22
22
  DEFAULT: "FETCH_ERROR",
23
- MISSING_KEY: "_MISSING"
23
+ MISSING_KEY: "_MISSING",
24
+ INVALID_CHAIN: "_INVALID_CHAIN",
25
+ INVALID_TYPE: "_INVALID_TYPE",
26
+ INVALID_ADDRESS: "_INVALID_ADDRESS",
27
+ INVALID_PARAM: "_INVALID_PARAM"
24
28
  };
25
29
 
26
30
  // src/crypto-constants.js
27
31
  var SERVICE_API_KEY = {
28
32
  Etherscan: "ETHERSCAN_API_KEY",
29
33
  Coingecko: "COINGECKO_API_KEY",
30
- Safe: "SAFE_API_KEY"
34
+ Safe: "SAFE_API_KEY",
35
+ Basescan: "BASESCAN_API_KEY",
36
+ Gnosisscan: "GNOSIS_API_KEY",
37
+ Firefly: "FIRE_FLY_API_KEY"
31
38
  };
32
39
  var FUNCTION_LOCALE = [
40
+ {
41
+ API_KEY: SERVICE_API_KEY.Firefly,
42
+ LOGO: "https://firefly.social/android-chrome-192x192.png",
43
+ BRAND_COLOR: "#f8f5fc",
44
+ BRAND_SECONDARY_COLOR: "#855dcd",
45
+ n: "FIREFLY",
46
+ t: 20,
47
+ d: "Fetches posts or replies from Farcaster or Lens using Firefly's OpenAPI and returns simplified text content.",
48
+ a: "Retrieves posts or replies from Firefly OpenAPI by username, user ID, or post ID/hash for Farcaster and Lens platforms. Returns a flattened array of content with id, author, text, createdAt, and platform.",
49
+ p: [
50
+ {
51
+ name: "platform",
52
+ detail: "The social platform to query. Supports 'farcaster' or 'lens'.",
53
+ example: `"farcaster"`,
54
+ require: "m",
55
+ type: "string"
56
+ },
57
+ {
58
+ name: "contentType",
59
+ detail: "The type of content to fetch. Can be 'posts' or 'replies'.",
60
+ example: `"posts"`,
61
+ require: "m",
62
+ type: "string"
63
+ },
64
+ {
65
+ name: "identifier",
66
+ detail: "The username, user ID, or post ID/hash depending on platform and contentType.",
67
+ example: `"toka" or "0xcb6cab2048..."`,
68
+ require: "m",
69
+ type: "string"
70
+ }
71
+ ]
72
+ },
73
+ {
74
+ API_KEY: SERVICE_API_KEY.Neynar,
75
+ LOGO: "https://avatars.githubusercontent.com/u/138582390?s=200&v=4",
76
+ BRAND_COLOR: "##e8e6ff",
77
+ BRAND_SECONDARY_COLOR: "#28204A",
78
+ n: "NEYNAR",
79
+ t: 20,
80
+ d: "Fetches followers for a given Farcaster FID using Neynar's API.",
81
+ a: "Retrieves followers of a Farcaster user, with support for sorting, pagination, and optional viewer context.",
82
+ p: [
83
+ {
84
+ name: "fid",
85
+ detail: "The Farcaster FID of the user whose followers should be fetched.",
86
+ example: `123`,
87
+ require: "m",
88
+ type: "number"
89
+ },
90
+ {
91
+ name: "viewerFid",
92
+ detail: "FID of the viewer, to include contextual info like mutual follows (optional).",
93
+ example: `456`,
94
+ require: "o",
95
+ type: "number"
96
+ },
97
+ {
98
+ name: "sortType",
99
+ detail: "Sorting type: either 'desc_chron' (default) or 'algorithmic'.",
100
+ example: `"desc_chron"`,
101
+ require: "o",
102
+ type: "string"
103
+ },
104
+ {
105
+ name: "limit",
106
+ detail: "Number of followers to return (max 100).",
107
+ example: `20`,
108
+ require: "o",
109
+ type: "number"
110
+ },
111
+ {
112
+ name: "cursor",
113
+ detail: "Cursor string for paginating the result set.",
114
+ example: `"eyJvZmZzZXQiOjIwLCJsYXN0SWQiOjEyMzQ1Nn0="`,
115
+ require: "o",
116
+ type: "string"
117
+ }
118
+ ]
119
+ },
120
+ {
121
+ API_KEY: SERVICE_API_KEY.Basescan,
122
+ LOGO: "https://raw.githubusercontent.com/mritunjayz/github-storage/refs/heads/main/1689874988430.jpeg",
123
+ // public Base logo
124
+ BRAND_COLOR: "#f1f5ff",
125
+ BRAND_SECONDARY_COLOR: "#2752ff",
126
+ n: "BASESCAN",
127
+ t: 20,
128
+ d: "Fetches Base network data via Basescan: native txns, ERC-20 transfers, ERC-721 transfers, and gas metrics.",
129
+ a: "Pulls on-chain activity for Base (chainid 8453) using Basescan\u2019s API \u2014 supports full tx history, token/NFT transfers, and live gas info.",
130
+ p: [
131
+ { name: "type", detail: "Data category: 'all-txns' | 'token-txns' | 'nft-txns' | 'gas'.", example: `"token-txns"`, require: "m", type: "string" },
132
+ { name: "chain", detail: "Must be 'base'.", example: `"base"`, require: "m", type: "string" },
133
+ { name: "address", detail: "Target wallet (omit for 'gas').", example: `"0x1234\u2026abcd"`, require: "o", type: "string" },
134
+ { name: "startDate", detail: "Start UNIX timestamp (sec).", example: `"1704067200"`, require: "o", type: "rangenumber" },
135
+ { name: "endDate", detail: "End UNIX timestamp (sec).", example: `"1706659200"`, require: "o", type: "rangenumber" }
136
+ ]
137
+ },
138
+ {
139
+ API_KEY: SERVICE_API_KEY.Gnosisscan,
140
+ LOGO: "https://raw.githubusercontent.com/mritunjayz/github-storage/refs/heads/main/1689874988430.jpeg",
141
+ BRAND_COLOR: "#f6f7f6",
142
+ BRAND_SECONDARY_COLOR: "#133629",
143
+ n: "GNOSISSCAN",
144
+ t: 20,
145
+ d: "Fetches Gnosis Chain data via Gnosisscan: txns, token transfers, NFT transfers, and gas metrics.",
146
+ a: "Queries Gnosis Chain (chainid 100) through Gnosisscan\u2019s API to return txns, token/NFT transfers, or gas info for a wallet.",
147
+ p: [
148
+ { name: "type", detail: "Data category: 'all-txns' | 'token-txns' | 'nft-txns' | 'gas'.", example: `"nft-txns"`, require: "m", type: "string" },
149
+ { name: "chain", detail: "Must be 'gnosis'.", example: `"gnosis"`, require: "m", type: "string" },
150
+ { name: "address", detail: "Target wallet (omit for 'gas').", example: `"0x6789\u2026efab"`, require: "o", type: "string" },
151
+ { name: "startDate", detail: "Start UNIX timestamp (sec).", example: `"1704067200"`, require: "o", type: "rangenumber" },
152
+ { name: "endDate", detail: "End UNIX timestamp (sec).", example: `"1706659200"`, require: "o", type: "rangenumber" }
153
+ ]
154
+ },
33
155
  {
34
156
  LOGO: "https://cdn.prod.website-files.com/65f94dfd53db8b337c808067/68485baa72714ae58f350ce2_bs-logo.png",
35
157
  BRAND_COLOR: "#f8f8fd",
@@ -99,29 +221,42 @@ var FUNCTION_LOCALE = [
99
221
  BRAND_SECONDARY_COLOR: "#21325B",
100
222
  n: "ETHERSCAN",
101
223
  t: 20,
102
- d: "Returns the list of transactions performed by an address, with optional pagination.",
103
- a: "Returns the list of transactions performed by an address, with optional pagination.",
224
+ d: "Fetches data from Etherscan including transactions, token transfers, NFT transfers, and gas tracker info.",
225
+ a: "Retrieves blockchain data for a given chain and address from Etherscan, including txns, token/nft transfers, and gas metrics.",
104
226
  p: [
105
227
  {
106
- name: "value1",
107
- detail: "The address string representing the addresses to check for balance",
228
+ name: "type",
229
+ detail: "The type of data to retrieve. Can be 'all-txns', 'token-txns', 'nft-txns', or 'gas'.",
230
+ example: `"all-txns"`,
231
+ require: "m",
232
+ type: "string"
233
+ },
234
+ {
235
+ name: "chain",
236
+ detail: "The chain name (e.g. 'ethereum', 'base', 'gnosis').",
237
+ example: `"ethereum"`,
238
+ require: "m",
239
+ type: "string"
240
+ },
241
+ {
242
+ name: "address",
243
+ detail: "The wallet address to fetch data for (not required for 'gas').",
108
244
  example: `"0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC"`,
109
- require: "m"
245
+ require: "o",
246
+ type: "string"
110
247
  },
111
248
  {
112
- name: "page",
113
- detail: "Page number.",
114
- example: "1",
249
+ name: "startDate",
250
+ detail: "Start timestamp in seconds (optional). Used to filter block range.",
251
+ example: `"1704067200"`,
115
252
  require: "o",
116
- repeat: "n",
117
253
  type: "rangenumber"
118
254
  },
119
255
  {
120
- name: "size",
121
- detail: "Page size(offset).",
122
- example: "100",
256
+ name: "endDate",
257
+ detail: "End timestamp in seconds (optional). Used to filter block range.",
258
+ example: `"1706659200"`,
123
259
  require: "o",
124
- repeat: "n",
125
260
  type: "rangenumber"
126
261
  }
127
262
  ]
@@ -137,10 +272,11 @@ var FUNCTION_LOCALE = [
137
272
  a: "Dynamically queries blockchain data such as transactions, balances by resolving time ranges to block ranges.",
138
273
  p: [
139
274
  {
140
- name: "address",
141
- detail: "The address to query, in hexadecimal format.",
142
- example: `"0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC"`,
143
- require: "m"
275
+ name: "addresses",
276
+ detail: "One or more Ethereum addresses (comma-separated) to query.",
277
+ example: `"0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC,0x000000000000000000000000000000000000dead"`,
278
+ require: "m",
279
+ type: "string"
144
280
  },
145
281
  {
146
282
  name: "categories",
@@ -171,6 +307,9 @@ var FUNCTION_LOCALE = [
171
307
  ]
172
308
  },
173
309
  {
310
+ LOGO: "https://files.readme.io/06394e687778e238a6cd43de6e1d7d339043aa50054703f64606369352ef1864-VariantCG-Symbol-Color.png",
311
+ BRAND_COLOR: "#f8fdf8",
312
+ BRAND_SECONDARY_COLOR: "#4bc63d",
174
313
  n: "COINGECKO",
175
314
  t: 20,
176
315
  API_KEY: SERVICE_API_KEY.Coingecko,
@@ -278,6 +417,429 @@ var FUNCTION_LOCALE = [
278
417
  type: "range"
279
418
  }
280
419
  ]
420
+ },
421
+ {
422
+ API_KEY: SERVICE_API_KEY.Etherscan,
423
+ LOGO: "https://app.uniswap.org/favicon.png",
424
+ BRAND_COLOR: "#fef5fc",
425
+ BRAND_SECONDARY_COLOR: "#f50db4",
426
+ n: "UNISWAP",
427
+ t: 20,
428
+ d: "Fetches data from Etherscan including transactions, token transfers, NFT transfers, and gas tracker info.",
429
+ a: "Retrieves blockchain data for a given chain and address from Etherscan, including txns, token/nft transfers, and gas metrics.",
430
+ p: [
431
+ {
432
+ name: "type",
433
+ detail: "The type of data to retrieve. Can be 'all-txns', 'token-txns', 'nft-txns', or 'gas'.",
434
+ example: `"all-txns"`,
435
+ require: "m",
436
+ type: "string"
437
+ },
438
+ {
439
+ name: "chain",
440
+ detail: "The chain name (e.g. 'ethereum', 'base', 'gnosis').",
441
+ example: `"ethereum"`,
442
+ require: "m",
443
+ type: "string"
444
+ },
445
+ {
446
+ name: "address",
447
+ detail: "The wallet address to fetch data for (not required for 'gas').",
448
+ example: `"0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC"`,
449
+ require: "o",
450
+ type: "string"
451
+ },
452
+ {
453
+ name: "startDate",
454
+ detail: "Start timestamp in seconds (optional). Used to filter block range.",
455
+ example: `"1704067200"`,
456
+ require: "o",
457
+ type: "rangenumber"
458
+ },
459
+ {
460
+ name: "endDate",
461
+ detail: "End timestamp in seconds (optional). Used to filter block range.",
462
+ example: `"1706659200"`,
463
+ require: "o",
464
+ type: "rangenumber"
465
+ }
466
+ ]
467
+ },
468
+ {
469
+ API_KEY: SERVICE_API_KEY.Etherscan,
470
+ LOGO: "https://avatars.githubusercontent.com/u/47617460?s=200&v=4",
471
+ BRAND_COLOR: "#f7f7ff",
472
+ BRAND_SECONDARY_COLOR: "#9896ff",
473
+ n: "AAVE",
474
+ t: 20,
475
+ d: "Fetches data from Etherscan including transactions, token transfers, NFT transfers, and gas tracker info.",
476
+ a: "Retrieves blockchain data for a given chain and address from Etherscan, including txns, token/nft transfers, and gas metrics.",
477
+ p: [
478
+ {
479
+ name: "type",
480
+ detail: "The type of data to retrieve. Can be 'all-txns', 'token-txns', 'nft-txns', or 'gas'.",
481
+ example: `"all-txns"`,
482
+ require: "m",
483
+ type: "string"
484
+ },
485
+ {
486
+ name: "chain",
487
+ detail: "The chain name (e.g. 'ethereum', 'base', 'gnosis').",
488
+ example: `"ethereum"`,
489
+ require: "m",
490
+ type: "string"
491
+ },
492
+ {
493
+ name: "address",
494
+ detail: "The wallet address to fetch data for (not required for 'gas').",
495
+ example: `"0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC"`,
496
+ require: "o",
497
+ type: "string"
498
+ },
499
+ {
500
+ name: "startDate",
501
+ detail: "Start timestamp in seconds (optional). Used to filter block range.",
502
+ example: `"1704067200"`,
503
+ require: "o",
504
+ type: "rangenumber"
505
+ },
506
+ {
507
+ name: "endDate",
508
+ detail: "End timestamp in seconds (optional). Used to filter block range.",
509
+ example: `"1706659200"`,
510
+ require: "o",
511
+ type: "rangenumber"
512
+ }
513
+ ]
514
+ },
515
+ {
516
+ API_KEY: SERVICE_API_KEY.Etherscan,
517
+ LOGO: "https://www.pendle.finance/uploads/wp-content/uploads/2021/12/cropped-Pendle-Logo-quite-small.png",
518
+ BRAND_COLOR: "#eafffb",
519
+ BRAND_SECONDARY_COLOR: "#47e2c2",
520
+ n: "PENDLE",
521
+ t: 20,
522
+ d: "Fetches data from Etherscan including transactions, token transfers, NFT transfers, and gas tracker info.",
523
+ a: "Retrieves blockchain data for a given chain and address from Etherscan, including txns, token/nft transfers, and gas metrics.",
524
+ p: [
525
+ {
526
+ name: "type",
527
+ detail: "The type of data to retrieve. Can be 'all-txns', 'token-txns', 'nft-txns', or 'gas'.",
528
+ example: `"all-txns"`,
529
+ require: "m",
530
+ type: "string"
531
+ },
532
+ {
533
+ name: "chain",
534
+ detail: "The chain name (e.g. 'ethereum', 'base', 'gnosis').",
535
+ example: `"ethereum"`,
536
+ require: "m",
537
+ type: "string"
538
+ },
539
+ {
540
+ name: "address",
541
+ detail: "The wallet address to fetch data for (not required for 'gas').",
542
+ example: `"0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC"`,
543
+ require: "o",
544
+ type: "string"
545
+ },
546
+ {
547
+ name: "startDate",
548
+ detail: "Start timestamp in seconds (optional). Used to filter block range.",
549
+ example: `"1704067200"`,
550
+ require: "o",
551
+ type: "rangenumber"
552
+ },
553
+ {
554
+ name: "endDate",
555
+ detail: "End timestamp in seconds (optional). Used to filter block range.",
556
+ example: `"1706659200"`,
557
+ require: "o",
558
+ type: "rangenumber"
559
+ }
560
+ ]
561
+ },
562
+ {
563
+ API_KEY: SERVICE_API_KEY.Etherscan,
564
+ LOGO: "https://aerodrome.finance/images/AERO/favicon.ico",
565
+ BRAND_COLOR: "#edf3ff",
566
+ BRAND_SECONDARY_COLOR: "#2966f0",
567
+ n: "AERODROME",
568
+ t: 20,
569
+ d: "Fetches data from Etherscan including transactions, token transfers, NFT transfers, and gas tracker info.",
570
+ a: "Retrieves blockchain data for a given chain and address from Etherscan, including txns, token/nft transfers, and gas metrics.",
571
+ p: [
572
+ {
573
+ name: "type",
574
+ detail: "The type of data to retrieve. Can be 'all-txns', 'token-txns', 'nft-txns', or 'gas'.",
575
+ example: `"all-txns"`,
576
+ require: "m",
577
+ type: "string"
578
+ },
579
+ {
580
+ name: "chain",
581
+ detail: "The chain name (e.g. 'ethereum', 'base', 'gnosis').",
582
+ example: `"ethereum"`,
583
+ require: "m",
584
+ type: "string"
585
+ },
586
+ {
587
+ name: "address",
588
+ detail: "The wallet address to fetch data for (not required for 'gas').",
589
+ example: `"0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC"`,
590
+ require: "o",
591
+ type: "string"
592
+ },
593
+ {
594
+ name: "startDate",
595
+ detail: "Start timestamp in seconds (optional). Used to filter block range.",
596
+ example: `"1704067200"`,
597
+ require: "o",
598
+ type: "rangenumber"
599
+ },
600
+ {
601
+ name: "endDate",
602
+ detail: "End timestamp in seconds (optional). Used to filter block range.",
603
+ example: `"1706659200"`,
604
+ require: "o",
605
+ type: "rangenumber"
606
+ }
607
+ ]
608
+ },
609
+ {
610
+ API_KEY: SERVICE_API_KEY.Etherscan,
611
+ LOGO: "https://cdn.prod.website-files.com/6760e87b474d412dfa9a7a68/6760e8ebe8faad5fb985c89a_Frame%201321316795.png",
612
+ BRAND_COLOR: "#f6f4ff",
613
+ BRAND_SECONDARY_COLOR: "#684ff8",
614
+ n: "ARTEMIS",
615
+ t: 20,
616
+ d: "Fetches data from Etherscan including transactions, token transfers, NFT transfers, and gas tracker info.",
617
+ a: "Retrieves blockchain data for a given chain and address from Etherscan, including txns, token/nft transfers, and gas metrics.",
618
+ p: [
619
+ {
620
+ name: "type",
621
+ detail: "The type of data to retrieve. Can be 'all-txns', 'token-txns', 'nft-txns', or 'gas'.",
622
+ example: `"all-txns"`,
623
+ require: "m",
624
+ type: "string"
625
+ },
626
+ {
627
+ name: "chain",
628
+ detail: "The chain name (e.g. 'ethereum', 'base', 'gnosis').",
629
+ example: `"ethereum"`,
630
+ require: "m",
631
+ type: "string"
632
+ },
633
+ {
634
+ name: "address",
635
+ detail: "The wallet address to fetch data for (not required for 'gas').",
636
+ example: `"0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC"`,
637
+ require: "o",
638
+ type: "string"
639
+ },
640
+ {
641
+ name: "startDate",
642
+ detail: "Start timestamp in seconds (optional). Used to filter block range.",
643
+ example: `"1704067200"`,
644
+ require: "o",
645
+ type: "rangenumber"
646
+ },
647
+ {
648
+ name: "endDate",
649
+ detail: "End timestamp in seconds (optional). Used to filter block range.",
650
+ example: `"1706659200"`,
651
+ require: "o",
652
+ type: "rangenumber"
653
+ }
654
+ ]
655
+ },
656
+ {
657
+ API_KEY: SERVICE_API_KEY.Etherscan,
658
+ LOGO: "https://aerodrome.finance/images/AERO/favicon.ico",
659
+ BRAND_COLOR: "#effdfb",
660
+ BRAND_SECONDARY_COLOR: "#5eead4",
661
+ n: "KAITO",
662
+ t: 20,
663
+ d: "Fetches data from Etherscan including transactions, token transfers, NFT transfers, and gas tracker info.",
664
+ a: "Retrieves blockchain data for a given chain and address from Etherscan, including txns, token/nft transfers, and gas metrics.",
665
+ p: [
666
+ {
667
+ name: "type",
668
+ detail: "The type of data to retrieve. Can be 'all-txns', 'token-txns', 'nft-txns', or 'gas'.",
669
+ example: `"all-txns"`,
670
+ require: "m",
671
+ type: "string"
672
+ },
673
+ {
674
+ name: "chain",
675
+ detail: "The chain name (e.g. 'ethereum', 'base', 'gnosis').",
676
+ example: `"ethereum"`,
677
+ require: "m",
678
+ type: "string"
679
+ },
680
+ {
681
+ name: "address",
682
+ detail: "The wallet address to fetch data for (not required for 'gas').",
683
+ example: `"0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC"`,
684
+ require: "o",
685
+ type: "string"
686
+ },
687
+ {
688
+ name: "startDate",
689
+ detail: "Start timestamp in seconds (optional). Used to filter block range.",
690
+ example: `"1704067200"`,
691
+ require: "o",
692
+ type: "rangenumber"
693
+ },
694
+ {
695
+ name: "endDate",
696
+ detail: "End timestamp in seconds (optional). Used to filter block range.",
697
+ example: `"1706659200"`,
698
+ require: "o",
699
+ type: "rangenumber"
700
+ }
701
+ ]
702
+ },
703
+ {
704
+ API_KEY: SERVICE_API_KEY.Etherscan,
705
+ LOGO: "https://gnosisscan.io/assets/generic/html/favicon-light.ico",
706
+ BRAND_COLOR: "#f6f7f6",
707
+ BRAND_SECONDARY_COLOR: "#133629",
708
+ n: "GNOSIS",
709
+ t: 20,
710
+ d: "Fetches data from Etherscan including transactions, token transfers, NFT transfers, and gas tracker info.",
711
+ a: "Retrieves blockchain data for a given chain and address from Etherscan, including txns, token/nft transfers, and gas metrics.",
712
+ p: [
713
+ {
714
+ name: "type",
715
+ detail: "The type of data to retrieve. Can be 'all-txns', 'token-txns', 'nft-txns', or 'gas'.",
716
+ example: `"all-txns"`,
717
+ require: "m",
718
+ type: "string"
719
+ },
720
+ {
721
+ name: "chain",
722
+ detail: "The chain name (e.g. 'ethereum', 'base', 'gnosis').",
723
+ example: `"ethereum"`,
724
+ require: "m",
725
+ type: "string"
726
+ },
727
+ {
728
+ name: "address",
729
+ detail: "The wallet address to fetch data for (not required for 'gas').",
730
+ example: `"0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC"`,
731
+ require: "o",
732
+ type: "string"
733
+ },
734
+ {
735
+ name: "startDate",
736
+ detail: "Start timestamp in seconds (optional). Used to filter block range.",
737
+ example: `"1704067200"`,
738
+ require: "o",
739
+ type: "rangenumber"
740
+ },
741
+ {
742
+ name: "endDate",
743
+ detail: "End timestamp in seconds (optional). Used to filter block range.",
744
+ example: `"1706659200"`,
745
+ require: "o",
746
+ type: "rangenumber"
747
+ }
748
+ ]
749
+ },
750
+ {
751
+ API_KEY: SERVICE_API_KEY.Etherscan,
752
+ LOGO: "https://avatars.githubusercontent.com/u/129790008?s=48&v=4",
753
+ BRAND_COLOR: "#f1f7fc",
754
+ BRAND_SECONDARY_COLOR: "#5098d6",
755
+ n: "OTTERSCAN",
756
+ t: 20,
757
+ d: "Fetches data from Etherscan including transactions, token transfers, NFT transfers, and gas tracker info.",
758
+ a: "Retrieves blockchain data for a given chain and address from Etherscan, including txns, token/nft transfers, and gas metrics.",
759
+ p: [
760
+ {
761
+ name: "type",
762
+ detail: "The type of data to retrieve. Can be 'all-txns', 'token-txns', 'nft-txns', or 'gas'.",
763
+ example: `"all-txns"`,
764
+ require: "m",
765
+ type: "string"
766
+ },
767
+ {
768
+ name: "chain",
769
+ detail: "The chain name (e.g. 'ethereum', 'base', 'gnosis').",
770
+ example: `"ethereum"`,
771
+ require: "m",
772
+ type: "string"
773
+ },
774
+ {
775
+ name: "address",
776
+ detail: "The wallet address to fetch data for (not required for 'gas').",
777
+ example: `"0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC"`,
778
+ require: "o",
779
+ type: "string"
780
+ },
781
+ {
782
+ name: "startDate",
783
+ detail: "Start timestamp in seconds (optional). Used to filter block range.",
784
+ example: `"1704067200"`,
785
+ require: "o",
786
+ type: "rangenumber"
787
+ },
788
+ {
789
+ name: "endDate",
790
+ detail: "End timestamp in seconds (optional). Used to filter block range.",
791
+ example: `"1706659200"`,
792
+ require: "o",
793
+ type: "rangenumber"
794
+ }
795
+ ]
796
+ },
797
+ {
798
+ API_KEY: SERVICE_API_KEY.Etherscan,
799
+ LOGO: "https://avatars.githubusercontent.com/u/129790008?s=48&v=4",
800
+ BRAND_COLOR: "#f9f8ff",
801
+ BRAND_SECONDARY_COLOR: "#725bff",
802
+ n: "TALLY",
803
+ t: 20,
804
+ d: "Fetches data from Etherscan including transactions, token transfers, NFT transfers, and gas tracker info.",
805
+ a: "Retrieves blockchain data for a given chain and address from Etherscan, including txns, token/nft transfers, and gas metrics.",
806
+ p: [
807
+ {
808
+ name: "type",
809
+ detail: "The type of data to retrieve. Can be 'all-txns', 'token-txns', 'nft-txns', or 'gas'.",
810
+ example: `"all-txns"`,
811
+ require: "m",
812
+ type: "string"
813
+ },
814
+ {
815
+ name: "chain",
816
+ detail: "The chain name (e.g. 'ethereum', 'base', 'gnosis').",
817
+ example: `"ethereum"`,
818
+ require: "m",
819
+ type: "string"
820
+ },
821
+ {
822
+ name: "address",
823
+ detail: "The wallet address to fetch data for (not required for 'gas').",
824
+ example: `"0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC"`,
825
+ require: "o",
826
+ type: "string"
827
+ },
828
+ {
829
+ name: "startDate",
830
+ detail: "Start timestamp in seconds (optional). Used to filter block range.",
831
+ example: `"1704067200"`,
832
+ require: "o",
833
+ type: "rangenumber"
834
+ },
835
+ {
836
+ name: "endDate",
837
+ detail: "End timestamp in seconds (optional). Used to filter block range.",
838
+ example: `"1706659200"`,
839
+ require: "o",
840
+ type: "rangenumber"
841
+ }
842
+ ]
281
843
  }
282
844
  ];
283
845
  export {