From b31f37678d5b58c4ff25ffa0596e8d65a6c96c1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Leszczyk?= Date: Thu, 21 Nov 2024 16:23:24 +0100 Subject: [PATCH] fix: add missing L1Validator props --- src/vms/pvm/api.ts | 3 +++ src/vms/pvm/models.ts | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/vms/pvm/api.ts b/src/vms/pvm/api.ts index f2e9e8cc3..aab5ce217 100644 --- a/src/vms/pvm/api.ts +++ b/src/vms/pvm/api.ts @@ -292,6 +292,9 @@ export class PVMApi extends AvaxApi { weight: BigInt(resp.weight), deactivationOwner, remainingBalanceOwner, + startTime: BigInt(resp.startTime), + height: BigInt(resp.height), + minNonce: BigInt(resp.minNonce), }; } } diff --git a/src/vms/pvm/models.ts b/src/vms/pvm/models.ts index 2790a07ba..90fb55bba 100644 --- a/src/vms/pvm/models.ts +++ b/src/vms/pvm/models.ts @@ -336,4 +336,7 @@ export interface L1ValidatorDetails { deactivationOwner: PChainOwner; weight: bigint; balance: bigint; + startTime: bigint; + minNonce: bigint; + height: bigint; }