Skip to content

Commit

Permalink
replace possibly deprecated testnet URL
Browse files Browse the repository at this point in the history
  • Loading branch information
zerosnacks committed Oct 14, 2024
1 parent 2d1de84 commit d1164e8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/forge/tests/it/test_helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,10 @@ pub fn rpc_endpoints() -> RpcEndpoints {
("optimism", RpcEndpoint::Url(next_rpc_endpoint(NamedChain::Optimism))),
("arbitrum", RpcEndpoint::Url(next_rpc_endpoint(NamedChain::Arbitrum))),
("polygon", RpcEndpoint::Url(next_rpc_endpoint(NamedChain::Polygon))),
("avaxTestnet", RpcEndpoint::Url("https://api.avax-test.network/ext/bc/C/rpc".into())),
(
"avaxTestnet",
RpcEndpoint::Url("https://avalanche-fuji-c-chain-rpc.publicnode.com".into()),
),
("rpcEnvAlias", RpcEndpoint::Env("${RPC_ENV_ALIAS}".into())),
])
}

0 comments on commit d1164e8

Please sign in to comment.