Skip to content

Commit

Permalink
chore: update RPC
Browse files Browse the repository at this point in the history
  • Loading branch information
molecula451 committed Jun 26, 2024
1 parent 3315f8e commit 59e059c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
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";

0 comments on commit 59e059c

Please sign in to comment.