@fileverse-dev/formulajs 4.4.11-mod-35 → 4.4.11-mod-36

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/lib/cjs/index.cjs CHANGED
@@ -13243,7 +13243,7 @@ if (scanKey === SERVICE_API_KEY.Gnosisscan) chainId = 'gnosis';
13243
13243
  }
13244
13244
  }
13245
13245
 
13246
- async function FIREFLY(platform, contentType, identifier, start = 0, end = 10) {
13246
+ async function FIREFLY() {
13247
13247
  const API_KEY = window.localStorage.getItem(SERVICE_API_KEY.Firefly);
13248
13248
  if (!API_KEY) return `${SERVICE_API_KEY.Firefly}${ERROR_MESSAGES_FLAG.MISSING_KEY}`;
13249
13249
 
@@ -13262,6 +13262,9 @@ async function FIREFLY(platform, contentType, identifier, start = 0, end = 10) {
13262
13262
  }
13263
13263
  };
13264
13264
 
13265
+
13266
+ const [platform, contentType, identifier, start = 0, end = 10] = argsToArray(arguments);
13267
+
13265
13268
  const platformType = typeMap[platform]?.[contentType];
13266
13269
  if (!platformType) return `${SERVICE_API_KEY.Firefly}${ERROR_MESSAGES_FLAG.INVALID_TYPE}`;
13267
13270
 
@@ -13305,7 +13308,7 @@ async function FIREFLY(platform, contentType, identifier, start = 0, end = 10) {
13305
13308
 
13306
13309
 
13307
13310
 
13308
- async function BLOCKSCOUT(address, type, chain, startTimestamp, endTimestamp, page, offset) {
13311
+ async function BLOCKSCOUT() {
13309
13312
  if (!chain) {
13310
13313
  chain = 'ethereum';
13311
13314
  }
@@ -13314,6 +13317,8 @@ async function BLOCKSCOUT(address, type, chain, startTimestamp, endTimestamp, pa
13314
13317
  return 'TYPE_MISSING'
13315
13318
  }
13316
13319
 
13320
+ const [address, type, chain, startTimestamp, endTimestamp, page, offset] = argsToArray(arguments);
13321
+
13317
13322
  if (!startTimestamp) {
13318
13323
  const currentTimestamp = Date.now();
13319
13324
  startTimestamp = currentTimestamp - 30 * 24 * 60 * 60 * 1000;
@@ -13391,8 +13396,8 @@ async function BLOCKSCOUT(address, type, chain, startTimestamp, endTimestamp, pa
13391
13396
  }
13392
13397
  }
13393
13398
 
13394
- async function BASESCAN(...args) {
13395
- const [type, chain, address, startDate, endDate, page, limit] = args;
13399
+ async function BASESCAN() {
13400
+ const [type, chain, address, startDate, endDate, page, limit] = argsToArray(arguments);
13396
13401
  return handleScanRequest({
13397
13402
  scanKey: SERVICE_API_KEY.Basescan,
13398
13403
  baseUrl: 'https://api.basescan.org/api',
@@ -13405,8 +13410,8 @@ async function BASESCAN(...args) {
13405
13410
  offset:limit
13406
13411
  });
13407
13412
  }
13408
- async function GNOSISSCAN(...args) {
13409
- const [type, chain, address, startDate, endDate, page, limit] = args;
13413
+ async function GNOSISSCAN() {
13414
+ const [type, chain, address, startDate, endDate, page, limit] = argsToArray(arguments);
13410
13415
  return handleScanRequest({
13411
13416
  scanKey: SERVICE_API_KEY.Gnosisscan,
13412
13417
  baseUrl: 'https://api.gnosisscan.io/api',
@@ -13421,16 +13426,18 @@ async function GNOSISSCAN(...args) {
13421
13426
  }
13422
13427
 
13423
13428
  async function NEYNAR(
13424
- fid,
13425
- viewerFid,
13426
- sortType,
13427
- limit,
13428
- cursor
13429
+
13429
13430
  ) {
13430
13431
  const API_KEY = window.localStorage.getItem(SERVICE_API_KEY.Neynar);
13431
13432
  if (!API_KEY) return `${SERVICE_API_KEY.Neynar}${ERROR_MESSAGES_FLAG.MISSING_KEY}`;
13432
13433
 
13433
-
13434
+ const [
13435
+ fid,
13436
+ viewerFid,
13437
+ sortType,
13438
+ limit,
13439
+ cursor
13440
+ ] = argsToArray(arguments);
13434
13441
  const url = new URL('https://api.neynar.com/v2/farcaster/followers');
13435
13442
  url.searchParams.set('fid', fid.toString());
13436
13443
  url.searchParams.set('sort_type', sortType);
@@ -13461,18 +13468,22 @@ async function NEYNAR(
13461
13468
  return ERROR_MESSAGES_FLAG.DEFAULT;
13462
13469
  }
13463
13470
  }
13464
- async function GNOSISPAY({
13465
- cardId,
13466
- startDate,
13467
- endDate,
13468
- limit = 20,
13469
- offset = 0,
13470
- }) {
13471
+ async function GNOSISPAY(
13472
+
13473
+ ) {
13471
13474
  const apiKeyKey = SERVICE_API_KEY.GnosisPay;
13472
13475
  const API_KEY = window.localStorage.getItem(apiKeyKey);
13473
13476
  if (!API_KEY) return `${apiKeyKey}${ERROR_MESSAGES_FLAG.MISSING_KEY}`;
13474
13477
  if (!cardId) return `${apiKeyKey}${ERROR_MESSAGES_FLAG.INVALID_PARAM}`;
13475
13478
 
13479
+
13480
+
13481
+ const [ cardId,
13482
+ startDate,
13483
+ endDate,
13484
+ limit = 20,
13485
+ offset = 0] = argsToArray(arguments);
13486
+
13476
13487
  const url = new URL(`https://api.gnosispay.com/cards/${cardId}/transactions`);
13477
13488
  url.searchParams.set('limit', limit.toString());
13478
13489
  url.searchParams.set('offset', offset.toString());
@@ -13521,8 +13532,8 @@ async function GNOSISPAY({
13521
13532
 
13522
13533
 
13523
13534
 
13524
- async function ETHERSCAN(...args) {
13525
- const [type, chain, address, startDate, endDate, page, limit] = args;
13535
+ async function ETHERSCAN() {
13536
+ const [type, chain, address, startDate, endDate, page, limit] = argsToArray(arguments);
13526
13537
  return handleScanRequest({
13527
13538
  scanKey: SERVICE_API_KEY.Etherscan,
13528
13539
  baseUrl: 'https://api.etherscan.io/v2/api',
@@ -13537,7 +13548,7 @@ async function ETHERSCAN(...args) {
13537
13548
  }
13538
13549
 
13539
13550
 
13540
- async function COINGECKO(category, param1, param2, page = 1, perPage = 2) {
13551
+ async function COINGECKO() {
13541
13552
  const API_KEY = window.localStorage.getItem(SERVICE_API_KEY.Coingecko);
13542
13553
  if (!API_KEY) return `${SERVICE_API_KEY.Coingecko}${ERROR_MESSAGES_FLAG.MISSING_KEY}`;
13543
13554
 
@@ -13547,6 +13558,7 @@ async function COINGECKO(category, param1, param2, page = 1, perPage = 2) {
13547
13558
  };
13548
13559
 
13549
13560
  let url = '';
13561
+ const [category, param1, param2, page = 1, perPage = 2 ] = argsToArray(arguments);
13550
13562
  const lowerCategory = (category || '').toLowerCase();
13551
13563
 
13552
13564
  switch (lowerCategory) {
@@ -13652,7 +13664,11 @@ async function COINGECKO(category, param1, param2, page = 1, perPage = 2) {
13652
13664
 
13653
13665
 
13654
13666
 
13655
- async function EOA(
13667
+ async function EOA() {
13668
+
13669
+
13670
+
13671
+ const [
13656
13672
  addresses,
13657
13673
  category,
13658
13674
  chains,
@@ -13660,11 +13676,29 @@ async function EOA(
13660
13676
  endTime,
13661
13677
  page = 1,
13662
13678
  offset = 10,
13663
- ) {
13679
+ ] = argsToArray(arguments);
13680
+
13681
+ const someError = anyError(addresses, category, chains, startTime, endTime, page, offset);
13682
+
13683
+ if (someError) {
13684
+ return someError
13685
+ }
13686
+
13687
+
13664
13688
  const API_KEY = window.localStorage.getItem(SERVICE_API_KEY.Etherscan);
13665
13689
  if (!API_KEY) return `${SERVICE_API_KEY.Etherscan}${ERROR_MESSAGES_FLAG.MISSING_KEY}`;
13666
13690
 
13667
- const INPUTS = addresses.split(",").map(a => a.trim()).filter(Boolean);
13691
+
13692
+
13693
+ let INPUTS;
13694
+
13695
+ if(typeof addresses === 'string'){
13696
+ INPUTS = addresses.split(",").map(a => a.trim()).filter(Boolean);
13697
+ } else if (typeof addresses === 'object'){
13698
+ INPUTS = addresses;
13699
+ }
13700
+
13701
+
13668
13702
  const CHAINS = chains.split(",").map(c => c.trim()).filter(Boolean);
13669
13703
  const out = [];
13670
13704
 
@@ -13776,7 +13810,12 @@ async function FLVURL(token, vs_currencies) {
13776
13810
  });
13777
13811
  }
13778
13812
 
13779
- async function SAFE(address, utility, chain, limit, offset) {
13813
+ async function SAFE() {
13814
+
13815
+
13816
+
13817
+
13818
+ const [address, utility, chain, limit, offset] = argsToArray(arguments);
13780
13819
 
13781
13820
  if (typeof limit !== 'number' || limit < 0) return 'INVALID_LIMIT';
13782
13821
  if (typeof offset !== 'number' || offset < 0) return 'INVALID_OFFSET';
package/lib/esm/index.mjs CHANGED
@@ -13241,7 +13241,7 @@ if (scanKey === SERVICE_API_KEY.Gnosisscan) chainId = 'gnosis';
13241
13241
  }
13242
13242
  }
13243
13243
 
13244
- async function FIREFLY(platform, contentType, identifier, start = 0, end = 10) {
13244
+ async function FIREFLY() {
13245
13245
  const API_KEY = window.localStorage.getItem(SERVICE_API_KEY.Firefly);
13246
13246
  if (!API_KEY) return `${SERVICE_API_KEY.Firefly}${ERROR_MESSAGES_FLAG.MISSING_KEY}`;
13247
13247
 
@@ -13260,6 +13260,9 @@ async function FIREFLY(platform, contentType, identifier, start = 0, end = 10) {
13260
13260
  }
13261
13261
  };
13262
13262
 
13263
+
13264
+ const [platform, contentType, identifier, start = 0, end = 10] = argsToArray(arguments);
13265
+
13263
13266
  const platformType = typeMap[platform]?.[contentType];
13264
13267
  if (!platformType) return `${SERVICE_API_KEY.Firefly}${ERROR_MESSAGES_FLAG.INVALID_TYPE}`;
13265
13268
 
@@ -13303,7 +13306,7 @@ async function FIREFLY(platform, contentType, identifier, start = 0, end = 10) {
13303
13306
 
13304
13307
 
13305
13308
 
13306
- async function BLOCKSCOUT(address, type, chain, startTimestamp, endTimestamp, page, offset) {
13309
+ async function BLOCKSCOUT() {
13307
13310
  if (!chain) {
13308
13311
  chain = 'ethereum';
13309
13312
  }
@@ -13312,6 +13315,8 @@ async function BLOCKSCOUT(address, type, chain, startTimestamp, endTimestamp, pa
13312
13315
  return 'TYPE_MISSING'
13313
13316
  }
13314
13317
 
13318
+ const [address, type, chain, startTimestamp, endTimestamp, page, offset] = argsToArray(arguments);
13319
+
13315
13320
  if (!startTimestamp) {
13316
13321
  const currentTimestamp = Date.now();
13317
13322
  startTimestamp = currentTimestamp - 30 * 24 * 60 * 60 * 1000;
@@ -13389,8 +13394,8 @@ async function BLOCKSCOUT(address, type, chain, startTimestamp, endTimestamp, pa
13389
13394
  }
13390
13395
  }
13391
13396
 
13392
- async function BASESCAN(...args) {
13393
- const [type, chain, address, startDate, endDate, page, limit] = args;
13397
+ async function BASESCAN() {
13398
+ const [type, chain, address, startDate, endDate, page, limit] = argsToArray(arguments);
13394
13399
  return handleScanRequest({
13395
13400
  scanKey: SERVICE_API_KEY.Basescan,
13396
13401
  baseUrl: 'https://api.basescan.org/api',
@@ -13403,8 +13408,8 @@ async function BASESCAN(...args) {
13403
13408
  offset:limit
13404
13409
  });
13405
13410
  }
13406
- async function GNOSISSCAN(...args) {
13407
- const [type, chain, address, startDate, endDate, page, limit] = args;
13411
+ async function GNOSISSCAN() {
13412
+ const [type, chain, address, startDate, endDate, page, limit] = argsToArray(arguments);
13408
13413
  return handleScanRequest({
13409
13414
  scanKey: SERVICE_API_KEY.Gnosisscan,
13410
13415
  baseUrl: 'https://api.gnosisscan.io/api',
@@ -13419,16 +13424,18 @@ async function GNOSISSCAN(...args) {
13419
13424
  }
13420
13425
 
13421
13426
  async function NEYNAR(
13422
- fid,
13423
- viewerFid,
13424
- sortType,
13425
- limit,
13426
- cursor
13427
+
13427
13428
  ) {
13428
13429
  const API_KEY = window.localStorage.getItem(SERVICE_API_KEY.Neynar);
13429
13430
  if (!API_KEY) return `${SERVICE_API_KEY.Neynar}${ERROR_MESSAGES_FLAG.MISSING_KEY}`;
13430
13431
 
13431
-
13432
+ const [
13433
+ fid,
13434
+ viewerFid,
13435
+ sortType,
13436
+ limit,
13437
+ cursor
13438
+ ] = argsToArray(arguments);
13432
13439
  const url = new URL('https://api.neynar.com/v2/farcaster/followers');
13433
13440
  url.searchParams.set('fid', fid.toString());
13434
13441
  url.searchParams.set('sort_type', sortType);
@@ -13459,18 +13466,22 @@ async function NEYNAR(
13459
13466
  return ERROR_MESSAGES_FLAG.DEFAULT;
13460
13467
  }
13461
13468
  }
13462
- async function GNOSISPAY({
13463
- cardId,
13464
- startDate,
13465
- endDate,
13466
- limit = 20,
13467
- offset = 0,
13468
- }) {
13469
+ async function GNOSISPAY(
13470
+
13471
+ ) {
13469
13472
  const apiKeyKey = SERVICE_API_KEY.GnosisPay;
13470
13473
  const API_KEY = window.localStorage.getItem(apiKeyKey);
13471
13474
  if (!API_KEY) return `${apiKeyKey}${ERROR_MESSAGES_FLAG.MISSING_KEY}`;
13472
13475
  if (!cardId) return `${apiKeyKey}${ERROR_MESSAGES_FLAG.INVALID_PARAM}`;
13473
13476
 
13477
+
13478
+
13479
+ const [ cardId,
13480
+ startDate,
13481
+ endDate,
13482
+ limit = 20,
13483
+ offset = 0] = argsToArray(arguments);
13484
+
13474
13485
  const url = new URL(`https://api.gnosispay.com/cards/${cardId}/transactions`);
13475
13486
  url.searchParams.set('limit', limit.toString());
13476
13487
  url.searchParams.set('offset', offset.toString());
@@ -13519,8 +13530,8 @@ async function GNOSISPAY({
13519
13530
 
13520
13531
 
13521
13532
 
13522
- async function ETHERSCAN(...args) {
13523
- const [type, chain, address, startDate, endDate, page, limit] = args;
13533
+ async function ETHERSCAN() {
13534
+ const [type, chain, address, startDate, endDate, page, limit] = argsToArray(arguments);
13524
13535
  return handleScanRequest({
13525
13536
  scanKey: SERVICE_API_KEY.Etherscan,
13526
13537
  baseUrl: 'https://api.etherscan.io/v2/api',
@@ -13535,7 +13546,7 @@ async function ETHERSCAN(...args) {
13535
13546
  }
13536
13547
 
13537
13548
 
13538
- async function COINGECKO(category, param1, param2, page = 1, perPage = 2) {
13549
+ async function COINGECKO() {
13539
13550
  const API_KEY = window.localStorage.getItem(SERVICE_API_KEY.Coingecko);
13540
13551
  if (!API_KEY) return `${SERVICE_API_KEY.Coingecko}${ERROR_MESSAGES_FLAG.MISSING_KEY}`;
13541
13552
 
@@ -13545,6 +13556,7 @@ async function COINGECKO(category, param1, param2, page = 1, perPage = 2) {
13545
13556
  };
13546
13557
 
13547
13558
  let url = '';
13559
+ const [category, param1, param2, page = 1, perPage = 2 ] = argsToArray(arguments);
13548
13560
  const lowerCategory = (category || '').toLowerCase();
13549
13561
 
13550
13562
  switch (lowerCategory) {
@@ -13650,7 +13662,11 @@ async function COINGECKO(category, param1, param2, page = 1, perPage = 2) {
13650
13662
 
13651
13663
 
13652
13664
 
13653
- async function EOA(
13665
+ async function EOA() {
13666
+
13667
+
13668
+
13669
+ const [
13654
13670
  addresses,
13655
13671
  category,
13656
13672
  chains,
@@ -13658,11 +13674,29 @@ async function EOA(
13658
13674
  endTime,
13659
13675
  page = 1,
13660
13676
  offset = 10,
13661
- ) {
13677
+ ] = argsToArray(arguments);
13678
+
13679
+ const someError = anyError(addresses, category, chains, startTime, endTime, page, offset);
13680
+
13681
+ if (someError) {
13682
+ return someError
13683
+ }
13684
+
13685
+
13662
13686
  const API_KEY = window.localStorage.getItem(SERVICE_API_KEY.Etherscan);
13663
13687
  if (!API_KEY) return `${SERVICE_API_KEY.Etherscan}${ERROR_MESSAGES_FLAG.MISSING_KEY}`;
13664
13688
 
13665
- const INPUTS = addresses.split(",").map(a => a.trim()).filter(Boolean);
13689
+
13690
+
13691
+ let INPUTS;
13692
+
13693
+ if(typeof addresses === 'string'){
13694
+ INPUTS = addresses.split(",").map(a => a.trim()).filter(Boolean);
13695
+ } else if (typeof addresses === 'object'){
13696
+ INPUTS = addresses;
13697
+ }
13698
+
13699
+
13666
13700
  const CHAINS = chains.split(",").map(c => c.trim()).filter(Boolean);
13667
13701
  const out = [];
13668
13702
 
@@ -13774,7 +13808,12 @@ async function FLVURL(token, vs_currencies) {
13774
13808
  });
13775
13809
  }
13776
13810
 
13777
- async function SAFE(address, utility, chain, limit, offset) {
13811
+ async function SAFE() {
13812
+
13813
+
13814
+
13815
+
13816
+ const [address, utility, chain, limit, offset] = argsToArray(arguments);
13778
13817
 
13779
13818
  if (typeof limit !== 'number' || limit < 0) return 'INVALID_LIMIT';
13780
13819
  if (typeof offset !== 'number' || offset < 0) return 'INVALID_OFFSET';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fileverse-dev/formulajs",
3
- "version": "4.4.11-mod-35",
3
+ "version": "4.4.11-mod-36",
4
4
  "description": "JavaScript implementation of most Microsoft Excel formula functions",
5
5
  "author": "Formulajs",
6
6
  "publishConfig": {
@@ -420,7 +420,7 @@ export function BITRSHIFT(number: any, shift_amount: any): number | Error;
420
420
  * @returns
421
421
  */
422
422
  export function BITXOR(number1: any, number2: any): number | Error;
423
- export function BLOCKSCOUT(address: any, type: any, chain: any, startTimestamp: any, endTimestamp: any, page: any, offset: any): Promise<any>;
423
+ export function BLOCKSCOUT(...args: any[]): Promise<any>;
424
424
  /**
425
425
  * Rounds a number to the nearest integer or to the nearest multiple of significance.
426
426
  *
@@ -626,7 +626,7 @@ export function CLEAN(text: any): any;
626
626
  * @returns
627
627
  */
628
628
  export function CODE(text: any): any;
629
- export function COINGECKO(category: any, param1: any, param2: any, page?: number, perPage?: number): Promise<string | {}[]>;
629
+ export function COINGECKO(...args: any[]): Promise<string | {}[]>;
630
630
  /**
631
631
  * Returns the column number of a reference.
632
632
  *
@@ -1296,7 +1296,7 @@ export function EDATE(start_date: any, months: any): any;
1296
1296
  * @returns
1297
1297
  */
1298
1298
  export function EFFECT(nominal_rate: any, npery: any): number | Error;
1299
- export function EOA(addresses: any, category: any, chains: any, startTime: any, endTime: any, page?: number, offset?: number): Promise<any>;
1299
+ export function EOA(...args: any[]): Promise<any>;
1300
1300
  /**
1301
1301
  * Returns the serial number of the last day of the month before or after a specified number of months.
1302
1302
  *
@@ -1529,7 +1529,7 @@ export namespace FINV { }
1529
1529
  * @returns
1530
1530
  */
1531
1531
  export function FINVRT(probability: any, deg_freedom1: any, deg_freedom2: any, ...args: any[]): any;
1532
- export function FIREFLY(platform: any, contentType: any, identifier: any, start?: number, end?: number): Promise<any>;
1532
+ export function FIREFLY(...args: any[]): Promise<any>;
1533
1533
  /**
1534
1534
  * Returns the Fisher transformation.
1535
1535
  *
@@ -1791,13 +1791,7 @@ export function GEOMEAN(...args: any[]): any;
1791
1791
  * @returns
1792
1792
  */
1793
1793
  export function GESTEP(number: any, step: any): any;
1794
- export function GNOSISPAY({ cardId, startDate, endDate, limit, offset, }: {
1795
- cardId: any;
1796
- startDate: any;
1797
- endDate: any;
1798
- limit?: number;
1799
- offset?: number;
1800
- }): Promise<string | {
1794
+ export function GNOSISPAY(...args: any[]): Promise<string | {
1801
1795
  createdAt: any;
1802
1796
  clearedAt: any;
1803
1797
  country: any;
@@ -2841,7 +2835,7 @@ export function NETWORKDAYSINTL(start_date: any, end_date: any, weekend: any, ho
2841
2835
  * @returns
2842
2836
  */
2843
2837
  export function NETWORKDAYS_INTL(start_date: any, end_date: any, weekend: any, holidays: any): number | Error;
2844
- export function NEYNAR(fid: any, viewerFid: any, sortType: any, limit: any, cursor: any): Promise<any>;
2838
+ export function NEYNAR(...args: any[]): Promise<any>;
2845
2839
  /**
2846
2840
  * Returns the annual nominal interest rate.
2847
2841
  *
@@ -3553,7 +3547,7 @@ export function RRI(nper: any, pv: any, fv: any): number | Error;
3553
3547
  * @returns
3554
3548
  */
3555
3549
  export function RSQ(known_y: any, known_x: any): number | Error;
3556
- export function SAFE(address: any, utility: any, chain: any, limit: any, offset: any): Promise<any>;
3550
+ export function SAFE(...args: any[]): Promise<any>;
3557
3551
  /**
3558
3552
  * Finds one text value within another (not case-sensitive)
3559
3553
  *
@@ -420,7 +420,7 @@ export function BITRSHIFT(number: any, shift_amount: any): number | Error;
420
420
  * @returns
421
421
  */
422
422
  export function BITXOR(number1: any, number2: any): number | Error;
423
- export function BLOCKSCOUT(address: any, type: any, chain: any, startTimestamp: any, endTimestamp: any, page: any, offset: any): Promise<any>;
423
+ export function BLOCKSCOUT(...args: any[]): Promise<any>;
424
424
  /**
425
425
  * Rounds a number to the nearest integer or to the nearest multiple of significance.
426
426
  *
@@ -626,7 +626,7 @@ export function CLEAN(text: any): any;
626
626
  * @returns
627
627
  */
628
628
  export function CODE(text: any): any;
629
- export function COINGECKO(category: any, param1: any, param2: any, page?: number, perPage?: number): Promise<string | {}[]>;
629
+ export function COINGECKO(...args: any[]): Promise<string | {}[]>;
630
630
  /**
631
631
  * Returns the column number of a reference.
632
632
  *
@@ -1296,7 +1296,7 @@ export function EDATE(start_date: any, months: any): any;
1296
1296
  * @returns
1297
1297
  */
1298
1298
  export function EFFECT(nominal_rate: any, npery: any): number | Error;
1299
- export function EOA(addresses: any, category: any, chains: any, startTime: any, endTime: any, page?: number, offset?: number): Promise<any>;
1299
+ export function EOA(...args: any[]): Promise<any>;
1300
1300
  /**
1301
1301
  * Returns the serial number of the last day of the month before or after a specified number of months.
1302
1302
  *
@@ -1529,7 +1529,7 @@ export namespace FINV { }
1529
1529
  * @returns
1530
1530
  */
1531
1531
  export function FINVRT(probability: any, deg_freedom1: any, deg_freedom2: any, ...args: any[]): any;
1532
- export function FIREFLY(platform: any, contentType: any, identifier: any, start?: number, end?: number): Promise<any>;
1532
+ export function FIREFLY(...args: any[]): Promise<any>;
1533
1533
  /**
1534
1534
  * Returns the Fisher transformation.
1535
1535
  *
@@ -1791,13 +1791,7 @@ export function GEOMEAN(...args: any[]): any;
1791
1791
  * @returns
1792
1792
  */
1793
1793
  export function GESTEP(number: any, step: any): any;
1794
- export function GNOSISPAY({ cardId, startDate, endDate, limit, offset, }: {
1795
- cardId: any;
1796
- startDate: any;
1797
- endDate: any;
1798
- limit?: number;
1799
- offset?: number;
1800
- }): Promise<string | {
1794
+ export function GNOSISPAY(...args: any[]): Promise<string | {
1801
1795
  createdAt: any;
1802
1796
  clearedAt: any;
1803
1797
  country: any;
@@ -2841,7 +2835,7 @@ export function NETWORKDAYSINTL(start_date: any, end_date: any, weekend: any, ho
2841
2835
  * @returns
2842
2836
  */
2843
2837
  export function NETWORKDAYS_INTL(start_date: any, end_date: any, weekend: any, holidays: any): number | Error;
2844
- export function NEYNAR(fid: any, viewerFid: any, sortType: any, limit: any, cursor: any): Promise<any>;
2838
+ export function NEYNAR(...args: any[]): Promise<any>;
2845
2839
  /**
2846
2840
  * Returns the annual nominal interest rate.
2847
2841
  *
@@ -3553,7 +3547,7 @@ export function RRI(nper: any, pv: any, fv: any): number | Error;
3553
3547
  * @returns
3554
3548
  */
3555
3549
  export function RSQ(known_y: any, known_x: any): number | Error;
3556
- export function SAFE(address: any, utility: any, chain: any, limit: any, offset: any): Promise<any>;
3550
+ export function SAFE(...args: any[]): Promise<any>;
3557
3551
  /**
3558
3552
  * Finds one text value within another (not case-sensitive)
3559
3553
  *