Developer access contract
One gate. Reusable by every Sol surface.
The SDK keeps client apps from inventing new admin passwords. They can discover the Sol manifest, use the FS27 session issuer, reuse PIN and recovery, and send money-path activity through SkyePay.
GlobalSoleMegaGateClient
IssuerFS27
HeadersShared gate
MoneySkyePay
Usage shape
Load one script and call the shared gate.
The public SDK contains no secrets. It points browser apps to the live FS27 Worker and stores the returned session token under shared gate-compatible keys.
<script src="https://solenterprises.org/assets/sole-megagate-client.js"></script>
<script>
const gate = new SoleMegaGateClient({ client: "metraiyux-0s" });
await gate.login({ email, password });
const profile = await gate.me();
const offers = await gate.offers();
</script>