Fund accounts
Time: ~5 minutes.
Fund the publisher
The publisher account pays a small amount of L1 gas every time your node publishes a checkpoint. At current mainnet gas levels a comfortable opening top-up is around 0.01 ETH per sequencer.
Paste your L1 RPC URL into the calculator below to scan the last 30 days of network activity and get a runway estimate. Without an RPC the calculator still shows the per-call cost at each scenario, but cannot compute runway, because the propose-rate depends on the live validator-set size.
If the publisher balance runs dry, your sequencer cannot publish blocks, and an inactive sequencer is a slashable offense. Set a refill threshold and an alert using aztec_l1_publisher_balance from your Prometheus stack, leaving enough headroom to refill before the publisher dries up at the worst-case gas price you expect.
Optional: tuning publisher gas settings
The publisher uses sensible defaults, so most operators do not need to touch these. The settings below let you control what the publisher is willing to pay for L1 inclusion. All are environment variables set on the node.
L1_GAS_PRICE_MAX (gwei) caps the L1 gas price your publisher will pay, to avoid runaway costs during fee spikes. The trap: the cap does not stop the transaction from being broadcast. When L1 gas is above your cap, the publisher still sends the proposal at your capped max fee. It loses the inclusion race against higher-paying transactions and does not get mined, but the broadcast still consumes fees, so a cap set too low costs money without producing a block. It also silently misses proposals during every fee spike even on a healthy node (one operator capped near 1 gwei missed roughly 20% of proposals while attesting at 100%). Missed proposals are forgone block rewards now, and skip-block slashing is slated to return in a later upgrade. Size the cap against real L1 conditions using the gas prices the funding calculator reports, not a low round number.
| Setting | Env var | What it does |
|---|---|---|
| Max gas price | L1_GAS_PRICE_MAX | Ceiling on the L1 gas price (gwei) the publisher will pay. See the warning above. |
| Max blob fee | L1_BLOB_FEE_PER_GAS_MAX | Ceiling on the blob fee per gas (gwei). The same broadcast caveat applies. |
| Priority fee bump | L1_PRIORITY_FEE_BUMP_PERCENTAGE | How much to raise the priority fee on each send, to win inclusion. |
| Priority fee retry bump | L1_PRIORITY_FEE_RETRY_BUMP_PERCENTAGE | Extra priority-fee increase on each retry of a stuck transaction. |
| Minimum priority fee | L1_MINIMUM_PRIORITY_FEE_PER_GAS_GWEI | Floor on the computed priority fee (gwei). |
| Gas-limit buffer | L1_GAS_LIMIT_BUFFER_PERCENTAGE | Headroom added to the estimated gas limit, to avoid underestimates. |
If your proposals are frequently not getting included, the usual cause is a L1_GAS_PRICE_MAX set too low or priority fees too low for current L1 competition. Raise the cap and the priority-fee settings rather than lowering them.
Verify the balance
cast balance {{PUBLISHER_ADDR}} --rpc-url {{ETH_RPC}} --ether
Stake / delegated stake
You need 200,000 AZTEC tokens (200,000 × 1 sequencer) available in the wallet you'll connect to the staking dashboard when you register as sequencer. Self-stake comes from this wallet directly.
| Item | Cost (for 1 sequencer) |
|---|---|
| AZTEC self-stake | 200,000 AZTEC |
| Opening publisher top-up | 0.01 ETH (see the calculator above for runway) |
| Registration gas | ~0.005 ETH per sequencer (rough) |
Set your reward and withdrawer addresses
The coinbase address is the L1 (Ethereum) address that accumulates your sequencer rewards in the Rollup contract; you claim from it via claimSequencerRewards(coinbase). The previous step's aztec validator-keys new command read this value from the Coinbase Address field in the configuration panel and baked it into key1.json. Confirm the panel still shows the wallet you intend to receive rewards. If the field is empty or wrong, fix it and rerun the keystore command before continuing. Coinbase can also be changed later by editing the coinbase field in key1.json and reloading the keystore (admin API call or node restart); doing it correctly at setup just avoids the cleanup.
The withdrawer address is a separate role: it can later call initiateWithdraw to exit stake, sign governance delegations, and receives residual stake on slash-driven ejection. Use a cold wallet or multisig you control. Paste it into the Withdrawer Address field in the configuration panel.
For the full role map (caller / attester / publisher / withdrawer / coinbase / fee recipient), see the keys-and-addresses deep-dive.
What just happened?
You confirmed the publisher account has enough ETH for at least a few weeks of attestation gas, and you confirmed your AZTEC self-stake is available. Self-staking locks your 200K AZTEC per sequencer in the Rollup contract on registration. It's economic security: if your sequencer misbehaves (double-signing, persistent liveness failure), a portion gets slashed.