Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change ethereum rpc to fix deposit status issue #273

Merged
merged 1 commit into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions data/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ export const l1Networks = {
...mainnet,
name: "Ethereum",
network: "mainnet",
rpcUrls: {
default: {
http: ["https://rpc.ankr.com/eth", "https://cloudflare-eth.com"],
},
},
},
goerli: {
...goerli,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "zkLink Portal provides Wallet and Bridge functionality for interacting with zkLink Nova",
"private": true,
"scripts": {
"dev": "nuxt dev",
"dev": "nuxt dev --port 3333",
"dev:node:memory": "cross-env NODE_TYPE=memory npm run dev",
"dev:node:docker": "cross-env NODE_TYPE=dockerized npm run dev",
"dev:node:nexus-goerli": "cross-env NODE_TYPE=nexus-goerli npm run dev",
Expand Down
Loading