What problem does it solve?
It removes the repetitive work of wiring together Stellar transaction building, XDR encoding, Horizon queries, and Soroban RPC calls so you can focus on application logic.
Core Features & Use Cases
- Transaction lifecycle automation in PHP: build transactions and operations, sign with network passphrases, serialize to XDR/base64, and submit to Horizon synchronously.
- Horizon API coverage + streaming: query accounts, transactions, operations, effects, offers, trades, and ledgers with pagination, plus SSE streaming for real-time updates.
- Soroban contract workflows via RPC: deploy and invoke smart contracts with typed RPC methods, simulation, and event/ledger introspection.
- SEP protocol integrations: support key SEP flows such as SEP-01 discovery, SEP-02 federation, SEP-05 derivation, SEP-07 URI scheme signing, and SEP-08 regulated-asset approval flows.
Quick Start
Ask the AI to generate PHP code that builds a testnet payment from a provided source account to a destination account, signs it, submits it to Horizon, and prints the transaction hash.