File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ There are a few environment variables that you can set:
61
61
- ` SU_ROUTER_URL ` : the SU router url to default to when checking if target is a wallet
62
62
- ` HB_ROUTER_URL ` : the HB router url to default to when checking if target is a wallet
63
63
- ` 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
65
65
66
66
67
67
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ export const domainConfigSchema = z.object({
86
86
SU_ROUTER_URL : z . string ( ) ,
87
87
HB_ROUTER_URL : z . string ( ) ,
88
88
ENABLE_HB_WALLET_CHECK : z . boolean ( ) ,
89
- HB_GRAPHQQL_URL : z . string ( )
89
+ HB_GRAPHQL_URL : z . string ( )
90
90
} )
91
91
92
92
/**
@@ -149,7 +149,7 @@ const CONFIG_ENVS = {
149
149
SU_ROUTER_URL : process . env . SU_ROUTER_URL || 'https://su-router.ao-testnet.xyz' ,
150
150
HB_ROUTER_URL : process . env . HB_ROUTER_URL || 'https://forward.computer' ,
151
151
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'
153
153
} ,
154
154
production : {
155
155
MODE ,
@@ -189,7 +189,7 @@ const CONFIG_ENVS = {
189
189
SU_ROUTER_URL : process . env . SU_ROUTER_URL || 'https://su-router.ao-testnet.xyz' ,
190
190
HB_ROUTER_URL : process . env . HB_ROUTER_URL || 'https://forward.computer' ,
191
191
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'
193
193
}
194
194
}
195
195
You can’t perform that action at this time.
0 commit comments