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
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Display payment addresses instead of extended full
viewing keys on the hardware wallet to save screen space.
([\#4436](https://github.com/anoma/namada/pull/4436))
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ env:
AWS_REGION: us-west-2
NIGHTLY: nightly-2025-03-27
NAMADA_MASP_PARAMS_DIR: /masp/.masp-params
LEDGER_APP_VERSION: "3.0.4"
LEDGER_APP_VERSION: "3.0.7"
ROLE: arn:aws:iam::375643557360:role/github-runners-ci-shared
SCCACHE_ERROR_LOG: /tmp/sccache_log.txt

Expand Down
11 changes: 6 additions & 5 deletions crates/sdk/src/signing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ use namada_core::arith::checked;
use namada_core::collections::{HashMap, HashSet};
use namada_core::ibc::primitives::IntoHostTime;
use namada_core::key::*;
use namada_core::masp::{
AssetData, ExtendedViewingKey, MaspTxId, PaymentAddress,
};
use namada_core::masp::{AssetData, MaspTxId, PaymentAddress};
use namada_core::tendermint::Time as TmTime;
use namada_core::time::DateTimeUtc;
use namada_core::token::{Amount, DenominatedAmount};
Expand Down Expand Up @@ -837,8 +835,11 @@ async fn make_ledger_token_transfer_endpoints(
}
if let Some(builder) = builder {
for sapling_input in builder.builder.sapling_inputs() {
let vk = ExtendedViewingKey::from(*sapling_input.key());
output.push(format!("Sender : {}", vk));
let pa = sapling_input.address().ok_or_else(|| {
Error::Other("unable to load vp code".to_string())
})?;
let pa = PaymentAddress::from(pa);
output.push(format!("Sender : {}", pa));
make_ledger_amount_asset(
tokens,
output,
Expand Down
Loading