@pokt-network/amino-js
Advanced tools
Comparing version 0.7.1-alpha.1 to 0.7.2-alpha.1
@@ -15,3 +15,3 @@ { | ||
}, | ||
"version": "0.7.1-alpha.1", | ||
"version": "0.7.2-alpha.1", | ||
"main": "index.js", | ||
@@ -18,0 +18,0 @@ "types": "index.d.ts", |
@@ -49,3 +49,9 @@ import { PubKey } from './crypto'; | ||
/** @TODO document */ | ||
export interface StdTx extends TxValue { | ||
export interface StdTx { | ||
type: string; | ||
value: StdTxValue; | ||
} | ||
/** @TODO document */ | ||
export interface StdTxValue extends TxValue { | ||
msg: Msg[]; | ||
@@ -59,3 +65,3 @@ fee: StdFee; | ||
export interface StdFee { | ||
amount: Coin[]; | ||
amount: Coin[] | null; | ||
gas: string; | ||
@@ -62,0 +68,0 @@ } |
@@ -41,3 +41,8 @@ import { PubKey } from './crypto'; | ||
/** @TODO document */ | ||
export interface StdTx extends TxValue { | ||
export interface StdTx { | ||
type: string; | ||
value: StdTxValue; | ||
} | ||
/** @TODO document */ | ||
export interface StdTxValue extends TxValue { | ||
msg: Msg[]; | ||
@@ -50,3 +55,3 @@ fee: StdFee; | ||
export interface StdFee { | ||
amount: Coin[]; | ||
amount: Coin[] | null; | ||
gas: string; | ||
@@ -53,0 +58,0 @@ } |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
29854718
32719