@fileverse-dev/formulajs 4.4.11-mod-38-patch-6 → 4.4.11-mod-38-patch-7

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.
@@ -393,26 +393,62 @@ var FUNCTION_LOCALE = [
393
393
  },
394
394
  {
395
395
  n: "EOA",
396
- t: 0,
397
- d: "Returns the sum of a series of numbers and/or cells.",
398
- a: "Sum of a series of numbers and/or cells.",
399
- m: [1, 255],
396
+ API_KEY: SERVICE_API_KEY.Etherscan,
397
+ LOGO: "https://etherscan.io/images/favicon3.ico",
398
+ BRAND_COLOR: "#F6F7F8",
399
+ BRAND_SECONDARY_COLOR: "#21325B",
400
+ t: 20,
401
+ d: "Fetches address data like transactions, balances, or portfolio info from multiple supported chains.",
402
+ a: "Dynamically queries blockchain data such as transactions and balances by resolving time ranges to block ranges and supporting pagination.",
400
403
  p: [
401
404
  {
402
- name: "value1",
403
- detail: "The first number or range to add together.",
404
- example: "A2:A100",
405
+ name: "addresses",
406
+ detail: "One or more addresses (comma-separated) to query.",
407
+ example: `"vitalik.eth"`,
405
408
  require: "m",
406
- repeat: "n",
407
- type: "rangeall"
409
+ type: "string"
408
410
  },
409
411
  {
410
- name: "value2",
411
- detail: "Additional numbers or ranges to add to `value1`.",
412
- example: "2",
412
+ name: "categories",
413
+ detail: `Type of data to fetch. Supported values: "txns", "balance".`,
414
+ example: `"txns"`,
415
+ require: "m",
416
+ type: "string"
417
+ },
418
+ {
419
+ name: "chain",
420
+ detail: `Blockchain network(s) to query. Supported values: "ethereum", "gnosis", "base". Accepts comma-separated values.`,
421
+ example: `"ethereum"`,
422
+ require: "m",
423
+ type: "string"
424
+ },
425
+ {
426
+ name: "startTime",
427
+ detail: "Used to calculate starting block for transaction queries.",
428
+ example: `"01/01/2024"`,
429
+ require: "m",
430
+ type: "string"
431
+ },
432
+ {
433
+ name: "endTime",
434
+ detail: "Used to calculate ending block for transaction queries.",
435
+ example: `"01/06/2024"`,
436
+ require: "m",
437
+ type: "string"
438
+ },
439
+ {
440
+ name: "page",
441
+ detail: "The page number for paginated transaction results. Only used when category is 'txns'. Default is 1",
442
+ example: "1",
413
443
  require: "o",
414
- repeat: "y",
415
- type: "rangeall"
444
+ type: "number"
445
+ },
446
+ {
447
+ name: "offset",
448
+ detail: "The number of results to return per page (limit). Only used when category is 'txns'. Default is 10",
449
+ example: "10",
450
+ require: "o",
451
+ type: "number"
416
452
  }
417
453
  ]
418
454
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fileverse-dev/formulajs",
3
- "version": "4.4.11-mod-38-patch-6",
3
+ "version": "4.4.11-mod-38-patch-7",
4
4
  "description": "JavaScript implementation of most Microsoft Excel formula functions",
5
5
  "author": "Formulajs",
6
6
  "publishConfig": {