@@ -56,6 +56,44 @@ export const otherCalls: Omit<Routes, keyof typeof namedSpacedCalls> = {
5656 progress : 0.83027522935
5757 }
5858 ] ,
59+ nodeStatusGetByNetwork : async ( ) => ( {
60+ mainnet : {
61+ ec : {
62+ name : "Nethermind" ,
63+ dnp : "nethermind.dnp.dappnode.eth" ,
64+ isSynced : true ,
65+ currentBlock : 23648945 ,
66+ progress : 100 ,
67+ peers : 50
68+ } ,
69+ cc : {
70+ name : "Nimbus" ,
71+ dnp : "nimbus.dnp.dappnode.eth" ,
72+ isSynced : true ,
73+ currentBlock : 12875373 ,
74+ progress : 100 ,
75+ peers : 40
76+ }
77+ } ,
78+ hoodi : {
79+ ec : {
80+ name : "besu" ,
81+ dnp : "besu-hoodi.dnp.dappnode.eth" ,
82+ isSynced : true ,
83+ currentBlock : 1480848 ,
84+ progress : 100 ,
85+ peers : 30
86+ } ,
87+ cc : {
88+ name : "Prysm" ,
89+ dnp : "prysm-hoodi.dnp.dappnode.eth" ,
90+ isSynced : false ,
91+ currentBlock : 1592925 ,
92+ progress : 100 ,
93+ peers : 20
94+ }
95+ }
96+ } ) ,
5997 changeIpfsTimeout : async ( ) => { } ,
6098 cleanCache : async ( ) => { } ,
6199 cleanDb : async ( ) => { } ,
@@ -226,6 +264,8 @@ export const otherCalls: Omit<Routes, keyof typeof namedSpacedCalls> = {
226264 ipfsClientTarget : IpfsClientTarget . remote ,
227265 ipfsGateway : "https://ipfs-gateway.dappnode.net"
228266 } ) ,
267+ mirrorProviderGet : async ( ) => ( { enabled : false } ) ,
268+ mirrorProviderSet : async ( ) => { } ,
229269 enableEthicalMetrics : async ( ) => { } ,
230270 getEthicalMetricsConfig : async ( ) => ( {
231271 mail : "@example.com" ,
@@ -411,6 +451,12 @@ export const otherCalls: Omit<Routes, keyof typeof namedSpacedCalls> = {
411451 gnosis : "prysm-gnosis.dnp.dappnode.eth"
412452 } ;
413453 } ,
454+ executionClientsGetByNetworks : async ( ) => {
455+ return {
456+ mainnet : "geth.dnp.dappnode.eth" ,
457+ gnosis : "nethermind-xdai.dnp.dappnode.eth"
458+ } ;
459+ } ,
414460 premiumBeaconBackupActivate : async ( ) => { } ,
415461 premiumBeaconBackupDeactivate : async ( ) => { } ,
416462 premiumBeaconBackupStatus : async ( ) : Promise < Record < string , BeaconBackupNetworkStatus > > => {
@@ -433,6 +479,43 @@ export const otherCalls: Omit<Routes, keyof typeof namedSpacedCalls> = {
433479 mainnet : { validators : [ "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef" ] } ,
434480 hoodi : { validators : [ ] } ,
435481 gnosis : null
482+ } ) ,
483+
484+ validatorsDataByNetwork : async ( ) => ( {
485+ mainnet : {
486+ active : { validators : [ "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef" ] } ,
487+ attesting : { validators : [ "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef" ] } ,
488+ balances : {
489+ balances : {
490+ "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef" : "32000000000"
491+ }
492+ }
493+ } ,
494+ hoodi : {
495+ active : { validators : [ ] } ,
496+ attesting : { validators : [ ] } ,
497+ balances : { balances : { } }
498+ } ,
499+ gnosis : {
500+ active : null ,
501+ attesting : null ,
502+ balances : null
503+ }
504+ } ) ,
505+
506+ signerByNetworkGet : async ( ) => ( {
507+ mainnet : {
508+ isInstalled : true ,
509+ brainRunning : true
510+ } ,
511+ hoodi : {
512+ isInstalled : true ,
513+ brainRunning : false
514+ } ,
515+ gnosis : {
516+ isInstalled : false ,
517+ brainRunning : false
518+ }
436519 } )
437520} ;
438521
0 commit comments