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

V0.1.2 amun #266

Merged
merged 3 commits into from
Dec 12, 2023
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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[0.1.2] - Amun - 2023-12-12 (entropy-core compatibility: 0.0.9)
Added
- now supports separate keys for registering and program management (#252)
- add entropy class type (#259)

Changed

- register now returns the registration record from storage (#264)

Fixed
- entropy now validates proofs from tss nodes before returning signature. Will error if no valid proof is given (#230)
- Eth adapter (#260)
- getWallet no longer returns a nested signer (#263)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@entropyxyz/entropy-js",
"version": "0.1.1",
"version": "0.1.2",
"description": "JS SDK for entropy blockchain ",
"main": "dist/index.cjs",
"type": "module",
Expand Down
8 changes: 4 additions & 4 deletions tests/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:
# commit in the `entropy-core` repository. Refer to the wiki page at
# https://github.com/entropyxyz/meta/wiki/Git#conventions for details
# about how Git tags, branches, and commits refer to image tags here.
image: entropyxyz/server:test-luis-release-luis-entropyjs-core111823
image: entropyxyz/server:release-v0.0.9
ports:
- "127.0.0.1:3001:3001/tcp"
command:
Expand All @@ -31,7 +31,7 @@ services:

# In a local devnet setup, for now, this is "Alice's chain."
alice-chain-node:
image: entropyxyz/entropy:test-luis-release-luis-entropyjs-core111823
image: entropyxyz/entropy:release-v0.0.9
ports:
- "127.0.0.1:9944:9944/tcp" # "RPC Port."
command:
Expand All @@ -51,7 +51,7 @@ services:

# "Bob's TSS server."
bob-tss-server:
image: entropyxyz/server:test-luis-release-luis-entropyjs-core111823
image: entropyxyz/server:release-v0.0.9
ports:
- "127.0.0.1:3002:3002/tcp"
command:
Expand All @@ -63,7 +63,7 @@ services:

# "Bob's chain node."
bob-chain-node:
image: entropyxyz/entropy:test-luis-release-luis-entropyjs-core111823
image: entropyxyz/entropy:release-v0.0.9
ports:
- "127.0.0.1:9945:9944/tcp"
command:
Expand Down
Loading