Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Current

- Upgrade to Python 3.14 (2026-02-10)
- Add Hypercore and Grvt chain support (2026-02-21)

# 0.28

Expand Down
26 changes: 26 additions & 0 deletions tradingstrategy/chain.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,12 @@ class ChainId(enum.IntEnum):

monad = 143

#: Hypercore
hypercore = 9999

#: Grvt
grvt = 325

#: Derive chain (formerly Lyra)
derive = 957

Expand Down Expand Up @@ -419,6 +425,26 @@ def get_coingecko_slug(self) -> str:
"svg_icon": None,
},

#
# Hypercore
#
ChainId.hypercore.value: {
"name": "Hypercore",
"slug": "hypercore",
"svg_icon": None,
"dataless": True,
},

#
# Grvt
#
ChainId.grvt.value: {
"name": "Grvt",
"slug": "grvt",
"svg_icon": None,
"dataless": True,
},

#
# Derive (formerly Lyra)
#
Expand Down