Networks
Updates a network's configuration. Currently supports updating RPC URLs only. Can be extended to support other fields.
patch/api/v1/networks/{network_id}
Path parameters
network_idstring required
Network ID (e.g., evm:sepolia, solana:mainnet)
Request body
Example request
{
"rpc_urls": [
{
"url": "https://rpc.example.com",
"weight": 100
}
]
}Response
Network updated successfully
Example response
{
"data": {
"rpc_urls": [
{
"url": "https://rpc.example.com",
"weight": 100
}
]
}
}