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

Commit eb6b9e6

Browse files
authored
Merge branch 'develop' into fix/eth_getBlockTransactionCountByHash
2 parents cac713f + 224807e commit eb6b9e6

File tree

3 files changed

+2
-28
lines changed

3 files changed

+2
-28
lines changed

src/chains/ethereum/ethereum/tests/forking/forking.test.ts

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1197,21 +1197,6 @@ describe("forking", function () {
11971197
balance: "0x6d3c9dd798891c3455045",
11981198
block: "0xcfd6e0"
11991199
},
1200-
ropsten: {
1201-
address: "0x00000000219ab540356cbb839cbe05303d7705fa",
1202-
balance: "0x6cdf802b72c2a000",
1203-
block: "0xae42fd"
1204-
},
1205-
kovan: {
1206-
address: "0x596e8221A30bFe6e7eFF67Fee664A01C73BA3C56",
1207-
balance: "0x19b2bed356f3da980e2e3",
1208-
block: "0x1a36e09"
1209-
},
1210-
rinkeby: {
1211-
address: "0x6dC0c0be4c8B2dFE750156dc7d59FaABFb5B923D",
1212-
balance: "0x11cde6445010582e1ae",
1213-
block: "0x92c444"
1214-
},
12151200
goerli: {
12161201
address: "0x9d525E28Fe5830eE92d7Aa799c4D21590567B595",
12171202
balance: "0x81744abdb769a3b6dc08b",

src/chains/ethereum/options/src/fork-options.ts

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,9 @@ const MAX_BLOCK_NUMBER = Math.floor(Number.MAX_SAFE_INTEGER / 2);
1111
type HeaderRecord = { name: string; value: string };
1212
type ForkUrl = URL & { _blockNumber?: number | typeof Tag.latest };
1313

14-
type KnownNetworks =
15-
| "mainnet"
16-
| "ropsten"
17-
| "kovan"
18-
| "rinkeby"
19-
| "goerli"
20-
| "görli"
21-
| "sepolia";
14+
type KnownNetworks = "mainnet" | "goerli" | "görli" | "sepolia";
2215
export const KNOWN_NETWORKS = [
2316
"mainnet",
24-
"ropsten",
25-
"kovan",
26-
"rinkeby",
2717
"goerli",
2818
"görli",
2919
"sepolia"

src/packages/ganache/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,8 +381,7 @@ Fork:
381381

382382
Use the shorthand command ganache --fork to automatically fork from
383383
Mainnet at the latest block.
384-
[choices: "mainnet", "ropsten", "kovan", "rinkeby", "goerli", "görli",
385-
"sepolia"]
384+
[choices: "mainnet", "goerli", "görli", "sepolia"]
386385
--fork.blockNumber Block number the provider should fork from.
387386
[default: Latest block number]
388387

0 commit comments

Comments
 (0)