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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- changed: Convert the build tooling from Yarn to npm.
- changed: Replace git dependencies with @edge.app-scoped npm packages (ecpair, groestl-hash-js, bs58grscheck).
- security: Upgrade dependencies per Socket security recommendations.
- fixed: Replace defunct PIVX explorer (zkbitcoin.com) with explorer.duddino.com and remove zkbitcoin.com from the PIVX blockbook server list

## 3.9.0 (2026-03-10)

Expand Down
8 changes: 4 additions & 4 deletions src/common/utxobased/info/pivx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ const currencyInfo: EdgeCurrencyInfo = {
walletType: 'wallet:pivx',

// Explorers:
addressExplorer: 'https://zkbitcoin.com/address/%s',
blockExplorer: 'https://zkbitcoin.com/block/%s',
transactionExplorer: 'https://zkbitcoin.com/tx/%s',
addressExplorer: 'https://explorer.duddino.com/address/%s',
blockExplorer: 'https://explorer.duddino.com/block/%s',
transactionExplorer: 'https://explorer.duddino.com/tx/%s',

denominations: [
{
Expand All @@ -34,7 +34,7 @@ const currencyInfo: EdgeCurrencyInfo = {
...legacyMemoInfo,
defaultSettings: {
customFeeSettings: ['satPerByte'],
blockbookServers: ['wss://pivx-eusa1.edge.app', 'wss://zkbitcoin.com'],
blockbookServers: ['wss://pivx-eusa1.edge.app'],
enableCustomServers: false
},
displayName: 'PIVX',
Expand Down
Loading