Skip to content

Commit 6248709

Browse files
authored
fix(hip-3-pusher): config paths optional
2 parents dc99ea2 + 7a5d517 commit 6248709

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

apps/hip-3-pusher/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "hip-3-pusher"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
description = "Hyperliquid HIP-3 market oracle pusher"
55
readme = "README.md"
66
requires-python = "==3.13.*"

apps/hip-3-pusher/src/pusher/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class KMSConfig(BaseModel):
99
enable_kms: bool
10-
aws_kms_key_id_path: FilePath
10+
aws_kms_key_id_path: Optional[FilePath] = None
1111

1212

1313
class LazerConfig(BaseModel):
@@ -33,7 +33,7 @@ class HyperliquidConfig(BaseModel):
3333
market_name: str
3434
market_symbol: str
3535
use_testnet: bool
36-
oracle_pusher_key_path: FilePath
36+
oracle_pusher_key_path: Optional[FilePath] = None
3737
publish_interval: float
3838
publish_timeout: float
3939
enable_publish: bool

apps/hip-3-pusher/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)