Add MintExtension for queries
This commit is contained in:
parent
6d9398475f
commit
576bf2a5a2
@ -14,6 +14,7 @@ and this project adheres to
|
||||
([#932]).
|
||||
- @cosmjs/stargate: Merge `DeliverTxFailure` and `DeliverTxSuccess` into a
|
||||
single `DeliverTxResponse` ([#878], [#949]). Add `assertIsDeliverTxFailure`.
|
||||
- @cosmjs/stargate: Created initial `MintExtension`.
|
||||
- @cosmjs/stargate: Created `types.Dec` decoder function
|
||||
`decodeCosmosSdkDecFromProto`.
|
||||
- @cosmjs/amino: Added `StdTx`, `isStdTx` and `makeStdTx` and removed them from
|
||||
|
||||
@ -68,6 +68,8 @@ export {
|
||||
GovParamsType,
|
||||
GovProposalId,
|
||||
IbcExtension,
|
||||
MintExtension,
|
||||
MintParams,
|
||||
ProtobufRpcClient,
|
||||
QueryClient,
|
||||
setupAuthExtension,
|
||||
@ -75,6 +77,7 @@ export {
|
||||
setupDistributionExtension,
|
||||
setupGovExtension,
|
||||
setupIbcExtension,
|
||||
setupMintExtension,
|
||||
setupStakingExtension,
|
||||
setupTxExtension,
|
||||
StakingExtension,
|
||||
|
||||
@ -9,6 +9,7 @@ export { BankExtension, setupBankExtension } from "./bank";
|
||||
export { DistributionExtension, setupDistributionExtension } from "./distribution";
|
||||
export { GovExtension, GovParamsType, GovProposalId, setupGovExtension } from "./gov";
|
||||
export { IbcExtension, setupIbcExtension } from "./ibc";
|
||||
export { MintExtension, MintParams, setupMintExtension } from "./mint";
|
||||
export { setupStakingExtension, StakingExtension } from "./staking";
|
||||
export { setupTxExtension, TxExtension } from "./tx";
|
||||
export {
|
||||
|
||||
58
packages/stargate/src/queries/mint.spec.ts
Normal file
58
packages/stargate/src/queries/mint.spec.ts
Normal file
@ -0,0 +1,58 @@
|
||||
import { Tendermint34Client } from "@cosmjs/tendermint-rpc";
|
||||
|
||||
import { QueryClient } from "../";
|
||||
import { pendingWithoutSimapp, simapp } from "../testutils.spec";
|
||||
import { MintExtension, setupMintExtension } from "./mint";
|
||||
|
||||
async function makeClientWithMint(
|
||||
rpcUrl: string,
|
||||
): Promise<[QueryClient & MintExtension, Tendermint34Client]> {
|
||||
const tmClient = await Tendermint34Client.connect(rpcUrl);
|
||||
return [QueryClient.withExtensions(tmClient, setupMintExtension), tmClient];
|
||||
}
|
||||
|
||||
describe("MintExtension", () => {
|
||||
describe("params", () => {
|
||||
it("works", async () => {
|
||||
pendingWithoutSimapp();
|
||||
const [client, tmClient] = await makeClientWithMint(simapp.tendermintUrl);
|
||||
|
||||
const params = await client.mint.params();
|
||||
expect(params.blocksPerYear.toNumber()).toBeGreaterThan(100_000);
|
||||
expect(params.blocksPerYear.toNumber()).toBeLessThan(100_000_000);
|
||||
expect(params.goalBonded.toString()).toEqual("0.67");
|
||||
expect(params.inflationMin.toString()).toEqual("0.07");
|
||||
expect(params.inflationMax.toString()).toEqual("0.2");
|
||||
expect(params.inflationRateChange.toString()).toEqual("0.13");
|
||||
expect(params.mintDenom).toEqual(simapp.denomStaking);
|
||||
|
||||
tmClient.disconnect();
|
||||
});
|
||||
});
|
||||
|
||||
describe("inflation", () => {
|
||||
it("works", async () => {
|
||||
pendingWithoutSimapp();
|
||||
const [client, tmClient] = await makeClientWithMint(simapp.tendermintUrl);
|
||||
|
||||
const inflation = await client.mint.inflation();
|
||||
expect(inflation.toFloatApproximation()).toBeGreaterThan(0.13);
|
||||
expect(inflation.toFloatApproximation()).toBeLessThan(0.1301);
|
||||
|
||||
tmClient.disconnect();
|
||||
});
|
||||
});
|
||||
|
||||
describe("annualProvisions", () => {
|
||||
it("works", async () => {
|
||||
pendingWithoutSimapp();
|
||||
const [client, tmClient] = await makeClientWithMint(simapp.tendermintUrl);
|
||||
|
||||
const annualProvisions = await client.mint.annualProvisions();
|
||||
expect(annualProvisions.toFloatApproximation()).toBeGreaterThan(5_400_000_000);
|
||||
expect(annualProvisions.toFloatApproximation()).toBeLessThan(5_500_000_000);
|
||||
|
||||
tmClient.disconnect();
|
||||
});
|
||||
});
|
||||
});
|
||||
60
packages/stargate/src/queries/mint.ts
Normal file
60
packages/stargate/src/queries/mint.ts
Normal file
@ -0,0 +1,60 @@
|
||||
import { Decimal } from "@cosmjs/math";
|
||||
import { assert } from "@cosmjs/utils";
|
||||
import { Params } from "cosmjs-types/cosmos/mint/v1beta1/mint";
|
||||
import { QueryClientImpl } from "cosmjs-types/cosmos/mint/v1beta1/query";
|
||||
|
||||
import { createProtobufRpcClient } from "../";
|
||||
import { QueryClient } from "./queryclient";
|
||||
import { decodeCosmosSdkDecFromProto } from "./utils";
|
||||
|
||||
/**
|
||||
* Like Params from "cosmjs-types/cosmos/mint/v1beta1/mint"
|
||||
* but using decimal types.
|
||||
*/
|
||||
export interface MintParams extends Pick<Params, "blocksPerYear" | "mintDenom"> {
|
||||
readonly goalBonded: Decimal;
|
||||
readonly inflationMin: Decimal;
|
||||
readonly inflationMax: Decimal;
|
||||
readonly inflationRateChange: Decimal;
|
||||
}
|
||||
|
||||
export interface MintExtension {
|
||||
readonly mint: {
|
||||
readonly params: () => Promise<MintParams>;
|
||||
readonly inflation: () => Promise<Decimal>;
|
||||
readonly annualProvisions: () => Promise<Decimal>;
|
||||
};
|
||||
}
|
||||
|
||||
export function setupMintExtension(base: QueryClient): MintExtension {
|
||||
const rpc = createProtobufRpcClient(base);
|
||||
// Use this service to get easy typed access to query methods
|
||||
// This cannot be used for proof verification
|
||||
const queryService = new QueryClientImpl(rpc);
|
||||
|
||||
return {
|
||||
mint: {
|
||||
params: async (): Promise<MintParams> => {
|
||||
const { params } = await queryService.Params({});
|
||||
assert(params);
|
||||
|
||||
return {
|
||||
blocksPerYear: params.blocksPerYear,
|
||||
goalBonded: decodeCosmosSdkDecFromProto(params.goalBonded),
|
||||
inflationMin: decodeCosmosSdkDecFromProto(params.inflationMin),
|
||||
inflationMax: decodeCosmosSdkDecFromProto(params.inflationMax),
|
||||
inflationRateChange: decodeCosmosSdkDecFromProto(params.inflationRateChange),
|
||||
mintDenom: params.mintDenom,
|
||||
};
|
||||
},
|
||||
inflation: async () => {
|
||||
const { inflation } = await queryService.Inflation({});
|
||||
return decodeCosmosSdkDecFromProto(inflation);
|
||||
},
|
||||
annualProvisions: async () => {
|
||||
const { annualProvisions } = await queryService.AnnualProvisions({});
|
||||
return decodeCosmosSdkDecFromProto(annualProvisions);
|
||||
},
|
||||
},
|
||||
};
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user