From 313578957120c04c8662fc9273de2c8c257f8ca6 Mon Sep 17 00:00:00 2001 From: Paul Razvan Berg Date: Fri, 15 Nov 2024 14:08:05 +0700 Subject: [PATCH] fix: fix subgraph link refactor: update integration template link --- docs/contracts/v2/01-overview.md | 4 ++-- docs/contracts/v2/guides/01-local-environment.md | 6 +++--- docusaurus.config.ts | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/contracts/v2/01-overview.md b/docs/contracts/v2/01-overview.md index 3fcc74ff..0847672c 100644 --- a/docs/contracts/v2/01-overview.md +++ b/docs/contracts/v2/01-overview.md @@ -27,6 +27,6 @@ For a deeper dive, read through the [technical reference](./reference/overview). - [V2 Core](https://github.com/sablier-labs/v2-core/tree/release) - [V2 Periphery](https://github.com/sablier-labs/v2-periphery/tree/release) -- [V2 Integration Template](https://github.com/sablier-labs/sablier-v2-integration-template) -- [V2 Example Integrations](https://github.com/sablier-labs/examples) +- [Integration Template](https://github.com/sablier-labs/sablier-integration-template) +- [Example Integrations](https://github.com/sablier-labs/examples) - [Foundry Book](https://book.getfoundry.sh/) diff --git a/docs/contracts/v2/guides/01-local-environment.md b/docs/contracts/v2/guides/01-local-environment.md index 01cb5a5d..6154f1ce 100644 --- a/docs/contracts/v2/guides/01-local-environment.md +++ b/docs/contracts/v2/guides/01-local-environment.md @@ -35,9 +35,9 @@ Make sure you are using the latest version of Foundry by running `foundryup`. To install the template, simply execute the following commands: ```shell -$ mkdir sablier-v2-integration-template -$ cd sablier-v2-integration-template -$ forge init --template sablier-labs/sablier-v2-integration-template +$ mkdir sablier-integration-template +$ cd sablier-integration-template +$ forge init --template sablier-labs/sablier-integration-template $ bun install ``` diff --git a/docusaurus.config.ts b/docusaurus.config.ts index e2adcf5a..aed2e780 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -185,12 +185,12 @@ const config: Config = { href: "https://github.com/sablier-labs/v2-periphery", }, { - label: "V2 Integration Template", - href: "https://github.com/sablier-labs/sablier-v2-integration-template", + label: "Integration Template", + href: "https://github.com/sablier-labs/sablier-integration-template", }, { - label: "Subgraph", - href: "https://github.com/sablier-labs/subgraph", + label: "Subgraphs", + href: "https://github.com/sablier-labs/subgraphs", }, ], },