Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/lepetitbloc/wallets

:books: Cryptocurrencies core wallets configuration map in json
https://github.com/lepetitbloc/wallets

cryptocurrencies cryptocurrency json masternodes wallet wallets wallets-management

Last synced: about 1 month ago
JSON representation

:books: Cryptocurrencies core wallets configuration map in json

Awesome Lists containing this project

README

        

# wallets.json
Cryptocurrencies core wallets configuration map in json, with ready to deploy images.

> This map is strongly focused on **technicals details** and **masternodes** coins.

## Data structure
```
...
"Dash": {
"parent": "Bitcoin",
"repository": "https://github.com/dashpay/dash",
"branch": null,
"tag": "v0.12.2.3",
"baseBinary": "dash",
"basedir": ".dashcore/",
"configFile": "dash.conf",
"mainnetPort": 9999,
"mainRpcPort": 9998,
"testnetPort": 19999,
"testnetRpcPort": 19998,
"requiredTokens": 1000,
"bdbVersion": "4.8.30.NC",
"symbol": "DASH",
"masternode": true,
"proofType": "",
"images": [
"lepetitbloc/dashd",
"dashpay/dashd"
],
"announcement": "",
"website": "https://www.dash.org/",
"explorers": [],
"nodes": []
},
...
```

## Install & Usage

### Javascript
```
npm install --save wallets.json
```

Either on **node** or the **browser** (with `webpack`) it get as simple as this:

**ES5**
```
const wallets = require('wallets.json');
```

**ES6**
```
import wallets from 'wallets.json';
```

> Since webpack >= v2.0.0, importing of JSON files will work by default.

### Ansible
Ansible can natively read json file with the `--extra-vars` flag:
```
ansible-playbook install.yml --extra-vars "@node_modules/wallets.json/wallets.json"
```

## Contributing
See the [CONTRIBUTING](CONTRIBUTING.md) file.

## License
This project is under the [MIT License](LICENSE.md).

## Donation
We love cryptocurrencies, consider making a donation:

| Currency | Address |
| ---------------- | ------------------------------------------ |
| Bitcoin | 14VRBrDZ47HR1pWjmAnyC5CJCXDkhLeANb |
| Ethereum | 0x1accf4c2bd6010100a2aeac36f336fb963a1716a |
| Ethereum Classic | 0x3b33bdcc70f06dad7068594a0cd8fbfd7b203aae |
| Litecoin | LdH6Sbq5M9p6dqG7GaRvBjoCqJ2CHnz9wr |
| Dash | XuPyN4Ns12qaMKzUjffzeKrCjCL4XYwUCY |
| ZCash | t1U2e4TV6zmg6gXAByBp59NtBP2HsEvY5T5 |
| Doge | DKbojeYrguCL2Suh9ujmU49m4QK9DixBXL |