Fork of btcpayserver-monero-plugin, fully adapted for Zano's RPC API. Key changes from the Monero plugin: - Integrated addresses with payment_id (replaces Monero subaddresses) - Payment detection via get_bulk_payments polling every 15s (Zano has no block-notify/tx-notify callbacks) - Daemon RPC: getinfo with flags (replaces Monero's get_info) - Wallet RPC: get_wallet_info for height (replaces getheight) - Fixed 0.01 ZANO network fee (no dynamic fee estimation) - Rate source: CoinGecko (ZANO_BTC) - Simplified store UI: no account management, no RPC wallet creation Removed Monero-specific features: - Subaddress/account system (CreateAddress, GetAccounts, etc.) - Block/tx notification callback controller - View-only wallet creation via RPC (generate_from_keys) - HTTP Basic auth on RPC client - Dynamic fee estimation Added: - Zano RPC models (MakeIntegratedAddress, GetBulkPayments, GetWalletInfo) - Payment deduplication (Zano returns confirmed + mempool entries) - Docker image: pavelravaga/zano:2.2.0.455 - Dockerfiles for source build and pre-built binary variants Verified: - All RPC calls tested against live Zano testnet - Full E2E test: BTCPay Server checkout page with integrated address, QR code, and zano: URI payment link - 23 unit tests pass
17 lines
562 B
JSON
17 lines
562 B
JSON
{
|
|
"Identifier": "BTCPayServer.Plugins.Zano",
|
|
"Name": "Zano",
|
|
"Version": "1.0.0",
|
|
"Description": "Accept Zano (ZANO) payments in BTCPay Server. Privacy-focused cryptocurrency with confidential transactions.",
|
|
"SystemPlugin": false,
|
|
"Dependencies": [
|
|
{
|
|
"Identifier": "BTCPayServer",
|
|
"Condition": ">=2.1.0"
|
|
}
|
|
],
|
|
"Documentation": "https://github.com/hyle-team/btcpayserver-zano-plugin",
|
|
"Source": "https://github.com/hyle-team/btcpayserver-zano-plugin",
|
|
"Author": "Hyle Team",
|
|
"AuthorLink": "https://github.com/hyle-team"
|
|
}
|