From 9de141051332355d3fd0a04d52f6367c010dca55 Mon Sep 17 00:00:00 2001 From: emidev98 Date: Mon, 13 Nov 2023 17:59:16 +0200 Subject: [PATCH] feat: with tokenfactory API in LCD --- src/client/lcd/LCDClient.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/client/lcd/LCDClient.ts b/src/client/lcd/LCDClient.ts index c39b589a..87c63eb6 100644 --- a/src/client/lcd/LCDClient.ts +++ b/src/client/lcd/LCDClient.ts @@ -14,6 +14,7 @@ import { WasmAPI, IbcTransferAPI, IbcAPI, + TokenFactory, } from './api'; import { LCDUtils } from './LCDUtils'; import { Wallet } from './Wallet'; @@ -113,6 +114,7 @@ export class LCDClient { public slashing: SlashingAPI; public staking: StakingAPI; public tendermint: TendermintAPI; + public tokenfactory: TokenFactory; public wasm: WasmAPI; public tx: TxAPI; public ibc: IbcAPI; @@ -159,6 +161,7 @@ export class LCDClient { this.slashing = new SlashingAPI(this); this.staking = new StakingAPI(this); this.tendermint = new TendermintAPI(this); + this.tokenfactory = new TokenFactory(this); this.wasm = new WasmAPI(this); this.ibc = new IbcAPI(this); this.icaV1 = new ICAv1API(this);