Document whatFeeTable from @cosmjs/cosmwasm is for

This commit is contained in:
Simon Warta 2020-08-03 08:00:05 +02:00
parent 4e5a25c625
commit aaeb7983de
2 changed files with 6 additions and 0 deletions

View File

@ -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;

View File

@ -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;