Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/dappnode/dappnodepackage-ropsten

DAppNode Package - Ropsten chain for DAppNode
https://github.com/dappnode/dappnodepackage-ropsten

Last synced: about 1 month ago
JSON representation

DAppNode Package - Ropsten chain for DAppNode

Awesome Lists containing this project

README

        

# DAppNode package _Ropsten_

[![](avatar-ropsten.png)](https://www.youtube.com/watch?v=uquMg_T9oZQ)

Get Ropsten Ethereum faucet [at this site](https://faucet.ropsten.be/)

### Why _Ropsten_ ?

Ropsten Ethereum, also known as “Ethereum Testnet”, are as the name implies, a testing network that runs the same protocol as Ethereum does and is used to testing purposes before deploying on the main network (Mainnet).

### Extra options

You can write extra options on the adminui or edit the `docker-compose.yml` and add extra options, such as:

```
- EXTRA_OPTS=--syncmode full --gcmode archive --wsapi "db,eth,net,ssh,miner,web3,personal,admin"
```

### Connect using web3js

If the package is running and you're connected to your dappnode you can use:

```
var Web3 = require('web3');
var web3 = new Web3('ws://my.ropsten.dnp.dappnode.eth:8546')
web3.eth.getBlockNumber().then(console.log)
```

In case you are running it locally:

```
var Web3 = require('web3');
var web3 = new Web3('ws://127.0.0.1:8546')
web3.eth.getBlockNumber().then(console.log)
```

### Manteinance

| Updated | Champion/s |
| :----------------: | :--------------: |
| :heavy_check_mark: | @pablomendezroyo |

### License

This project is licensed under the GNU General Public License v3.0 - see the [LICENSE](LICENSE) file for details