diff --git a/.travis.yml b/.travis.yml index 5dc59f7..a228dcd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,9 +14,9 @@ env: global: # run E2E tests against these values - REACT_APP_NODE_URI="https://nile.dev-ocean.com" - - REACT_APP_AQUARIUS_URI="https://aquarius.marketplace.dev-ocean.com" - - REACT_APP_BRIZO_URI="https://brizo.marketplace.dev-ocean.com" - - REACT_APP_SECRET_STORE_URI="https://secret-store.pacific.dev-ocean.com" + - REACT_APP_AQUARIUS_URI="https://aquarius.nile.dev-ocean.com" + - REACT_APP_BRIZO_URI="https://brizo.nile.dev-ocean.com" + - REACT_APP_SECRET_STORE_URI="https://secret-store.nile.dev-ocean.com" - REACT_APP_FAUCET_URI="https://faucet.nile.dev-ocean.com" - REACT_APP_BRIZO_ADDRESS="0x4aaab179035dc57b35e2ce066919048686f82972" diff --git a/client/src/components/molecules/AccountStatus/Popover.tsx b/client/src/components/molecules/AccountStatus/Popover.tsx index ca03683..49dcd96 100644 --- a/client/src/components/molecules/AccountStatus/Popover.tsx +++ b/client/src/components/molecules/AccountStatus/Popover.tsx @@ -54,7 +54,7 @@ export default class Popover extends PureComponent<{
{network && !isOceanNetwork - ? 'Please connect to Custom RPC\n https://nile.dev-ocean.com' + ? 'Please connect to Custom RPC\n https://pacific.oceanprotocol.com' : network && `Connected to ${network} network`}
diff --git a/client/src/components/organisms/Web3message.test.tsx b/client/src/components/organisms/Web3message.test.tsx index 36c1b0e..ce705a4 100644 --- a/client/src/components/organisms/Web3message.test.tsx +++ b/client/src/components/organisms/Web3message.test.tsx @@ -21,7 +21,7 @@ describe('Web3message', () => { ) expect(container.firstChild).toHaveTextContent( - 'Not connected to Nile network' + 'Not connected to Pacific network' ) }) diff --git a/client/src/config.ts b/client/src/config.ts index d8f029c..8be81ec 100644 --- a/client/src/config.ts +++ b/client/src/config.ts @@ -10,15 +10,15 @@ export const serviceUri = export const nodeUri = process.env.REACT_APP_NODE_URI || 'https://nile.dev-ocean.com' export const aquariusUri = - process.env.REACT_APP_AQUARIUS_URI || 'https://nginx-aquarius.dev-ocean.com' + process.env.REACT_APP_AQUARIUS_URI || 'https://aquarius.nile.dev-ocean.com' export const brizoUri = - process.env.REACT_APP_BRIZO_URI || 'https://nginx-brizo.dev-ocean.com' + process.env.REACT_APP_BRIZO_URI || 'https://brizo.nile.dev-ocean.com' export const brizoAddress = process.env.REACT_APP_BRIZO_ADDRESS || '0x4aaab179035dc57b35e2ce066919048686f82972' export const secretStoreUri = process.env.REACT_APP_SECRET_STORE_URI || - 'https://secret-store.dev-ocean.com' + 'https://secret-store.nile.dev-ocean.com' export const faucetUri = process.env.REACT_APP_FAUCET_URI || 'https://faucet.nile.dev-ocean.com' diff --git a/client/src/data/web3message.json b/client/src/data/web3message.json index a441d40..e651770 100644 --- a/client/src/data/web3message.json +++ b/client/src/data/web3message.json @@ -2,5 +2,5 @@ "noweb3": "Not a Web3 Browser. For publishing and downloading an asset you need to setup MetaMask or use any other Web3-capable plugin or browser.", "noAccount": "No accounts detected. For publishing and downloading an asset you need to unlock your Web3 account.", "hasAccount": "", - "wrongNetwork": "Not connected to Nile network.
Please connect in MetaMask with Custom RPC https://nile.dev-ocean.com" + "wrongNetwork": "Not connected to Pacific network.
Please connect in MetaMask with Custom RPC https://pacific.oceanprotocol.com" } diff --git a/client/src/routes/About.tsx b/client/src/routes/About.tsx index 10403df..eb723ab 100644 --- a/client/src/routes/About.tsx +++ b/client/src/routes/About.tsx @@ -13,8 +13,8 @@ class About extends Component {

Commons is built on top of the Ocean{' '} - - Nile test network + + Pacific network {' '} and is targeted at enthusiastic data scientists with some crypto experience. It can be used with any diff --git a/client/src/routes/Faucet.tsx b/client/src/routes/Faucet.tsx index bed7633..6e01306 100644 --- a/client/src/routes/Faucet.tsx +++ b/client/src/routes/Faucet.tsx @@ -118,7 +118,7 @@ export default class Faucet extends PureComponent<{}, FaucetState> { return ( diff --git a/cypress.json b/cypress.json index a46d36a..c8c92fa 100644 --- a/cypress.json +++ b/cypress.json @@ -3,6 +3,6 @@ "env": { "NODE_URI": "https://nile.dev-ocean.com", "SEEDPHRASE": "taxi music thumb unique chat sand crew more leg another off lamp", - "CONSUME_ASSET": "did:op:8014d305dcb44b42a5355791a2f016a654a61184456a4d178dc6e5913deb3a5c" + "CONSUME_ASSET": "did:op:73f50d7449ca478aabd2f34116dbdb1acf4304a407aa4251ab75ce15257b63bd" } }