chrisrico

Armory protobuf format

Dec 11th, 2012
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. message Ping {
  2. required string version = 1;
  3. }
  4.  
  5. message Pong {
  6. required string version = 1;
  7. repeated Wallet wallets = 2;
  8. }
  9.  
  10. message SignatureRequest {
  11. required Wallet wallet = 1;
  12. required string txDP = 2;
  13. optional string password = 3;
  14. }
  15.  
  16. message SignatureResponse {
  17. enum SignatureType {
  18. PARTIAL = 1;
  19. FULL = 2;
  20. }
  21.  
  22. required SignatureType signatureType = 1;
  23. required string txDP = 2;
  24. }
  25.  
  26. message Information {
  27. required string message = 1;
  28. }
  29.  
  30. message Error {
  31. required boolean critical = 1;
  32. required string message = 2;
  33. }
  34.  
  35. message Wallet {
  36. required string walletUniqueB58 = 1;
  37. required int highestIndex = 2;
  38. }
Advertisement
Add Comment
Please, Sign In to add comment