@fileverse-dev/formulajs 4.4.11-mod-67 → 4.4.11-mod-69
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/browser/formula.js +6377 -1408
- package/lib/browser/formula.min.js +2 -2
- package/lib/browser/formula.min.js.map +1 -1
- package/lib/cjs/index.cjs +4779 -794
- package/lib/esm/crypto-constants.mjs +4 -10
- package/lib/esm/index.mjs +4779 -794
- package/package.json +3 -2
- package/types/cjs/index.d.cts +93 -7
- package/types/esm/index.d.mts +93 -7
|
@@ -21,15 +21,9 @@ var ERROR_MESSAGES_FLAG = {
|
|
|
21
21
|
RATE_LIMIT: "RATE_LIMIT",
|
|
22
22
|
DEFAULT: "DEFAULT",
|
|
23
23
|
MISSING_KEY: "MISSING_KEY",
|
|
24
|
-
INVALID_CHAIN: "INVALID_CHAIN",
|
|
25
|
-
INVALID_TYPE: "INVALID_TYPE",
|
|
26
|
-
INVALID_ADDRESS: "INVALID_ADDRESS",
|
|
27
24
|
INVALID_PARAM: "INVALID_PARAM",
|
|
28
|
-
MAX_PAGE_LIMIT: "MAX_PAGE_LIMIT",
|
|
29
25
|
NETWORK_ERROR: "NETWORK_ERROR",
|
|
30
|
-
ENS: "ENS"
|
|
31
|
-
CUSTOM: "CUSTOM",
|
|
32
|
-
MISSING_PARAM: "MISSING_PARAM"
|
|
26
|
+
ENS: "ENS"
|
|
33
27
|
};
|
|
34
28
|
var UTILITY = {
|
|
35
29
|
ALCHEMY_API_KEY: "ALCHEMY_API_KEY"
|
|
@@ -292,14 +286,14 @@ If "derivatives": exchange name (e.g., "binance_futures", "hyperliquid", "weex-f
|
|
|
292
286
|
{
|
|
293
287
|
name: "page",
|
|
294
288
|
detail: "Page number for paginated transaction results. Applies only to 'txns', 'token-txns', and 'nft-txns'.",
|
|
295
|
-
example: `
|
|
289
|
+
example: `1`,
|
|
296
290
|
require: "o",
|
|
297
291
|
type: "number"
|
|
298
292
|
},
|
|
299
293
|
{
|
|
300
294
|
name: "offset",
|
|
301
295
|
detail: "Number of results per page (limit). Applies only to 'txns', 'token-txns', and 'nft-txns'.",
|
|
302
|
-
example: `
|
|
296
|
+
example: `50`,
|
|
303
297
|
require: "o",
|
|
304
298
|
type: "number"
|
|
305
299
|
}
|
|
@@ -445,7 +439,7 @@ If "derivatives": exchange name (e.g., "binance_futures", "hyperliquid", "weex-f
|
|
|
445
439
|
},
|
|
446
440
|
{
|
|
447
441
|
name: "chain",
|
|
448
|
-
detail: "The blockchain to query. By default on Ethereum mainnet.",
|
|
442
|
+
detail: "The blockchain to query. By default on Ethereum mainnet. Can be gnosis, arbitrum, optimism, soneium, unichain ",
|
|
449
443
|
example: `"ethereum"`,
|
|
450
444
|
require: "o",
|
|
451
445
|
type: "string"
|