This endpoint returns a list of NetworkIdentifiers that the Rosetta server supports.
Expected response to a valid request
const response = await fetch('/network/list', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
{ "network_identifiers": [ { "blockchain": "bitcoin", "network": "mainnet", "sub_network_identifier": { "network": "shard 1", "metadata": { "producer": "0x52bc44d5378309ee2abf1539bf71de1b7d7be3b5" } } } ] }