From 8ef01170cacba80fc090113becb64cb46c13088b Mon Sep 17 00:00:00 2001 From: enrique Date: Wed, 10 Jan 2024 12:27:27 +0100 Subject: [PATCH] feat: support sepolia --- README.md | 1 + scripts/download-artifacts.sh | 1 + scripts/update-network.sh | 1 + 3 files changed, 3 insertions(+) diff --git a/README.md b/README.md index 5797042..91c1092 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ - [Deploying subgraphs to the hosted service](#deploying-subgraphs-to-the-hosted-service) - [Getting the cookie and account id](#getting-the-cookie-and-account-id) - [Custom Entities](#custom-entities) + - [FulfilledCounter](#fulfilledcounter) - [Testing](#testing) - [References](#references) - [License](#license) diff --git a/scripts/download-artifacts.sh b/scripts/download-artifacts.sh index be7b590..cb2c8a0 100755 --- a/scripts/download-artifacts.sh +++ b/scripts/download-artifacts.sh @@ -32,6 +32,7 @@ NETWORKS_MAP=( ["aurora-testnet"]="1313161555" ["goerli"]="5" ["arbitrum-goerli"]="421613" + ["arbitrum-sepolia"]="421614" ["gnosis"]="100" ["arbitrum-one"]="42161" ) diff --git a/scripts/update-network.sh b/scripts/update-network.sh index 9f6cca5..46e1ba3 100755 --- a/scripts/update-network.sh +++ b/scripts/update-network.sh @@ -13,6 +13,7 @@ declare -A SCAN_URLS=( \ ["matic"]=https://api.polygonscan.com/api \ ["gnosis"]=https://api.gnosisscan.io/api \ ["arbitrum-goerli"]=https://api-goerli.arbiscan.io/api \ + ["arbitrum-sepolia"]=https://api-sepolia.arbiscan.io/api \ ["arbitrum-one"]=https://api.arbiscan.io/api \ )