We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2217e1a commit 0f85594Copy full SHA for 0f85594
src/service/chain_rewardable_entities.proto
@@ -1,19 +1,12 @@
1
-// TODO: Design for different key formats - track "archetype" of key ... helium
2
-// vs. solana, network prefixes etc.
3
-// TODO: Consider OTHER Rewardable Entities (REs) in the future
4
-// TODO: Signature STUFF in req's and reports
5
-
6
syntax = "proto3";
7
8
package helium.chain_rewardable_entities;
9
10
-message solana_pub_key {
11
- // As string - base58 encode
12
- bytes value = 1;
13
-}
+message solana_pub_key { bytes value = 1; }
14
15
message helium_pub_key {
16
- // As string - base58 check encode helium pubkey
+ // bytes of a valid helium pub key.
+ // Should support parsing into helium_crypto::public_key::PublicKey
17
bytes value = 1;
18
}
19
0 commit comments