We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d47b0e1 commit 1f9bf90Copy full SHA for 1f9bf90
src/client/lcd/api/FeemarketAPI.ts
@@ -46,27 +46,6 @@ export class FeemarketAPI extends BaseAPI {
46
return FeemarketState.fromData(res.state);
47
}
48
49
- /**
50
- * Query the current basefee for fee_denom.
51
- *
52
- * @tags Query
53
- * @name baseFee
54
- * @summary Query the current basefee for fee_denom.
55
- * @request GET:/feemarket/v1/base_fee/${feeDenom}
56
- */
57
- public async baseFee(
58
- chainId: string,
59
- feeDenom: string,
60
- params?: Partial<PaginationOptions & APIParams>
61
- ) {
62
- const res = await this.getReqFromChainID(chainId).get<BaseFee.Data>(
63
- `/feemarket/v1/base_fee/${feeDenom}`,
64
- params
65
- );
66
-
67
- return BaseFee.fromData(res);
68
- }
69
70
/**
71
* Query the current feeDenomParam for fee_denom.
72
*
0 commit comments