Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
add sepolia to the supported networks
Browse files Browse the repository at this point in the history
  • Loading branch information
tenthirtyone committed Aug 25, 2022
1 parent 591d025 commit 19c76cb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions src/chains/ethereum/options/src/fork-options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,16 @@ type KnownNetworks =
| "kovan"
| "rinkeby"
| "goerli"
| "görli";
| "görli"
| "sepolia";
export const KNOWN_NETWORKS = [
"mainnet",
"ropsten",
"kovan",
"rinkeby",
"goerli",
"görli"
"görli",
"sepolia"
] as UnionToTuple<KnownNetworks>;

export type ForkConfig = {
Expand Down
4 changes: 2 additions & 2 deletions src/packages/ganache/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -381,8 +381,8 @@ Fork:

Use the shorthand command ganache --fork to automatically fork from
Mainnet at the latest block.
[choices: "mainnet", "ropsten", "kovan", "rinkeby", "goerli", "görli"]

[choices: "mainnet", "ropsten", "kovan", "rinkeby", "goerli", "görli"
"sepolia"]
--fork.blockNumber Block number the provider should fork from.
[default: Latest block number]

Expand Down

0 comments on commit 19c76cb

Please sign in to comment.