We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc4574c commit b31f376Copy full SHA for b31f376
src/vms/pvm/api.ts
@@ -292,6 +292,9 @@ export class PVMApi extends AvaxApi {
292
weight: BigInt(resp.weight),
293
deactivationOwner,
294
remainingBalanceOwner,
295
+ startTime: BigInt(resp.startTime),
296
+ height: BigInt(resp.height),
297
+ minNonce: BigInt(resp.minNonce),
298
};
299
}
300
src/vms/pvm/models.ts
@@ -336,4 +336,7 @@ export interface L1ValidatorDetails {
336
deactivationOwner: PChainOwner;
337
weight: bigint;
338
balance: bigint;
339
+ startTime: bigint;
340
+ minNonce: bigint;
341
+ height: bigint;
342
0 commit comments