Skip to content

Commit

Permalink
chore: release 6.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
manu0466 committed Mar 4, 2024
1 parent 34b7b31 commit 8813629
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 13 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## Version 6.0.5
### Bug fixes
- Fix `BasicAllowance` amino serialization.
- Fix `AllowedMsgAllowance` amino serialization.
- Fix `PeriodAllowance` amino serialization.
- Fix `Timestamp` amino serialization.

## Version 6.0.4
### New features
- Add `generate` method to `PrivateKeySigner` to generate a signer with a random private key.
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@desmoslabs/desmjs",
"version": "6.0.4",
"version": "6.0.5",
"description": "Core of the desmos DApp SDK",
"contributors": [
"Manuel Turetta <manuel@forbole.com>",
Expand Down
13 changes: 7 additions & 6 deletions packages/core/src/utils/testutils/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { sortedJsonStringify } from "@cosmjs/amino/build/signdoc";
import { AminoConverters } from "@cosmjs/stargate";
import { TxRaw } from "cosmjs-types/cosmos/tx/v1beta1/tx";
import { AminoTypes } from "../../aminotypes";
import {
assertTxSuccess,
Expand Down Expand Up @@ -89,10 +90,10 @@ export function runBroadcastTest(test: BroadcastTest) {
value: test.message,
},
]);
const directResult = await directClient.broadcastTxBlock(
directSignResult.txRaw,
const directResult = await directClient.broadcastTx(
TxRaw.encode(directSignResult.txRaw).finish(),
);
assertTxSuccess(directResult);
expect(directResult.code).toBe(0);
});

// Sign and broadcast the transaction in amino mode.
Expand All @@ -104,9 +105,9 @@ export function runBroadcastTest(test: BroadcastTest) {
value: test.message,
},
]);
const aminoResult = await aminoClient.broadcastTxBlock(
aminoSignResult.txRaw,
const aminoResult = await aminoClient.broadcastTx(
TxRaw.encode(aminoSignResult.txRaw).finish(),
);
assertTxSuccess(aminoResult);
expect(aminoResult.code).toBe(0);
});
}
2 changes: 1 addition & 1 deletion packages/keplr/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@desmoslabs/desmjs-keplr",
"version": "6.0.4",
"version": "6.0.5",
"description": "Keplr integration for DesmJS",
"contributors": [
"Luca Graziotti <luca.g@protonmail.ch>"
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@desmoslabs/desmjs-types",
"version": "6.0.4",
"version": "6.0.5",
"description": "JS and TS types relating to Protocol Buffers used by Desmos",
"contributors": [
"Manuel Turetta <manuel@forbole.com>",
Expand Down
2 changes: 1 addition & 1 deletion packages/walletconnect-modal/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@desmoslabs/desmjs-walletconnect-modal",
"version": "6.0.4",
"version": "6.0.5",
"description": "QR code modal that can be used to display the WalletConnect QR code",
"contributors": [
"Manuel Turetta <manuel@desmos.network>"
Expand Down
2 changes: 1 addition & 1 deletion packages/walletconnect-v2/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@desmoslabs/desmjs-walletconnect-v2",
"version": "6.0.4",
"version": "6.0.5",
"description": "WalletConnect v2 integration for DesmJS",
"contributors": [
"Manuel Turetta <manuel@forbole.com>"
Expand Down
2 changes: 1 addition & 1 deletion packages/web3auth-mobile/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@desmoslabs/desmjs-web3auth-mobile",
"version": "6.0.4",
"version": "6.0.5",
"description": "Web3Auth integration for DesmJS",
"contributors": [
"Manuel Turetta <manuel@forbole.com>"
Expand Down
2 changes: 1 addition & 1 deletion packages/web3auth-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@desmoslabs/desmjs-web3auth-web",
"version": "6.0.4",
"version": "6.0.5",
"description": "Web3Auth integration for DesmJS",
"contributors": [
"Manuel Turetta <manuel@forbole.com>"
Expand Down

0 comments on commit 8813629

Please sign in to comment.