diff --git a/apps/price_pusher/README.md b/apps/price_pusher/README.md index 653a313df..f9eaa41d8 100644 --- a/apps/price_pusher/README.md +++ b/apps/price_pusher/README.md @@ -203,8 +203,7 @@ human-readable logs, you can pipe the output of the program to `pino-pretty`. Se You can configure the log level of some of the modules of the price pusher as well. The available modules are PriceServiceConnection, which is responsible for connecting to the Hermes price service, and Controller, which is responsible for checking the prices from the Hermes -and the on-chain Pyth contract and deciding whether to push a new price. You can configure the log level of these modules by passing the -`--price-service-connection-log-level` and `--controller-log-level` arguments, respectively. +and the on-chain Pyth contract and deciding whether to push a new price. You can configure the log level of these modules by passing the `--controller-log-level` arguments, respectively. ### Example diff --git a/apps/price_pusher/src/utils.ts b/apps/price_pusher/src/utils.ts index 0d2a32e3b..4c87a6c15 100644 --- a/apps/price_pusher/src/utils.ts +++ b/apps/price_pusher/src/utils.ts @@ -4,9 +4,9 @@ import { PriceItem } from "./interface"; export type PctNumber = number; export type DurationInSeconds = number; export const txSpeeds = ["slow", "standard", "fast"] as const; -export type TxSpeed = (typeof txSpeeds)[number]; +export type TxSpeed = typeof txSpeeds[number]; export const customGasChainIds = [137] as const; -export type CustomGasChainId = (typeof customGasChainIds)[number]; +export type CustomGasChainId = typeof customGasChainIds[number]; export async function sleep(ms: number): Promise { return new Promise((resolve) => setTimeout(resolve, ms)); diff --git a/package.json b/package.json index e65104fc6..e999dca98 100644 --- a/package.json +++ b/package.json @@ -31,6 +31,5 @@ "patchedDependencies": { "eccrypto@1.1.6": "patches/eccrypto@1.1.6.patch" } - }, - "version": "1.0.0" + } }