stargate: Export default gas limits/price

This commit is contained in:
willclarktech 2021-03-25 12:58:02 +01:00
parent 5c2deafc8c
commit d9b0f9e350
No known key found for this signature in database
GPG Key ID: 551A86E2E398ADF7
2 changed files with 4 additions and 2 deletions

View File

@ -84,6 +84,8 @@ export {
} from "./stargateclient";
export {
CosmosFeeTable,
defaultGasLimits,
defaultGasPrice,
defaultRegistryTypes,
SignerData,
SigningStargateClient,

View File

@ -71,8 +71,8 @@ export interface CosmosFeeTable extends FeeTable {
readonly withdraw: StdFee;
}
const defaultGasPrice = GasPrice.fromString("0.025ucosm");
const defaultGasLimits: GasLimits<CosmosFeeTable> = {
export const defaultGasPrice = GasPrice.fromString("0.025ucosm");
export const defaultGasLimits: GasLimits<CosmosFeeTable> = {
send: 80000,
delegate: 160000,
undelegate: 160000,