@fileverse-dev/formulajs 4.4.11-mod-53 → 4.4.11-mod-54

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
@@ -13808,7 +13808,7 @@ async function EOA() {
13808
13808
  const url =
13809
13809
  `https://api.etherscan.io/v2/api?chainid=${chainId}` +
13810
13810
  `&module=account&action=${action}&address=${slice}` +
13811
- `&page=${page}&offset=${offset}&apikey=${API_KEY}`;
13811
+ `&page=${page}&offset=100&apikey=${API_KEY}`;
13812
13812
  const data = await fetchJSON(url);
13813
13813
  if (typeof data === "string") return data;
13814
13814
  data.forEach(tx =>
@@ -13828,7 +13828,7 @@ async function EOA() {
13828
13828
  for (const addr of ADDRS) {
13829
13829
  const url =
13830
13830
  `https://api.etherscan.io/v2/api?chainid=${chainId}` +
13831
- `&module=account&action=txlist&address=${addr}` +
13831
+ `&module=account&action=tokentx&address=${addr}` +
13832
13832
  `&startblock=${startBlock}&endblock=${endBlock}` +
13833
13833
  `&page=${page}&offset=${offset}&sort=asc&apikey=${API_KEY}`;
13834
13834
  const data = await fetchJSON(url);
package/lib/esm/index.mjs CHANGED
@@ -13806,7 +13806,7 @@ async function EOA() {
13806
13806
  const url =
13807
13807
  `https://api.etherscan.io/v2/api?chainid=${chainId}` +
13808
13808
  `&module=account&action=${action}&address=${slice}` +
13809
- `&page=${page}&offset=${offset}&apikey=${API_KEY}`;
13809
+ `&page=${page}&offset=100&apikey=${API_KEY}`;
13810
13810
  const data = await fetchJSON(url);
13811
13811
  if (typeof data === "string") return data;
13812
13812
  data.forEach(tx =>
@@ -13826,7 +13826,7 @@ async function EOA() {
13826
13826
  for (const addr of ADDRS) {
13827
13827
  const url =
13828
13828
  `https://api.etherscan.io/v2/api?chainid=${chainId}` +
13829
- `&module=account&action=txlist&address=${addr}` +
13829
+ `&module=account&action=tokentx&address=${addr}` +
13830
13830
  `&startblock=${startBlock}&endblock=${endBlock}` +
13831
13831
  `&page=${page}&offset=${offset}&sort=asc&apikey=${API_KEY}`;
13832
13832
  const data = await fetchJSON(url);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fileverse-dev/formulajs",
3
- "version": "4.4.11-mod-53",
3
+ "version": "4.4.11-mod-54",
4
4
  "description": "JavaScript implementation of most Microsoft Excel formula functions",
5
5
  "author": "Formulajs",
6
6
  "publishConfig": {