Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: reuse utils added in block production race refactor #6422

Merged
merged 1 commit into from
Feb 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 9 additions & 9 deletions packages/beacon-node/src/api/impl/validator/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,21 +187,21 @@ export function getValidatorApi({

if (source == null) {
return {
executionPayloadValue: prettyWeiToEth(executionValue, true),
consensusBlockValue: prettyWeiToEth(consensusValue, true),
blockTotalValue: prettyWeiToEth(totalValue, true),
executionPayloadValue: prettyWeiToEth(executionValue),
consensusBlockValue: prettyWeiToEth(consensusValue),
blockTotalValue: prettyWeiToEth(totalValue),
};
} else if (source === ProducedBlockSource.builder) {
return {
builderExecutionPayloadValue: prettyWeiToEth(executionValue, true),
builderConsensusBlockValue: prettyWeiToEth(consensusValue, true),
builderBlockTotalValue: prettyWeiToEth(totalValue, true),
builderExecutionPayloadValue: prettyWeiToEth(executionValue),
builderConsensusBlockValue: prettyWeiToEth(consensusValue),
builderBlockTotalValue: prettyWeiToEth(totalValue),
};
} else {
return {
engineExecutionPayloadValue: prettyWeiToEth(executionValue, true),
engineConsensusBlockValue: prettyWeiToEth(consensusValue, true),
engineBlockTotalValue: prettyWeiToEth(totalValue, true),
engineExecutionPayloadValue: prettyWeiToEth(executionValue),
engineConsensusBlockValue: prettyWeiToEth(consensusValue),
engineBlockTotalValue: prettyWeiToEth(totalValue),
};
}
}
Expand Down
10 changes: 3 additions & 7 deletions packages/utils/src/format.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,10 @@ export function formatBigDecimal(numerator: bigint, denominator: bigint, maxDeci
const MAX_DECIMAL_FACTOR = BigInt("100000");

/**
* Format wei as ETH, with up to 5 decimals
*
* if suffix is true, append ' ETH'
* Format wei as ETH, with up to 5 decimals and append ' ETH'
*/
export function prettyWeiToEth(wei: bigint, suffix = false): string {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed option to omit suffix as it is unused and would just lead to inconsistent logs.

We can discuss how we wanna log ETH values (with / without suffix), I am fine with either as long as we do it consistently.

let eth = formatBigDecimal(wei, ETH_TO_WEI, MAX_DECIMAL_FACTOR);
if (suffix) eth += " ETH";
return eth;
export function prettyWeiToEth(wei: bigint): string {
return `${formatBigDecimal(wei, ETH_TO_WEI, MAX_DECIMAL_FACTOR)} ETH`;
}

/**
Expand Down
4 changes: 3 additions & 1 deletion packages/utils/src/metrics.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import {NonEmptyArray} from "./types.js";

export type NoLabels = Record<string, never>;
export type LabelsGeneric = Record<string, string | number>;
export type LabelKeys<Labels extends LabelsGeneric> = Extract<keyof Labels, string>;
Expand Down Expand Up @@ -39,7 +41,7 @@ export interface Counter<Labels extends LabelsGeneric = NoLabels> {
export type GaugeConfig<Labels extends LabelsGeneric> = {
name: string;
help: string;
} & (NoLabels extends Labels ? {labelNames?: never} : {labelNames: [LabelKeys<Labels>, ...LabelKeys<Labels>[]]});
} & (NoLabels extends Labels ? {labelNames?: never} : {labelNames: NonEmptyArray<LabelKeys<Labels>>});

export type HistogramConfig<Labels extends LabelsGeneric> = GaugeConfig<Labels> & {
buckets?: number[];
Expand Down
5 changes: 0 additions & 5 deletions packages/utils/src/promise.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,6 @@ export function wrapPromise<T>(promise: PromiseLike<T>): PromiseResult<T> {
return result;
}

/**
* ArrayToTuple converts an `Array<T>` to `[T, ...T]`
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this comment seemed misplaced

*
* eg: `[1, 2, 3]` from type `number[]` to `[number, number, number]`
*/
type ReturnPromiseWithTuple<Tuple extends NonEmptyArray<PromiseLike<unknown>>> = {
[Index in keyof ArrayToTuple<Tuple>]: PromiseResult<Awaited<Tuple[Index]>>;
};
Expand Down
5 changes: 5 additions & 0 deletions packages/utils/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ export function bnToNum(bn: bigint): number {

export type NonEmptyArray<T> = [T, ...T[]];

/**
* ArrayToTuple converts an `Array<T>` to `[T, ...T]`
*
* eg: `[1, 2, 3]` from type `number[]` to `[number, number, number]`
*/
export type ArrayToTuple<Tuple extends NonEmptyArray<unknown>> = {
[Index in keyof Tuple]: Tuple[Index];
};
16 changes: 4 additions & 12 deletions packages/validator/src/services/block.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,14 @@ import {
} from "@lodestar/types";
import {ChainForkConfig} from "@lodestar/config";
import {ForkPreBlobs, ForkBlobs, ForkSeq, ForkExecution} from "@lodestar/params";
import {ETH_TO_WEI, extendError, formatBigDecimal, prettyBytes} from "@lodestar/utils";
import {extendError, prettyBytes, prettyWeiToEth} from "@lodestar/utils";
import {Api, ApiError, routes} from "@lodestar/api";
import {IClock, LoggerVc} from "../util/index.js";
import {PubkeyHex} from "../types.js";
import {Metrics} from "../metrics.js";
import {ValidatorStore} from "./validatorStore.js";
import {BlockDutiesService, GENESIS_SLOT} from "./blockDuties.js";

// display upto 5 decimal places
const MAX_DECIMAL_FACTOR = BigInt("100000");

// The following combination of blocks and blobs can be produced
// i) a full block pre deneb
// ii) a full block and full blobs post deneb
Expand Down Expand Up @@ -218,14 +215,9 @@ export class BlockProposingService {
const debugLogCtx = {
executionPayloadSource: response.executionPayloadSource,
executionPayloadBlinded: response.executionPayloadBlinded,
// winston logger doesn't like bigint
executionPayloadValue: `${formatBigDecimal(response.executionPayloadValue, ETH_TO_WEI, MAX_DECIMAL_FACTOR)} ETH`,
consensusBlockValue: `${formatBigDecimal(response.consensusBlockValue, ETH_TO_WEI, MAX_DECIMAL_FACTOR)} ETH`,
totalBlockValue: `${formatBigDecimal(
response.executionPayloadValue + response.consensusBlockValue,
ETH_TO_WEI,
MAX_DECIMAL_FACTOR
)} ETH`,
executionPayloadValue: prettyWeiToEth(response.executionPayloadValue),
consensusBlockValue: prettyWeiToEth(response.consensusBlockValue),
totalBlockValue: prettyWeiToEth(response.executionPayloadValue + response.consensusBlockValue),
// TODO PR: should be used in api call instead of adding in log
strictFeeRecipientCheck,
builderSelection,
Expand Down