From 5bf5bb31dcf84b83303ecba5d2a59af773e97968 Mon Sep 17 00:00:00 2001 From: ayvee <113040046+asianviking@users.noreply.github.com> Date: Fri, 20 Dec 2024 04:56:55 +0700 Subject: [PATCH 1/2] chore: add Swedish & Thai translations (#1290) --- .../src/components/base-org/root/SlidingTextSection/index.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/web/src/components/base-org/root/SlidingTextSection/index.tsx b/apps/web/src/components/base-org/root/SlidingTextSection/index.tsx index 55b8ef028b..7cf9f7720a 100644 --- a/apps/web/src/components/base-org/root/SlidingTextSection/index.tsx +++ b/apps/web/src/components/base-org/root/SlidingTextSection/index.tsx @@ -8,8 +8,7 @@ import { CSSProperties, useRef } from 'react'; export default function SlidingTextSection() { const containerRef = useRef(null); - const text = ' Base is for everyone - بایس للجمیع - Base es para todos - 基地适合所有人 - La Base è per tutti - Base est pour tout le monde - Base ni ya kila mtu - Base yɛ ma obiara - Base nye amesiame tɔ - Base ji he ni mɔ fɛɛ mɔ yɔɔ - '; - + const text = ' Base is for everyone - بایس للجمیع - Base es para todos - 基地适合所有人 - La Base è per tutti - Base est pour tout le monde - Base ni ya kila mtu - Base yɛ ma obiara - Base nye amesiame tɔ - Base ji he ni mɔ fɛɛ mɔ yɔɔ - Base är för alla - Base สำหรับทุกคน - '; const containerClasses = classNames( 'relative w-full overflow-hidden rounded-2xl bg-blue p-8', From dc84d2c1bc56f7c5cec13c9f915d0909d6043627 Mon Sep 17 00:00:00 2001 From: AK Date: Thu, 19 Dec 2024 18:45:15 -0500 Subject: [PATCH 2/2] docs updated for The Graph: Supports both mainnet & testnet. Cleaned up wording (#1305) --- apps/base-docs/docs/tools/data-indexers.md | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/apps/base-docs/docs/tools/data-indexers.md b/apps/base-docs/docs/tools/data-indexers.md index 6f72ec5f36..1ebbd3a908 100644 --- a/apps/base-docs/docs/tools/data-indexers.md +++ b/apps/base-docs/docs/tools/data-indexers.md @@ -201,15 +201,22 @@ To get started, visit the [developer documentation](https://academy.subquery.net ## The Graph -[The Graph](https://thegraph.com/) is an indexing protocol for organizing blockchain data and making it easily accessible with GraphQL. +[The Graph](https://thegraph.com/) is an indexing protocol that provides an easy way to query blockchain data through APIs known as subgraphs. -Base applications can use GraphQL to query open APIs called subgraphs, to retrieve data that is indexed on the network. With The Graph, you can build serverless applications that run entirely on public infrastructure. +With The Graph, you can benefit from: + - **Decentralized Indexing**: Enables indexing blockchain data through multiple indexers, thus eliminating any single point of failure + - **GraphQL Queries**: Provides a powerful GraphQL interface for querying indexed data, making data retrieval super simple. + - **Customization**: Define your own logic for transforming & storing blockchain data. Reuse subgraphs published by other developers on The Graph Network. -To get started, visit the [documentation](https://thegraph.com/docs/en/) or see [this quickstart](https://thegraph.com/docs/en/cookbook/quick-start/) on how to create, deploy, and query a subgraph. +Follow this [quick-start](https://thegraph.com/docs/en/quick-start/) guide to create, deploy, and query a subgraph within 5 minutes. #### Supported Networks -- [Base Mainnet](https://thegraph.com/docs/en/#supported-networks) +- Base Mainnet +- Base Sepolia (Testnet) + +See [all supported networks](https://thegraph.com/docs/en/#supported-networks) + ---