Skip to content
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
38 changes: 23 additions & 15 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,34 @@
## v4.0.0 : Revamp Docs, Hydra features
This release includes all changes from `v4.0.0-rc1` and the following updates:
## v4.0.1 : Devnet Tooling and Hydra Docs
This release includes all changes after `v4.0.0`.

### Fixes
- Refactors and fixes decommit API endpints
- Prevent insufficient input errors in Hydra by starting tx fee at 0 for already balanced transactions.

### Devnet tooling
- Added a local devnet reset script and setup helpers for Hydra clusters.
- Added Cardano node configs and genesis files for the devnet cluster.
- Improved credential generation and UTxO seeding scripts.

## v4.0.0 : Docs Revamp and Hydra Polish
This release includes all changes from `v4.0.0-rc1` and the following updates.

### Changes
- Revamp docs section
- Update docs for decommit
- Add yarn doc:validate command
- Add common kuber functions
- Add tx-builder reference to buildTx reference
- Fix kube-hydra link in Readme
- Improve getting started section
- Fix kuber-client link in docs
- Fix navigation in docs
- Update Readme, Refactor docs
### Highlights
- Reorganized and refreshed the docs, especially the Hydra and tx builder references.
- Added common Kuber functions to the Hydra JS client docs.

### Fixes
- Refactored and fixed decommit API endpoints in `kuber-hydra`.

### Docs and tooling
- Added `yarn doc:validate`.
- Improved getting started content and navigation.
- Fixed broken links for `kuber-hydra` and `kuber-client`.
- Updated the README and cleaned up docs organization.

##### Libraries
- cardano-api:10.1
- [kuber-client:v3.3.5](https://www.npmjs.com/package/kuber-client/v/3.3.5)


##### Tested with
- hydra-node:0.22.4-d505ff119c4bc62f008b6fcff3416cffc3d6df5b

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,13 @@ async function runCip30CommitExample() {
// Load node address and test wallet signing key
const node_addr_path = process.env.HOME + "/.cardano/preview/hydra-0/credentials/node.addr";
const nodeAddr = readFileSync(node_addr_path).toString("utf-8").trim();
const testWalletSigningKey = await Ed25519Key.fromCardanoCliJson(
JSON.parse(readFileSync(process.env.HOME + "/.cardano/preview/hydra-0/credentials/funds.sk", "utf-8")),
);

// Setup libcardano crypto and Shelley wallet
await loadCrypto();

const testWalletSigningKey = await Ed25519Key.fromCardanoCliJson(
JSON.parse(readFileSync(process.env.HOME + "/.cardano/preview/hydra-0/credentials/funds.sk", "utf-8")),
);
const shelleyWallet = new ShelleyWallet(testWalletSigningKey);
console.log("Wallet", shelleyWallet.toJSON());

Expand Down
Loading