@fileverse-dev/formulajs 4.4.11-mod-80 → 4.4.11-mod-81

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
@@ -13189,43 +13189,42 @@ class InvalidApiKeyError extends Error {
13189
13189
  }
13190
13190
  }
13191
13191
 
13192
- const fileverseProxyUrl = `${window.NEXT_PUBLIC_PROXY_BASE_URL}/proxy`;
13193
13192
  // Proxy map configuration
13194
13193
  const PROXY_MAP = {
13195
13194
  Etherscan: {
13196
- url: fileverseProxyUrl,
13195
+ url: `${process.env.NEXT_PUBLIC_PROXY_BASE_URL}/proxy`,
13197
13196
  removeParams: ['apikey']
13198
13197
  },
13199
13198
  Basescan: {
13200
- url: fileverseProxyUrl,
13199
+ url: `${process.env.NEXT_PUBLIC_PROXY_BASE_URL}/proxy`,
13201
13200
  removeParams: ['apikey']
13202
13201
  },
13203
13202
  Gnosisscan: {
13204
- url: fileverseProxyUrl,
13203
+ url: `${process.env.NEXT_PUBLIC_PROXY_BASE_URL}/proxy`,
13205
13204
  removeParams: ['apikey']
13206
13205
  },
13207
13206
  Coingecko: {
13208
- url: fileverseProxyUrl,
13207
+ url: `${process.env.NEXT_PUBLIC_PROXY_BASE_URL}/proxy`,
13209
13208
  removeParams: ['apikey']
13210
13209
  },
13211
13210
  Firefly: {
13212
- url: fileverseProxyUrl,
13211
+ url: `${process.env.NEXT_PUBLIC_PROXY_BASE_URL}/proxy`,
13213
13212
  removeParams: ['apikey']
13214
13213
  },
13215
13214
  Neynar: {
13216
- url: fileverseProxyUrl,
13215
+ url: `${process.env.NEXT_PUBLIC_PROXY_BASE_URL}/proxy`,
13217
13216
  removeParams: ['api_key']
13218
13217
  },
13219
13218
  Safe: {
13220
- url: fileverseProxyUrl,
13219
+ url: `${process.env.NEXT_PUBLIC_PROXY_BASE_URL}/proxy`,
13221
13220
  removeParams: ['api_key']
13222
13221
  },
13223
13222
  Defillama: {
13224
- url: fileverseProxyUrl,
13223
+ url: `${process.env.NEXT_PUBLIC_PROXY_BASE_URL}/proxy`,
13225
13224
  removeParams: ['api_key']
13226
13225
  },
13227
13226
  GnosisPay: {
13228
- url: fileverseProxyUrl,
13227
+ url: `${process.env.NEXT_PUBLIC_PROXY_BASE_URL}/proxy`,
13229
13228
  removeParams: ['api_key']
13230
13229
  },
13231
13230
  // Add more services as needed. It can be direct url instead of ENV variable
package/lib/esm/index.mjs CHANGED
@@ -13187,43 +13187,42 @@ class InvalidApiKeyError extends Error {
13187
13187
  }
13188
13188
  }
13189
13189
 
13190
- const fileverseProxyUrl = `${window.NEXT_PUBLIC_PROXY_BASE_URL}/proxy`;
13191
13190
  // Proxy map configuration
13192
13191
  const PROXY_MAP = {
13193
13192
  Etherscan: {
13194
- url: fileverseProxyUrl,
13193
+ url: `${process.env.NEXT_PUBLIC_PROXY_BASE_URL}/proxy`,
13195
13194
  removeParams: ['apikey']
13196
13195
  },
13197
13196
  Basescan: {
13198
- url: fileverseProxyUrl,
13197
+ url: `${process.env.NEXT_PUBLIC_PROXY_BASE_URL}/proxy`,
13199
13198
  removeParams: ['apikey']
13200
13199
  },
13201
13200
  Gnosisscan: {
13202
- url: fileverseProxyUrl,
13201
+ url: `${process.env.NEXT_PUBLIC_PROXY_BASE_URL}/proxy`,
13203
13202
  removeParams: ['apikey']
13204
13203
  },
13205
13204
  Coingecko: {
13206
- url: fileverseProxyUrl,
13205
+ url: `${process.env.NEXT_PUBLIC_PROXY_BASE_URL}/proxy`,
13207
13206
  removeParams: ['apikey']
13208
13207
  },
13209
13208
  Firefly: {
13210
- url: fileverseProxyUrl,
13209
+ url: `${process.env.NEXT_PUBLIC_PROXY_BASE_URL}/proxy`,
13211
13210
  removeParams: ['apikey']
13212
13211
  },
13213
13212
  Neynar: {
13214
- url: fileverseProxyUrl,
13213
+ url: `${process.env.NEXT_PUBLIC_PROXY_BASE_URL}/proxy`,
13215
13214
  removeParams: ['api_key']
13216
13215
  },
13217
13216
  Safe: {
13218
- url: fileverseProxyUrl,
13217
+ url: `${process.env.NEXT_PUBLIC_PROXY_BASE_URL}/proxy`,
13219
13218
  removeParams: ['api_key']
13220
13219
  },
13221
13220
  Defillama: {
13222
- url: fileverseProxyUrl,
13221
+ url: `${process.env.NEXT_PUBLIC_PROXY_BASE_URL}/proxy`,
13223
13222
  removeParams: ['api_key']
13224
13223
  },
13225
13224
  GnosisPay: {
13226
- url: fileverseProxyUrl,
13225
+ url: `${process.env.NEXT_PUBLIC_PROXY_BASE_URL}/proxy`,
13227
13226
  removeParams: ['api_key']
13228
13227
  },
13229
13228
  // Add more services as needed. It can be direct url instead of ENV variable
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fileverse-dev/formulajs",
3
- "version": "4.4.11-mod-80",
3
+ "version": "4.4.11-mod-81",
4
4
  "description": "JavaScript implementation of most Microsoft Excel formula functions",
5
5
  "author": "Formulajs",
6
6
  "publishConfig": {