From fdd110041da44b9aca3456d0ec80fe83951f205e Mon Sep 17 00:00:00 2001 From: Spoorthi Satheesha <9302666+spoo-bar@users.noreply.github.com> Date: Mon, 12 Jun 2023 17:06:23 +0100 Subject: [PATCH] v2.3.0 release --- CHANGELOG.md | 9 +-------- package.json | 3 +-- src/views/InitializeViewProvider.ts | 1 + 3 files changed, 3 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed4ed91..2b900ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,7 +18,7 @@ All notable changes to the Cosmy Wasmy extension will be documented in this file ### Security --> -## [Unreleased] +## [v2.3.0] - 12 June 2023 ### Added @@ -30,17 +30,10 @@ All notable changes to the Cosmy Wasmy extension will be documented in this file - Updated Archway constantine-2 to constantine-3 configuration in preset chain config - Using custom Coin parse as the cosmjs default coin parse does not handle higher decimal coins, which breaks archway support which uses 18 decimal precision -### Deprecated - -### Removed - ### Fixed - Fixed issue where contract migration would only allow to migrating to the same Code ID. Thanks to [Barry](https://github.com/zjg555543) from [OKX](https://github.com/okx) for the fix. -### Security - - ## [v2.2.2] - 25 April 2023 diff --git a/package.json b/package.json index 9792921..fe2dd88 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "cosmy-wasmy", "displayName": "Cosmy Wasmy", "description": "wibbly wobbly cosmy wasmy tool to interact with cosmwasm smart contracts", - "version": "2.2.2", + "version": "2.3.0", "preview": false, "publisher": "Spoorthi", "icon": "media/icon.png", @@ -392,7 +392,6 @@ "rpcEndpoint": "https://rpc.constantine.archway.tech/", "defaultGasPrice": "1500000000000", "chainDenom": "aconst", - "chainDenomDecimals": "18", "accountExplorerLink": "https://testnet.mintscan.io/archway-testnet/account/${accountAddress}", "txExplorerLink": "https://testnet.mintscan.io/archway-testnet/txs/${txHash}" }, diff --git a/src/views/InitializeViewProvider.ts b/src/views/InitializeViewProvider.ts index 6e6ddb8..e5cab84 100644 --- a/src/views/InitializeViewProvider.ts +++ b/src/views/InitializeViewProvider.ts @@ -5,6 +5,7 @@ import { Account } from '../models/account'; import { ResponseHandler } from '../helpers/responseHandler'; import { Cosmwasm } from '../helpers/cosmwasm/api'; import { Utils } from './utils'; +import { Coin } from '@cosmjs/amino'; export class InitializeViewProvider implements vscode.WebviewViewProvider {