Documentation
README
dApp — Agentic Kit Frontend
All blockchain queries go through useStellarData(). Never write raw RPC or curl.
Wallet Setup (one-time)
// providers/wallet-provider.tsx
import { WalletProvider } from "@/providers/wallet-provider";
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<WalletProvider>
{children}
</WalletProvider>
);
}
Hooks API
useStellarData() — Blockchain queries
This is the opening of the README. Read the full README on GitHub.