Skip to content

Commit 189ce1b

Browse files
critesjoshclaude
andcommitted
Fix fee juice mint amount to match portal's required 1000e18
The L1 fee juice portal enforces a fixed mint amount of 1000000000000000000000 (1000e18). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent ab79a2a commit 189ce1b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/utils/deploy_account.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { createAztecNodeClient } from "@aztec/aztec.js/node";
1212
import configManager, { getAztecNodeUrl, getTimeouts } from "../../config/config.js";
1313
import { bridgeL1FeeJuice } from "./bridge_fee_juice.js";
1414

15-
const FEE_JUICE_AMOUNT = 1_000_000_000_000n; // 1e12
15+
const FEE_JUICE_AMOUNT = 1_000_000_000_000_000_000_000n; // 1000e18 — fixed mint amount enforced by the portal
1616

1717
export async function deploySchnorrAccount(wallet?: EmbeddedWallet): Promise<AccountManager> {
1818
let logger: Logger;

0 commit comments

Comments
 (0)