protocol-versions

Versiones de protocolo, migraciones y la actualización v1: qué semántica usar al escribir, y cómo cambiar el comportamiento de CVM sin bifurcar la red. Úsese cuando…

npx skills add https://github.com/convex-dev/convex --skill protocol-versions

Protocol Versions and Migrations

The protocol version is the count of upgrades applied to a network, starting at 0 at genesis. Genesis is immutable — it is the network's identity — so every change to CVM semantics after launch arrives as a scheduled migration that increments the version by exactly 1.

Full design: convex-core/docs/UPGRADE.md. Read it before authoring a migration; this skill is orientation and conventions.

Write Against v1

v1 is the target. It is the first upgrade, it bundles every bug known at genesis, and it is what networks will be running. Unless you are specifically reasoning about live or historical behaviour, v1 semantics are the semantics.

This is the project's own test convention — three state roles, each answering a different question:

RoleVersionUse
TargetInitTest.UPGRADED / BaseTest.UPGRADEDMAX_VERSIONThe ACVMTest default. Libraries, actors and CVM behaviour are tested against where the network is going.
LIVEInitTest.LIVE / BaseTest.LIVEMigrations.LIVE_VERSIONThe release gate: what live peers run today, so a release does not break them before they upgrade.
GenesisInitTest.STATE / BaseTest.STATE0Pinned where genesis is the point: genesis-hash invariants, replay (SnapshotStateTest), and intended-diff contrast tests (MigrationFixesTest).

Migrations.LIVE_VERSION is bumped when, and only when, the live network applies an upgrade. Everything pinned to LIVE follows automatically.

What v1 Contains

The bootstrap — installing schedule-upgrade / unschedule-upgrade plus the new core functions gensym, cat, splice and char? (#92) — and fixes that could not ship any other way, because a naive fix would move the genesis hash:

MigrationFixes
v1-core.cvxupdate / update-in variadic arities (#533); quasiquote of sets/maps, ~false, define double-evaluation, call arity (#598); macro hygiene for dotimes / for / for-loop / switch (#602)
v1-trust.cvxtrusted? now fails closed against defective monitors (#623)
v1-fungible.cvxadd-mint :max-supply defaults to unlimited rather than 0 (#528)
v1-asset.cvx, v1-box.cvx, v1-delegate.cvx, v1-metadata.cvx, v1-multi-token.cvx, v1-nft-basic.cvx, v1-nft-simple.cvxlibrary fixes (#600, #620, #621, #622, #623)

Two of these change behaviour agents rely on — see the trust and token skills, which document the v1 behaviour and flag the pre-v1 trap.

Changing CVM Behaviour

Where the change lives determines the strategy.

Tier 1 — state-resident core. Functions defined in core.cvx are compiled into account #8 at genesis; they are state. Fix by migration: replace the binding with the recompiled definition. No Java version branch.

Caveat: the compiler statically links core symbols, so already-deployed actors keep the old embedded function unless the migration also sweeps environments. Whether to sweep is a per-upgrade decision.

Tier 2 — native semantics. Opcodes, native core functions, juice costs and cast rules are the transition function, in Java. These change by version-keyed dispatch:

long cost = (state.getProtocolVersion() >= 3) ? Juice.NEW_COST : Juice.OLD_COST;

Whether a gate is needed is decided by replay evidence, not judgement. Make the change unconditional locally and run SnapshotStateTest: if the replay hash moves, recorded history exercised the old semantics and the gate is mandatory; if not, it ships unconditionally with no permanent branch. Branches are permanent — replay from genesis needs every historical semantics.

Adding a core function means a new core definition code, registered with regNonGenesis and installed by a migration — never into genesis. Standing rule (amended 2026-08-13): no release adds a code beyond 506 unless it ships, in the same release, at minimum a 506-style in-definition version gate — fail-first below the introducing version, before arity checking or any other work (char?, code 506, is the model). Once v1 has activated on the live network, full versioned materialisation is required instead. Rationale: the decode-skew policy in UPGRADE.md.

Tier 3 — encodings. Decoding happens outside any state context, so it cannot branch on version. Decoders stay permissive of all historical forms forever; the version gates what the CVM writes and canonicalises. See the cad3-encoding skill — this is why a permissive decoder is correct rather than a bug.

Authoring a Migration

  • Purity is a hard contract. A migration is State → State with no clock, randomness or I/O. An impure migration forks the network.
  • The list is append-only forever. Position is identity — Migrations.get(k) produces version k+1 — so never insert or reorder.
  • Test the exact delta. Every migration needs tests asserting precisely what changed and that nothing else did (compare untouched subtrees by hash).
  • Failure at an activation boundary makes peers withdraw from consensus rather than produce a state — a stall is recoverable, divergence is not.

MigrationFixesTest owns the intended differences between genesis and upgraded semantics; add to it when a migration changes observable behaviour.

Fresh Networks

Launchers that create a new genesis (local start, peer genesis, peer start --genesis, GUI local networks) apply all migrations at creation, so a fresh network starts at MAX_VERSION — it has no history to preserve and should not launch with known-fixed bugs.

Pin a lower version with --protocol-version (CLI) or :protocol-version (peer config) to mirror a network that has not yet upgraded. This is how you reproduce live behaviour locally while v1 is pending.

Más skills de convex-dev

account
convex-dev
Crear o inspeccionar cuentas de Convex. Usar cuando el usuario quiera configurar una nueva cuenta, consultar detalles de la cuenta o gestionar claves.
account
convex-dev
Crear o inspeccionar cuentas de Convex. Usar cuando el usuario quiera configurar una nueva cuenta, verificar los detalles de la cuenta o gestionar claves.
token
convex-dev
Crear y gestionar tokens fungibles en Convex. Úsalo cuando el usuario quiera crear un nuevo token, consultar saldos de tokens o gestionar el suministro de tokens.
build-convex
convex-dev
Compilar el proyecto Convex desde el código fuente. Usar cuando un colaborador quiera compilar, probar o empaquetar Convex.
convex-db
convex-dev
Usa Convex DB, una base de datos SQL respaldada por lattice. Úsalo cuando ayudes a los usuarios a escribir consultas, conectarse mediante clientes JDBC o PostgreSQL, crear tablas, insertar/consultar datos…
convex-lisp
convex-dev
Referencia del lenguaje Convex Lisp — convenciones de CVM, llamada a código de biblioteca, definiciones de actores, juice y códigos de error. Usar al escribir o depurar código fuente de CVM para…
deploy
convex-dev
Implementar un actor (contrato inteligente) en la red Convex. Usar cuando el usuario quiera crear un nuevo actor on-chain con funciones exportadas.
ecosystem
convex-dev
Orientación en el ecosistema Convex: qué se encuentra en cada repositorio, dónde están las especificaciones y la documentación, y qué bibliotecas de cliente existen. Úsalo cuando necesites contexto…