Releases: penumbra-zone/penumbra
v0.81.3
The v0.81.3
includes all changes in the 0.81.x
series, including both the DEX hotfix from v0.81.2, and the pindexer
fixes and ViewServer improvements from v0.81.1.
All node operators can update to v0.81.3
with full compatibility. For node operators running pindexer
to manage event databases, a schema change will require a drop and reindex.
pcli 0.81.3
Install pcli 0.81.3
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.81.3/pcli-installer.sh | sh
Download pcli 0.81.3
File | Platform | Checksum |
---|---|---|
pcli-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pcli-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pcli-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pclientd 0.81.3
Install pclientd 0.81.3
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.81.3/pclientd-installer.sh | sh
Download pclientd 0.81.3
File | Platform | Checksum |
---|---|---|
pclientd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pclientd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pclientd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pd 0.81.3
Install pd 0.81.3
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.81.3/pd-installer.sh | sh
Download pd 0.81.3
File | Platform | Checksum |
---|---|---|
pd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
v0.81.2
The v0.81.2
release contains a hotfix to the DEX logic, resolving a bug that caused a chain halt 2025-01-18 at block 3093519 on the penumbra-1
chain.
What happened (short version)
A transaction was submitted that contained both PositionClose
and PositionWithdraw
actions for the same position P
, which had been auto-closed by the DEX. In DeliverTx
, the PositionClose
action queued the position for closure by ID, and the PositionWithdraw
action checked that the position state was closed and then updated it to Withdrawn. Later, in EndBlock
, the queued position closure was executed. The position state was not Opened or Closed, triggering an assertion.
Why it happened
- Mempool tx checking does not execute end block so this didn't get filtered out
- The position closure method allows the position closure to be a no-op, but only for positions in the closed state
- Because the position was withdrawn, the state was unexpected
All nodes and validators should update to v0.81.2
immediately, by stopping their services, installing the new version, and then restarting services.
Note to pindexer
operators ONLY: The v0.81.2
changeset was prepared against the v0.81.0
tag, to minimize the delta and expedite review. The changes that shipped as part of v0.81.1
are not present. This is only relevant for node operators running pindexer
to maintain an event database. Expect a follow-up release v0.81.3 that will reconcile both changesets. This does not affect pd
.
pcli 0.81.2
Install pcli 0.81.2
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.81.2/pcli-installer.sh | sh
Download pcli 0.81.2
File | Platform | Checksum |
---|---|---|
pcli-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pcli-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pcli-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pclientd 0.81.2
Install pclientd 0.81.2
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.81.2/pclientd-installer.sh | sh
Download pclientd 0.81.2
File | Platform | Checksum |
---|---|---|
pclientd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pclientd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pclientd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pd 0.81.2
Install pd 0.81.2
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.81.2/pd-installer.sh | sh
Download pd 0.81.2
File | Platform | Checksum |
---|---|---|
pd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
v0.81.1
The v0.81.1
release ships a few improvements, unblocking ongoing development on web interfaces. These include changes to pindexer
and the ViewServer
APIs. Node operators running an indexing setup should drop their pindexer database and re-run pindexer.
What's Changed
- typo-Update join.rs by @romashka-btc in #4972
- fix: typos in documentation files by @vtjl10 in #4971
- test(pcli): sync wallet against testnet by @conorsch in #4979
- Pindexer metrics fix by @cronokirby in #4981
- Fix grammar errors by @Marcofann in #4977
- fix(pindexer): support big amounts by @conorsch in #4982
- test: add integration tests for https functionality to binaries by @conorsch in #4983
- chore: fix 404 status URL by @pinglanlu in #4989
- pindexer: dex_ex: calculate USDC volume continuously by @cronokirby in #4987
- pindexer(dex_ex): index batch swap execution traces by @erwanor in #4990
- protos(view): add a subaccount filter to the
OwnedPositionIds
rpc by @conorsch in #4992
New Contributors
- @romashka-btc made their first contribution in #4972
- @vtjl10 made their first contribution in #4971
- @Marcofann made their first contribution in #4977
- @pinglanlu made their first contribution in #4989
Full Changelog: v0.81.0...v0.81.1
pcli 0.81.1
Install pcli 0.81.1
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.81.1/pcli-installer.sh | sh
Download pcli 0.81.1
File | Platform | Checksum |
---|---|---|
pcli-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pcli-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pcli-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pclientd 0.81.1
Install pclientd 0.81.1
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.81.1/pclientd-installer.sh | sh
Download pclientd 0.81.1
File | Platform | Checksum |
---|---|---|
pclientd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pclientd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pclientd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pd 0.81.1
Install pd 0.81.1
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.81.1/pd-installer.sh | sh
Download pd 0.81.1
File | Platform | Checksum |
---|---|---|
pd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
v0.81.0
Release v0.81.0
includes breaking changes to the Penumbra protocol. In order to apply this change to a running chain, an upgrade proposal must pass to coordinate applying the associated migration. Documentation for performing a chain upgrade can be found here: https://guide.penumbra.zone/node/pd/chain-upgrade
Changes in this release include:
- Implements UIP-4: Spend Backreferences, for faster client syncing
- Implements UIP-5: Outbound PFM, to support IBC transfers across multiple chains
- Implements UIP-8: Transparent Addresses, to restore deposits from Noble
It also includes improvements to IBC gRPC, DEX, and quality-of-life improvements for operators (UIP-6)
See full commit history in the changelog below.
pcli 0.81.0
Install pcli 0.81.0
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.81.0/pcli-installer.sh | sh
Download pcli 0.81.0
File | Platform | Checksum |
---|---|---|
pcli-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pcli-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pcli-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pclientd 0.81.0
Install pclientd 0.81.0
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.81.0/pclientd-installer.sh | sh
Download pclientd 0.81.0
File | Platform | Checksum |
---|---|---|
pclientd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pclientd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pclientd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pd 0.81.0
Install pd 0.81.0
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.81.0/pd-installer.sh | sh
Download pd 0.81.0
File | Platform | Checksum |
---|---|---|
pd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
Full Changelog: v0.80.11...v0.81.0
v0.80.11
The v0.80.11
release adds a new pcli
subcommand for detecting potential state desync, related to the UIP-6 bug introduced in v0.80.9
and patched in v0.80.10
. To use it, operators can run:
pcli query chain detect-desync
Be advised that pcli
will use the gRPC endpoint configured in ~/.local/share/pcli/config.toml
by default. This can be overridden with the --grpc-url
argument, for example to query localhost:
pcli --grpc-url http://127.0.0.1:8080 query chain detect-desync
The tool will emit a message such as:
chain_id: penumbra-1
queried height: 2565089
height response: 2565089
Unaffected. No action item. The full node internal state version tracks the block height.
If the tool reports that the endpoint is affected, then the operator should resync from a known-good snapshot.
pcli 0.80.11
Install pcli 0.80.11
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.80.11/pcli-installer.sh | sh
Download pcli 0.80.11
File | Platform | Checksum |
---|---|---|
pcli-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pcli-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pcli-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pclientd 0.80.11
Install pclientd 0.80.11
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.80.11/pclientd-installer.sh | sh
Download pclientd 0.80.11
File | Platform | Checksum |
---|---|---|
pclientd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pclientd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pclientd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pd 0.80.11
Install pd 0.80.11
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.80.11/pd-installer.sh | sh
Download pd 0.80.11
File | Platform | Checksum |
---|---|---|
pd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
What's Changed
- penumbra(docs): fix typos by @jasmyhigh in #4957
- TransactionView: summary of transaction effects by @TalDerei in #4943
- ci: add cargo-release to deps by @conorsch in #4960
- Fix typos and improve grammar in documentation files by @Dimitrolito in #4961
- chore: update minifront bundled assets by @conorsch in #4965
- pcli: implement
DetectDesync
using ABCI queries by @erwanor in #4967
New Contributors
- @jasmyhigh made their first contribution in #4957
- @Dimitrolito made their first contribution in #4961
Full Changelog: v0.80.10...v0.80.11
v0.80.10
The v0.80.10
release fixes a bug in v0.80.9
related to UIP-6, where service restarts caused the version counters to drift. Node operators should resync their nodes from genesis if their node was running v0.80.9
, in order to ensure their RPCs are properly in sync.
Node operators running pindexer
will need to drop their databases and reindex. See the detailed changelog below.
pcli 0.80.10
Install pcli 0.80.10
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.80.10/pcli-installer.sh | sh
Download pcli 0.80.10
File | Platform | Checksum |
---|---|---|
pcli-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pcli-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pcli-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pclientd 0.80.10
Install pclientd 0.80.10
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.80.10/pclientd-installer.sh | sh
Download pclientd 0.80.10
File | Platform | Checksum |
---|---|---|
pclientd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pclientd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pclientd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pd 0.80.10
Install pd 0.80.10
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.80.10/pd-installer.sh | sh
Download pd 0.80.10
File | Platform | Checksum |
---|---|---|
pd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
v0.80.9
Updated 2024-12-10: version 0.80.9 contains a bug in the UIP-6 implementation. Node operators should use 0.80.10 or newer.
The v0.80.9
adds an improvement to how pd
will operator on future migrations during a chain upgrade, and also continues to improve reindexing workflows.
This release includes implementation of UIP-6: App Version Safeguards. Node operators should update to this point release in order to take advantage of the safeguard: pd
will automatically write the safeguard info to local state on start, thereby ensuring that future migrations will check it before continuing.
Node operators running pindexer
will need to drop their databases and reindex. See the detailed changelog below.
pcli 0.80.9
Install pcli 0.80.9
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.80.9/pcli-installer.sh | sh
Download pcli 0.80.9
File | Platform | Checksum |
---|---|---|
pcli-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pcli-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pcli-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pclientd 0.80.9
Install pclientd 0.80.9
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.80.9/pclientd-installer.sh | sh
Download pclientd 0.80.9
File | Platform | Checksum |
---|---|---|
pclientd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pclientd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pclientd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pd 0.80.9
Install pd 0.80.9
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.80.9/pd-installer.sh | sh
Download pd 0.80.9
File | Platform | Checksum |
---|---|---|
pd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
What's Changed
- pindexer: implement batch processing API by @cronokirby in #4913
- pindexer: flesh out dex-explorer indexer by @cronokirby in #4917
- UIP-6: App Version Safeguard by @cronokirby in #4919
- chore: update f4jumble to 0.1.0 by @conorsch in #4926
- fix: update dependencies in parameter-setup crate by @redshiftzero in #4930
- pindexer: insights: correctly handle Arb and Fees by @cronokirby in #4909
- pindexer: dex-explorer: implement low high in summary by @cronokirby in #4931
- pindexer: insights: correct calculation of total value shielded by @cronokirby in #4932
- ci: fix container build for parameter-setup by @conorsch in #4934
- ci: fix cargo-release version interpolation by @conorsch in #4938
Full Changelog: v0.80.8...v0.80.9
v0.80.8
The v0.80.8
release adds several small features and bug fixes.
pcli
: adds aview liquidity-positions
command, to display user-controlled LPsproto
: adds support for "badges" to asset metadata protobuf definitionspindexer
: fixes a bug in where dex supplies were computed incorrectlypindexer
: removes unused AppViews to simplify external dependencies
Node operators running pindexer
will need to drop their databases and reindex. See the detailed changelog below.
pcli 0.80.8
Install pcli 0.80.8
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.80.8/pcli-installer.sh | sh
Download pcli 0.80.8
File | Platform | Checksum |
---|---|---|
pcli-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pcli-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pcli-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pclientd 0.80.8
Install pclientd 0.80.8
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.80.8/pclientd-installer.sh | sh
Download pclientd 0.80.8
File | Platform | Checksum |
---|---|---|
pclientd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pclientd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pclientd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pd 0.80.8
Install pd 0.80.8
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.80.8/pd-installer.sh | sh
Download pd 0.80.8
File | Platform | Checksum |
---|---|---|
pd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
v0.80.7
The v0.80.7
release adds several features, mostly centered around event indexing workflows.
- new
pmonitor
tool for tracking balances with read-only access via FullViewingKey pindexer
: new db schema for dex candlestick support- build: client crates can now be built without rocksdb
Node operators running pindexer
will need to drop their databases and reindex. See the detailed changelog below.
What's Changed
- Allow building client crates without rocksdb by @cronokirby in #4892
- 4869(ish) dex rich events by @cronokirby in #4893
- feat(pindexer): add dex candlestick support to schema by @cronokirby in #4894
- pmonitor: create client activity monitor by @redshiftzero in #4844
- docs: add testing steps to PR template by @conorsch in #4897
- pindexer: indexing for insights dashboard by @cronokirby in #4898
pcli 0.80.7
Install pcli 0.80.7
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.80.7/pcli-installer.sh | sh
Download pcli 0.80.7
File | Platform | Checksum |
---|---|---|
pcli-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pcli-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pcli-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pclientd 0.80.7
Install pclientd 0.80.7
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.80.7/pclientd-installer.sh | sh
Download pclientd 0.80.7
File | Platform | Checksum |
---|---|---|
pclientd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pclientd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pclientd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pd 0.80.7
Install pd 0.80.7
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.80.7/pd-installer.sh | sh
Download pd 0.80.7
File | Platform | Checksum |
---|---|---|
pd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
Full Changelog: v0.80.6...v0.80.7
v0.80.6
The v0.80.6
release adds several features, mostly centered around event indexing workflows:
- new TotalSupply API for indexing
- ibc transfers now emit events
- friendlier error messages
- foundational work for noble address registration (more to come in subsequent releases)
See the detailed changelog below.
What's Changed
- fix(ibc): use
HostInterface
for all block height reads in ibc server by @noot in #4862 - pcli: disable warning post-mainnet by @hdevalence in #4864
- governance: validate client ID earlier than component/view.rs by @redshiftzero in #4859
- total supply indexer by @avahowell in #4863
- pindexer supply with destruction by @cronokirby in #4866
- feat: Noble forwarding address registration in pcli by @zbuc in #4865
- feat: events for ibc transfers by @cronokirby in #4874
- Transfer events indexing by @cronokirby in #4877
- Fix IBC asset regex in denom metadata by @zbuc in #4872
- proto: add extension trait for easier parsing of domain types by @cronokirby in #4886
- Implement an event for candlestick data by @cronokirby in #4889
- pindexer: add a nicer error when a checkpoint genesis is used by @cronokirby in #4891
Full Changelog: v0.80.5...v0.80.6
pcli 0.80.6
Install pcli 0.80.6
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.80.6/pcli-installer.sh | sh
Download pcli 0.80.6
File | Platform | Checksum |
---|---|---|
pcli-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pcli-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pcli-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pclientd 0.80.6
Install pclientd 0.80.6
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.80.6/pclientd-installer.sh | sh
Download pclientd 0.80.6
File | Platform | Checksum |
---|---|---|
pclientd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pclientd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pclientd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |
pd 0.80.6
Install pd 0.80.6
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/penumbra-zone/penumbra/releases/download/v0.80.6/pd-installer.sh | sh
Download pd 0.80.6
File | Platform | Checksum |
---|---|---|
pd-aarch64-apple-darwin.tar.gz | Apple Silicon macOS | checksum |
pd-x86_64-apple-darwin.tar.gz | Intel macOS | checksum |
pd-x86_64-unknown-linux-gnu.tar.gz | x64 Linux | checksum |