@fileverse-dev/formulajs 4.4.31 → 4.4.32
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 +11809 -2080
- package/lib/browser/formula.min.js +2 -2
- package/lib/browser/formula.min.js.map +1 -1
- package/lib/cjs/index.cjs +10505 -34
- package/lib/esm/crypto-constants.mjs +31 -0
- package/lib/esm/index.mjs +10505 -35
- package/package.json +7 -3
- package/types/cjs/index.d.cts +501 -440
- package/types/esm/index.d.mts +11 -10
|
@@ -1010,6 +1010,36 @@ var YIELD_metadata = {
|
|
|
1010
1010
|
]
|
|
1011
1011
|
};
|
|
1012
1012
|
|
|
1013
|
+
// src/crypto/circles/metadata.js
|
|
1014
|
+
var CIRCLES_metadata = {
|
|
1015
|
+
LOGO: "https://avatars.githubusercontent.com/u/159135534?s=200&v=4",
|
|
1016
|
+
n: "CIRCLES",
|
|
1017
|
+
t: 20,
|
|
1018
|
+
d: "Query the list of transactions performed by a Circles address, with optional pagination.",
|
|
1019
|
+
a: "Query the list of transactions performed by a Circles address, with optional pagination.",
|
|
1020
|
+
p: [
|
|
1021
|
+
{
|
|
1022
|
+
name: "functionName",
|
|
1023
|
+
detail: "The function name to query, supported values: 'trust', 'profile', 'transactions', 'balances'.",
|
|
1024
|
+
example: `"trust"`,
|
|
1025
|
+
require: "m"
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
name: "address",
|
|
1029
|
+
detail: "The address to query, in hexadecimal format.",
|
|
1030
|
+
example: `"0xe9A6378d8FD4983C2999DB0735f258397E8C2253"`,
|
|
1031
|
+
require: "m"
|
|
1032
|
+
},
|
|
1033
|
+
{
|
|
1034
|
+
name: "entries",
|
|
1035
|
+
detail: "The number of entries to return. Default is 10.",
|
|
1036
|
+
example: `10`,
|
|
1037
|
+
require: "o",
|
|
1038
|
+
type: "number"
|
|
1039
|
+
}
|
|
1040
|
+
]
|
|
1041
|
+
};
|
|
1042
|
+
|
|
1013
1043
|
// src/crypto/crypto-metadata.js
|
|
1014
1044
|
var FUNCTION_LOCALE = [
|
|
1015
1045
|
EOA_metadata,
|
|
@@ -1033,6 +1063,7 @@ var FUNCTION_LOCALE = [
|
|
|
1033
1063
|
PRICE_metadata,
|
|
1034
1064
|
WALLET_metadata,
|
|
1035
1065
|
YIELD_metadata,
|
|
1066
|
+
CIRCLES_metadata,
|
|
1036
1067
|
// GNOSISPAY_metadata,
|
|
1037
1068
|
{
|
|
1038
1069
|
LOGO: "https://raw.githubusercontent.com/mritunjayz/github-storage/refs/heads/main/ploymarket.png",
|