From 6911a616637b1f1635db5da9fcb3f9788ad88b8a Mon Sep 17 00:00:00 2001 From: Bojan Angjelkoski Date: Thu, 15 Feb 2024 12:08:26 +0100 Subject: [PATCH] chore: added bonfida nameservice --- layer/Service.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/layer/Service.ts b/layer/Service.ts index ba038596..9f36ce59 100644 --- a/layer/Service.ts +++ b/layer/Service.ts @@ -4,7 +4,8 @@ import { Web3Composer, TokenService, InjNameService, - DenomClientAsync + DenomClientAsync, + InjBonfidaNameService, } from '@injectivelabs/sdk-ui-ts' import { DenomClient, @@ -87,6 +88,7 @@ export const stakingCacheApi = new StakingCacheApi(ENDPOINTS.cacheRest) export const derivativeCacheApi = new DerivativeCacheApi(ENDPOINTS.cacheRest) export const injNameService = new InjNameService(NETWORK) +export const injBonfidaNameService = new InjBonfidaNameService(NETWORK) export const denomClient = new DenomClient(NETWORK)