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 Hoodi config to network list #745

Merged
merged 3 commits into from
Mar 27, 2025
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
12 changes: 12 additions & 0 deletions .env.hoodi
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
export REACT_APP_IS_MAINNET=false
export REACT_APP_CONTRACT_ADDRESS=0x00000000219ab540356cBB839Cbe05303d7705Fa
export REACT_APP_ETH_REQUIREMENT=524288
export REACT_APP_ETH_DEPOSIT_OFFSET=0
export REACT_APP_TESTNET_LAUNCHPAD_NAME=Hoodi
export REACT_APP_GENESIS_FORK_VERSION=0x10000910
export REACT_APP_RPC_URL=https://rpc.hoodi.ethpandaops.io
export REACT_APP_BEACONCHAIN_URL=https://dora.hoodi.ethpandaops.io/
export REACT_APP_EL_EXPLORER_URL=https://explorer.hoodi.ethpandaops.io
export REACT_APP_TUTORIAL_URL=https://notes.ethereum.org/@launchpad/hoodi
export REACT_APP_FAUCET_URL=https://hoodi-faucet.pk910.de/
export REACT_APP_MIN_GENESIS_TIME=1742213400000
22 changes: 8 additions & 14 deletions .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -39,28 +39,22 @@ REACT_APP_TEKU_INSTALLATION_URL=https://docs.teku.consensys.io/get-started/insta
# true, false
REACT_APP_IS_MAINNET=false
# string (if `REACT_APP_IS_MAINNET=true`, it's the active public testnet name; otherwise, it's the testnet name of this website)
REACT_APP_TESTNET_LAUNCHPAD_NAME=Holesky
REACT_APP_TESTNET_LAUNCHPAD_NAME=Hoodi
# string
REACT_APP_CONTRACT_ADDRESS=0x4242424242424242424242424242424242424242
# string
REACT_APP_RPC_URL=https://rpc.holesky.ethpandaops.io
REACT_APP_CONTRACT_ADDRESS=0x00000000219ab540356cBB839Cbe05303d7705Fa
# string
REACT_APP_BEACONCHAIN_URL=https://holesky.beaconcha.in
REACT_APP_RPC_URL=https://rpc.hoodi.ethpandaops.io
# string
REACT_APP_EL_EXPLORER_URL=https://holesky.beaconcha.in
REACT_APP_BEACONCHAIN_URL=https://hoodi.beaconcha.in
# string
REACT_APP_TUTORIAL_URL=https://notes.ethereum.org/@launchpad/holesky
REACT_APP_EL_EXPLORER_URL=https://hoodi.beaconcha.in
# number
REACT_APP_ETH_DEPOSIT_OFFSET=0
# string
REACT_APP_FAUCET_URL=https://www.holeskyfaucet.io/
# string
REACT_APP_RPC_URL=https://rpc.holesky.ethpandaops.io
REACT_APP_FAUCET_URL=https://hoodi-faucet.pk910.de/
# string
REACT_APP_BEACONCHAIN_URL=https://holesky.beaconcha.in
REACT_APP_BEACONCHAIN_URL=https://dora.hoodi.ethpandaops.io/
# string
REACT_APP_TUTORIAL_URL=https://notes.ethereum.org/@launchpad/holesky
# number
REACT_APP_ETH_DEPOSIT_OFFSET=0
REACT_APP_TUTORIAL_URL=https://notes.ethereum.org/@launchpad/hoodi
# number
REACT_APP_MIN_GENESIS_TIME=1695902400000
3 changes: 0 additions & 3 deletions netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
NODE_VERSION = "14.19.2"
[context.deploy-preview.environment]
NODE_VERSION = "14.19.2"
REACT_APP_IS_MERGE = "true"
REACT_APP_COMPOUNDING_CONTRACT_ADDRESS = "0x0000BBdDc7CE488642fb579F8B00f3a590007251"
REACT_APP_WITHDRAWAL_CONTRACT_ADDRESS = "0x00000961Ef480Eb55e80D19ad83579A64c007002"
[context.branch-deploy.environment]
NODE_VERSION = "14.19.2"
[context.dev.environment]
Expand Down
5 changes: 5 additions & 0 deletions src/pages/ConnectWallet/web3Utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@ export enum NetworkChainId {
'Mainnet' = 1,
'Sepolia' = 11155111,
'Holesky' = 17000,
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can open a separate PR to formally deprecate Holesky

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, I agree this is the right way to do that

'Hoodi' = 560048,
}

export const NetworkChainIdDict: { [id: string]: number } = {
Mainnet: 1,
Sepolia: 11155111,
Holesky: 17000,
Hoodi: 560048,
};

/*
Expand All @@ -35,11 +37,13 @@ const supportedNetworks = [
NetworkChainId.Mainnet,
NetworkChainId.Sepolia,
NetworkChainId.Holesky,
NetworkChainId.Hoodi,
];

enum Testnet {
'Sepolia',
'Holesky',
'Hoodi',
}

enum Mainnet {
Expand All @@ -50,6 +54,7 @@ export const NetworkNameToChainId: { [key: string]: NetworkChainId } = {
Holesky: NetworkChainId.Holesky,
Mainnet: NetworkChainId.Mainnet,
Sepolia: NetworkChainId.Sepolia,
Hoodi: NetworkChainId.Hoodi,
};

export const TARGET_NETWORK_CHAIN_ID = IS_MAINNET
Expand Down
8 changes: 4 additions & 4 deletions src/utils/envVars.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
export const IS_MAINNET = Boolean(process.env.REACT_APP_IS_MAINNET !== 'false'); // If REACT_APP_IS_MAINNET is unset, set it to true by default
export const IS_NON_INFURA_TESTNET = !IS_MAINNET && process.env.REACT_APP_RPC_URL
export const TESTNET_LAUNCHPAD_NAME = process.env.REACT_APP_TESTNET_LAUNCHPAD_NAME || 'Holesky';
export const TESTNET_LAUNCHPAD_NAME = process.env.REACT_APP_TESTNET_LAUNCHPAD_NAME || 'Hoodi';

// private vars (or derived from)
export const INFURA_PROJECT_ID = process.env.REACT_APP_INFURA_PROJECT_ID || '';
export const ENABLE_RPC_FEATURES = Boolean(INFURA_PROJECT_ID && INFURA_PROJECT_ID !== '');
export const RPC_URL = process.env.REACT_APP_RPC_URL || (`https://${IS_MAINNET ? "mainnet" : "holesky"}.infura.io/v3/${INFURA_PROJECT_ID}`);
export const RPC_URL = process.env.REACT_APP_RPC_URL || (`https://${IS_MAINNET ? "mainnet" : "hoodi"}.infura.io/v3/${INFURA_PROJECT_ID}`);

// public
export const NETWORK_NAME = IS_MAINNET ? 'Mainnet' : TESTNET_LAUNCHPAD_NAME;
Expand All @@ -25,7 +25,7 @@ export const LODESTAR_INSTALLATION_URL = process.env.REACT_APP_LODESTAR_INSTALL
export const MAINNET_LAUNCHPAD_URL = 'https://launchpad.ethereum.org/'
export const TESTNET_LAUNCHPAD_URL = `https://${TESTNET_LAUNCHPAD_NAME.toLowerCase()}.launchpad.ethereum.org/`

let elExplorerURL = 'https://holesky.etherscan.io';
let elExplorerURL = 'https://hoodi.etherscan.io';
if (IS_NON_INFURA_TESTNET && process.env.REACT_APP_EL_EXPLORER_URL) {
elExplorerURL = process.env.REACT_APP_EL_EXPLORER_URL;
} else if (IS_MAINNET) {
Expand All @@ -35,7 +35,7 @@ export const EL_EXPLOER_URL = elExplorerURL
export const EL_TRANSACTION_URL = `${elExplorerURL}/tx`


export const FAUCET_URL = process.env.REACT_APP_FAUCET_URL || 'https://www.holeskyfaucet.io/'
export const FAUCET_URL = process.env.REACT_APP_FAUCET_URL || 'https://hoodi-faucet.pk910.de/'
export const TUTORIAL_URL = process.env.REACT_APP_TUTORIAL_URL || null;

if(process.env.REACT_APP_ETH_REQUIREMENT && Number.isNaN(Number(process.env.REACT_APP_ETH_REQUIREMENT))) {
Expand Down