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

Add ropsten network #4051

Merged
merged 1 commit into from
May 24, 2022
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
7 changes: 5 additions & 2 deletions packages/cli/src/networks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ import got from "got";
import * as mainnet from "./mainnet";
import * as prater from "./prater";
import * as kiln from "./kiln";
import * as ropsten from "./ropsten";

export type NetworkName = "mainnet" | "prater" | "kiln" | "dev";
export const networkNames: NetworkName[] = ["mainnet", "prater", "kiln"];
export type NetworkName = "mainnet" | "prater" | "kiln" | "ropsten" | "dev";
export const networkNames: NetworkName[] = ["mainnet", "prater", "kiln", "ropsten"];

export type WeakSubjectivityFetchOptions = {
weakSubjectivityServerUrl: string;
Expand All @@ -37,6 +38,8 @@ function getNetworkData(
return prater;
case "kiln":
return kiln;
case "ropsten":
return ropsten;
default:
throw Error(`Network not supported: ${network}`);
}
Expand Down
13 changes: 13 additions & 0 deletions packages/cli/src/networks/ropsten.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import {ropstenChainConfig} from "@chainsafe/lodestar-config/networks";

export const chainConfig = ropstenChainConfig;

/* eslint-disable max-len */

export const depositContractDeployBlock = 12269949;
export const genesisFileUrl =
"https://raw.githubusercontent.com/eth-clients/merge-testnets/main/ropsten-beacon-chain/genesis.ssz";
export const bootnodesFileUrl =
"https://raw.githubusercontent.com/eth-clients/merge-testnets/main/ropsten-beacon-chain/bootstrap_nodes.txt";

export const bootEnrs = [];
twoeths marked this conversation as resolved.
Show resolved Hide resolved
44 changes: 44 additions & 0 deletions packages/config/src/chainConfig/networks/ropsten.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/* eslint-disable @typescript-eslint/naming-convention */
import {fromHexString as b} from "@chainsafe/ssz";
import {IChainConfig} from "../types";
import {chainConfig as mainnet} from "../presets/mainnet";

/* eslint-disable max-len */

// Ropsten beacon chain config:
// https://github.com/eth-clients/merge-testnets/blob/main/ropsten-beacon-chain/config.yaml

export const ropstenChainConfig: IChainConfig = {
...mainnet,

// Genesis
// ---------------------------------------------------------------
MIN_GENESIS_ACTIVE_VALIDATOR_COUNT: 100000,
// # Monday, May 30th, 2022 3:00:00 PM +UTC
MIN_GENESIS_TIME: 1653318000,
GENESIS_FORK_VERSION: b("0x80000069"),

// Forking
// ---------------------------------------------------------------
// # Altair
ALTAIR_FORK_VERSION: b("0x80000070"),
ALTAIR_FORK_EPOCH: 500,
// # Merge
BELLATRIX_FORK_VERSION: b("0x80000071"),
BELLATRIX_FORK_EPOCH: 750,
TERMINAL_TOTAL_DIFFICULTY: BigInt(43531756765713534),
// # Sharding
SHARDING_FORK_VERSION: b("0x03001020"),
SHARDING_FORK_EPOCH: Infinity,

// Fork choice
// ---------------------------------------------------------------
// 40%
PROPOSER_SCORE_BOOST: 40,

// Deposit contract
// ---------------------------------------------------------------
DEPOSIT_CHAIN_ID: 3,
DEPOSIT_NETWORK_ID: 3,
DEPOSIT_CONTRACT_ADDRESS: b("0x6f22fFbC56eFF051aECF839396DD1eD9aD6BBA9D"),
};
6 changes: 4 additions & 2 deletions packages/config/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@ import {IChainConfig} from "./chainConfig";
import {mainnetChainConfig} from "./chainConfig/networks/mainnet";
import {praterChainConfig} from "./chainConfig/networks/prater";
import {kilnChainConfig} from "./chainConfig/networks/kiln";
import {ropstenChainConfig} from "./chainConfig/networks/ropsten";

export {mainnetChainConfig, praterChainConfig, kilnChainConfig};
export {mainnetChainConfig, praterChainConfig, kilnChainConfig, ropstenChainConfig};

export type NetworkName = "mainnet" | "prater" | "kiln";
export type NetworkName = "mainnet" | "prater" | "kiln" | "ropsten";
export const networksChainConfig: Record<NetworkName, IChainConfig> = {
mainnet: mainnetChainConfig,
prater: praterChainConfig,
kiln: kilnChainConfig,
ropsten: ropstenChainConfig,
};
5 changes: 5 additions & 0 deletions packages/light-client/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ enum NetworkName {
mainnet = "mainnet",
prater = "prater",
kiln = "kiln",
ropsten = "ropsten",
}

export type GenesisDataHex = {
Expand All @@ -29,4 +30,8 @@ export const networkGenesis: Record<NetworkName, GenesisDataHex> = {
genesisTime: 1647007500,
genesisValidatorsRoot: "0x99b09fcd43e5905236c370f184056bec6e6638cfc31a323b304fc4aa789cb4ad",
},
[NetworkName.ropsten]: {
genesisTime: 1653922800,
genesisValidatorsRoot: "0x44f1e56283ca88b35c789f7f449e52339bc1fefe3a45913a43a6d16edcd33cf1",
},
};