diff --git a/packages/query/src/common/remote-config/remote-config.query.ts b/packages/query/src/common/remote-config/remote-config.query.ts index 973ea1358..a478f838d 100644 --- a/packages/query/src/common/remote-config/remote-config.query.ts +++ b/packages/query/src/common/remote-config/remote-config.query.ts @@ -120,3 +120,8 @@ export function useConfigSwapsEnabled() { const config = useRemoteConfig(); return get(config, 'swapsEnabled', false); } + +export function useBrc20SendEnabled() { + const config = useRemoteConfig(); + return get(config, 'brc20SendEnabled', false); +}