Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/v0.4.1#goumang #449

Merged
merged 3 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 16 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,29 @@ Version header format: `[version] Name - year-month-day (entropy-core compatibil

## [UNRELEASED]

### Added

### Fixed

### Changed

### Broke

### Dev

### Meta
Comment on lines 13 to +25
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
## [UNRELEASED]
### Added
### Fixed
### Changed
### Broke
### Dev
### Meta


## [0.4.1] Goumang - 2025-01-09 (entropy-core compatibility: 0.3.0)
### Added
- utility method to return substrate api instance to interact with without needing to instantiate entropy instance (#435)[https://github.com/entropyxyz/sdk/pull/435]
- verifying method for signatures `keccak` and `blake2_256` hashed signatures
- verifying method for signatures `keccak` and `blake2_256` hashed signatures [#445](https://github.com/entropyxyz/sdk/pull/445)
### Fixed

### Changed

### Broke
- sign and sign with adapters no longer returns just the signature. It now returns a object `SignatureData` that contains the signature and information pronating to it see the `SignatureData` interface in (./src/signing/index.ts)(./src/signing/index.ts)
- `entropy.sign` and `entropy.signWithAdaptersInOrder` function argument interface key renamed `sigRequestHash` -> `hexMessage`
- sign and sign with adapters no longer returns just the signature. It now returns a object `SignatureData` that contains the signature and information pronating to it see the `SignatureData` interface in (./src/signing/index.ts)(./src/signing/index.ts) [#445](https://github.com/entropyxyz/sdk/pull/445)
- `entropy.sign` and `entropy.signWithAdaptersInOrder` function argument interface key renamed `sigRequestHash` -> `hexMessage` [#445](https://github.com/entropyxyz/sdk/pull/445)
### Dev

### Meta
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@entropyxyz/sdk",
"version": "0.4.1-2",
"version": "0.4.1",
"license": "AGPL-3.0-only",
"description": "JS SDK for entropy blockchain ",
"type": "module",
Expand Down
Loading