diff --git a/CHANGELOG.md b/CHANGELOG.md index ceaa2f4..da0e37e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ Technical changelog for PalladiumWallet. Format loosely follows by subsystem rather than strictly by date, since `0.9.0` is the first release and covers the full history from the initial commit. +## [1.0.1] — 2026-07-17 + +### Chores + +- `ChainProfiles.Mainnet.Checkpoints`: added a new anchor at height 475191 + (20 blocks behind the synced node's tip at the time of pulling, for reorg + margin), sourced the same way as the existing set (`getblockhash` / + `getblockheader` via RPC against a fully-synced `palladiumd`). Extends how + far forward `WalletSynchronizer`'s header-chain trust reaches; no code or + behavior change. + ## [1.0.0] — 2026-07-09 First stable release. Closes the last open security gap from 0.9.x (header diff --git a/src/App.Android/PalladiumWallet.App.Android.csproj b/src/App.Android/PalladiumWallet.App.Android.csproj index 72c1c90..16af0be 100644 --- a/src/App.Android/PalladiumWallet.App.Android.csproj +++ b/src/App.Android/PalladiumWallet.App.Android.csproj @@ -8,8 +8,8 @@ enable io.github.davide3011.palladiumwallet - 3 - 1.0.0 + 4 + 1.0.1 apk - 1.0.0 + 1.0.1 enable true diff --git a/src/Core/Chain/ChainProfiles.cs b/src/Core/Chain/ChainProfiles.cs index dcfceb7..a2a2d3a 100644 --- a/src/Core/Chain/ChainProfiles.cs +++ b/src/Core/Chain/ChainProfiles.cs @@ -78,6 +78,7 @@ public static class ChainProfiles new Checkpoint(440000, "00000000000001b09d7da81403a9b383a734305a8783cb3a0dbe009edea26a95", 0x1a0216c4), new Checkpoint(460000, "00000000000000ecc7413f638bfe7be80a36bacab858ce9a814f194d9df526d5", 0x1a07dd8f), new Checkpoint(468800, "000000000000052c61652eed72b441d8c1f1926710a8d691d101be4961dba105", 0x1a1838ee), + new Checkpoint(475191, "0000000000000d585885c40351e20295157a44ef5dd35b36eeab50227f118805", 0x1a1c4ada), ], };