Skip to content

Commit 831556a

Browse files
committed
fix(mu): update readme
1 parent 9147c4d commit 831556a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

servers/mu/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ There are a few environment variables that you can set:
6161
- `SU_ROUTER_URL`: the SU router url to default to when checking if target is a wallet
6262
- `HB_ROUTER_URL`: the HB router url to default to when checking if target is a wallet
6363
- `ENABLE_HB_WALLET_CHECK`: whether to enable HB wallet check when checking if target is a wallet
64-
- `HB_GRAPHQQL_URL`: the HB graphql cache url to use when retrieving a process message
64+
- `HB_GRAPHQL_URL`: the HB graphql cache url to use when retrieving a process message
6565

6666

6767

servers/mu/src/config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export const domainConfigSchema = z.object({
8686
SU_ROUTER_URL: z.string(),
8787
HB_ROUTER_URL: z.string(),
8888
ENABLE_HB_WALLET_CHECK: z.boolean(),
89-
HB_GRAPHQQL_URL: z.string()
89+
HB_GRAPHQL_URL: z.string()
9090
})
9191

9292
/**
@@ -149,7 +149,7 @@ const CONFIG_ENVS = {
149149
SU_ROUTER_URL: process.env.SU_ROUTER_URL || 'https://su-router.ao-testnet.xyz',
150150
HB_ROUTER_URL: process.env.HB_ROUTER_URL || 'https://forward.computer',
151151
ENABLE_HB_WALLET_CHECK: process.env.ENABLE_HB_WALLET_CHECK !== 'false',
152-
HB_GRAPHQQL_URL: process.env.HB_GRAPHQQL_URL || 'https://cache.forward.computer'
152+
HB_GRAPHQL_URL: process.env.HB_GRAPHQL_URL || 'https://cache.forward.computer'
153153
},
154154
production: {
155155
MODE,
@@ -189,7 +189,7 @@ const CONFIG_ENVS = {
189189
SU_ROUTER_URL: process.env.SU_ROUTER_URL || 'https://su-router.ao-testnet.xyz',
190190
HB_ROUTER_URL: process.env.HB_ROUTER_URL || 'https://forward.computer',
191191
ENABLE_HB_WALLET_CHECK: process.env.ENABLE_HB_WALLET_CHECK !== 'false',
192-
HB_GRAPHQQL_URL: process.env.HB_GRAPHQQL_URL || 'https://cache.forward.computer'
192+
HB_GRAPHQL_URL: process.env.HB_GRAPHQL_URL || 'https://cache.forward.computer'
193193
}
194194
}
195195

0 commit comments

Comments
 (0)