Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: remove goerli support #720

Merged
merged 2 commits into from
Oct 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy-comptroller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
description: "Initial contract admin."
required: false
chain:
default: "goerli"
default: "sepolia"
description: "Chain name as defined in the Foundry config."
required: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
description: "Initial protocol admin."
required: false
chain:
default: "goerli"
default: "sepolia"
description: "Chain name as defined in the Foundry config."
required: false
max-segment-count:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-lockup-dynamic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
description: "Initial contract admin."
required: false
chain:
default: "goerli"
default: "sepolia"
description: "Chain name as defined in the Foundry config."
required: false
comptroller:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-lockup-linear.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
description: "Initial contract admin."
required: false
chain:
default: "goerli"
default: "sepolia"
description: "Chain name as defined in the Foundry config."
required: false
comptroller:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-nft-descriptor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
workflow_dispatch:
inputs:
chain:
default: "goerli"
default: "sepolia"
description: "Chain name as defined in the Foundry config."
required: false

Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 Core.
- Previously reported or discovered vulnerabilities in contracts built by third parties on Sablier V2 Core.
- Bugs that have already been reported.
Expand Down
2 changes: 0 additions & 2 deletions foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,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}" }
Expand All @@ -105,7 +104,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 = "https://goerli.infura.io/v3/${API_KEY_INFURA}"
localhost = "http://localhost:8545"
mainnet = "${RPC_URL_MAINNET}"
optimism = "https://optimism-mainnet.infura.io/v3/${API_KEY_INFURA}"
Expand Down