@cosmjs/launchpad
Advanced tools
Comparing version 0.22.0-alpha.1 to 0.22.0
@@ -10,14 +10,2 @@ "use strict"; | ||
const defaultFees = { | ||
upload: { | ||
amount: coins_1.coins(25000, "ucosm"), | ||
gas: "1000000", | ||
}, | ||
init: { | ||
amount: coins_1.coins(12500, "ucosm"), | ||
gas: "500000", | ||
}, | ||
exec: { | ||
amount: coins_1.coins(5000, "ucosm"), | ||
gas: "200000", | ||
}, | ||
send: { | ||
@@ -24,0 +12,0 @@ amount: coins_1.coins(2000, "ucosm"), |
{ | ||
"name": "@cosmjs/launchpad", | ||
"version": "0.22.0-alpha.1", | ||
"version": "0.22.0", | ||
"description": "A client library for the Cosmos SDK 0.37 (cosmoshub-3), 0.38 and 0.39 (Launchpad)", | ||
@@ -44,6 +44,6 @@ "contributors": [ | ||
"dependencies": { | ||
"@cosmjs/crypto": "^0.22.0-alpha.1", | ||
"@cosmjs/encoding": "^0.22.0-alpha.1", | ||
"@cosmjs/math": "^0.22.0-alpha.1", | ||
"@cosmjs/utils": "^0.22.0-alpha.1", | ||
"@cosmjs/crypto": "^0.22.0", | ||
"@cosmjs/encoding": "^0.22.0", | ||
"@cosmjs/math": "^0.22.0", | ||
"@cosmjs/utils": "^0.22.0", | ||
"axios": "^0.19.0", | ||
@@ -55,3 +55,3 @@ "fast-deep-equal": "^3.1.1" | ||
}, | ||
"gitHead": "0eab5f734d10b5e130410808f21b7e6f6c6ced9e" | ||
"gitHead": "3a5c23c2e863744686332dd4c743d93a3b84913d" | ||
} |
@@ -94,3 +94,3 @@ import { Coin } from "./coins"; | ||
/** Supports submitting arbitrary evidence */ | ||
export interface MsgSubmitEvidence { | ||
export interface MsgSubmitEvidence extends Msg { | ||
readonly type: "cosmos-sdk/MsgSubmitEvidence"; | ||
@@ -105,3 +105,3 @@ readonly value: { | ||
/** Supports submitting arbitrary proposal content. */ | ||
export interface MsgSubmitProposal { | ||
export interface MsgSubmitProposal extends Msg { | ||
readonly type: "cosmos-sdk/MsgSubmitProposal"; | ||
@@ -124,3 +124,3 @@ readonly value: { | ||
/** Casts a vote */ | ||
export interface MsgVote { | ||
export interface MsgVote extends Msg { | ||
readonly type: "cosmos-sdk/MsgVote"; | ||
@@ -136,3 +136,3 @@ readonly value: { | ||
/** Submits a deposit to an existing proposal */ | ||
export interface MsgDeposit { | ||
export interface MsgDeposit extends Msg { | ||
readonly type: "cosmos-sdk/MsgDeposit"; | ||
@@ -148,3 +148,3 @@ readonly value: { | ||
/** Unjails a jailed validator */ | ||
export interface MsgUnjail { | ||
export interface MsgUnjail extends Msg { | ||
readonly type: "cosmos-sdk/MsgUnjail"; | ||
@@ -172,3 +172,3 @@ readonly value: { | ||
/** Creates a new validator. */ | ||
export interface MsgCreateValidator { | ||
export interface MsgCreateValidator extends Msg { | ||
readonly type: "cosmos-sdk/MsgCreateValidator"; | ||
@@ -190,3 +190,3 @@ readonly value: { | ||
/** Edits an existing validator. */ | ||
export interface MsgEditValidator { | ||
export interface MsgEditValidator extends Msg { | ||
readonly type: "cosmos-sdk/MsgEditValidator"; | ||
@@ -219,3 +219,3 @@ readonly value: { | ||
/** Performs a redelegation from a delegate and source validator to a destination validator */ | ||
export interface MsgBeginRedelegate { | ||
export interface MsgBeginRedelegate extends Msg { | ||
readonly type: "cosmos-sdk/MsgBeginRedelegate"; | ||
@@ -234,3 +234,3 @@ readonly value: { | ||
/** Performs an undelegation from a delegate and a validator */ | ||
export interface MsgUndelegate { | ||
export interface MsgUndelegate extends Msg { | ||
readonly type: "cosmos-sdk/MsgUndelegate"; | ||
@@ -237,0 +237,0 @@ readonly value: { |
@@ -7,6 +7,6 @@ import { Coin } from "./coins"; | ||
import { OfflineSigner } from "./wallet"; | ||
/** | ||
* Those fees are used by the higher level methods of SigningCosmosClient | ||
*/ | ||
export interface FeeTable { | ||
readonly upload: StdFee; | ||
readonly init: StdFee; | ||
readonly exec: StdFee; | ||
readonly send: StdFee; | ||
@@ -13,0 +13,0 @@ } |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
183988
3204
Updated@cosmjs/crypto@^0.22.0
Updated@cosmjs/encoding@^0.22.0
Updated@cosmjs/math@^0.22.0
Updated@cosmjs/utils@^0.22.0