-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
isabelle
committed
Nov 6, 2023
1 parent
f2ad82d
commit 5f6df9a
Showing
6 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"integrations": [ | ||
{ | ||
"name": "Safe", | ||
"url": "https://safe.scroll.xyz/", | ||
"network": ["sepolia", "mainnet"] | ||
}, | ||
{ | ||
"name": "The Graph", | ||
"url": "https://edgeandnode.notion.site/The-Graph-Subgraph-Studio-Non-Rate-Limited-Chain-Integration-889fe061ee6b4423a7f8e2c8070b9294?pvs=4", | ||
"network": ["sepolia", "mainnet"], | ||
"tags": ["indexer"], | ||
"comment": "Use the latest version of The Graph's cli." | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
const { data } = Astro.props | ||
--- | ||
|
||
{data.map((item) => <p>{item["name"]}</p>)} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
section: developers | ||
date: Last Modified | ||
title: "Tooling Deployed on Scroll Sepolia" | ||
lang: "en" | ||
permalink: "developers/deployed-tooling" | ||
excerpt: "" | ||
whatsnext: { "Ethereum and Scroll Differences": "/developers/ethereum-and-scroll-differences" } | ||
--- | ||
|
||
import Aside from "../../../../components/Aside.astro" | ||
import IntegrationsList from "../../../../components/IntegrationsList.astro" | ||
import integrations from "../../../../assets/integrations.json" | ||
|
||
<Aside type="danger" title="Products below are not tested by or endorsed by Scroll!"> | ||
We do our best to keep dangerous code out of the hands of developers, but the list below is auto-generated and may include malicious, insecure, or compromised projects. Always do your research! | ||
</Aside> | ||
|
||
<IntegrationsList data={integrations["integrations"]}/> | ||
|
||
<Aside type="tip" title="Have a deployment on Scroll Sepolia?"> | ||
Reach out if your tool or protocol could help builders on Scroll. | ||
</Aside> | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters