import React from 'react'; import { Typography } from '@material-ui/core/'; import { CheckCircle, Warning } from '@material-ui/icons/'; import EthereumAddress from '../../../components/EthereumAddress'; export default function EthereumConnectionCheck(props: any) { return (

Connect to the ethereum blockchain.

{props.nodeAddresses?.ethereum ?
Your connected to the Ethereum network
: props.loadingNodeAddresses ? null :
Your not connected to the Ethereum network.

Your Bee node must have access to the Ethereum blockchain, so that it can interact and deploy your chequebook contract. You can run your own Goerli node, or use a provider such as rpc.slock.it/goerli or Infura. By default, Bee expects a local Goerli node at http://localhost:8545. To use a provider instead, simply change your --swap-endpoint in your configuration file.

}
Node Address
) }