Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Chain Deployment Pipeline

This page describes how a new chain becomes operational in Concero V2.

Responsibilities matrix

WorkstreamChain teamConcero team
Provide gas funding for deployment/ops walletsYesNo
Submit chain metadata PRYesReview
Submit RPC metadata PRYesReview
Deploy ConceroRouter and supporting contractsNoYes
Configure relayer/verifier modulesNoYes
Turn on production deliveryNoYes

Pipeline steps

1. Gas funding

Chain team funds required operational addresses.

2. Register network metadata

Chain is added in concero/v2-networks.

3. Register RPC metadata

RPC endpoints are added in concero/rpcs.

4. Deploy/upgrade core contracts

Concero deploys ConceroRouter (implementation + proxy) and required dependencies.

5. Configure modules

Concero configures production relayer and verifier modules for the new chain:

  • relayer authorization,
  • verifier signer/workflow/gas settings,
  • destination routing checks.

6. Start off-chain services

Relayer and verifier workflows begin monitoring and processing for enabled routes.

7. Enable delivery path

Concero enables end-to-end route delivery for supported paths.

Important caveats

  • Router deployment alone does not guarantee working message delivery.
  • Route readiness depends on module authorization and off-chain workflow health.
  • Current Concero-run relayer/verifier modules are admin-gated.
  • Custom RPC selection via relayer/verifier metadata is planned but not available yet.

Related docs