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