Add multiplier-ticket-cli workspace - #1247
Merged
Merged
Conversation
With a single subcommand `submit`, sign and send a data transfer multiplier ticket to ingest for HIP-150 value multipliers. https://github.com/helium/HIP/blob/main/0150-mobile-deployer-prioritization.md Usage: ```sh multiplier-ticket-cli \ --keypair ./keypair.bin \ --ingest-url INGEST_URL \ submit \ --hotspot <B58> \ --multiplier 1.5 \ --message "testing" [--commit] ``` Sample Output: ```json { "committed": false, "hotspot_pubkey": "13fZvTpwLnGaKKiHhAuTnarbq2ohNCiexbyEdeSn13vTH2dfcDE", "message": "test message", "multiplier": "1.5", "signed_timestamp": "2026-09-02T22:36:28.190Z", "signer": "13fZvTpwLnGaKKiHhAuTnarbq2ohNCiexbyEdeSn13vTH2dfcDE" } ``` Without `--commit` nothing is sent. Tickets cannot be withdrawn, to reset a multiplier for a hotspot, submit a ticket with a `1` multiplier value. To check the active status of a ticket, see README.md for a query to run in trino. Mulitplier ranges between 1-5 are enforced in this CLI as well as in mobile-packet-verifier when tickets are ingested. The signing key used for tickets must be present in the ingest settings under `Settings.data_transfer_multiplier_authorized_keys`, and in mobile-packet-verifier under `Settings.multiplier.authorized_keys`.
bbalser
approved these changes
Sep 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
With a single subcommand
submit, sign and send a data transfer multiplier ticket to ingest for HIP-150 value multipliers.https://github.com/helium/HIP/blob/main/0150-mobile-deployer-prioritization.md
Usage:
multiplier-ticket-cli \ --keypair ./keypair.bin \ --ingest-url INGEST_URL \ submit \ --hotspot <B58> \ --multiplier 1.5 \ --message "testing" [--commit]Sample Output:
{ "committed": false, "hotspot_pubkey": "13fZvTpwLnGaKKiHhAuTnarbq2ohNCiexbyEdeSn13vTH2dfcDE", "message": "test message", "multiplier": "1.5", "signed_timestamp": "2026-09-02T22:36:28.190Z", "signer": "13fZvTpwLnGaKKiHhAuTnarbq2ohNCiexbyEdeSn13vTH2dfcDE" }Without
--commitnothing is sent.Tickets cannot be withdrawn, to reset a multiplier for a hotspot, submit a ticket with a
1multiplier value.To check the active status of a ticket, see README.md for a query to run in trino.
Mulitplier ranges between 1-5 are enforced in this CLI as well as in mobile-packet-verifier when tickets are ingested.
The signing key used for tickets must be present in the ingest settings under
Settings.data_transfer_multiplier_authorized_keys, and in mobile-packet-verifier underSettings.multiplier.authorized_keys.