UltraNote Infinity is a free open source privacy-protected peer-to-peer digital cash system that is completely decentralized, without the need for a central server or trusted parties. Users hold the crypto keys to their own money and transact directly with each other, with the help of a P2P network to check for double-spending.
UltraNote Infinity features a decentralized blockchain banking core, instant untraceable crypto messages that can be decrypted with recipient's private key, an encrypted IPFS file system to transfer files up to 100MB, integrated TOR VPN and Browser with DuckDuckGo search engine, and an invoice system.
- End-to-end encrypted transactions
- Untraceable crypto messages
- Private key encryption for message decryption
- Integrated TOR VPN support
- Decentralized P2P network architecture
- Multi-currency wallet support (XUNI)
- Deposit and withdrawal functionality
- Transaction history with blockchain verification
- Secure payment processing
- JSON RPC API for integration
- Encrypted IPFS file transfers up to 100MB
- Secure file sharing capabilities
- Decentralized file storage
- Peer-to-peer decentralized network
- Double-spending protection
- Blockchain consensus mechanism
- Seed node infrastructure
- Language: C++11/14/17
- Build System: CMake
- Dependencies: Boost, Readline, RocksDB
- Cryptography: CryptoNote-based encryption
- Networking: Custom P2P protocol
src/
├── BlockchainExplorer/ # Blockchain explorer functionality
├── Common/ # Common utilities and helpers
├── CryptoNoteCore/ # Core blockchain logic
├── CryptoNoteProtocol/ # Network protocol implementation
├── Daemon/ # Main daemon executable
├── HTTP/ # HTTP server components
├── InProcessNode/ # In-process node implementation
├── JsonRpcServer/ # JSON RPC server
├── Logging/ # Logging system
├── Miner/ # Mining functionality
├── Mnemonics/ # Mnemonic seed generation
├── NodeRpcProxy/ # Node RPC proxy
├── P2p/ # Peer-to-peer networking
├── PaymentGate/ # Payment gateway services
├── PaymentGateService/ # Payment gateway service
├── Platform/ # Platform-specific code
├── Rpc/ # RPC functionality
├── Serialization/ # Data serialization
├── System/ # System utilities
├── Transfers/ # Transfer management
├── UltraNoteWallet/ # Wallet implementation
└── WalletLegacy/ # Legacy wallet support
- GCC 4.7.3 or later, or Clang 3.3 or later
- CMake 2.8.6 or later
- Boost 1.55 or later
- GNU Readline (optional)
- RocksDB (for Apple systems)
sudo apt-get install build-essential git cmake libboost-all-dev libreadline-dev
git clone https://github.com/xun-project/ultranotei-core.git
cd ultranotei-core
mkdir build
cd build
cmake ..
makeThe resulting executables can be found in build/release/src.
- Install Visual Studio 2022 Community Edition
- Install Desktop development with C++
- Install Boost 1.72.0
cd ultranotei-core
mkdir build
cd build
cmake -G "Visual Studio 17 2022" .. -DBOOST_ROOT=C:/local/boost_1_72_0
cmake --build . --config Releasebrew install git cmake boost rocksdb readline
brew link --force readline
git clone https://github.com/xun-project/ultranotei-core.git
cd ultranotei-core
mkdir build
cd build
cmake ..
make- Parallel build:
make -j<number of threads> - Debug build:
make build-debug - Test suite:
make test-releaseormake test-debug - Disable readline:
cmake .. -DFORCE_READLINE=FALSE
UltraNote Infinity provides two main daemon services:
The main blockchain node daemon that maintains the network and processes transactions.
Multi-user wallet service for exchanges and online services with JSON RPC API.
Single wallet implementation with JSON RPC capabilities.
The system provides JSON RPC APIs for integration:
- Node API: Port 43000 (default)
- Wallet API: Port 8070 (walletd) or 8078 (ultranoteiwallet)
Key RPC methods include:
getStatus()- Get node statusgetBalance()- Get wallet balancecreateAddress()- Create new wallet addresssendTransaction()- Send fundsgetTransactions()- Retrieve transaction history
Edit /etc/XUNI/node.conf for node daemon settings.
Edit /etc/XUNI/paymentgate.conf for wallet daemon settings.
Use the provided service files in Doc/ directory for production deployment:
ultranoteid.service- Node daemon servicewalletd.service- Wallet daemon service
- About UltraNote Infinity - Project overview
- Integration Guide - API integration documentation
- Payment Gateway - Wallet daemon configuration
- Systemd Setup - Production deployment guide
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
For support and questions:
- Check the documentation files in
Doc/directory - Review existing issues on GitHub
- Contact the development team
This project is licensed under the MIT License - see the LICENSE file for details.
- Current Version: 2.4 (from blockchain checkpoints)
- Block Height: 1,341,997+ (as of latest checkpoint)
- Currency Symbol: XUNI
- Max Supply: 21,000,000 XUNI
- Block Time: 2 minutes
- Ports: P2P: 42001, RPC: 43000
See CHANGELOG.md for version history and changes.