Skip to content

Commit

Permalink
fix: add missing L1Validator props
Browse files Browse the repository at this point in the history
  • Loading branch information
meeh0w committed Nov 21, 2024
1 parent cc4574c commit b31f376
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/vms/pvm/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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),
};
}
}
3 changes: 3 additions & 0 deletions src/vms/pvm/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -336,4 +336,7 @@ export interface L1ValidatorDetails {
deactivationOwner: PChainOwner;
weight: bigint;
balance: bigint;
startTime: bigint;
minNonce: bigint;
height: bigint;
}

0 comments on commit b31f376

Please sign in to comment.