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.

Check Token Balance

Installs
12
GitHub Stars
116
First Seen
May 16, 2026
token — convex-dev/convex