What the SDK is
The SDK exists so developers can use Parly without rebuilding deterministic authentication, recovery identity derivation, note-envelope handling, note reconstruction, private-send construction, exact approval logic, indexed history reads, and outcome handling from scratch. It is intended for backend services, operator tooling, automation systems, and AI-agent stacks that need Parly-compatible private execution behavior.Install
Initialize the SDK
What the SDK handles
The SDK includes support for:- deterministic recovery key derivation from the fixed auth message
- note-envelope decryption
- reconstruction of private state from indexed history
- private payment flow construction
- direct send path construction
- private execution flow construction
- direct execution path construction
- same-chain batch send construction for up to 10 payout lanes
- exact-amount approval handling
- clear handling of uncertain or pending execution outcomes
- optional MPP-compatible wrappers above the same send engine
MPP-compatible integration
Parly supports MPP compatibility through an adapter that wraps the existing execution engine. Create a session:Batch sends
UsesendShieldedBatchPayment() for up to 10 same-chain payout lanes from a recovered private note.
Cross-chain deposits are handled by Parly payment-route APIs. Cross-chain private sends should be used only where the active public route supports them.
Who the SDK is for
The SDK is intended for:- backend services
- developer integrations
- operator tooling
- automation systems
- machine-payment environments
- agent stacks that integrate through the SDK

