@fileverse-dev/formulajs 4.4.21-price-and-wallet-9 → 4.4.23
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
|
@@ -19184,10 +19184,10 @@ const priceSchema = objectType({
|
|
|
19184
19184
|
async function PRICE() {
|
|
19185
19185
|
try {
|
|
19186
19186
|
let [input1, input2, input3] = argsToArray(arguments);
|
|
19187
|
-
validateParams(priceSchema, { input1, input2, input3 });
|
|
19188
19187
|
input1 = input1?.replace(/\s+/g, "");
|
|
19189
19188
|
input2 = input2?.replace(/\s+/g, "");
|
|
19190
19189
|
input3 = input3?.replace(/\s+/g, "");
|
|
19190
|
+
validateParams(priceSchema, { input1, input2, input3 });
|
|
19191
19191
|
|
|
19192
19192
|
|
|
19193
19193
|
|
|
@@ -19279,8 +19279,8 @@ async function WALLET() {
|
|
|
19279
19279
|
|
|
19280
19280
|
addresses = addresses?.replace(/\s+/g, "");
|
|
19281
19281
|
chains = chains?.replace(/\s+/g, "");
|
|
19282
|
-
time =
|
|
19283
|
-
const baseUrl =
|
|
19282
|
+
time = chains?.replace(/\s+/g, "");
|
|
19283
|
+
const baseUrl = 'https://onchain-proxy.fileverse.io';
|
|
19284
19284
|
|
|
19285
19285
|
const resolvedAddresses = await getResolvedAddresses(addresses);
|
|
19286
19286
|
|
package/lib/esm/index.mjs
CHANGED
|
@@ -19182,10 +19182,10 @@ const priceSchema = objectType({
|
|
|
19182
19182
|
async function PRICE() {
|
|
19183
19183
|
try {
|
|
19184
19184
|
let [input1, input2, input3] = argsToArray(arguments);
|
|
19185
|
-
validateParams(priceSchema, { input1, input2, input3 });
|
|
19186
19185
|
input1 = input1?.replace(/\s+/g, "");
|
|
19187
19186
|
input2 = input2?.replace(/\s+/g, "");
|
|
19188
19187
|
input3 = input3?.replace(/\s+/g, "");
|
|
19188
|
+
validateParams(priceSchema, { input1, input2, input3 });
|
|
19189
19189
|
|
|
19190
19190
|
|
|
19191
19191
|
|
|
@@ -19277,8 +19277,8 @@ async function WALLET() {
|
|
|
19277
19277
|
|
|
19278
19278
|
addresses = addresses?.replace(/\s+/g, "");
|
|
19279
19279
|
chains = chains?.replace(/\s+/g, "");
|
|
19280
|
-
time =
|
|
19281
|
-
const baseUrl =
|
|
19280
|
+
time = chains?.replace(/\s+/g, "");
|
|
19281
|
+
const baseUrl = 'https://onchain-proxy.fileverse.io';
|
|
19282
19282
|
|
|
19283
19283
|
const resolvedAddresses = await getResolvedAddresses(addresses);
|
|
19284
19284
|
|