Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/dappnode/dappnodepackage-ropsten
- Owner: dappnode
- License: gpl-3.0
- Created: 2018-11-17T13:00:34.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-04T18:42:57.000Z (about 2 years ago)
- Last Synced: 2023-03-10T04:11:36.699Z (almost 2 years ago)
- Language: Dockerfile
- Homepage:
- Size: 73.2 KB
- Stars: 0
- Watchers: 8
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
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