File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ fn create_sequencer_client() -> SequencerGatewayProvider {
26
26
27
27
fn create_jsonrpc_client ( ) -> JsonRpcClient < HttpTransport > {
28
28
let rpc_url = std:: env:: var ( "STARKNET_RPC" )
29
- . unwrap_or ( "https://juno .rpc.goerli.starknet.rs/rpc/v0_6" . into ( ) ) ;
29
+ . unwrap_or ( "https://pathfinder .rpc.goerli.starknet.rs/rpc/v0_6" . into ( ) ) ;
30
30
JsonRpcClient :: new ( HttpTransport :: new ( url:: Url :: parse ( & rpc_url) . unwrap ( ) ) )
31
31
}
32
32
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ use url::Url;
12
12
#[ tokio:: test]
13
13
async fn can_deploy_contract_to_alpha_goerli ( ) {
14
14
let rpc_url = std:: env:: var ( "STARKNET_RPC" )
15
- . unwrap_or ( "https://juno .rpc.goerli.starknet.rs/rpc/v0_6" . into ( ) ) ;
15
+ . unwrap_or ( "https://pathfinder .rpc.goerli.starknet.rs/rpc/v0_6" . into ( ) ) ;
16
16
let provider = JsonRpcClient :: new ( HttpTransport :: new ( Url :: parse ( & rpc_url) . unwrap ( ) ) ) ;
17
17
let signer = LocalWallet :: from ( SigningKey :: from_secret_scalar (
18
18
FieldElement :: from_hex_be (
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ use url::Url;
18
18
19
19
fn create_jsonrpc_client ( ) -> JsonRpcClient < HttpTransport > {
20
20
let rpc_url = std:: env:: var ( "STARKNET_RPC" )
21
- . unwrap_or ( "https://juno .rpc.goerli.starknet.rs/rpc/v0_6" . into ( ) ) ;
21
+ . unwrap_or ( "https://pathfinder .rpc.goerli.starknet.rs/rpc/v0_6" . into ( ) ) ;
22
22
JsonRpcClient :: new ( HttpTransport :: new ( Url :: parse ( & rpc_url) . unwrap ( ) ) )
23
23
}
24
24
You can’t perform that action at this time.
0 commit comments