From 24e3d960d02ff7b9e2e5489bd2efa9429cd63a4c Mon Sep 17 00:00:00 2001 From: Aitor <1726644+aaitor@users.noreply.github.com> Date: Wed, 5 Jul 2023 17:50:53 +0200 Subject: [PATCH 1/3] fix: proxy urls --- docs/tutorials/08-webservice-integration.md | 8 ++++---- src/components/config.ts | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/tutorials/08-webservice-integration.md b/docs/tutorials/08-webservice-integration.md index d7390120..623f4349 100644 --- a/docs/tutorials/08-webservice-integration.md +++ b/docs/tutorials/08-webservice-integration.md @@ -34,7 +34,7 @@ Each web service will show a key icon at the right hand side. If you click on th The JWT token is the access key identifying you as a subscriber. It allows you to make HTTP requests to the web service. Once you have it, you can make requests to all the endpoints that are included in the web service that you subscribed to. -Copy both the JWT token and the Proxy url for the network you're using (e.g. https://proxy.mumbai.nevermined.network/). You need these to enable your app to send HTTP requests. +Copy both the JWT token and the Proxy url for the network you're using (e.g. https://proxy.mumbai.nevermined.app/). You need these to enable your app to send HTTP requests. ### 3. Use the JWT to call the service @@ -53,9 +53,9 @@ export $JWT_TOKEN=”” export REQUEST_DATA='{"queries": [{"query": "Adam And Evil", "filter": {}, "top_k": 1 }]}' # With curl we make a POST request and we add the $JWT_TOKEN as Bearer token in the Authorization header -# The url where we send the request is the host name of the proxy: "https://proxy.nevermined.network" plus the endpoint of the service +# The url where we send the request is the host name of the proxy: "https://proxy.mumbai.nevermined.app" plus the endpoint of the service # we are calling, int this case "/ask" -curl -k -X POST -H "Content-Type: application/json" -H "Authorization: Bearer $JWT_TOKEN" -d "$REQUEST_DATA" https://proxy.nevermined.network/ask +curl -k -X POST -H "Content-Type: application/json" -H "Authorization: Bearer $JWT_TOKEN" -d "$REQUEST_DATA" https://proxy.mumbai.nevermined.app/ask {"response":"\nThe song is about a person who is in love with someone who is not perfect, but they cannot live without them. Despite knowing that loving this person will bring heartache, they are willing to take the risk and accept the consequences. The song also compares the relationship to the story of Adam and Eve, with the person in the song being like Adam and their love interest being like Eve.","source_nodes":[{"node":{"text":"...","doc_id":"8e748293-f8d2-41b8-a225-7479455b1899","embedding":null,"doc_hash":"451d68b33de1e8034e48c6a98865364e52edd02837f06c34c662ba6d6d462c76","extra_info":null,"node_info":{"start":0,"end":1030},"relationships":{"1":"did:nv:3e0a13a6dba0ab20e83bf25c3e820af8b71c94cea0ab0763b4f822a6998009e6"}},"score":0.7585169416635178}],"extra_info":null} ``` @@ -64,7 +64,7 @@ curl -k -X POST -H "Content-Type: application/json" -H "Authorization: Bearer $ #### 3.b Using typescript to integrate the web service ```typescript -const proxyEndpoint = `https://proxy.nevermined.network/ask` +const proxyEndpoint = `https://proxy.mumbai.nevermined.app/ask` const requestData = '{"queries": [{"query": "Adam And Evil", "filter": {}, "top_k": 1 }]}' opts.headers = { diff --git a/src/components/config.ts b/src/components/config.ts index 07805fef..a33eac61 100644 --- a/src/components/config.ts +++ b/src/components/config.ts @@ -3,12 +3,12 @@ import { Chains, Wagmi } from '@nevermined-io/providers' export const appConfig = (): NeverminedOptions => ({ web3ProviderUri: 'https://matic-mumbai.chainstacklabs.com', - neverminedNodeUri: 'https://node.mumbai.public.nevermined.network', + neverminedNodeUri: 'https://node.mumbai.public.nevermined.app', verbose: 2, neverminedNodeAddress: '0x5838B5512cF9f12FE9f2beccB20eb47211F9B0bc', graphHttpUri: 'https://api.thegraph.com/subgraphs/name/nevermined-io/public', marketplaceAuthToken: AuthToken.fetchMarketplaceApiTokenFromLocalStorage().token, - marketplaceUri: 'https://marketplace-api.mumbai.public.nevermined.network', + marketplaceUri: 'https://marketplace-api.mumbai.public.nevermined.app', artifactsFolder: `${location.protocol}//${location.host}/contracts`, }) From 8725a300d7a41195f39add6fffd6191cc6f5ded4 Mon Sep 17 00:00:00 2001 From: Aitor <1726644+aaitor@users.noreply.github.com> Date: Wed, 5 Jul 2023 17:51:02 +0200 Subject: [PATCH 2/3] fix: aligning footer to nvm app --- docusaurus.config.js | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index 6ddbac99..83118a6f 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -125,6 +125,10 @@ const config = { label: 'Tutorials', to: 'docs/tutorials', }, + { + label: 'FAQ', + to: '/docs/getting-started/faq', + }, ], }, { @@ -132,27 +136,27 @@ const config = { items: [ { label: 'Arbitrum One', - to: 'https://nevermined.app/', + href: 'https://nevermined.app/', }, { label: 'Polygon Matic', - to: 'https://matic.nevermined.app/', + href: 'https://matic.nevermined.app/', }, { label: 'Gnosis', - to: 'https://gnosis.nevermined.app/', + href: 'https://gnosis.nevermined.app/', }, { label: 'Arbitrum Goerli', - to: 'https://goerli.nevermined.app/', + href: 'https://goerli.nevermined.app/', }, { label: 'Polygon Mumbai', - to: 'https://matic.nevermined.app/', + href: 'https://matic.nevermined.app/', }, { label: 'Gnosis Chiado', - to: 'https://chiado.nevermined.app/', + href: 'https://chiado.nevermined.app/', }, ], }, From e031560d242ce26dd6a3366820b67658e6449756 Mon Sep 17 00:00:00 2001 From: Aitor <1726644+aaitor@users.noreply.github.com> Date: Wed, 5 Jul 2023 17:56:00 +0200 Subject: [PATCH 3/3] fix: linking to prod --- docusaurus.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index 83118a6f..83b8d30b 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -98,7 +98,7 @@ const config = { { position: 'left', label: 'App', - href: 'https://mumbai.nevermined.app/' + href: 'https://nevermined.app/' }, { position: 'right',