An open API service indexing awesome lists of open source software.

https://github.com/youfoundron/react-web3-network-status

Simple and subtle Ethereum network status indicator inspired by MetaMask. 🌐🔌
https://github.com/youfoundron/react-web3-network-status

ethereum metamask network react web3

Last synced: 6 months ago
JSON representation

Simple and subtle Ethereum network status indicator inspired by MetaMask. 🌐🔌

Awesome Lists containing this project

README

          

React Web3 Network Status






















A MetaMask inspired component to show users the status of their network connectivity.
Now [officially endorsed](https://twitter.com/metamask_io/status/928031347494461442)!

## Installation
Using npm:
`$ npm install --save react-web3-network-status web3@^0.x.x babel-polyfill`

Using yarn:
`$ yarn add react-web3-network-status web3@^0.x.x babel-polyfill`

## Usage
```javascript
import 'babel-polyfill'
import React from 'react'
import NetworkStatus from 'react-web3-network-status'

const MyApp = () => (




)

export default MyApp
```

If you're already managing state and wish to explicitly pass a network id, try out the stateless version:
```javascript
import React from 'react'
import NetworkStatus from 'react-web3-network-status/stateless'

const MyApp = () => (




)

export default MyApp
```

## Demo
To run the demo app locally, clone this repo and run:
```
$ cd ../react-web3-network-status
$ npm install
$ npm run demo
```
Then visit [localhost:3000](http://localhost:3000) in your browser.

## Contributing
To contribute effectively, follow these steps:
1. Create a feature branch: `git checkout -b my-new-feature`
2. Commit your changes: `git commit -m 'add some feature'`
3. Push to the branch: `git push origin my-new-feature`
4. Submit a pull request!

## Inspiration
* [MetaMask](https://github.com/MetaMask/metamask-extension) - User interface
* [react-web3](https://github.com/coopermaruyama/react-web3) - User experience
* [DAO1901](https://github.com/asseth/dao1901) - State management using Redux Sagas