Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 1.06 KB

README.md

File metadata and controls

33 lines (22 loc) · 1.06 KB

Solana Action Registry

This is a registry of Solana Actions supported by the Solana Agent Kit.

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, connect any ai agents to solana protocols.

All actions in this registry are supported by the Solana Agent Kit.

The Action Interface

interface Action {
  name: string;
  similes: string[];
  description: string;
  examples: ActionExample[][];
  handler: Handler;
  validate: Validator;
}

This was taken/inspired from Eliza