@@ -6,7 +6,6 @@ use include_dir::{Dir, DirEntry, include_dir};
66use indoc:: formatdoc;
77use scarb_api:: ScarbCommand ;
88use semver:: Version ;
9- use shared:: consts:: free_rpc_provider_url;
109use std:: env;
1110use std:: fs:: { self , OpenOptions } ;
1211use std:: io:: Write ;
@@ -152,15 +151,14 @@ fn create_snfoundry_manifest(path: &PathBuf) -> Result<()> {
152151 # and https://foundry-rs.github.io/starknet-foundry/projects/configuration.html for more information
153152
154153 # [sncast.default] # Define a profile name
155- # url = "{default_rpc_url} " # Url of the RPC provider
154+ # url = "<YOUR_RPC_PROVIDER> " # Url of the RPC provider
156155 # accounts-file = "../account-file" # Path to the file with the account data
157156 # account = "mainuser" # Account from `accounts_file` or default account file that will be used for the transactions
158157 # keystore = "~/keystore" # Path to the keystore file
159158 # wait-params = {{ timeout = 300, retry-interval = 10 }} # Wait for submitted transaction parameters
160159 # block-explorer = "StarkScan" # Block explorer service used to display links to transaction details
161160 # show-explorer-links = true # Print links pointing to pages with transaction details in the chosen block explorer
162161 "# ,
163- default_rpc_url = free_rpc_provider_url( ) ,
164162 } ,
165163 ) ?;
166164
@@ -309,7 +307,7 @@ fn add_fork_config(document: &mut DocumentMut) -> Result<()> {
309307
310308 let mut fork_table = Table :: new ( ) ;
311309 fork_table. insert ( "name" , Item :: Value ( Value :: from ( "SEPOLIA_LATEST" ) ) ) ;
312- fork_table. insert ( "url" , Item :: Value ( Value :: from ( free_rpc_provider_url ( ) ) ) ) ;
310+ fork_table. insert ( "url" , Item :: Value ( Value :: from ( "<YOUR_RPC_PROVIDER>" ) ) ) ;
313311
314312 let mut block_id_table = Table :: new ( ) ;
315313 block_id_table. insert ( "tag" , Item :: Value ( Value :: from ( "latest" ) ) ) ;
0 commit comments