near_workspaces/network/info.rs
1use std::path::PathBuf;
2
3use crate::types::AccountId;
4
5pub struct Info {
6 /// Name of the network itself
7 pub name: String,
8 /// Root Account ID of the network. Mainnet has `near`, testnet has `testnet`.
9 pub root_id: AccountId,
10 /// Path to the keystore directory
11 pub keystore_path: PathBuf,
12
13 /// Rpc endpoint to point our client to
14 pub rpc_url: url::Url,
15}