@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 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 delegation time remaining, in seconds, used to filter the set of nodes being returned.
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 delegation time remaining, in seconds, used to filter the set of nodes being returned.
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
  /**
@@ -2,6 +2,7 @@ import { Rewards } from './Rewards.js';
2
2
  import { ValidatorHealthDetails } from './ValidatorHealthDetails.js';
3
3
 
4
4
  type ActiveValidatorDetails = {
5
+ txHash: string;
5
6
  nodeId: string;
6
7
  subnetId: string;
7
8
  amountStaked: string;
@@ -1,6 +1,7 @@
1
1
  import { Rewards } from './Rewards.js';
2
2
 
3
3
  type CompletedValidatorDetails = {
4
+ txHash: string;
4
5
  nodeId: string;
5
6
  subnetId: string;
6
7
  amountStaked: string;
@@ -1,4 +1,5 @@
1
1
  type PendingValidatorDetails = {
2
+ txHash: string;
2
3
  nodeId: string;
3
4
  subnetId: string;
4
5
  amountStaked: string;
@@ -132,11 +132,11 @@ declare class PrimaryNetworkService {
132
132
  */
133
133
  pageToken?: string;
134
134
  /**
135
- * The minimum delegation time remaining, in seconds, used to filter the set of nodes being returned.
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 delegation time remaining, in seconds, used to filter the set of nodes being returned.
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.122008d.0+122008d",
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": "122008d7e1e4c0afbf0a9f84b58f69bf2d7bba92"
32
+ "gitHead": "13c186bb85f654c6ea88fd1a200072efd55c5eb7"
33
33
  }