File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7575 > Nethermind</ ion-toggle
7676 >
7777 </ ion-item >
78+ < ion-item lines ="none ">
79+ < ion-icon class ="opacity-icon " slot ="start " name ="cube-outline "> </ ion-icon >
80+ < ion-toggle
81+ checked
82+ id ="clientToggle "
83+ [ngModel] ="notificationBase.clientUpdatesTogglesMap.get('RETH') "
84+ (ngModelChange) ="notificationBase.setClientToggleState('RETH', $event) "
85+ (ionChange) ="notificationBase.clientUpdateOnToggle('RETH') "
86+ labelPlacement ="start "
87+ justify ="space-between "
88+ > Reth</ ion-toggle
89+ >
90+ </ ion-item >
7891 </ ion-list >
7992 </ span >
8093 < span *ngSwitchCase ="'eth2Clients' ">
Original file line number Diff line number Diff line change @@ -47,6 +47,9 @@ export class ClientsPage implements OnInit {
4747 this . updateUtils . getClient ( 'NETHERMIND' ) . then ( ( result ) => {
4848 this . notificationBase . setClientToggleState ( 'NETHERMIND' , result && result != 'null' )
4949 } )
50+ this . updateUtils . getClient ( 'RETH' ) . then ( ( result ) => {
51+ this . notificationBase . setClientToggleState ( 'RETH' , result && result != 'null' )
52+ } )
5053
5154 this . notificationBase . disableToggleLock ( )
5255 }
Original file line number Diff line number Diff line change @@ -94,6 +94,13 @@ export const Clients: ClientInfo[] = [
9494 repo : 'NethermindEth/nethermind' ,
9595 storageKey : 'client_updates_nethermind' ,
9696 } ,
97+
98+ {
99+ key : 'RETH' ,
100+ name : 'Reth' ,
101+ repo : 'paradigmxyz/reth' ,
102+ storageKey : 'client_updates_reth' ,
103+ } ,
97104 // Various
98105 {
99106 key : 'ROCKETPOOL' ,
You can’t perform that action at this time.
0 commit comments