Skip to content
Open
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
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,11 @@ Ref: https://keepachangelog.com/en/1.0.0/

## [Unreleased Provenance]

### Improvments

### Improvements
* (x/auth/tx) [#617](https://github.com/provenance-io/cosmos-sdk/pull/617) Provenance: For WebAuthn signatures, the public key can be derived in from signature itself,
and has no correlation to the address itself(as can be the case in normal cosmos signatures flows),
the signature is compared against the pubkey registered while webauthn key registration, Additionally this doesn't really seem to be used anywhere else and does not affect normal cosmos verification flows.
* [618](https://github.com/provenance-io/cosmos-sdk/pull/618) Provenance: Remove the fee handler (now using the post handler).

---

## [v0.50.14-pio-1](https://github.com/provenance-io/cosmos-sdk/releases/tag/v0.50.14-pio-1) - 2025-07-09
Expand Down
13 changes: 9 additions & 4 deletions x/auth/tx/adapter.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,15 @@ func (w *wrapper) GetSigningTxData() txsigning.TxData {
modeInfo := &txv1beta1.ModeInfo{}
adaptModeInfo(signerInfo.ModeInfo, modeInfo)
txSignerInfo := &txv1beta1.SignerInfo{
PublicKey: &anypb.Any{
TypeUrl: signerInfo.PublicKey.TypeUrl,
Value: signerInfo.PublicKey.Value,
},
PublicKey: func() *anypb.Any {
if signerInfo.PublicKey == nil {
return nil
}
return &anypb.Any{
TypeUrl: signerInfo.PublicKey.TypeUrl,
Value: signerInfo.PublicKey.Value,
}
}(),
Sequence: signerInfo.Sequence,
ModeInfo: modeInfo,
}
Expand Down