@avalabs/glacier-sdk 2.8.0-canary.122008d.0 → 2.8.0-canary.13c186b.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 +5 -2
- package/esm/generated/models/ActiveValidatorDetails.d.ts +1 -0
- package/esm/generated/models/CompletedValidatorDetails.d.ts +1 -0
- package/esm/generated/models/PendingValidatorDetails.d.ts +1 -0
- package/esm/generated/services/PrimaryNetworkService.d.ts +2 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -2228,6 +2228,7 @@ type ValidatorHealthDetails = {
|
|
|
2228
2228
|
};
|
|
2229
2229
|
|
|
2230
2230
|
type ActiveValidatorDetails = {
|
|
2231
|
+
txHash: string;
|
|
2231
2232
|
nodeId: string;
|
|
2232
2233
|
subnetId: string;
|
|
2233
2234
|
amountStaked: string;
|
|
@@ -2251,6 +2252,7 @@ declare namespace ActiveValidatorDetails {
|
|
|
2251
2252
|
}
|
|
2252
2253
|
|
|
2253
2254
|
type CompletedValidatorDetails = {
|
|
2255
|
+
txHash: string;
|
|
2254
2256
|
nodeId: string;
|
|
2255
2257
|
subnetId: string;
|
|
2256
2258
|
amountStaked: string;
|
|
@@ -2268,6 +2270,7 @@ declare namespace CompletedValidatorDetails {
|
|
|
2268
2270
|
}
|
|
2269
2271
|
|
|
2270
2272
|
type PendingValidatorDetails = {
|
|
2273
|
+
txHash: string;
|
|
2271
2274
|
nodeId: string;
|
|
2272
2275
|
subnetId: string;
|
|
2273
2276
|
amountStaked: string;
|
|
@@ -2460,11 +2463,11 @@ declare class PrimaryNetworkService {
|
|
|
2460
2463
|
*/
|
|
2461
2464
|
pageToken?: string;
|
|
2462
2465
|
/**
|
|
2463
|
-
* The minimum
|
|
2466
|
+
* The minimum validation time remaining, in seconds, used to filter the set of nodes being returned.
|
|
2464
2467
|
*/
|
|
2465
2468
|
minTimeRemaining?: any;
|
|
2466
2469
|
/**
|
|
2467
|
-
* The maximum
|
|
2470
|
+
* The maximum validation time remaining, in seconds, used to filter the set of nodes being returned.
|
|
2468
2471
|
*/
|
|
2469
2472
|
maxTimeRemaining?: any;
|
|
2470
2473
|
/**
|
|
@@ -132,11 +132,11 @@ declare class PrimaryNetworkService {
|
|
|
132
132
|
*/
|
|
133
133
|
pageToken?: string;
|
|
134
134
|
/**
|
|
135
|
-
* The minimum
|
|
135
|
+
* The minimum validation time remaining, in seconds, used to filter the set of nodes being returned.
|
|
136
136
|
*/
|
|
137
137
|
minTimeRemaining?: any;
|
|
138
138
|
/**
|
|
139
|
-
* The maximum
|
|
139
|
+
* The maximum validation time remaining, in seconds, used to filter the set of nodes being returned.
|
|
140
140
|
*/
|
|
141
141
|
maxTimeRemaining?: any;
|
|
142
142
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@avalabs/glacier-sdk",
|
|
3
|
-
"version": "2.8.0-canary.
|
|
3
|
+
"version": "2.8.0-canary.13c186b.0+13c186b",
|
|
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",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"bugs": {
|
|
30
30
|
"url": "https://github.com/ava-labs/avalanche-sdks/issues"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "13c186bb85f654c6ea88fd1a200072efd55c5eb7"
|
|
33
33
|
}
|