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

chore: RPC update #947

Merged
merged 4 commits into from
Jun 26, 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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ yarn workspace @ubiquity/dapp start # Run the web application at http://localhos
### Network Settings
| Network | Chain ID | RPC Endpoint | Comment |
|---------|----------|-------------------------------|---------|
| `mainnet` | `1` | `https://eth.ubq.fi/v1/mainnet` | Our dedicated mainnet gateway |
| `mainnet` | `1` | `https://rpc.ankr.com/eth` | Public Mainnet Gateway |
| `anvil` | `31337` | `http://127.0.0.1:8545` | Used for local development |
| `sepolia` | `11155111` | `https://ethereum-sepolia.publicnode.com` |Use any public available RPC for Sepolia testing |

Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ force = false
# See more config options https://github.com/foundry-rs/foundry/tree/master/config

[rpc_endpoints]
mainnet = "https://eth.ubq.fi/v1/mainnet"
mainnet = "https://rpc.ankr.com/eth"

[profile.SMT.model_checker]
contracts = { }
Expand Down
1 change: 0 additions & 1 deletion packages/contracts/scripts/runner/conf.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
export const RPC_LIST: string[] = [
"https://eth.ubq.fi/v1/mainnet",
"https://rpc.flashbots.net",
"https://nodes.mewapi.io/rpc/eth",
"https://cloudflare-eth.com",
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/scripts/shared/constants/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ export const Networks: Record<string, number> = {
sepolia: 11155111,
};

export const FALLBACK_RPC = "https://eth.ubq.fi/v1/mainnet";
export const FALLBACK_RPC = "https://rpc.ankr.com/eth";
Loading