From bf7269cc4d5bae7ee1e6cc16182bf79ff0fa781d Mon Sep 17 00:00:00 2001 From: Thibault Jaillard Date: Tue, 4 Oct 2022 11:09:08 +0200 Subject: [PATCH 1/2] Register WithdrawAndMintProposal type url --- src/registry/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/registry/index.ts b/src/registry/index.ts index 079f041..cd82c33 100644 --- a/src/registry/index.ts +++ b/src/registry/index.ts @@ -38,6 +38,7 @@ import { MsgTransfer } from '../codec/ibc/applications/transfer/v1/tx'; import { MsgClaimBeam, MsgOpenBeam, MsgUpdateBeam } from '../codec/beam/tx'; import { MsgDeposit as MsgDepositDfract } from '../codec/dfract/tx'; +import { WithdrawAndMintProposal } from '../codec/dfract/proposal'; const registryTypes: Iterable<[string, GeneratedType]> = [ ['/cosmos.auth.v1beta1.BaseAccount', BaseAccount], @@ -104,6 +105,7 @@ const registryTypes: Iterable<[string, GeneratedType]> = [ ['/lum.network.beam.MsgUpdateBeam', MsgUpdateBeam], ['/lum.network.beam.MsgClaimBeam', MsgClaimBeam], ['/lum.network.dfract.MsgDeposit', MsgDepositDfract], + ['/lum.network.dfract.WithdrawAndMintProposal', WithdrawAndMintProposal], ]; class ExtendedRegistry extends Registry { From 1c90f349ba3dafe619d2163e865266f1c9bd285e Mon Sep 17 00:00:00 2001 From: Thibault Jaillard Date: Tue, 4 Oct 2022 11:12:10 +0200 Subject: [PATCH 2/2] Bump version to 0.7.11 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 802ff21..3884550 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lum-network/sdk-javascript", - "version": "0.7.10", + "version": "0.7.11", "license": "Apache-2.0", "description": "Javascript SDK library for NodeJS and Web browsers to interact with the Lum Network.", "homepage": "https://github.com/lum-network/sdk-javascript#readme",