Skip to content

Commit a17c207

Browse files
committed
fix: update falconer endpoint
1 parent 7d34bd4 commit a17c207

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

libs/data-access/falconer/src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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;

libs/shared/src/hooks/use-falconer-queries/use-falconer-queries.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ interface FalconerRequestInit extends RequestInit {
2222
export 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: {

0 commit comments

Comments
 (0)