Skip to content

Commit f022ea3

Browse files
committed
version bump
1 parent aa79346 commit f022ea3

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

apps/price_pusher/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pythnetwork/price-pusher",
3-
"version": "8.3.3",
3+
"version": "9.0.0",
44
"description": "Pyth Price Pusher",
55
"homepage": "https://pyth.network",
66
"main": "lib/index.js",
@@ -24,7 +24,6 @@
2424
"format": "prettier --write \"src/**/*.ts\"",
2525
"test:lint": "eslint src/",
2626
"start": "node lib/index.js",
27-
"test": "jest",
2827
"dev": "ts-node src/index.ts",
2928
"prepublishOnly": "pnpm run build && pnpm run test:lint",
3029
"preversion": "pnpm run test:lint",

apps/price_pusher/src/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import { PriceItem } from "./interface";
44
export type PctNumber = number;
55
export type DurationInSeconds = number;
66
export const txSpeeds = ["slow", "standard", "fast"] as const;
7-
export type TxSpeed = typeof txSpeeds[number];
7+
export type TxSpeed = (typeof txSpeeds)[number];
88
export const customGasChainIds = [137] as const;
9-
export type CustomGasChainId = typeof customGasChainIds[number];
9+
export type CustomGasChainId = (typeof customGasChainIds)[number];
1010

1111
export async function sleep(ms: number): Promise<void> {
1212
return new Promise((resolve) => setTimeout(resolve, ms));

0 commit comments

Comments
 (0)