

Compare standard Solana transactions with privacy-preserving xlogia protocol
{
"recentBlockhash": "5Js1q9...u7Y2",
"feePayer": "3yKqV8e9...QzWm", // base58 pubkey (payer)
"instructions": [
{
"programId": "11111111111111111111111111111111",
"accounts": ["3yKqV8e9...QzWm", "Dpt2Z7u...8Gsd"],
"data": "transfer|1.5 SOL"
}
],
"signatures": [
"5N4x...Zk3m" // transaction signature (base58)
],
"memo": "API Access",
"metadata": {
"apiKey": "sk_live_51...",
"userId": "user_123"
}
}{
"program": "xlogiaProgramPubkey...9ab",
"zk_proof": "zk_proof_a8f4...",
"commitment": "CmTq9f...e12",
"nullifier_hash": "Nh4b...7c2",
"encrypted": {
"payload": "enc_7k9m...",
"nonce": "0x4f3e2d..."
},
"onchain": {
"instruction": {
"programId": "xlogiaProgramPubkey...9ab",
"accounts": ["CmTq9f...e12"], // commitment / PDA stored on-chain
"data": "commit" // opaque to observers
},
"signature_placeholder": "SIG_COMMIT_ONLY" // on-chain shows a commitment, not details
}
}
import Logia from '@logia/sdk';
const payment = await logia.pay({
amount: 200,
recepient: merchant,
//payment history linkable
//browsing history exposed
})import Logia from '@logia/sdk';
const payment = await logia.pay({
amount: 200,
recepient: merchant,
//unlinkable credentials
//zero-knowledge proofs
})
A three-step cryptographic process that ensures complete transaction privacy
Agent commits to transaction details using cryptographic hash without revealing the actual data
Generate proof that the transaction is valid without exposing sender, receiver, or amount
Validators verify the proof on-chain while keeping all transaction details encrypted

Ensuring confidential transactions and data for the next generation of AI-driven systems
Digital entities can purchase services without exposing their activity history or creating trackable spending records.
Request datasets or API outputs while keeping query habits and usage signatures undisclosed.
Obtain processing resources without revealing task categories, workload intentions, or system designs.
Creating the underlying system that ensures protected operations for digital entities across every exchange.