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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to `@railgun-community/ledger-client` are documented here. This
project is pre-1.0 and experimental; expect breaking changes on minor versions.

## 0.3.1 — 2026-07-24

### Changed

- The published package now ships accurate docs for the 0.3.0 surface: the viewing-public-key
(`getViewingPublicKey`, INS 0x10) and RAILGUN-address (`getRailgunAddress`, INS 0x14) accessors,
the CLEAR_SIGN transact builders, and the caller-customizable, chain-scoped EIP-7702 path. No code
changes from 0.3.0.

## 0.3.0 — 2026-07-24

Aligns the client with RAILGUN firmware **1.6.1 (clear-sign-v1)**. Requires that build on
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,21 +48,21 @@ GitHub, pinned to a release tag — see
script runs the build):

```bash
yarn add github:Railgun-Community/ledger-client#v0.3.0
yarn add github:Railgun-Community/ledger-client#v0.3.1
```

or in `package.json`:

```jsonc
"dependencies": {
"@railgun-community/ledger-client": "github:Railgun-Community/ledger-client#v0.3.0"
"@railgun-community/ledger-client": "github:Railgun-Community/ledger-client#v0.3.1"
}
```

**From a release tarball** — a pre-built package, no build on install:

```bash
yarn add https://github.com/Railgun-Community/ledger-client/releases/download/v0.3.0/railgun-community-ledger-client-0.3.0.tgz
yarn add https://github.com/Railgun-Community/ledger-client/releases/download/v0.3.1/railgun-community-ledger-client-0.3.1.tgz
```

## Architecture
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Not on npm yet — install from GitHub, pinned to a tag (see the root README for
version):

```bash
yarn add github:Railgun-Community/ledger-client#v0.3.0
yarn add github:Railgun-Community/ledger-client#v0.3.1
```

Peer deps for browser signing: `@ledgerhq/hw-transport`, `@ledgerhq/hw-transport-webhid`,
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": "@railgun-community/ledger-client",
"version": "0.3.0",
"version": "0.3.1",
"description": "RAILGUN hardware wallet connector — Ledger-first, state-machine-driven TSX component",
"type": "module",
"main": "dist/index.js",
Expand Down
Loading