
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@lit-protocol/aw-tool-registry
Advanced tools
Use this package to manage and access tools that your AI Agents can execute. The Tool Registry helps you register, discover, and validate tools across different Lit networks.
Use this package to manage and access tools that your AI Agents can execute. The Tool Registry helps you register, discover, and validate tools across different Lit networks.
pnpm add @lit-protocol/aw-tool-registry
We provide several tools out of the box:
ERC20Transfer: Transfer ERC20 tokensUniswapSwap: Execute Uniswap swapsSignEcdsa: Perform ECDSA signing operationsThese tools are automatically registered when you import the package.
import {
getToolByName,
getToolByIpfsCid,
listToolsByNetwork,
type LitNetwork
} from '@lit-protocol/aw-tool-registry';
// Looking up a tool by IPFS CID (commonly used by the signer)
const toolByCid = getToolByIpfsCid('QmYourIpfsCid');
if (toolByCid) {
const { tool, network } = toolByCid;
// Access tool metadata, parameters, policies
console.log(tool.name, tool.description);
}
// Listing tools for a network (used by CLI for tool selection)
const network: LitNetwork = 'datil-dev';
const networkTools = listToolsByNetwork(network);
networkTools.forEach(tool => {
console.log(`${tool.name}: ${tool.description}`);
});
// Getting a specific tool (used for policy management)
const erc20Tool = getToolByName('ERC20Transfer', network);
if (erc20Tool) {
// Access tool's policy definitions
const policy = erc20Tool.policy;
}
To add a new tool to the registry, follow these steps:
package.json:{
"dependencies": {
"@lit-protocol/aw-tool": "workspace:*",
"@lit-protocol/aw-tool-your-tool": "workspace:*" // Your new tool
}
}
src/lib/registry.ts:import type { AwTool } from '@lit-protocol/aw-tool';
import { YourTool } from '@lit-protocol/aw-tool-your-tool';
registry.ts:registerTool('YourTool', YourTool);
That's it! The tool will now be available through all registry functions like getToolByName, listToolsByNetwork, etc.
Note: Your tool package must implement the AwTool interface from @lit-protocol/aw-tool. For information on creating a new tool package, refer to the Agent Wallet Documentation.
This package builds on:
@lit-protocol/aw-tool: Core interfaces and types@lit-protocol/aw-tool-erc20-transfer: ERC20 transfer implementation@lit-protocol/aw-tool-uniswap-swap: Uniswap swap implementation@lit-protocol/aw-tool-sign-ecdsa: ECDSA signing implementationFAQs
Use this package to manage and access tools that your AI Agents can execute. The Tool Registry helps you register, discover, and validate tools across different Lit networks.
We found that @lit-protocol/aw-tool-registry demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.