Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/x-cash-official/delegates-explorer
🔍 Delegates Explorer - Delegates, votes, reserve proofs information
https://github.com/x-cash-official/delegates-explorer
delegates dpos website xcash
Last synced: 3 months ago
JSON representation
🔍 Delegates Explorer - Delegates, votes, reserve proofs information
- Host: GitHub
- URL: https://github.com/x-cash-official/delegates-explorer
- Owner: X-CASH-official
- License: mit
- Created: 2019-06-23T18:40:35.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-05T17:32:58.000Z (almost 2 years ago)
- Last Synced: 2023-11-14T12:44:06.883Z (about 1 year ago)
- Topics: delegates, dpos, website, xcash
- Language: TypeScript
- Homepage:
- Size: 3.28 MB
- Stars: 12
- Watchers: 3
- Forks: 6
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg?style=flat)](https://opensource.org/licenses/MIT)
[![Discord](https://img.shields.io/discord/470575102203920395?logo=discord)](https://discordapp.com/invite/4CAahnd)# X-Cash Delegates Explorer
**🔍 Check delegates, vote statistics and latest block created.**
*Admin-panel-styled dashboard forked from [cdk-admin](https://github.com/codetok/cdk-admin), an Angular 6 admin panel using angular material.*
## Table of Contents
- [Table of Contents](#table-of-contents)
- [Features](#features)
- [License](#license)
- [Contributing](#contributing)
- [Documentation](#documentation)
- [Security](#security)
- [System Requirements](#system-requirements)
- [Installation Process](#installation-process)
- [Dependencies](#dependencies)
- [Requirements](#requirements)
- [Install](#install)
- [Testing](#testing)## Features
**One-stop Dashboard**
Scroll through all the delegates, their statistics, votes and reserve proofs received.**Vote Instructions**
You want to become a delegate ? You will find all the information here to register. Want to help a delegate get elected ? Then see how to vote for him/her.**Blocks Information**
The delegate explorer also acts as the X-Cash blockchain explorer. Verify the content of the blocks at any given time.## License
**The X-Cash Delegate Explorer is an open-source project managed by the X-Cash Foundation**.
We are operating under the [MIT License](LICENSE).## Contributing
**Thank you for thinking of contributing! 😃**
If you want to help out, check [CONTRIBUTING](https://github.com/X-CASH-official/.github/blob/master/CONTRIBUTING.md) for a set of guidelines and check our [opened issues](https://github.com/X-CASH-official/delegates-explorer/issues).## Documentation
We are hosting our documentation on **GitBook** 👉 [**docs.xcash.foundation**](https://docs.xcash.foundation/)
> You can contribute directly on our [`gitbook-docs`](https://github.com/X-CASH-official/gitbook-docs) repository.
## Security
If you discover a **security** vulnerability, please send an e-mail to [[email protected]](mailto:[email protected]).
All security vulnerabilities concerning the X-Cash blockchain will be promply addressed.## System Requirements
*The explorer is optional for delegates to run, as the network nodes will run it already.*
To run the delegates explorer, it needs to be on the same server as an X-Cash node. The system requirements for running a node are in the [`xcash-dpops`](https://github.com/X-CASH-official/xcash-dpops/tree/master#system-requirements) repository.
> At the moment, [`xcash-dpops`](https://github.com/X-CASH-official/xcash-dpops/) is only available for Linux/Unix distributions.
## Installation Process
### Dependencies
> The following table summarizes the tools and libraries required to run the delegates explorer.
| Dependencies | Min. version | Ubuntu package |
| ------------ | -------------- | ------------------------------------------------------------------- |
| `Node.js` | 8 | install from binaries |
| `Angular` | 6 | install from `npm` |
| `xcash-dpops` | latest version | [build from source](https://github.com/X-CASH-official/xcash-dpops) |**If you want to run the website using SSL then you will need to install a webserver like nginx
The readme shows you how to setup the website using HTTP, since there is no sensitive data in the website**### Requirements
#### Intalling Node.js from binaries
> It is recommended to install the nodejs folder in the home directory `/home/$USER/` or root directory (`/root/`) in a new folder
To download, go to the Node.js official [release page](https://nodejs.org/en/download/current/) and download the **Linux Binaries**. Copy it to your deisgnated folder and run these commands:
```bash
tar -xf node*.tar.xz
rm node*.tar.xz
```Then add Node.js to your path:
```bash
echo -e '\nexport PATH=path_to_nodejs/bin:$PATH' >> ~/.profile && source ~/.profile
```
> Replace `path_to_nodejs/bin` with the location of the `bin` folder where you installed Node.js#### npm
> Note if your installing on a `root` session, you need to run these additional commands before upgrading
> ```bash
> npm config set user 0
> npm config set unsafe-perm true
> ```Update `npm` globally:
```bash
npm install -g npm
```#### angular
Install the latest version of Angular globally:
```shell
npm install -g @angular/cli@latest
```Then install the compressor `UglifyJS` globally :
```shell
npm install -g uglify-js
```### Install
#### Clone repository
In your desired folder, clone the repository:
```shell
git clone https://github.com/X-CASH-official/delegates-explorer.git
```#### Install dependencies
```shell
cd delegates-explorer
npm install
```#### Configure application
Edit the `delegates-explorer/src/environments/environment.prod.ts` , set your Base-URL (Domain URL) and if needed an external API Endpoint:
```
export const environment = {
baseURL: "",
apiEndPoint: '',
explorerApiEndPoint: 'https://explorer.xcash.foundation',
announcementJSON: 'https://raw.githubusercontent.com/X-CASH-official/delegates-explorer/master/announcement.json',
shortTitle: 'Delegates Explorer',
seedNodes: [
'us1_xcash_foundation',
'europe1_xcash_foundation',
'europe2_xcash_foundation',
'europe3_xcash_foundation',
'oceania1_xcash_foundation'
]
};
```#### Install the firewall with parameters for shared delegates.
Run `bash -c "$(curl -sSL https://raw.githubusercontent.com/X-CASH-official/xcash-dpops/master/scripts/autoinstaller/autoinstaller.sh)"` and choose `12 = Shared Delegates Firewall`.
#### Manual Installation of the firewall
Download the [`firewall_script.sh`](https://github.com/X-CASH-official/xcash-dpops/tree/master/scripts/firewall) .
Uncomment these lines in `firewall_script.sh` to enable port 80 and redirect port 80 to 18283:
```
# iptables -t filter -I INPUT -p tcp --syn --dport 80 -m connlimit --connlimit-above 100 --connlimit-mask 32 -j DROP
# iptables -t filter -I INPUT -p tcp --syn --dport 18283 -m connlimit --connlimit-above 100 --connlimit-mask 32 -j DROP
```
```
# iptables -A INPUT -p tcp --dport 80 -j ACCEPT
```Run the firewall script
`./firewall_script.sh`#### Build
To build the delegate explorer for the production (mainnet) environment, go to the `delegates-explorer` folder and run:
```shell
npm run build
```Optionally, you can build the delegate explorer for the testnet with the command:
```shell
ng build --aot=true --build--optimizer=true -c testnet
```It will build in the `dist`folder.
Compress the `.js` files with `Uglify-JS` and move all of the contents of this folder to your `xcash-dpops/` folder
```shell
cd dist
for f in *.js; do echo "Processing $f file.."; uglifyjs $f --compress --mangle --output "{$f}min"; rm $f; mv "{$f}min" $f; done
rm -r ~/xcash-dpops/delegates-explorer
mkdir ~/xcash-dpops/delegates-explorer
cd ../
cp -a dist/* ~/xcash-dpops/delegates-explorer/
```### Testing
```shell
npm test
```To test that you have properly configured the delegates explorer, run `xcash-dpops` with the `--test_data_add` flag. *This will add test datas to the MongoDB.*
Now run the website server again using the normal options.
Next, navigate to your servers IP address or website domain. You should now see the website and some test data. You can navigate through the website using the test data.
When you have verified that the website works correctly, remove the test data by shutting down the `xcash-dpops` and then running it again with the `--test_data_remove` flag.