Skip to content

Commit

Permalink
fix: update rpc urls (#80)
Browse files Browse the repository at this point in the history
Co-authored-by: Joaquin Carletti <[email protected]>
  • Loading branch information
IAvecilla and ColoCarletti authored Nov 17, 2023
1 parent de96585 commit f1c9de9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/data/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,18 @@ export const l2Chains: L2Chain[] = [
id: 260,
name: "Local In-memory node",
network: "local-in-memory",
rpcUrl: "http://localhost:8011",
rpcUrl: "http://127.0.0.1:8011",
},
{
id: 270,
name: "Local Dockerized node",
network: "local-dockerized",
rpcUrl: "http://localhost:3050",
rpcUrl: "http://127.0.0.1:3050",
l1Chain: {
id: 9,
name: "L1 Local",
network: "l1-local",
rpcUrl: "http://localhost:8545",
rpcUrl: "http://127.0.0.1:8545",
},
},
];

0 comments on commit f1c9de9

Please sign in to comment.