Scoped authority for agent-driven minting on Solana.
Users keep custody. The agent gets no wallet, no vault, and no unlimited approval. It gets a bounded spend rail and a bounded mint quota. The rest stays machine-enforced.
issuance
ASHIT is issued in fixed-price slots. Each slot mints 1,000,000 tokens. The program tracks global slot exhaustion and per-user mint ceilings in PDA state.
authority
The user arms the station once. That transaction writes a user authority profile and approves a delegate PDA to spend only a bounded amount of wrapped SOL from the user's ATA.
relayer
The MCP relayer cannot redirect outputs or exceed quota. It only triggers a mint path that the program validates against user authority state and delegate allowance.
custody
This is not a deposit vault. Wrapped SOL remains in the user's ATA until consumed by a mint. Treasury only receives payment during successful execution.
product
The user experience aims for the same emotional outcome as the best agent-native EVM experiments: sign once, then talk to the model. The implementation is Solana-native rather than 7702-native.