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
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:

- name: Install mdbook preprocessors
run: |
cargo install mdbook-linkcheck mdbook-mermaid mdbook-admonish
cargo install mdbook-linkcheck@0.7.7 mdbook-mermaid@0.15.0 mdbook-admonish@1.19.0

- run: mdbook build

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
mdbook-version: '0.4.48'

- run: |
cargo install mdbook-mermaid mdbook-admonish
cargo install mdbook-mermaid@0.15.0 mdbook-admonish@1.19.0
mdbook build

- name: Deploy
Expand Down
2 changes: 1 addition & 1 deletion RELEASE_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.15.6
0.15.7
2 changes: 1 addition & 1 deletion linera-protocol
Submodule linera-protocol updated 189 files
8 changes: 4 additions & 4 deletions src/developers/frontend/wallets.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

The Linera client library allows you to sign transactions with anything that
satisfies
[the `Signer` interface](https://github.com/linera-io/linera-protocol/blob/testnet_conway/linera-web/docs/interfaces/Signer.md).
[the `Signer` interface](https://github.com/linera-io/linera-protocol/tree/testnet_conway/web/%40linera/client/docs/interfaces).
This means you can integrate with external software wallets, hardware wallets,
Internet-connected wallet services… the only limit is your imagination!

To get started building your own signer implementation, have a look at
[our sample in-memory implementation](https://github.com/linera-io/linera-protocol/blob/testnet_conway/linera-web/signer/src/private-key.ts).
[our sample in-memory implementation](https://github.com/linera-io/linera-protocol/blob/testnet_conway/web/%40linera/client/src/signer/PrivateKey.ts).
Alternatively, you can use a pre-built wallet integration provided by Linera or
our partners.

Expand All @@ -19,8 +19,8 @@ too.

We provide an implementation using MetaMask's blind-signing capabilities to sign
Linera transactions in the
[`@linera/signer`](https://www.npmjs.com/package/@linera/signer) package on npm.
Our counter demo also sports a
[`@linera/metamask`](https://www.npmjs.com/package/@linera/metamask) package on
npm. Our counter demo also sports a
[MetaMask-based frontend](https://github.com/linera-io/linera-protocol/tree/testnet_conway/examples/counter/metamask)
that exemplifies signing application transactions with MetaMask.

Expand Down