Function update_network

Source
pub async fn update_network<J, RR, TR, NR, NFR, SR, TCR, PR, AKR>(
    network_id: String,
    request: UpdateNetworkRequest,
    state: ThinDataAppState<J, RR, TR, NR, NFR, SR, TCR, PR, AKR>,
) -> Result<HttpResponse, ApiError>
Expand description

Updates a network’s configuration. Currently supports updating RPC URLs only. Can be extended to support other fields.

§Arguments

  • network_id - The ID of the network (e.g., “evm:sepolia”, “solana:mainnet”).
  • request - The update request containing fields to update.
  • state - The application state containing the network repository.

§Returns

The updated network or an error if update fails.