ppi-sdk
v1.1.0
Published
Payment Programming Interface - The HTTP of Payments. Build complex financial transactions with simple, human-readable code.
Maintainers
Readme
?? PPI SDK - Universal Payment Protocol
?? Try It Now!
PPI Playground - Interactive web playground with real compilation
?? Installation
```bash npm install ppi-sdk ```
?? Quick Start
```javascript import { PPI_SEND, PPI_ESCROW, PPI_SPLIT } from 'ppi-sdk';
// Simple payment const payment = PPI_SEND(100).TO('[email protected]');
// Secure escrow
const escrow = PPI_ESCROW(500)
.FROM('[email protected]')
.TO('[email protected]');
```
