-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
40 additions
and
44 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
syntax = "proto3"; | ||
|
||
package helium.hex_boosting; | ||
|
||
import "service_provider.proto"; | ||
|
||
message boosted_hex_info { | ||
// The res12 h3 index of the boosted hex | ||
uint64 location = 1; | ||
// The timestamp of the start of the boost period | ||
// 0 if the boosting has not yet started | ||
int64 start_ts = 2; | ||
// The length of the boost period in months | ||
uint32 period_length = 3; | ||
// the minimum number of periods to boost | ||
uint32 minimum_periods = 4; | ||
// the boost price in USD @ 10^6 | ||
uint64 boost_price = 5; | ||
// The on chain entity key of service provider providing the boost | ||
service_provider service_provider_id = 6; | ||
} |
This file contains 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
This file contains 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