@fileverse-dev/formulajs 4.4.11-mod-21-patch-4 → 4.4.11-mod-22
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
|
@@ -13112,12 +13112,11 @@ if(!timestamp || !chain || !apiKey) return
|
|
|
13112
13112
|
};
|
|
13113
13113
|
|
|
13114
13114
|
async function ETHERSCAN(address, page, offset) {
|
|
13115
|
-
|
|
13116
|
-
|
|
13117
13115
|
const API_KEY = window.localStorage.getItem(SERVICE_API_KEY.Etherscan);
|
|
13118
13116
|
if(!API_KEY){
|
|
13119
13117
|
return `${SERVICE_API_KEY.Etherscan}${ERROR_MESSAGES_FLAG.MISSING_KEY}`
|
|
13120
13118
|
}
|
|
13119
|
+
// temporary added for testing rate limit flow
|
|
13121
13120
|
if(API_KEY === 'xxxx'){
|
|
13122
13121
|
return `${SERVICE_API_KEY.Etherscan}${ERROR_MESSAGES_FLAG.RATE_LIMIT}`
|
|
13123
13122
|
}
|
|
@@ -13224,10 +13223,6 @@ async function EOA(address, categories, chain, startTime, endTime) {
|
|
|
13224
13223
|
}
|
|
13225
13224
|
}
|
|
13226
13225
|
|
|
13227
|
-
|
|
13228
|
-
|
|
13229
|
-
|
|
13230
|
-
|
|
13231
13226
|
async function FLVURL(token, vs_currencies) {
|
|
13232
13227
|
return new Promise((resolve) => {
|
|
13233
13228
|
setTimeout(() => {
|
|
@@ -142,6 +142,10 @@ var FUNCTION_LOCALE = [
|
|
|
142
142
|
]
|
|
143
143
|
},
|
|
144
144
|
{
|
|
145
|
+
API_KEY: SERVICE_API_KEY.Etherscan,
|
|
146
|
+
LOGO: "https://safe-transaction-mainnet.safe.global/static/safe/favicon.png",
|
|
147
|
+
BRAND_COLOR: "#ebf9f3",
|
|
148
|
+
BRAND_SECONDARY_COLOR: "#00B460",
|
|
145
149
|
n: "SAFE",
|
|
146
150
|
t: 20,
|
|
147
151
|
d: "Query the list of transactions performed by a Safe address, with optional pagination.",
|
package/lib/esm/index.mjs
CHANGED
|
@@ -13110,12 +13110,11 @@ if(!timestamp || !chain || !apiKey) return
|
|
|
13110
13110
|
};
|
|
13111
13111
|
|
|
13112
13112
|
async function ETHERSCAN(address, page, offset) {
|
|
13113
|
-
|
|
13114
|
-
|
|
13115
13113
|
const API_KEY = window.localStorage.getItem(SERVICE_API_KEY.Etherscan);
|
|
13116
13114
|
if(!API_KEY){
|
|
13117
13115
|
return `${SERVICE_API_KEY.Etherscan}${ERROR_MESSAGES_FLAG.MISSING_KEY}`
|
|
13118
13116
|
}
|
|
13117
|
+
// temporary added for testing rate limit flow
|
|
13119
13118
|
if(API_KEY === 'xxxx'){
|
|
13120
13119
|
return `${SERVICE_API_KEY.Etherscan}${ERROR_MESSAGES_FLAG.RATE_LIMIT}`
|
|
13121
13120
|
}
|
|
@@ -13222,10 +13221,6 @@ async function EOA(address, categories, chain, startTime, endTime) {
|
|
|
13222
13221
|
}
|
|
13223
13222
|
}
|
|
13224
13223
|
|
|
13225
|
-
|
|
13226
|
-
|
|
13227
|
-
|
|
13228
|
-
|
|
13229
13224
|
async function FLVURL(token, vs_currencies) {
|
|
13230
13225
|
return new Promise((resolve) => {
|
|
13231
13226
|
setTimeout(() => {
|
package/package.json
CHANGED