File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed
Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning].
77
88## [ Unreleased]
99
10+ ## [ 1.4.2] - 2024-06-19
11+
12+ ### Fixed
13+
14+ - use mainnet etherscan
15+ - show 4 fixed digits for eth balances
16+
1017## [ 1.4.1] - 2024-06-06
1118
1219### Fixed
Original file line number Diff line number Diff line change 5151 alt =" ethereum icon"
5252 />
5353 <a
54- href ="https://holesky. etherscan.io/address/ {customAddressL1 }"
54+ href ="https://etherscan.io/address/ {customAddressL1 }"
5555 target =" ”_blank”"
5656 >
5757 {bodyString }
Original file line number Diff line number Diff line change 183183 await ethRPC ?.eth .getBalance (customAddressL1 ),
184184 " ether" ,
185185 ),
186- );
186+ ). toFixed ( 4 ) ;
187187
188188 // Use the taiko RPC to be reliable, a node that's not synced will display false numbers
189- L2Balance = Number (
190- L2TaikoRPC ?.utils .fromWei (
189+ L2Balance = Number (L2TaikoRPC ?.utils .fromWei (
191190 await L2TaikoRPC ?.eth .getBalance (customAddressL2 ),
192191 " ether" ,
193- ),
194- );
192+ )).toFixed (4 );
195193 }
196194 } else {
197195 L1Balance = null ;
You can’t perform that action at this time.
0 commit comments