Skip to content

Commit

Permalink
feat: with tokenfactory API in LCD
Browse files Browse the repository at this point in the history
  • Loading branch information
emidev98 committed Nov 13, 2023
1 parent 9aaf139 commit 9de1410
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/client/lcd/LCDClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import {
WasmAPI,
IbcTransferAPI,
IbcAPI,
TokenFactory,
} from './api';
import { LCDUtils } from './LCDUtils';
import { Wallet } from './Wallet';
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 9de1410

Please sign in to comment.