# evt-store-srv
Solana Anchor program that emits typed, base64-encoded payloads into on-chain transaction logs so off-chain indexers can treat them like events.
- Program ID: `Htor6YTegN8f8R6hzKmCc8mGzrWuEEMSGnzff574uypY`
- Anchor: 0.32.x
What it logs (stable order via `sol_log_data`):
`[event_type_utf8] [caller_program_pubkey(32)] [decoded_bytes]`.
Basic instruction
```
pub fn emit(ctx: Context<Emit>, data_b64: String, event_type: String) -> Result<()>
```
See repository README for full docs, examples, and test instructions:
https://github.com/solTrust/evt-store-srv
License: AGPL-3.0-or-later (see LICENSE)