Skip to content

Commit 5fae873

Browse files
committed
Merge commit 'refs/pull/1506/head' of https://github.com/BitBoxSwiss/bitbox02-firmware
2 parents f00c023 + 3ccdd7b commit 5fae873

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ customers cannot upgrade their bootloader, its changes are recorded separately.
77
## Firmware
88

99
### [Unreleased]
10+
- EVM: add HyperEVM (HYPE) and SONIC (S) to known networks
1011

1112
### 9.23.0
1213
- Ethereum: add confirmation screen for known networks, change base unit to ETH for Arbitrum and Optimism

src/rust/bitbox02-rust/src/hww/api/ethereum/params.rs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,20 @@ const PARAMS: &[Params] = &[
9999
name: "Gnosis Chain",
100100
unit: "xDAI",
101101
},
102+
Params {
103+
coin: None,
104+
bip44_coin: 60 + HARDENED,
105+
chain_id: 999,
106+
name: "HyperEVM",
107+
unit: "HYPE",
108+
},
109+
Params {
110+
coin: None,
111+
bip44_coin: 60 + HARDENED,
112+
chain_id: 146,
113+
name: "Sonic",
114+
unit: "S",
115+
},
102116
];
103117

104118
/// Get the chain parameters by `coin` or `chain_id`. If `chain_id` is non-zero, `coin` is ignored.

0 commit comments

Comments
 (0)