Custom Transaction Trays
If you would like to display agent information such as favicon and branded title, utilize the metadata property of wallet send calls data.Example: Display agent information

transaction tray
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Learn how to customize transaction trays with agent branding and information
// example of wallet send calls data shape{
version: "1.0",
from: request.from as `0x${string}`,
chainId: this.networkConfig.chainId,
calls: [
{
...
metadata: {
description: "Transfer token",
...other fields,
hostname: "tba.chat",
faviconUrl: "https://tba.chat/favicon",
title: "Your favorite Agent"
}
}
]
}

transaction tray
Was this page helpful?