usestd::path::PathBuf;usecrate::types::AccountId;pubstructInfo{/// Name of the network itself
pubname: String,
/// Root Account ID of the network. Mainnet has `near`, testnet has `testnet`.
pubroot_id: AccountId,
/// Path to the keystore directory
pubkeystore_path: PathBuf,
// TODO: change return type to Url instead of String
/// Rpc endpoint to point our client to
pubrpc_url: String,
}