Skip to content

Commit

Permalink
added feemarket to lcd client
Browse files Browse the repository at this point in the history
  • Loading branch information
freeelancer committed Jan 25, 2024
1 parent 17d2631 commit f0aa4e2
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 @@ -27,6 +27,7 @@ import { FeeshareAPI } from './api/FeeshareAPI';
import { GovV1API } from './api/GovV1API';
import { ICAv1API } from './api/ICAv1API';
import { ICQv1API } from './api/ICQv1API';
import { FeemarketAPI } from './api/FeemarketAPI';

export type AxiosConfig = {
/**
Expand Down Expand Up @@ -135,6 +136,7 @@ export class LCDClient {
public ibcTransfer: IbcTransferAPI;
public pob: PobAPI;
public feeshare: FeeshareAPI;
public feemarket: FeemarketAPI;
public utils: LCDUtils;

/**
Expand Down Expand Up @@ -185,6 +187,7 @@ export class LCDClient {
this.tx = new TxAPI(this);
this.pob = new PobAPI(this);
this.feeshare = new FeeshareAPI(this);
this.feemarket = new FeemarketAPI(this);
this.utils = new LCDUtils(this);
}

Expand Down

0 comments on commit f0aa4e2

Please sign in to comment.