github.com/status-im/status-go@v1.1.0/protocol/protobuf/command.proto (about)

     1  syntax = "proto3";
     2  
     3  option go_package = "./;protobuf";
     4  package protobuf;
     5  
     6  message RequestAddressForTransaction {
     7    uint64 clock = 1;
     8    string value = 2;
     9    string contract = 3;
    10    string chat_id = 4;
    11  }
    12  
    13  message AcceptRequestAddressForTransaction {
    14    uint64 clock = 1;
    15    string id = 2;
    16    string address = 3;
    17    string chat_id = 4;
    18  }
    19  
    20  message DeclineRequestAddressForTransaction {
    21    uint64 clock = 1;
    22    string id = 2;
    23    string chat_id = 3;
    24  }
    25  
    26  message DeclineRequestTransaction {
    27    uint64 clock = 1;
    28    string id = 2;
    29    string chat_id = 3;
    30  }
    31  
    32  message RequestTransaction {
    33    uint64 clock = 1;
    34    string address = 2;
    35    string value = 3;
    36    string contract = 4;
    37    string chat_id = 5;
    38  }
    39  
    40  message SendTransaction {
    41    uint64 clock = 1;
    42    string id = 2;
    43    string transaction_hash = 3;
    44    bytes signature = 4;
    45    string chat_id = 5;
    46  }