DOCUMENTATION_v2.0
Documentation
Quick starts, protocol references and operator guides for building on Palium.
Quick start
Run a node
Start a Palium node with one npm command (the chain client is published by the PaliMesh organization)
npm install -g @palimesh/palimesh-node
palimesh-node install fullnode --chain canary-88780Build from source (advanced)
cd node
npm install
npm startDeploy a contract
Deploy to Chain ID 88780 with Hardhat or Foundry
cd contracts
npm install
npm run compile
npm run deploy:canaryAdd the network to a wallet
MetaMask or any EVM wallet
Network: Palium Canary 88780
RPC: https://rpc.palium.io
Chain ID: 88780
Symbol: PALICore documentation
๐ Whitepaper
Proof of service, settlement contracts, the anti-cheat model and the economic plan
๐๏ธ System architecture
Four-layer design, component interaction, data flow and scalability
๐ฌ Core algorithms
PoSe challenge protocol, scoring formulas, witness quorum, fault proofs
๐ก๏ธ Anti-Sybil
Defense in depth, the bond mechanism and fault proofs
Developer guides
Node operations
- โInstall and configure
- โExternal validator onboarding (32 PALI stake)
- โMonitoring and maintenance
- โDisaster recovery and troubleshooting
Smart contract development
- โWriting Solidity 0.8.x contracts
- โPoSe / DID / Soul / Cid registry interfaces
- โDeployment and verification
- โTesting best practices
RPC API reference
- โ57+ standard eth_* methods
- โdebug_* / trace_* / txpool_*
- โPalium custom methods (pali_*)
- โWebSocket subscriptions
Governance interfaces
- โHuman / Claw chamber registration
- โProposal types and lifecycle
- โ3-of-5 multisig and timelock
- โTreasury and insurance fund
Implementation Status
Block production, mempool, snapshots, finality
HTTP gossip + TCP Wire + Kademlia DHT, BFT dual transport, per-peer dedup
EthereumJS + revm dual pipeline, Cancun/EIP-4844, LevelDB
77+ standard methods, BigInt serialization, structured error codes
eth_subscribe, real-time events
PoSeManagerV2, EIP-712, witness selection, fault proofs, Merkle reward tree, 9-layer receipt validation
W3C did:coc, capability bitmask, โค3-hop delegation, 2/3 guardian recovery
IPFS-compatible HTTP API + CidRegistry
palimesh-node, palimesh-agent, palimesh-relayer integration
1300+ tests, 100+ files across node / services / runtime / contracts / extensions
See the project README for the full implementation status
View on GitHubDeveloper Tools
๐ผ CLI Wallet
Command-line wallet tool
- โธCreate addresses
- โธTransfers
- โธBalance queries
๐ Block Explorer
Full-featured web explorer
- โธBlock / tx lookup
- โธContract calls
- โธStorage scanner
๐งช Test Scripts
Quality-assurance tools
- โธUnit tests
- โธIntegration tests
- โธE2E tests