deploy

Installation
SKILL.md

Deploy a Convex Actor

Actors are autonomous on-chain programs with their own address, state, and exported functions.

Actor Structure

A typical actor deployment:

(deploy
  '(do
     ;; Internal state
     (def counter 0)

     ;; Exported functions (callable by others)
     (defn increment []
       (def counter (+ counter 1))
       counter)
Installs
12
GitHub Stars
116
First Seen
May 16, 2026
deploy — convex-dev/convex