pub struct Services {
pub firehose: Option<Vec<String>>,
pub sps: Option<Vec<String>>,
pub subgraphs: Option<Vec<String>>,
pub substreams: Option<Vec<String>>,
pub token_api: Option<Vec<String>>,
}
Expand description
Services available for the network in the ecosystem
Fields§
§firehose: Option<Vec<String>>
Firehose gRPC URLs, e.g. eth.firehose.pinax.network:443
sps: Option<Vec<String>>
Substreams-based subgraphs studio deployment URLs, e.g. https://api.thegraph.com/deploy
subgraphs: Option<Vec<String>>
Subgraph studio deployment URLs, e.g. https://api.thegraph.com/deploy
substreams: Option<Vec<String>>
Substreams gRPC URLs, e.g. eth.substreams.pinax.network:443
token_api: Option<Vec<String>>
Token API URLs, e.g. https://token-api.thegraph.com
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Services
impl<'de> Deserialize<'de> for Services
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Services
impl RefUnwindSafe for Services
impl Send for Services
impl Sync for Services
impl Unpin for Services
impl UnwindSafe for Services
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more