@injectivelabs/chain-consumer
Advanced tools
Comparing version 0.0.32 to 0.0.33
@@ -6,2 +6,8 @@ # Change Log | ||
## [0.0.33](https://github.com/InjectiveLabs/injective-ts/compare/@injectivelabs/chain-consumer@0.0.32...@injectivelabs/chain-consumer@0.0.33) (2021-04-06) | ||
### Features | ||
* added exchange spot market consumer for chain consumer ([5ca78a4](https://github.com/InjectiveLabs/injective-ts/commit/5ca78a41927fc9162be29275a86cb935c677f1d0)) | ||
## [0.0.32](https://github.com/InjectiveLabs/injective-ts/compare/@injectivelabs/chain-consumer@0.0.31...@injectivelabs/chain-consumer@0.0.32) (2021-04-05) | ||
@@ -8,0 +14,0 @@ |
@@ -6,2 +6,3 @@ export * from './BankConsumer'; | ||
export * from './GovernanceConsumer'; | ||
export * from './ExchangeConsumer'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -18,2 +18,3 @@ "use strict"; | ||
__exportStar(require("./GovernanceConsumer"), exports); | ||
__exportStar(require("./ExchangeConsumer"), exports); | ||
//# sourceMappingURL=index.js.map |
import { Validator as GrpcValidator, Delegation as GrpcDelegation, Description as GrpcValidatorDescription, Commission as GrpcValidatorCommission, CommissionRates as GrpcValidatorCommissionRates, UnbondingDelegation as GrpcUnbondingDelegation, DelegationResponse as GrpcDelegationResponse } from '@injectivelabs/chain-api/cosmos/staking/v1beta1/staking_pb'; | ||
import { DelegationDelegatorReward as GrpcDelegationDelegatorReward } from '@injectivelabs/chain-api/cosmos/distribution/v1beta1/distribution_pb'; | ||
import { Proposal as GrpcProposal, Deposit as GrpcProposalDeposit, TallyParams as GrpcTallyParams, TallyResult as GrpcTallyResult, Vote as GrpcVote, ProposalStatusMap as GrpcProposalStatus } from '@injectivelabs/chain-api/cosmos/gov/v1beta1/gov_pb'; | ||
import { SpotMarket as GrpcSpotMarket, MarketStatus as GrpcMarketStatus, MarketStatusMap as GrpcMarketStatusMap, SpotLimitOrder as GrpcSpotLimitOrder, SpotMarketOrder as GrpcSpotMarketOrder, SpotOrder as GrpcSpotOrder } from '@injectivelabs/chain-api/injective/exchange/v1beta1/exchange_pb'; | ||
import { Supply as GrpcSupply } from '@injectivelabs/chain-api/cosmos/bank/v1beta1/bank_pb'; | ||
import { Coin as GrpcCoin } from '@injectivelabs/chain-api/cosmos/base/v1beta1/coin_pb'; | ||
export { GrpcCoin, GrpcValidator, GrpcDelegation, GrpcValidatorDescription, GrpcValidatorCommission, GrpcValidatorCommissionRates, GrpcUnbondingDelegation, GrpcDelegationResponse, GrpcProposal, GrpcProposalDeposit, GrpcTallyParams, GrpcTallyResult, GrpcVote, GrpcProposalStatus, GrpcSupply, GrpcDelegationDelegatorReward, }; | ||
export { GrpcCoin, GrpcValidator, GrpcDelegation, GrpcValidatorDescription, GrpcValidatorCommission, GrpcValidatorCommissionRates, GrpcUnbondingDelegation, GrpcDelegationResponse, GrpcProposal, GrpcProposalDeposit, GrpcTallyParams, GrpcTallyResult, GrpcVote, GrpcProposalStatus, GrpcSupply, GrpcDelegationDelegatorReward, GrpcSpotMarket, GrpcMarketStatus, GrpcMarketStatusMap, GrpcSpotLimitOrder, GrpcSpotMarketOrder, GrpcSpotOrder, }; | ||
//# sourceMappingURL=types.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.GrpcDelegationDelegatorReward = exports.GrpcSupply = exports.GrpcVote = exports.GrpcTallyResult = exports.GrpcTallyParams = exports.GrpcProposalDeposit = exports.GrpcProposal = exports.GrpcDelegationResponse = exports.GrpcUnbondingDelegation = exports.GrpcValidatorCommissionRates = exports.GrpcValidatorCommission = exports.GrpcValidatorDescription = exports.GrpcDelegation = exports.GrpcValidator = exports.GrpcCoin = void 0; | ||
exports.GrpcSpotOrder = exports.GrpcSpotMarketOrder = exports.GrpcSpotLimitOrder = exports.GrpcMarketStatus = exports.GrpcSpotMarket = exports.GrpcDelegationDelegatorReward = exports.GrpcSupply = exports.GrpcVote = exports.GrpcTallyResult = exports.GrpcTallyParams = exports.GrpcProposalDeposit = exports.GrpcProposal = exports.GrpcDelegationResponse = exports.GrpcUnbondingDelegation = exports.GrpcValidatorCommissionRates = exports.GrpcValidatorCommission = exports.GrpcValidatorDescription = exports.GrpcDelegation = exports.GrpcValidator = exports.GrpcCoin = void 0; | ||
const staking_pb_1 = require("@injectivelabs/chain-api/cosmos/staking/v1beta1/staking_pb"); | ||
@@ -20,2 +20,8 @@ Object.defineProperty(exports, "GrpcValidator", { enumerable: true, get: function () { return staking_pb_1.Validator; } }); | ||
Object.defineProperty(exports, "GrpcVote", { enumerable: true, get: function () { return gov_pb_1.Vote; } }); | ||
const exchange_pb_1 = require("@injectivelabs/chain-api/injective/exchange/v1beta1/exchange_pb"); | ||
Object.defineProperty(exports, "GrpcSpotMarket", { enumerable: true, get: function () { return exchange_pb_1.SpotMarket; } }); | ||
Object.defineProperty(exports, "GrpcMarketStatus", { enumerable: true, get: function () { return exchange_pb_1.MarketStatus; } }); | ||
Object.defineProperty(exports, "GrpcSpotLimitOrder", { enumerable: true, get: function () { return exchange_pb_1.SpotLimitOrder; } }); | ||
Object.defineProperty(exports, "GrpcSpotMarketOrder", { enumerable: true, get: function () { return exchange_pb_1.SpotMarketOrder; } }); | ||
Object.defineProperty(exports, "GrpcSpotOrder", { enumerable: true, get: function () { return exchange_pb_1.SpotOrder; } }); | ||
const bank_pb_1 = require("@injectivelabs/chain-api/cosmos/bank/v1beta1/bank_pb"); | ||
@@ -22,0 +28,0 @@ Object.defineProperty(exports, "GrpcSupply", { enumerable: true, get: function () { return bank_pb_1.Supply; } }); |
{ | ||
"name": "@injectivelabs/chain-consumer", | ||
"description": "Interacting with our Chain API made easy. Can be reused throughout Injective's projects.", | ||
"version": "0.0.32", | ||
"version": "0.0.33", | ||
"license": "MIT", | ||
@@ -41,3 +41,3 @@ "main": "dist/index.js", | ||
}, | ||
"gitHead": "b04d65e8cb4f9f2572bdbbe6dc5144ba36dfc8c0" | ||
"gitHead": "13012ab39366f138e6352e2903c10c19bf0b2fdd" | ||
} |
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 not supported yet
87791
84
938