From 3120ffc23f132eb05bd5621a576bf5d4e5b6dd9b Mon Sep 17 00:00:00 2001 From: conor2e <113347474+conor2e@users.noreply.github.com> Date: Wed, 7 Dec 2022 12:28:14 +0100 Subject: [PATCH 1/5] Changed to warning and updated email --- docs/subgraphs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/subgraphs.md b/docs/subgraphs.md index 16ed3de2..b94935fe 100644 --- a/docs/subgraphs.md +++ b/docs/subgraphs.md @@ -8,8 +8,8 @@ meta: # Subgraphs -::: details -This is a closed beta. If you want to participate, contact *kirill.balakhonov@chainstack.com* +::: warning +This is a closed beta. If you want to participate, contact *support@chainstack.com* ::: ## Introduction From f3ea8ea453a913a1f9a3f250655762c30b893724 Mon Sep 17 00:00:00 2001 From: conor2e <113347474+conor2e@users.noreply.github.com> Date: Wed, 7 Dec 2022 13:32:47 +0100 Subject: [PATCH 2/5] Updated URLs to match prod version --- docs/subgraphs.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/subgraphs.md b/docs/subgraphs.md index b94935fe..95edcb47 100644 --- a/docs/subgraphs.md +++ b/docs/subgraphs.md @@ -93,7 +93,7 @@ graph –v 1. In Subgraphs, open the details page of your new subgraph and copy the **Deployment command**, which will have the following format: ``` sh - graph deploy --node https://graph.chainstack.com/3c6e0b8a9c15224a8228b9a98ca1531d/deploy --ipfs https://graph.chainstack.com/3c6e0b8a9c15224a8228b9a98ca1531d/ipfs my_subgraph_v1_0 + graph deploy --node https://api.graph-eu.p2pify.com/3c6e0b8a9c15224a8228b9a98ca1531d/deploy --ipfs https://api.graph-eu.p2pify.com/3c6e0b8a9c15224a8228b9a98ca1531d/ipfs my_subgraph_v1_0 ``` 1. Paste and run the command in your CLI. @@ -103,7 +103,7 @@ graph –v Deployed to https://chainstack.com/subgraphs/SGR-123-456-789 Subgraph endpoints: - Queries (HTTP): https://elastic-subgraphs.p2pify.com/3c6e0b8a9c15224a8228b9a98ca1531d/my_subgraph_v1_0 + Queries (HTTP): https://ethereum-mainnet.graph-eu.p2pify.com/3c6e0b8a9c15224a8228b9a98ca1531d/my_subgraph_v1_0 ``` In the subgraph details page, the status of the subgraph will change to **Deployed. Initial sync in progress** and will continuously provide feedback on the progress of the synchronization process. When it completes, the status will change to **Up to date**. @@ -112,7 +112,6 @@ In the subgraph details page, the status of the subgraph will change to **Deploy If the subgraph is in the **Failed** state, click **Logs** to view four levels of messages generated by the indexer and troubleshoot the issue. ::: - ## Query a subgraph To query a subgraph, you can choose from either of the following **Subgraph query** options in the subgraph details page: @@ -129,7 +128,7 @@ curl -g \\ -X POST \\ -H "Content-Type: application/json" \\ -d '{"query":"{myTransactions(first: 5) { id _value _from _to}}"}' \\ - https://elastic-subgraphs.p2pify.com/3c6e0b8a9c15224a8228b9a98ca1531d/my_subgraph_v1_0 + https://ethereum-mainnet.graph-eu.p2pify.com/3c6e0b8a9c15224a8228b9a98ca1531d/my_subgraph_v1_0 ``` ### GraphQL UI URL query in browser From a49f9125a851233711d23038d6ead9eeda1e5bac Mon Sep 17 00:00:00 2001 From: conor2e <113347474+conor2e@users.noreply.github.com> Date: Wed, 7 Dec 2022 13:34:39 +0100 Subject: [PATCH 3/5] Version and release notes files --- VERSION | 2 +- docs/release-notes.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index a4a18937..25656c5b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.8.7+{BUILD_NUM} +3.8.8+{BUILD_NUM} diff --git a/docs/release-notes.md b/docs/release-notes.md index 8bf586df..d0885b43 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -6,6 +6,7 @@ meta: content: release notes version blockchain cloud protocol --- + # Release notes ## Chainstack 3.8.4 From 5d41f02902d448b8ee60b2dcdaec91605c44fa5a Mon Sep 17 00:00:00 2001 From: conor2e <113347474+conor2e@users.noreply.github.com> Date: Wed, 7 Dec 2022 14:09:26 +0100 Subject: [PATCH 4/5] SGR to SG --- docs/subgraphs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/subgraphs.md b/docs/subgraphs.md index 95edcb47..3630eedd 100644 --- a/docs/subgraphs.md +++ b/docs/subgraphs.md @@ -100,7 +100,7 @@ graph –v 1. Enter a version label for your subgraph (you can use any number/letter character combination). If the subgraph is successfully deployed, you will receive a response like the following example: ``` sh - Deployed to https://chainstack.com/subgraphs/SGR-123-456-789 + Deployed to https://chainstack.com/subgraphs/SG-123-456-789 Subgraph endpoints: Queries (HTTP): https://ethereum-mainnet.graph-eu.p2pify.com/3c6e0b8a9c15224a8228b9a98ca1531d/my_subgraph_v1_0 From 5269fe648a4c805910ee8b05f582d38c93f502c2 Mon Sep 17 00:00:00 2001 From: conor2e <113347474+conor2e@users.noreply.github.com> Date: Wed, 7 Dec 2022 16:07:38 +0100 Subject: [PATCH 5/5] Changed warning to info tip --- docs/subgraphs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/subgraphs.md b/docs/subgraphs.md index 3630eedd..e90e3cfd 100644 --- a/docs/subgraphs.md +++ b/docs/subgraphs.md @@ -8,7 +8,7 @@ meta: # Subgraphs -::: warning +::: tip Information This is a closed beta. If you want to participate, contact *support@chainstack.com* ::: @@ -108,7 +108,7 @@ graph –v In the subgraph details page, the status of the subgraph will change to **Deployed. Initial sync in progress** and will continuously provide feedback on the progress of the synchronization process. When it completes, the status will change to **Up to date**. -::: tip +::: tip Information If the subgraph is in the **Failed** state, click **Logs** to view four levels of messages generated by the indexer and troubleshoot the issue. :::