Skip to content

Commit

Permalink
build: remove goerli support (#720)
Browse files Browse the repository at this point in the history
* build: remove goerli support

ci: use sepolia for default chain in deployment workflows

* docs: mention Sepolia instead of Goerli

---------

Co-authored-by: Paul Razvan Berg <[email protected]>
  • Loading branch information
andreivladbrg and PaulRBerg authored Oct 27, 2023
1 parent 3883dc3 commit 4e7f7c9
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 8 deletions.
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

0 comments on commit 4e7f7c9

Please sign in to comment.