From 8feb7216da0ae020a908672f90680392c9a0e664 Mon Sep 17 00:00:00 2001 From: andreivladbrg Date: Sat, 16 Dec 2023 17:54:56 +0200 Subject: [PATCH] build: remove support for goerli --- SECURITY.md | 2 +- foundry.toml | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/SECURITY.md b/SECURITY.md index 70f68b5f..01348ebe 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -24,7 +24,7 @@ The Program does NOT cover the following: - Code located in the [test](./test) or [script](./script) directories. - External code in the [lib](./lib) directory, except for code that is explicitly used by a deployed contract located in the [src](./src) directory. -- Contract deployments on test networks, such as Goerli. +- Contract deployments on test networks, such as Sepolia. - Bugs in third-party contracts or platforms interacting with Sablier V2 Periphery. - Previously reported or discovered vulnerabilities in contracts built by third parties on Sablier V2 Periphery. - Bugs that have already been reported. diff --git a/foundry.toml b/foundry.toml index 87d3a306..5e8bb5fe 100644 --- a/foundry.toml +++ b/foundry.toml @@ -43,7 +43,6 @@ avalanche = { key = "${API_KEY_SNOWTRACE" } bnb_smart_chain = { key = "${API_KEY_BSCSCAN}" } gnosis_chain = { key = "${API_KEY_GNOSISSCAN}" } - goerli = { key = "${API_KEY_ETHERSCAN}" } mainnet = { key = "${API_KEY_ETHERSCAN}" } optimism = { key = "${API_KEY_OPTIMISTIC_ETHERSCAN}" } polygon = { key = "${API_KEY_POLYGONSCAN}" } @@ -64,7 +63,6 @@ avalanche = "https://avalanche-mainnet.infura.io/v3/${API_KEY_INFURA}" bnb_smart_chain = "https://bsc-dataseed.binance.org" gnosis_chain = "https://rpc.gnosischain.com" - goerli = "${RPC_URL_GOERLI}" localhost = "http://localhost:8545" mainnet = "${RPC_URL_MAINNET}" optimism = "https://optimism-mainnet.infura.io/v3/${API_KEY_INFURA}"