File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
shared/src/hooks/use-falconer-queries Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -4,4 +4,4 @@ export interface FalconerRequestInit extends RequestInit {
44 } ;
55}
66
7- export const FALCONER_ENDPOINT = 'https://falconer.haqq.sh ' as const ;
7+ export const FALCONER_ENDPOINT = 'https://falconer.haqq.network ' as const ;
Original file line number Diff line number Diff line change @@ -22,7 +22,10 @@ interface FalconerRequestInit extends RequestInit {
2222export async function getShellChainStatsData (
2323 options : Partial < FalconerRequestInit > ,
2424) {
25- const requestUrl = new URL ( '/shell/chain_stats' , 'https://falconer.haqq.sh' ) ;
25+ const requestUrl = new URL (
26+ '/shell/chain_stats' ,
27+ 'https://falconer.haqq.network' ,
28+ ) ;
2629 const response = await fetch ( requestUrl , {
2730 method : 'get' ,
2831 headers : {
You can’t perform that action at this time.
0 commit comments