@fileverse-dev/formulajs 4.4.11-mod-22-patch-2 → 4.4.11-mod-22-patch-4
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 +2 -2
- package/lib/browser/formula.min.js +2 -2
- package/lib/browser/formula.min.js.map +1 -1
- package/lib/cjs/index.cjs +1 -1
- package/lib/esm/crypto-constants.mjs +7 -7
- package/lib/esm/index.mjs +1 -1
- package/package.json +1 -1
- package/types/cjs/index.d.cts +1 -1
- package/types/esm/index.d.mts +1 -1
package/lib/cjs/index.cjs
CHANGED
|
@@ -13120,7 +13120,7 @@ if(!timestamp || !chain || !apiKey) return
|
|
|
13120
13120
|
|
|
13121
13121
|
};
|
|
13122
13122
|
|
|
13123
|
-
async function BLOCKSCOUT(address,
|
|
13123
|
+
async function BLOCKSCOUT(address, type, chain, page, offset, startTimestamp, endTimestamp) {
|
|
13124
13124
|
if (!chain) {
|
|
13125
13125
|
chain = 'ethereum';
|
|
13126
13126
|
}
|
|
@@ -32,8 +32,8 @@ var SERVICE_API_KEY = {
|
|
|
32
32
|
var FUNCTION_LOCALE = [
|
|
33
33
|
{
|
|
34
34
|
LOGO: "https://cdn.prod.website-files.com/65f94dfd53db8b337c808067/68485baa72714ae58f350ce2_bs-logo.png",
|
|
35
|
-
BRAND_COLOR: "#
|
|
36
|
-
BRAND_SECONDARY_COLOR: "#
|
|
35
|
+
BRAND_COLOR: "#2ABEFE",
|
|
36
|
+
BRAND_SECONDARY_COLOR: "#5353D3",
|
|
37
37
|
n: "BLOCKSCOUT",
|
|
38
38
|
t: 20,
|
|
39
39
|
d: "Returns the onchain information about an address on a provided blockchain. By default on Ethereum mainnet.",
|
|
@@ -49,7 +49,7 @@ var FUNCTION_LOCALE = [
|
|
|
49
49
|
{
|
|
50
50
|
name: "type",
|
|
51
51
|
detail: "The type of data to query.",
|
|
52
|
-
example: `txns`,
|
|
52
|
+
example: `"txns"`,
|
|
53
53
|
require: "m",
|
|
54
54
|
type: "string"
|
|
55
55
|
},
|
|
@@ -65,14 +65,14 @@ var FUNCTION_LOCALE = [
|
|
|
65
65
|
detail: 'The Unix timestamp marking the start of the transaction search range. Work with type === "txns"',
|
|
66
66
|
example: "1680300000",
|
|
67
67
|
require: "o",
|
|
68
|
-
type: "
|
|
68
|
+
type: "rangenumber"
|
|
69
69
|
},
|
|
70
70
|
{
|
|
71
71
|
name: "endTimestamp",
|
|
72
72
|
detail: 'The Unix timestamp marking the end of the transaction search range. Work with type === "txns"',
|
|
73
73
|
example: "1680300000",
|
|
74
74
|
require: "o",
|
|
75
|
-
type: "
|
|
75
|
+
type: "rangenumber"
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
78
|
name: "page",
|
|
@@ -80,7 +80,7 @@ var FUNCTION_LOCALE = [
|
|
|
80
80
|
example: "1",
|
|
81
81
|
require: "o",
|
|
82
82
|
repeat: "n",
|
|
83
|
-
type: "
|
|
83
|
+
type: "rangenumber"
|
|
84
84
|
},
|
|
85
85
|
{
|
|
86
86
|
name: "offset",
|
|
@@ -88,7 +88,7 @@ var FUNCTION_LOCALE = [
|
|
|
88
88
|
example: "100",
|
|
89
89
|
require: "o",
|
|
90
90
|
repeat: "n",
|
|
91
|
-
type: "
|
|
91
|
+
type: "rangenumber"
|
|
92
92
|
}
|
|
93
93
|
]
|
|
94
94
|
},
|
package/lib/esm/index.mjs
CHANGED
|
@@ -13118,7 +13118,7 @@ if(!timestamp || !chain || !apiKey) return
|
|
|
13118
13118
|
|
|
13119
13119
|
};
|
|
13120
13120
|
|
|
13121
|
-
async function BLOCKSCOUT(address,
|
|
13121
|
+
async function BLOCKSCOUT(address, type, chain, page, offset, startTimestamp, endTimestamp) {
|
|
13122
13122
|
if (!chain) {
|
|
13123
13123
|
chain = 'ethereum';
|
|
13124
13124
|
}
|
package/package.json
CHANGED
package/types/cjs/index.d.cts
CHANGED
|
@@ -419,7 +419,7 @@ export function BITRSHIFT(number: any, shift_amount: any): number | Error;
|
|
|
419
419
|
* @returns
|
|
420
420
|
*/
|
|
421
421
|
export function BITXOR(number1: any, number2: any): number | Error;
|
|
422
|
-
export function BLOCKSCOUT(address: any,
|
|
422
|
+
export function BLOCKSCOUT(address: any, type: any, chain: any, page: any, offset: any, startTimestamp: any, endTimestamp: any): Promise<any>;
|
|
423
423
|
/**
|
|
424
424
|
* Rounds a number to the nearest integer or to the nearest multiple of significance.
|
|
425
425
|
*
|
package/types/esm/index.d.mts
CHANGED
|
@@ -419,7 +419,7 @@ export function BITRSHIFT(number: any, shift_amount: any): number | Error;
|
|
|
419
419
|
* @returns
|
|
420
420
|
*/
|
|
421
421
|
export function BITXOR(number1: any, number2: any): number | Error;
|
|
422
|
-
export function BLOCKSCOUT(address: any,
|
|
422
|
+
export function BLOCKSCOUT(address: any, type: any, chain: any, page: any, offset: any, startTimestamp: any, endTimestamp: any): Promise<any>;
|
|
423
423
|
/**
|
|
424
424
|
* Rounds a number to the nearest integer or to the nearest multiple of significance.
|
|
425
425
|
*
|