Skip to content

Commit b31f376

Browse files
committed
fix: add missing L1Validator props
1 parent cc4574c commit b31f376

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/vms/pvm/api.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,9 @@ export class PVMApi extends AvaxApi {
292292
weight: BigInt(resp.weight),
293293
deactivationOwner,
294294
remainingBalanceOwner,
295+
startTime: BigInt(resp.startTime),
296+
height: BigInt(resp.height),
297+
minNonce: BigInt(resp.minNonce),
295298
};
296299
}
297300
}

src/vms/pvm/models.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,4 +336,7 @@ export interface L1ValidatorDetails {
336336
deactivationOwner: PChainOwner;
337337
weight: bigint;
338338
balance: bigint;
339+
startTime: bigint;
340+
minNonce: bigint;
341+
height: bigint;
339342
}

0 commit comments

Comments
 (0)