diff --git a/content/concepts/pacific-network.md b/content/concepts/pacific-network.md index 6c9340e0..e5706f4e 100644 --- a/content/concepts/pacific-network.md +++ b/content/concepts/pacific-network.md @@ -48,12 +48,16 @@ There is a Pacific blockchain explorer at [https://submarine.oceanprotocol.com/] There are several Ocean Protocol software components that are live, connected to the Pacific Network, and operated by BigchainDB GmbH: -- Secret Store at [https://secret-store.oceanprotocol.com](https://secret-store.oceanprotocol.com) -- Aquarius at [https://aquarius.commons.oceanprotocol.com](https://aquarius.commons.oceanprotocol.com) -- Brizo at [https://brizo.commons.oceanprotocol.com](https://brizo.commons.oceanprotocol.com) -- Commons Marketplace at [https://commons.oceanprotocol.com](https://commons.oceanprotocol.com) -- Faucet Server at [https://faucet.oceanprotocol.com](https://faucet.oceanprotocol.com) -- Token Bridge Frontend at [https://bridge.oceanprotocol.com/](https://bridge.oceanprotocol.com/) +| Component | URL | +| ---------------------- | ---------------------------------------------------------------------------------------- | +| Secret Store | [https://secret-store.oceanprotocol.com](https://secret-store.oceanprotocol.com) | +| Aquarius Test instance | [https://aquarius.test.oceanprotocol.com](https://aquarius.test.oceanprotocol.com) | +| Brizo Test instance | [https://brizo.test.oceanprotocol.com](https://brizo.test.oceanprotocol.com) | +| Aquarius for Commons | [https://aquarius.commons.oceanprotocol.com](https://aquarius.commons.oceanprotocol.com) | +| Brizo for Commons | [https://brizo.commons.oceanprotocol.com](https://brizo.commons.oceanprotocol.com) | +| Commons Marketplace | [https://commons.oceanprotocol.com](https://commons.oceanprotocol.com) | +| Faucet Server | [https://faucet.oceanprotocol.com](https://faucet.oceanprotocol.com) | +| Token Bridge Frontend | [https://bridge.oceanprotocol.com/](https://bridge.oceanprotocol.com/) | > Internal note: The private "atlantic" repo documents the internal details of the Pacific Network in `networks/pacific/deployment.md`. diff --git a/gatsby-node.js b/gatsby-node.js index a55a94b7..3eb34f98 100755 --- a/gatsby-node.js +++ b/gatsby-node.js @@ -251,7 +251,9 @@ const createTypeDocPage = async (createPage, name, downloadUrl) => { // https://github.com/swagger-api/swagger-js const fetchSwaggerSpec = async name => { try { - const client = await Swagger(`https://${name}.nile.dev-ocean.com/spec`) + const client = await Swagger( + `https://${name}.test.oceanprotocol.com/spec` + ) return client.spec // The resolved spec // client.originalSpec // In case you need it