{"id":25703415,"url":"https://github.com/dashpay/dash-evo-tool","last_synced_at":"2026-02-28T00:42:55.818Z","repository":{"id":257829917,"uuid":"868322013","full_name":"dashpay/dash-evo-tool","owner":"dashpay","description":"A tool to interact with Evolution","archived":false,"fork":false,"pushed_at":"2025-04-29T14:30:01.000Z","size":2111,"stargazers_count":8,"open_issues_count":26,"forks_count":4,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-04-30T06:45:36.807Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dashpay.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-10-06T04:27:03.000Z","updated_at":"2025-04-23T22:10:10.000Z","dependencies_parsed_at":"2024-11-26T12:25:51.536Z","dependency_job_id":"545b01e3-1595-4dcf-9a9e-75436e56611d","html_url":"https://github.com/dashpay/dash-evo-tool","commit_stats":null,"previous_names":["dashpay/dash-evo-tool"],"tags_count":85,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dashpay%2Fdash-evo-tool","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dashpay%2Fdash-evo-tool/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dashpay%2Fdash-evo-tool/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dashpay%2Fdash-evo-tool/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dashpay","download_url":"https://codeload.github.com/dashpay/dash-evo-tool/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251658195,"owners_count":21622819,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-02-25T05:29:21.857Z","updated_at":"2026-02-28T00:42:55.784Z","avatar_url":"https://github.com/dashpay.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dash Evo Tool\n\n**Dash Evo Tool** is a graphical user interface for easily interacting with Dash Evolution. The current version enables the following actions:\n\n- Registering a DPNS username\n- Viewing active DPNS username contests\n- Voting on active DPNS username contests\n- Decoding and viewing state transitions\n\nThe tool supports both Mainnet and Testnet networks. Check out the [documentation](https://docs.dash.org/en/stable/docs/user/network/dash-evo-tool/index.html) for additional information.\n\n## Table of Contents\n\n- [Prerequisites](#prerequisites)\n  - [Rust Installation](#rust-installation)\n  - [Dependencies](#dependencies)\n  - [Dash Core Wallet Setup](#dash-core-wallet-setup)\n- [Installation](#installation)\n- [Getting Started](#getting-started)\n  - [Start the App](#start-the-app)\n  - [Application directory](#application-directory)\n  - [Connect to a Network](#connect-to-a-network)\n- [Usage](#usage)\n  - [Register a DPNS Username](#register-a-dpns-username)\n  - [Vote on an Active DPNS Contest](#vote-on-an-active-dpns-contest)\n  - [View Decoded State Transition](#view-decoded-state-transition)\n- [Switching Networks](#switching-networks)\n- [Contributing](#contributing)\n- [License](#license)\n- [Support](#support)\n- [Security Note](#security-note)\n\n## Prerequisites\n\nBefore you begin, ensure you have met the following requirements:\n\n### Rust Installation\n\n- **Rust**: Install Rust using [rustup](https://rustup.rs/):\n\n  ``` shell\n  curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh\n  ```\n\n- Update Rust to the latest version:\n\n  ``` shell\n  rustup update\n  ```\n\n### Dependencies\n\n- Install build-essential tools, SSL development libraries, and other required dependencies. On\nUbuntu, use:\n\n   ``` shell\n   sudo apt install -y build-essential libssl-dev pkg-config unzip\n   ```\n\n   On other Unix-like systems, use the equivalent package management commands.\n\n- Install Protocol Buffers Compiler (protoc). Download the appropriate protoc binary for your\nsystem, unzip, and install:\n\n   ``` shell\n   wget https://github.com/protocolbuffers/protobuf/releases/download/v26.1/protoc-26.1-linux-x86_64.zip\n   sudo unzip protoc-*-linux-x86_64.zip -d /usr/local\n   ```\n\n### Dash Core Wallet Setup\n\n- **Dash Core Wallet**: Download and install from [dash.org/wallets](https://www.dash.org/wallets/).\n\n- **Synchronize Wallet**: Ensure the wallet is fully synced with the network you intend to use (Mainnet or Testnet).\n\n## Installation\n\nTo install Dash Evo Tool:\n\n1. **Clone the repository**:\n\n   ``` shell\n   git clone https://github.com/dashpay/dash-evo-tool.git\n   ```\n\n2. **Navigate to the project directory**:\n\n   ``` shell\n   cd dash-evo-tool\n   ```\n\n3. **Build the project**:\n\n   ``` shell\n   cargo build --release\n   ```\n\n## Getting Started\n\n### Start the App\n\nRun the application using:\n\n``` shell\ncargo run\n```\n\n### Application directory\n\nWhen the application runs for the first time, it creates an application directory and stores an `.env` file in it (based on [`.env.example`](.env.example)). It also stores application data in the directory. If you need to update the `.env` file, locate it in the application directory for your Operating System:\n\n| Operating System | Application Directory Path |\n| - | - |\n| macOS | `~/Library/Application Support/Dash-Evo-Tool/` |\n| Windows | `C:\\Users\\\u003cUser\u003e\\AppData\\Roaming\\Dash-Evo-Tool\\config` |\n| Linux | `/home/\u003cuser\u003e/.config/dash-evo-tool/` |\n\n### Connect to a Network\n\n1. **Open Network Chooser**: In the app, navigate to the **Network Chooser** screen.\n\n2. **Select Network**: Choose **Mainnet** or **Testnet**.\n\n3. **Start Connection**: Click **Start** next to the selected network.\n\n   - If Dash Core Wallet is running and synced, the status will show **Online**.\n   - If not, the app attempts to start Dash Core Wallet automatically.\n\n## Usage\n\n### Register a DPNS Username\n\n1. **Load User Identity**:\n\n   - Go to the **Identity** screen.\n   - Click **Load Identity** at the top right.\n   - Fill in your user identity details:\n     - **Identity ID** (Hex or Base58)\n     - **Identity Type** should be \"User\"\n     - **Alias** (optional alias for use within Dash Evo Tool)\n     - **Private Keys** (only the authentication key that will be used to register the name is required for registering a username. Other keys can be added later.)\n   - Click **Submit**.\n\n2. **Register Username**:\n\n   - Navigate to the **DPNS** screen.\n   - Click **Register Username** at the top right.\n   - Select the Identity you'd like to register the username for.\n   - Enter your desired username.\n   - Click **Register Name**\n\n### Vote on an Active DPNS Contest\n\n1. **Load HPMN Identity**:\n\n   - Go to the **Identity** screen.\n   - Fill in your Masternode or HPMN (High Performance Masternode) identity details:\n     - For **Testnet**, you can click \"Fill Random HPMN\" or \"Fill Random Masternode\".\n     - For **Mainnet**, ensure you have valid Masternode or HPMN credentials.\n   - Click **Submit**.\n\n2. **Vote on Contest**:\n\n   - Navigate to the **DPNS** screen.\n   - If no contests appear, click **Refresh**. If still no contests appear, there are probably no active contests.\n   - Locate the active contest you wish to vote on.\n   - Click the button for the option you'd like to vote for within the contest's row (Lock, Abstain, or an Identity ID).\n   - Choose the Masternode or HPMN identity to vote with or select **All** to vote with all loaded Masternodes and HPMNs.\n   - Confirm your vote.\n\n### View Decoded State Transition\n\n1. **Open State Transition Viewer**:\n\n   - Navigate to the **State Transition Viewer** screen.\n\n2. **Decode State Transition**:\n\n   - Paste a hex or base58 encoded state transition into the input box at the top.\n   - View the decoded details displayed below.\n\n## Switching Networks\n\n1. **Open Network Chooser**:\n\n   - Go to the **Network Chooser** screen.\n\n2. **Select Network**:\n\n   - Choose the network you'd like to interact with (**Mainnet** or **Testnet**).\n\n3. **Check Wallet Status**:\n\n   - If Dash Core Wallet is already running on that network, the status column will show **Online**.\n   - If not, click **Start** to launch Dash Core Wallet on the selected network.\n\n4. **Wait for Sync**:\n\n   - Ensure Dash Core Wallet is fully synchronized before proceeding.\n\n## Contributing\n\nContributions are welcome!\n\n- **Fork the Repository**: Click the **Fork** button on the GitHub repository page.\n\n- **Create a Branch**:\n\n  ``` shell\n  git checkout -b feature/YourFeatureName\n  ```\n\n- **Commit Changes**: Make your changes and commit them with descriptive messages.\n\n  ``` shell\n  git commit -m \"Add feature: YourFeatureName\"\n  ```\n\n- **Push to Branch**:\n\n  ``` shell\n  git push origin feature/YourFeatureName\n  ```\n\n- **Submit Pull Request**: Open a pull request on GitHub and describe your changes.\n\n- **Follow Guidelines**: Please ensure your code adheres to the project's coding standards and passes all tests.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n## Support\n\nFor assistance:\n\n- **Issues**: Open an issue on [GitHub Issues](https://github.com/dashpay/dash-evo-tool/issues).\n- **Community**: Join the Dash community forums or Discord server for discussions.\n\n## Security Note\n\nKeep your private keys and identity information secure. Do not share them with untrusted parties or applications.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdashpay%2Fdash-evo-tool","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdashpay%2Fdash-evo-tool","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdashpay%2Fdash-evo-tool/lists"}