Skip to content
Open
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
2 changes: 1 addition & 1 deletion components/ConnectWallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const ConnectWallet = ({ nextStep }: Props) => {
const handleClick = async () => {
console.log("connecting wallet")
await connect()
await setChain({ chainId: '0x5' })
await setChain({ chainId: '0xaa36a7' })
nextStep()
}

Expand Down
6 changes: 3 additions & 3 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ init({
wallets: [injected],
chains: [
{
id: '0x5',
id: '0xaa36a7',
token: 'ETH',
label: 'Goerli Testnet',
rpcUrl: process.env.NEXT_PUBLIC_GOERLI_URL,//'https://eth-goerli.g.alchemy.com/v2/kcOzPHZIPQLSrltPylFU110LX1FTwQ_N', //process.env.NEXT_PUBLIC_GOERLI_URL,
label: 'SEPOLIA Testnet',
rpcUrl: process.env.NEXT_PUBLIC_SEPOLIA_URL,//'https://eth-goerli.g.alchemy.com/v2/kcOzPHZIPQLSrltPylFU110LX1FTwQ_N', //process.env.NEXT_PUBLIC_GOERLI_URL,
},
],
})
Expand Down