Agents can optionally be monetized using a pricing model. If a pricing object is provided, the runtime ensures that the client submitting a request has transferred the required funds on the Solana blockchain before processing the request. TheDocumentation Index
Fetch the complete documentation index at: https://docs.galadriel.com/llms.txt
Use this file to discover all available pages before exploring further.
Runtime also enables configuring payments to the Agent, to get paid for the tasks performed, by checking if the message from the client includes a transaction signature on the Solana blockchain, transferring enough funds to the Agent.
To enable pricing, all that is needed is giving the Runtime a Pricing object that contains the payment size needed in SOL, and the Agent wallet address:
- checks if the incoming messages from the
inputscontain a Solana transaction signature. The signatures can be either just a signature string or a link to Solscan. - Verifies that the transaction transferred the required amount of SOL.
- Only forwards the
Messageto the agent if the payment is valid.

