diff --git a/CHANGELOG.md b/CHANGELOG.md index f599b5de5..06cf353fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,11 +13,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Removed --> -## Unreleased +## [2.15.5] - 2024-04-18 ### Fixed -- invalid seed usage in the HDKey ([#377](https://github.com/casper-ecosystem/casper-js-sdk/pull/377)) +- invalid seed usage in the HDKey ([#410](https://github.com/casper-ecosystem/casper-js-sdk/issues/410)) ## [2.15.4] - 2024-02-12 diff --git a/package.json b/package.json index cc040abb5..3a553f233 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "casper-js-sdk", - "version": "2.15.4", + "version": "2.15.5", "license": "Apache 2.0", "description": "SDK to interact with the Casper blockchain", "homepage": "https://github.com/casper-ecosystem/casper-js-sdk#README.md", diff --git a/src/lib/CasperHDKeys/CasperHDKey.ts b/src/lib/CasperHDKeys/CasperHDKey.ts index b8f3db51e..50629438e 100644 --- a/src/lib/CasperHDKeys/CasperHDKey.ts +++ b/src/lib/CasperHDKeys/CasperHDKey.ts @@ -9,7 +9,6 @@ export abstract class CasperHDKey { // Registered at https://github.com/satoshilabs/slips/blob/master/slip-0044.md static readonly bip44Index = 506; - // TODO: Check if seed can be public constructor( public seed: Uint8Array, public signatureAlgorithm: SignatureAlgorithm