@fileverse-dev/formulajs 4.4.11-mod-68-patch-1 → 4.4.11-mod-68-patch-2
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 +47 -45
- package/lib/browser/formula.min.js +2 -2
- package/lib/browser/formula.min.js.map +1 -1
- package/lib/cjs/index.cjs +2 -0
- package/lib/esm/index.mjs +2 -0
- package/package.json +1 -1
package/lib/cjs/index.cjs
CHANGED
|
@@ -18239,6 +18239,7 @@ async function EOA() {
|
|
|
18239
18239
|
validateParams(eoaParamsSchema, { addresses, category, chains, startTime, endTime, page, offset });
|
|
18240
18240
|
|
|
18241
18241
|
const apiKey = window.localStorage.getItem(SERVICES_API_KEY.Etherscan);
|
|
18242
|
+
console.log('apiKey', apiKey);
|
|
18242
18243
|
if (!apiKey) throw new MissingApiKeyError(SERVICES_API_KEY.Etherscan)
|
|
18243
18244
|
|
|
18244
18245
|
const INPUTS = addresses.split(',').map(s => s.trim()).filter(Boolean);
|
|
@@ -18256,6 +18257,7 @@ async function EOA() {
|
|
|
18256
18257
|
}
|
|
18257
18258
|
}
|
|
18258
18259
|
const ADDRS = Object.keys(ADDRESS_MAP);
|
|
18260
|
+
console.log('ADDRS', ADDRS);
|
|
18259
18261
|
const out = [];
|
|
18260
18262
|
|
|
18261
18263
|
async function fetchJSON(url) {
|
package/lib/esm/index.mjs
CHANGED
|
@@ -18237,6 +18237,7 @@ async function EOA() {
|
|
|
18237
18237
|
validateParams(eoaParamsSchema, { addresses, category, chains, startTime, endTime, page, offset });
|
|
18238
18238
|
|
|
18239
18239
|
const apiKey = window.localStorage.getItem(SERVICES_API_KEY.Etherscan);
|
|
18240
|
+
console.log('apiKey', apiKey);
|
|
18240
18241
|
if (!apiKey) throw new MissingApiKeyError(SERVICES_API_KEY.Etherscan)
|
|
18241
18242
|
|
|
18242
18243
|
const INPUTS = addresses.split(',').map(s => s.trim()).filter(Boolean);
|
|
@@ -18254,6 +18255,7 @@ async function EOA() {
|
|
|
18254
18255
|
}
|
|
18255
18256
|
}
|
|
18256
18257
|
const ADDRS = Object.keys(ADDRESS_MAP);
|
|
18258
|
+
console.log('ADDRS', ADDRS);
|
|
18257
18259
|
const out = [];
|
|
18258
18260
|
|
|
18259
18261
|
async function fetchJSON(url) {
|
package/package.json
CHANGED