Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion nginx.conf
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@idalithb – Redirects at lines 93 and 94 should be removed.

Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ http {
rewrite ^/docs/([a-zA-Z][a-zA-Z])/managing/transferring-subgraph-ownership/$ $scheme://$http_host/docs/$1/managing/transfer-and-deprecate-a-subgraph/ permanent;
rewrite ^/docs/en/substreams/(?!index\.).+$ https://substreams.streamingfast.io permanent;
rewrite ^/docs/en/firehose/(?!index\.).+$ https://firehose.streamingfast.io permanent;

# Temporary redirects (302)
rewrite ^/docs/en/querying/graph-client/$ $scheme://$http_host/docs/en/querying/graph-client/README/ redirect;
rewrite ^/docs/en/developing/graph-ts/$ $scheme://$http_host/docs/en/developing/graph-ts/README/ redirect;
Expand Down
24 changes: 24 additions & 0 deletions website/pages/ar/managing/deprecate-a-subgraph.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: Deprecate a Subgraph
---

## Deprecating a Subgraph

Although you cannot delete a subgraph, you can deprecate it on Graph Explorer.

### Step-by-Step

To deprecate your subgraph, do the following:

1. Visit the contract address for Arbitrum One subgraphs [here](https://arbiscan.io/address/0xec9A7fb6CbC2E41926127929c2dcE6e9c5D33Bec#writeProxyContract).
2. Call `deprecateSubgraph` with your `SubgraphID` as your argument.
3. Your subgraph will no longer appear in searches on Graph Explorer.

**Please note the following:**

- The owner's wallet should call the `deprecateSubgraph` function.
- Curators will not be able to signal on the subgraph anymore.
- Curators that already signaled on the subgraph can withdraw their signal at an average share price.
- Deprecated subgraphs will show an error message.

> If you interacted with the deprecated subgraph, you can find it in your user profile under the "Subgraphs", "Indexing", or "Curating" tab, respectively.
24 changes: 24 additions & 0 deletions website/pages/cs/managing/deprecate-a-subgraph.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: Deprecate a Subgraph
---

## Deprecating a Subgraph

Although you cannot delete a subgraph, you can deprecate it on Graph Explorer.

### Step-by-Step

To deprecate your subgraph, do the following:

1. Visit the contract address for Arbitrum One subgraphs [here](https://arbiscan.io/address/0xec9A7fb6CbC2E41926127929c2dcE6e9c5D33Bec#writeProxyContract).
2. Call `deprecateSubgraph` with your `SubgraphID` as your argument.
3. Your subgraph will no longer appear in searches on Graph Explorer.

**Please note the following:**

- The owner's wallet should call the `deprecateSubgraph` function.
- Curators will not be able to signal on the subgraph anymore.
- Curators that already signaled on the subgraph can withdraw their signal at an average share price.
- Deprecated subgraphs will show an error message.

> If you interacted with the deprecated subgraph, you can find it in your user profile under the "Subgraphs", "Indexing", or "Curating" tab, respectively.
24 changes: 24 additions & 0 deletions website/pages/de/managing/deprecate-a-subgraph.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: Deprecate a Subgraph
---

## Deprecating a Subgraph

Although you cannot delete a subgraph, you can deprecate it on Graph Explorer.

### Step-by-Step

To deprecate your subgraph, do the following:

1. Visit the contract address for Arbitrum One subgraphs [here](https://arbiscan.io/address/0xec9A7fb6CbC2E41926127929c2dcE6e9c5D33Bec#writeProxyContract).
2. Call `deprecateSubgraph` with your `SubgraphID` as your argument.
3. Your subgraph will no longer appear in searches on Graph Explorer.

**Please note the following:**

- The owner's wallet should call the `deprecateSubgraph` function.
- Curators will not be able to signal on the subgraph anymore.
- Curators that already signaled on the subgraph can withdraw their signal at an average share price.
- Deprecated subgraphs will show an error message.

> If you interacted with the deprecated subgraph, you can find it in your user profile under the "Subgraphs", "Indexing", or "Curating" tab, respectively.
3 changes: 2 additions & 1 deletion website/pages/en/managing/_meta.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export default {
'transfer-and-deprecate-a-subgraph': '',
'transfer-a-subgraph': '',
'deprecate-a-subgraph': '',
}
22 changes: 22 additions & 0 deletions website/pages/en/managing/deprecate-a-subgraph.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
title: Deprecate a Subgraph
---

Although you cannot delete a subgraph, you can deprecate it on Graph Explorer.

## Step-by-Step

To deprecate your subgraph, do the following:

1. Visit the contract address for Arbitrum One subgraphs [here](https://arbiscan.io/address/0xec9A7fb6CbC2E41926127929c2dcE6e9c5D33Bec#writeProxyContract).
2. Call `deprecateSubgraph` with your `SubgraphID` as your argument.
3. Your subgraph will no longer appear in searches on Graph Explorer.

## Reminders

- The owner's wallet should call the `deprecateSubgraph` function.
- Curators will not be able to signal on the subgraph anymore.
- Curators that already signaled on the subgraph can withdraw their signal at an average share price.
- Deprecated subgraphs will show an error message.

> If you interacted with the deprecated subgraph, you can find it in your user profile under the "Subgraphs", "Indexing", or "Curating" tab, respectively.
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
---
title: Transfer and Deprecate a Subgraph
title: Transfer a Subgraph
---

## Transferring ownership of a subgraph

Subgraphs published to the decentralized network have an NFT minted to the address that published the subgraph. The NFT is based on a standard ERC721, which facilitates transfers between accounts on The Graph Network.

**Please note the following:**
## Reminders

- Whoever owns the NFT controls the subgraph.
- If the owner decides to sell or transfer the NFT, they will no longer be able to edit or update that subgraph on the network.
- You can easily move control of a subgraph to a multi-sig.
- A community member can create a subgraph on behalf of a DAO.

### View your subgraph as an NFT
## View your subgraph as an NFT

To view your subgraph as an NFT, you can visit an NFT marketplace like **OpenSea**:

Expand All @@ -27,7 +25,7 @@ Or a wallet explorer like **Rainbow.me**:
https://rainbow.me/your-wallet-addres
```

### Step-by-Step
## Step-by-Step

To transfer ownership of a subgraph, do the following:

Expand All @@ -42,24 +40,3 @@ To transfer ownership of a subgraph, do the following:
Optionally, you can also use the built-in UI of NFT marketplaces like OpenSea:

![Subgraph Ownership Transfer from NFT marketplace](/img/subgraph-ownership-transfer-nft-marketplace.png)

## Deprecating a subgraph

Although you cannot delete a subgraph, you can deprecate it on Graph Explorer.

### Step-by-Step

To deprecate your subgraph, do the following:

1. Visit the contract address for Arbitrum One subgraphs [here](https://arbiscan.io/address/0xec9A7fb6CbC2E41926127929c2dcE6e9c5D33Bec#writeProxyContract).
2. Call `deprecateSubgraph` with your `SubgraphID` as your argument.
3. Your subgraph will no longer appear in searches on Graph Explorer.

**Please note the following:**

- The owner's wallet should call the `deprecateSubgraph` function.
- Curators will not be able to signal on the subgraph anymore.
- Curators that already signaled on the subgraph can withdraw their signal at an average share price.
- Deprecated subgraphs will show an error message.

> If you interacted with the deprecated subgraph, you can find it in your user profile under the "Subgraphs", "Indexing", or "Curating" tab, respectively.
24 changes: 24 additions & 0 deletions website/pages/es/managing/deprecate-a-subgraph.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: Deprecate a Subgraph
---

## Deprecating a Subgraph

Although you cannot delete a subgraph, you can deprecate it on Graph Explorer.

### Step-by-Step

To deprecate your subgraph, do the following:

1. Visit the contract address for Arbitrum One subgraphs [here](https://arbiscan.io/address/0xec9A7fb6CbC2E41926127929c2dcE6e9c5D33Bec#writeProxyContract).
2. Call `deprecateSubgraph` with your `SubgraphID` as your argument.
3. Your subgraph will no longer appear in searches on Graph Explorer.

**Please note the following:**

- The owner's wallet should call the `deprecateSubgraph` function.
- Curators will not be able to signal on the subgraph anymore.
- Curators that already signaled on the subgraph can withdraw their signal at an average share price.
- Deprecated subgraphs will show an error message.

> If you interacted with the deprecated subgraph, you can find it in your user profile under the "Subgraphs", "Indexing", or "Curating" tab, respectively.
24 changes: 24 additions & 0 deletions website/pages/fr/managing/deprecate-a-subgraph.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: Deprecate a Subgraph
---

## Deprecating a Subgraph

Although you cannot delete a subgraph, you can deprecate it on Graph Explorer.

### Step-by-Step

To deprecate your subgraph, do the following:

1. Visit the contract address for Arbitrum One subgraphs [here](https://arbiscan.io/address/0xec9A7fb6CbC2E41926127929c2dcE6e9c5D33Bec#writeProxyContract).
2. Call `deprecateSubgraph` with your `SubgraphID` as your argument.
3. Your subgraph will no longer appear in searches on Graph Explorer.

**Please note the following:**

- The owner's wallet should call the `deprecateSubgraph` function.
- Curators will not be able to signal on the subgraph anymore.
- Curators that already signaled on the subgraph can withdraw their signal at an average share price.
- Deprecated subgraphs will show an error message.

> If you interacted with the deprecated subgraph, you can find it in your user profile under the "Subgraphs", "Indexing", or "Curating" tab, respectively.
24 changes: 24 additions & 0 deletions website/pages/ha/managing/deprecate-a-subgraph.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: Deprecate a Subgraph
---

## Deprecating a Subgraph

Although you cannot delete a subgraph, you can deprecate it on Graph Explorer.

### Step-by-Step

To deprecate your subgraph, do the following:

1. Visit the contract address for Arbitrum One subgraphs [here](https://arbiscan.io/address/0xec9A7fb6CbC2E41926127929c2dcE6e9c5D33Bec#writeProxyContract).
2. Call `deprecateSubgraph` with your `SubgraphID` as your argument.
3. Your subgraph will no longer appear in searches on Graph Explorer.

**Please note the following:**

- The owner's wallet should call the `deprecateSubgraph` function.
- Curators will not be able to signal on the subgraph anymore.
- Curators that already signaled on the subgraph can withdraw their signal at an average share price.
- Deprecated subgraphs will show an error message.

> If you interacted with the deprecated subgraph, you can find it in your user profile under the "Subgraphs", "Indexing", or "Curating" tab, respectively.
24 changes: 24 additions & 0 deletions website/pages/hi/managing/deprecate-a-subgraph.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: Deprecate a Subgraph
---

## Deprecating a Subgraph

Although you cannot delete a subgraph, you can deprecate it on Graph Explorer.

### Step-by-Step

To deprecate your subgraph, do the following:

1. Visit the contract address for Arbitrum One subgraphs [here](https://arbiscan.io/address/0xec9A7fb6CbC2E41926127929c2dcE6e9c5D33Bec#writeProxyContract).
2. Call `deprecateSubgraph` with your `SubgraphID` as your argument.
3. Your subgraph will no longer appear in searches on Graph Explorer.

**Please note the following:**

- The owner's wallet should call the `deprecateSubgraph` function.
- Curators will not be able to signal on the subgraph anymore.
- Curators that already signaled on the subgraph can withdraw their signal at an average share price.
- Deprecated subgraphs will show an error message.

> If you interacted with the deprecated subgraph, you can find it in your user profile under the "Subgraphs", "Indexing", or "Curating" tab, respectively.
24 changes: 24 additions & 0 deletions website/pages/it/managing/deprecate-a-subgraph.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: Deprecate a Subgraph
---

## Deprecating a Subgraph

Although you cannot delete a subgraph, you can deprecate it on Graph Explorer.

### Step-by-Step

To deprecate your subgraph, do the following:

1. Visit the contract address for Arbitrum One subgraphs [here](https://arbiscan.io/address/0xec9A7fb6CbC2E41926127929c2dcE6e9c5D33Bec#writeProxyContract).
2. Call `deprecateSubgraph` with your `SubgraphID` as your argument.
3. Your subgraph will no longer appear in searches on Graph Explorer.

**Please note the following:**

- The owner's wallet should call the `deprecateSubgraph` function.
- Curators will not be able to signal on the subgraph anymore.
- Curators that already signaled on the subgraph can withdraw their signal at an average share price.
- Deprecated subgraphs will show an error message.

> If you interacted with the deprecated subgraph, you can find it in your user profile under the "Subgraphs", "Indexing", or "Curating" tab, respectively.
24 changes: 24 additions & 0 deletions website/pages/ja/managing/deprecate-a-subgraph.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: Deprecate a Subgraph
---

## Deprecating a Subgraph

Although you cannot delete a subgraph, you can deprecate it on Graph Explorer.

### Step-by-Step

To deprecate your subgraph, do the following:

1. Visit the contract address for Arbitrum One subgraphs [here](https://arbiscan.io/address/0xec9A7fb6CbC2E41926127929c2dcE6e9c5D33Bec#writeProxyContract).
2. Call `deprecateSubgraph` with your `SubgraphID` as your argument.
3. Your subgraph will no longer appear in searches on Graph Explorer.

**Please note the following:**

- The owner's wallet should call the `deprecateSubgraph` function.
- Curators will not be able to signal on the subgraph anymore.
- Curators that already signaled on the subgraph can withdraw their signal at an average share price.
- Deprecated subgraphs will show an error message.

> If you interacted with the deprecated subgraph, you can find it in your user profile under the "Subgraphs", "Indexing", or "Curating" tab, respectively.
24 changes: 24 additions & 0 deletions website/pages/ko/managing/deprecate-a-subgraph.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: Deprecate a Subgraph
---

## Deprecating a Subgraph

Although you cannot delete a subgraph, you can deprecate it on Graph Explorer.

### Step-by-Step

To deprecate your subgraph, do the following:

1. Visit the contract address for Arbitrum One subgraphs [here](https://arbiscan.io/address/0xec9A7fb6CbC2E41926127929c2dcE6e9c5D33Bec#writeProxyContract).
2. Call `deprecateSubgraph` with your `SubgraphID` as your argument.
3. Your subgraph will no longer appear in searches on Graph Explorer.

**Please note the following:**

- The owner's wallet should call the `deprecateSubgraph` function.
- Curators will not be able to signal on the subgraph anymore.
- Curators that already signaled on the subgraph can withdraw their signal at an average share price.
- Deprecated subgraphs will show an error message.

> If you interacted with the deprecated subgraph, you can find it in your user profile under the "Subgraphs", "Indexing", or "Curating" tab, respectively.
24 changes: 24 additions & 0 deletions website/pages/mr/managing/deprecate-a-subgraph.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: Deprecate a Subgraph
---

## Deprecating a Subgraph

Although you cannot delete a subgraph, you can deprecate it on Graph Explorer.

### Step-by-Step

To deprecate your subgraph, do the following:

1. Visit the contract address for Arbitrum One subgraphs [here](https://arbiscan.io/address/0xec9A7fb6CbC2E41926127929c2dcE6e9c5D33Bec#writeProxyContract).
2. Call `deprecateSubgraph` with your `SubgraphID` as your argument.
3. Your subgraph will no longer appear in searches on Graph Explorer.

**Please note the following:**

- The owner's wallet should call the `deprecateSubgraph` function.
- Curators will not be able to signal on the subgraph anymore.
- Curators that already signaled on the subgraph can withdraw their signal at an average share price.
- Deprecated subgraphs will show an error message.

> If you interacted with the deprecated subgraph, you can find it in your user profile under the "Subgraphs", "Indexing", or "Curating" tab, respectively.
24 changes: 24 additions & 0 deletions website/pages/nl/managing/deprecate-a-subgraph.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: Deprecate a Subgraph
---

## Deprecating a Subgraph

Although you cannot delete a subgraph, you can deprecate it on Graph Explorer.

### Step-by-Step

To deprecate your subgraph, do the following:

1. Visit the contract address for Arbitrum One subgraphs [here](https://arbiscan.io/address/0xec9A7fb6CbC2E41926127929c2dcE6e9c5D33Bec#writeProxyContract).
2. Call `deprecateSubgraph` with your `SubgraphID` as your argument.
3. Your subgraph will no longer appear in searches on Graph Explorer.

**Please note the following:**

- The owner's wallet should call the `deprecateSubgraph` function.
- Curators will not be able to signal on the subgraph anymore.
- Curators that already signaled on the subgraph can withdraw their signal at an average share price.
- Deprecated subgraphs will show an error message.

> If you interacted with the deprecated subgraph, you can find it in your user profile under the "Subgraphs", "Indexing", or "Curating" tab, respectively.
Loading
Loading