token
Installation
SKILL.md
Fungible Tokens on Convex
Fungible tokens use the @convex.fungible standard library.
Create a New Token
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.