@avalabs/glacier-sdk 3.1.0-canary.8139cac.0 → 3.1.0-canary.814908f.0
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/dist/index.d.ts
CHANGED
|
@@ -3235,6 +3235,10 @@ type Blockchain = {
|
|
|
3235
3235
|
vmId: string;
|
|
3236
3236
|
subnetId: string;
|
|
3237
3237
|
blockchainName: string;
|
|
3238
|
+
/**
|
|
3239
|
+
* EVM Chain ID for the EVM-based chains. This field is extracted from genesis data, and may be present for non-EVM chains as well.
|
|
3240
|
+
*/
|
|
3241
|
+
evmChainId: number;
|
|
3238
3242
|
};
|
|
3239
3243
|
|
|
3240
3244
|
declare enum BlockchainIds {
|
|
@@ -3896,7 +3900,7 @@ declare class PrimaryNetworkService {
|
|
|
3896
3900
|
}): CancelablePromise<Subnet>;
|
|
3897
3901
|
/**
|
|
3898
3902
|
* List validators
|
|
3899
|
-
* Lists details for validators. By default, returns details for all validators. Filterable by
|
|
3903
|
+
* Lists details for validators. By default, returns details for all validators. The nodeIds parameter supports substring matching. Filterable by validation status, delegation capacity, time remaining, fee percentage, uptime performance, and subnet id.
|
|
3900
3904
|
* @returns ListValidatorDetailsResponse Successful response
|
|
3901
3905
|
* @throws ApiError
|
|
3902
3906
|
*/
|
|
@@ -3914,7 +3918,7 @@ declare class PrimaryNetworkService {
|
|
|
3914
3918
|
*/
|
|
3915
3919
|
pageSize?: number;
|
|
3916
3920
|
/**
|
|
3917
|
-
* A comma separated list of node ids to filter by.
|
|
3921
|
+
* A comma separated list of node ids to filter by. Supports substring matching.
|
|
3918
3922
|
*/
|
|
3919
3923
|
nodeIds?: string;
|
|
3920
3924
|
/**
|
|
@@ -5,6 +5,10 @@ type Blockchain = {
|
|
|
5
5
|
vmId: string;
|
|
6
6
|
subnetId: string;
|
|
7
7
|
blockchainName: string;
|
|
8
|
+
/**
|
|
9
|
+
* EVM Chain ID for the EVM-based chains. This field is extracted from genesis data, and may be present for non-EVM chains as well.
|
|
10
|
+
*/
|
|
11
|
+
evmChainId: number;
|
|
8
12
|
};
|
|
9
13
|
|
|
10
14
|
export type { Blockchain };
|
|
@@ -150,7 +150,7 @@ declare class PrimaryNetworkService {
|
|
|
150
150
|
}): CancelablePromise<Subnet>;
|
|
151
151
|
/**
|
|
152
152
|
* List validators
|
|
153
|
-
* Lists details for validators. By default, returns details for all validators. Filterable by
|
|
153
|
+
* Lists details for validators. By default, returns details for all validators. The nodeIds parameter supports substring matching. Filterable by validation status, delegation capacity, time remaining, fee percentage, uptime performance, and subnet id.
|
|
154
154
|
* @returns ListValidatorDetailsResponse Successful response
|
|
155
155
|
* @throws ApiError
|
|
156
156
|
*/
|
|
@@ -168,7 +168,7 @@ declare class PrimaryNetworkService {
|
|
|
168
168
|
*/
|
|
169
169
|
pageSize?: number;
|
|
170
170
|
/**
|
|
171
|
-
* A comma separated list of node ids to filter by.
|
|
171
|
+
* A comma separated list of node ids to filter by. Supports substring matching.
|
|
172
172
|
*/
|
|
173
173
|
nodeIds?: string;
|
|
174
174
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@avalabs/glacier-sdk",
|
|
3
|
-
"version": "3.1.0-canary.
|
|
3
|
+
"version": "3.1.0-canary.814908f.0+814908f",
|
|
4
4
|
"description": "sdk for interacting with glacier-api",
|
|
5
5
|
"author": "Oliver Wang <oliver.wang@avalabs.org>",
|
|
6
6
|
"homepage": "https://github.com/ava-labs/avalanche-sdks#readme",
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
"typings": "dist/index.d.ts",
|
|
12
12
|
"exports": {
|
|
13
13
|
".": {
|
|
14
|
-
"
|
|
15
|
-
"require": "./dist/index.cjs",
|
|
14
|
+
"types": "./esm/index.d.ts",
|
|
16
15
|
"import": "./esm/index.js",
|
|
17
|
-
"
|
|
16
|
+
"require": "./dist/index.cjs",
|
|
17
|
+
"default": "./esm/index.js"
|
|
18
18
|
}
|
|
19
19
|
},
|
|
20
20
|
"files": [
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"bugs": {
|
|
39
39
|
"url": "https://github.com/ava-labs/avalanche-sdks/issues"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "814908f3263e5c61307ee57948a63a645437664e"
|
|
42
42
|
}
|