Secure and Fast
Solutions to Decentralized Systems
APACE TESTNET is the test network for our decentralized database system. It provides a secure environment for testing and fast development of decentralized database applications.
// Initialize APACE node
let node = APACE::new()
.with_consensus("proof_of_stake")
.with_storage("distributed")
.build();
// Start the node
node.start()?;