Skip to content
2 changes: 1 addition & 1 deletion alto/alto-config-l2-local.json
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I put this port because this changes on devnet.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"log-environment": "production",
"entrypoints": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789,0x0000000071727De22E5E9d8BAf0edAc6f37da032,0x4337084D9E255Ff0702461CF8895CE9E3b5Ff108",
"api-version": "v1,v2",
"rpc-url": "http://host.docker.internal:8456",
"rpc-url": "http://host.docker.internal:8546",
"min-balance": "0",
"utility-private-key": "0xdbda1821b80551c9d65939329250298aa3472ba22feea921c0cf5d620ea67b97",
"executor-private-keys": "0x2a871d0798f97d79848a013d4936a73bf4cc922c825d33c1cf7073dff6d409c6,0x4bbbf85ce3377467afe5d46f804f221813b2bb87f24d81f60f1fcdbf7cbf4356,0x92db14e403b83dfe3df233f83dfa3a0d7096f21ca9b0d6d6b8d88b2b4ec1564e,0x8b3a350cf5c34c9194ca85829a2df0ec3153be0318b5e2d3348e872092edffba,0x47e179ec197488593b187f80a00eb0da91f1b9d0b13f8733639f19c30a34926a",
Expand Down
Binary file modified bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions contracts/script/deployAAkit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async function checkDevnetRunning(): Promise<boolean> {
});

const l2Client = createPublicClient({
transport: http("http://localhost:8456"),
transport: http("http://localhost:8546"),
});

// Try to get the chain ID from both chains
Expand All @@ -32,7 +32,7 @@ async function checkDevnetRunning(): Promise<boolean> {
]);

log(`✓ L1 devnet running on localhost:8545 (Chain ID: ${l1ChainId})`, "green");
log(`✓ L2 devnet running on localhost:8456 (Chain ID: ${l2ChainId})`, "green");
log(`✓ L2 devnet running on localhost:8546 (Chain ID: ${l2ChainId})`, "green");

return true;
} catch (error) {
Expand Down
4 changes: 2 additions & 2 deletions contracts/script/runDevnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ console.log("🚀 Starting NameChain Development Environment...\n");

const env = await setupCrossChainEnvironment({
l1Port: 8545,
l2Port: 8456,
urgPort: 8457,
l2Port: 8546,
urgPort: 8547,
saveDeployments: true,
});

Expand Down
Loading