https://github.com/sendaifun/action-registry
solana actions supported by the solana agent kit
https://github.com/sendaifun/action-registry
Last synced: 3 months ago
JSON representation
solana actions supported by the solana agent kit
- Host: GitHub
- URL: https://github.com/sendaifun/action-registry
- Owner: sendaifun
- Created: 2024-12-27T09:14:44.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-12-27T09:40:15.000Z (10 months ago)
- Last Synced: 2025-06-07T10:06:57.634Z (4 months ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Solana Action Registry
This is a registry of Solana Actions supported by the Solana Agent Kit.
- [Solana Agent Kit](https://github.com/sendai/solana-agent-kit)
- [Solana Actions](https://solana.com/actions)
- [Get your action supported](https://github.com/sendai/action-registry/issues/new)## Solana Actions
Using Solana Actions, you can turn any transaction into a blockchain link that can be shared anywhere on the internet — no third party application required. Request a payment in a text message. Vote on governance in a chatroom. Buy an NFT on social media. It’s all possible.
## Solana Agent Kit
[Solana Agent Kit](https://github.com/sendai/solana-agent-kit), connect any ai agents to solana protocols.
All actions in this registry are supported by the Solana Agent Kit.
## The Action Interface
```typescript
interface Action {
name: string;
similes: string[];
description: string;
examples: ActionExample[][];
handler: Handler;
validate: Validator;
}
```This was taken/inspired from [Eliza](https://elizaos.github.io/eliza/docs/core/actions/)