From aaeb7983de8c69589eaaee6141d9f814b734ae5d Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Mon, 3 Aug 2020 08:00:05 +0200 Subject: [PATCH] Document whatFeeTable from @cosmjs/cosmwasm is for --- packages/cosmwasm/src/signingcosmwasmclient.ts | 3 +++ packages/cosmwasm/types/signingcosmwasmclient.d.ts | 3 +++ 2 files changed, 6 insertions(+) diff --git a/packages/cosmwasm/src/signingcosmwasmclient.ts b/packages/cosmwasm/src/signingcosmwasmclient.ts index a97f8739..febecbba 100644 --- a/packages/cosmwasm/src/signingcosmwasmclient.ts +++ b/packages/cosmwasm/src/signingcosmwasmclient.ts @@ -30,6 +30,9 @@ import { MsgUpdateAdmin, } from "./msgs"; +/** + * Those fees are used by the higher level methods of SigningCosmWasmClient + */ export interface FeeTable { readonly upload: StdFee; readonly init: StdFee; diff --git a/packages/cosmwasm/types/signingcosmwasmclient.d.ts b/packages/cosmwasm/types/signingcosmwasmclient.d.ts index 6c414c03..c42c7ff4 100644 --- a/packages/cosmwasm/types/signingcosmwasmclient.d.ts +++ b/packages/cosmwasm/types/signingcosmwasmclient.d.ts @@ -1,6 +1,9 @@ import { BroadcastMode, Coin, Msg, OfflineSigner, PostTxResult, StdFee } from "@cosmjs/launchpad"; import { Account, CosmWasmClient, GetSequenceResult } from "./cosmwasmclient"; import { Log } from "./logs"; +/** + * Those fees are used by the higher level methods of SigningCosmWasmClient + */ export interface FeeTable { readonly upload: StdFee; readonly init: StdFee;