Skip to content

Commit 669a258

Browse files
authored
[GSW-2429] Gnoscan Account page url (#799)
1 parent 0df0160 commit 669a258

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/web/src/hooks/common/use-gnoscan-url.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export enum GnoscanDataType {
88
Transactions = "/transactions",
99
Realms = "/realms",
1010
Tokens = "/tokens",
11-
Accounts = "/accounts",
11+
Account = "/account",
1212
}
1313

1414
const TEMP_RPC_URL = "https%3A%2F%2Fdev.rpc.gnoswap.io";
@@ -48,7 +48,7 @@ export const useGnoscanUrl = () => {
4848
};
4949

5050
const getAccountUrl = (address: string) => {
51-
return getGnoscanUrl(GnoscanDataType.Accounts, `${address}`);
51+
return getGnoscanUrl(GnoscanDataType.Account, `${address}`);
5252
};
5353

5454
return {

0 commit comments

Comments
 (0)