We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0df0160 commit 669a258Copy full SHA for 669a258
packages/web/src/hooks/common/use-gnoscan-url.tsx
@@ -8,7 +8,7 @@ export enum GnoscanDataType {
8
Transactions = "/transactions",
9
Realms = "/realms",
10
Tokens = "/tokens",
11
- Accounts = "/accounts",
+ Account = "/account",
12
}
13
14
const TEMP_RPC_URL = "https%3A%2F%2Fdev.rpc.gnoswap.io";
@@ -48,7 +48,7 @@ export const useGnoscanUrl = () => {
48
};
49
50
const getAccountUrl = (address: string) => {
51
- return getGnoscanUrl(GnoscanDataType.Accounts, `${address}`);
+ return getGnoscanUrl(GnoscanDataType.Account, `${address}`);
52
53
54
return {
0 commit comments