Skip to content

DAL Node Setup

The Data Availability Layer (DAL) is Tezos’s scalability solution. Running a DAL node allows your baker to attest to DAL slots. This guide uses Shadownet as an example.

  1. Running Node: A synced Tezos node (e.g., your Shadownet node)
  2. Baker (optional): To attest DAL slots, you need to be a baker

Install DAL Node

  1. Launch octez-manager
  2. Select [ Install new instance ]DAL Node
  3. Configure:
    • Node: Select your Shadownet node
    • Instance name: Auto-suggested as dal-shadownet
    • RPC address: 127.0.0.1:10732 (default)
    • Net address: 0.0.0.0:11732 (default)

Press ? at any time to see available actions.

Terminal window
octez-manager install-dal-node \
--instance dal-shadownet \
--node-instance shadownet
Terminal window
octez-manager install-dal-node \
--instance dal-shadownet \
--node-instance shadownet \
--rpc-addr 127.0.0.1:10732 \
--net-addr 0.0.0.0:11732
Terminal window
octez-manager install-dal-node \
--instance dal-shadownet \
--node-instance http://localhost:8732

After setting up your DAL node, connect your baker to enable DAL attestations.

In the TUI, select your baker and press e to edit, then select your DAL node.

Via CLI:

Terminal window
octez-manager instance baker-shadownet edit
Terminal window
octez-manager install-baker \
--instance baker-shadownet \
--node-instance shadownet \
--delegate tz1... \
--dal-endpoint dal-shadownet \
--liquidity-baking-vote pass
PortProtocolPurpose
10732HTTPRPC interface
11732TCPP2P network

Ensure these ports are accessible for DAL network participation.

Terminal window
octez-manager instance dal-shadownet show
Terminal window
# TUI: press Enter on instance, then select logs
# CLI:
octez-manager instance dal-shadownet logs
Terminal window
curl -s http://127.0.0.1:10732/health
  1. Verify the L1 node is fully synced
  2. Check network connectivity on port 11732
  3. Review logs for peer connection issues
  1. Verify DAL node is running and synced
  2. Check baker configuration includes DAL node
  3. Restart baker after DAL node configuration changes