skills/token/SKILL.md
Create and manage fungible tokens on Convex. Use when the user wants to create a new token, check token balances, or manage token supply.
npx skillsauth add Convex-Dev/convex tokenInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Fungible tokens use the @convex.fungible standard library.
Deploy a token actor using the fungible token standard:
(deploy
(let [f @convex.fungible]
(f/build-token
{:supply 1000000})))
This creates a token with initial supply held by the deployer. The returned address is the token's actor address.
Query: (@convex.fungible/balance #TOKEN #HOLDER)
Or use mcp__convex-testnet__getBalance with the token parameter.
Transaction: (@convex.fungible/transfer #TOKEN #DEST AMOUNT)
Or use mcp__convex-testnet__transfer with the token parameter.
Transaction (must be token controller): (call #TOKEN (mint AMOUNT))
| Task | Expression |
|------|-----------|
| Create token | (deploy (let [f @convex.fungible] (f/build-token {:supply N}))) |
| Check balance | (@convex.fungible/balance #TOKEN #ADDR) |
| Transfer | (@convex.fungible/transfer #TOKEN #DEST AMOUNT) |
| Total supply | (@convex.fungible/quantity #TOKEN) |
| Mint | (call #TOKEN (mint AMOUNT)) |
tools
Transfer CVM coins or fungible tokens between Convex accounts. Use when the user wants to send coins or tokens to another account.
data-ai
Execute a CVM transaction on the Convex network. Use when the user wants to modify on-chain state, call actor functions, or define values.
testing
Execute a read-only CVM query on the Convex network. Use when reading on-chain state, checking balances, looking up accounts, or evaluating Convex Lisp expressions.
devops
Deploy an actor (smart contract) to the Convex network. Use when the user wants to create a new on-chain actor with exported functions.