Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lepetitbloc/wallets
- Owner: LePetitBloc
- License: mit
- Created: 2018-03-08T11:03:45.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-22T08:53:18.000Z (over 6 years ago)
- Last Synced: 2024-11-07T17:17:23.336Z (2 months ago)
- Topics: cryptocurrencies, cryptocurrency, json, masternodes, wallet, wallets, wallets-management
- Language: JavaScript
- Homepage: https://lepetitbloc.github.io/wallets/
- Size: 1.84 MB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
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 |