Skip to content

Commit

Permalink
default to sepolia for v4 create
Browse files Browse the repository at this point in the history
  • Loading branch information
aeolianeth committed Jan 31, 2025
1 parent 28e4141 commit 89a97a9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/constants/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,10 @@ export const NETWORKS_BY_NAME = Object.values(NETWORKS).reduce(
{} as Record<NetworkName, NetworkInfo>,
)

export const DEFAULT_PROJECT_CHAIN_ID = NETWORKS_BY_NAME.mainnet
/**
* TODO update to mainnet when we go to prod
*/
export const DEFAULT_PROJECT_CHAIN_ID = NETWORKS_BY_NAME.sepolia
.chainId as unknown as JBChainId // TODO once mainnet is a JBChainId, this wont be necessary

export const readNetwork =
Expand Down

0 comments on commit 89a97a9

Please sign in to comment.