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)