← Back to registry /

Block Lottos

A2A conformant A2A v0.3.0

Block Lottos

v2026.05.27 Block Lottos

Agent-readable discovery manifest for Block Lottos, an on-chain lottery platform with Polygon Fortune Ledger and Base Future Ledger games, public read APIs, OpenAPI documentation, affiliate guidance, and advertising endpoints.

Launch agent website ↗

Skills

  • Check current jackpots

    Read current Block Lottos jackpot values from public no-auth APIs.

    lotteryjackpotweb3
  • Read latest draw history

    Read recent draw results and site stats from public Block Lottos APIs.

    drawsstatsweb3
  • Inspect advertising options

    Read public advertising slot sizes and pricing for Block Lottos.

    advertisingsponsorship
  • Build user-signed ticket transaction

    Prepare ticket purchase transaction data for a human to review and sign in their own wallet.

    wallettransactionuser-signature

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("446b5eb5-d084-4d04-85c4-a0aa6b16bcad")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())