airlock

Canonical reference for `Airlock` as Doppler's protocol entrypoint, including launch orchestration, migration handoff, and interface coverage.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "airlock" with this command: npx skills add rustydotwtf/doppler-skills/rustydotwtf-doppler-skills-airlock

Source References: Use Doppler deployments as the contract source of truth for deployed addresses and revisions.

Airlock Entrypoint

Requirement: every Doppler user integrates through Airlock. Direct integration to downstream modules is not the canonical user path.

When to use

  • You are integrating with Doppler (all integrations are Airlock-first).
  • You need to reason about how token factory, initializer, and migrator contracts are coordinated.
  • You need a single source for Airlock behavior and its externally-consumable interface.

What Airlock does

  • Entry point for launch creation (create(...) path).
  • Lifecycle coordinator for migration (migrate(asset) path).

Orchestration model

  1. create(...) receives launch configuration and selects modules.
  2. Airlock routes token deployment to the selected token factory.
  3. Airlock routes pool setup to the selected initializer.
  4. Airlock executes migration handoff through the configured liquidity migrator.

Core workflow

  1. Validate module addresses and config payloads.
  2. Execute launch creation through Airlock.
  3. Track status through initializer/migrator state and emitted events.
  4. Call migrate(asset) when exit conditions are satisfied.
  5. Reconcile migration outputs and downstream pool state.

Quick facts

ItemDetail
Canonical contractsrc/Airlock.sol
Launch entrypointcreate(...)
Migration entrypointmigrate(asset)

References

Related skills

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

uniswap-fundamentals

No summary provided by upstream source.

Repository SourceNeeds Review
General

token-lifecycle

No summary provided by upstream source.

Repository SourceNeeds Review
General

verification

No summary provided by upstream source.

Repository SourceNeeds Review
General

fee-architecture

No summary provided by upstream source.

Repository SourceNeeds Review