@@ -96,6 +96,7 @@ export const createApis = async (ctx) => {
9696 const STALE_CURSOR_RANGE = ctx . STALE_CURSOR_RANGE
9797 const SU_ROUTER_URL = ctx . SU_ROUTER_URL
9898 const HB_ROUTER_URL = ctx . HB_ROUTER_URL
99+ const ENABLE_HB_WALLET_CHECK = ctx . ENABLE_HB_WALLET_CHECK
99100
100101 const logger = ctx . logger
101102 const fetch = ctx . fetch
@@ -233,7 +234,7 @@ export const createApis = async (ctx) => {
233234 fetchHyperBeamResult : cuClient . fetchHyperBeamResultWith ( { fetch, HB_URL , histogram, logger : sendDataItemLogger } ) ,
234235 fetchSchedulerProcess : schedulerClient . fetchSchedulerProcessWith ( { getByProcess, setByProcess, fetch, histogram, logger : sendDataItemLogger } ) ,
235236 crank,
236- isWallet : gatewayClient . isWalletWith ( { fetch, histogram, ARWEAVE_URL , GRAPHQL_URL , SU_ROUTER_URL , HB_ROUTER_URL , logger : sendDataItemLogger } ) ,
237+ isWallet : gatewayClient . isWalletWith ( { fetch, histogram, ARWEAVE_URL , GRAPHQL_URL , SU_ROUTER_URL , HB_ROUTER_URL , ENABLE_HB_WALLET_CHECK , logger : sendDataItemLogger } ) ,
237238 isHyperBeamProcess : gatewayClient . isHyperBeamProcessWith ( { fetch, GRAPHQL_URL , logger : sendDataItemLogger , getIsHyperBeamProcess, setIsHyperBeamProcess } ) ,
238239 logger : sendDataItemLogger ,
239240 writeDataItemArweave : uploaderClient . uploadDataItemWith ( { UPLOADER_URL , logger : sendDataItemLogger , fetch, histogram } ) ,
@@ -388,6 +389,7 @@ export const createResultApis = async (ctx) => {
388389 const RELAY_MAP = ctx . RELAY_MAP
389390 const SU_ROUTER_URL = ctx . SU_ROUTER_URL
390391 const HB_ROUTER_URL = ctx . HB_ROUTER_URL
392+ const ENABLE_HB_WALLET_CHECK = ctx . ENABLE_HB_WALLET_CHECK
391393
392394 const logger = ctx . logger
393395 const fetch = ctx . fetch
@@ -427,7 +429,7 @@ export const createResultApis = async (ctx) => {
427429 buildAndSign : signerClient . buildAndSignWith ( { MU_WALLET , logger : processMsgLogger } ) ,
428430 fetchResult : cuClient . resultWith ( { fetch : fetchWithCache , histogram, CU_URL , logger : processMsgLogger } ) ,
429431 fetchHyperBeamResult : cuClient . fetchHyperBeamResultWith ( { fetch, HB_URL , histogram, logger : processMsgLogger } ) ,
430- isWallet : gatewayClient . isWalletWith ( { fetch, histogram, ARWEAVE_URL , GRAPHQL_URL , SU_ROUTER_URL , HB_ROUTER_URL , logger : processMsgLogger , setById, getById } ) ,
432+ isWallet : gatewayClient . isWalletWith ( { fetch, histogram, ARWEAVE_URL , GRAPHQL_URL , SU_ROUTER_URL , HB_ROUTER_URL , ENABLE_HB_WALLET_CHECK , logger : processMsgLogger , setById, getById } ) ,
431433 writeDataItemArweave : uploaderClient . uploadDataItemWith ( { UPLOADER_URL , logger : processMsgLogger , fetch, histogram } ) ,
432434 isHyperBeamProcess : gatewayClient . isHyperBeamProcessWith ( { fetch, GRAPHQL_URL , logger : processMsgLogger , getIsHyperBeamProcess, setIsHyperBeamProcess } ) ,
433435 RELAY_MAP ,
0 commit comments