mirror of https://github.com/status-im/go-waku.git
15 lines
215 B
Protocol Buffer
15 lines
215 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package pb;
|
||
|
|
||
|
message Cheque {
|
||
|
string issuerAddress = 1;
|
||
|
bytes beneficiary = 2;
|
||
|
uint32 date = 3;
|
||
|
uint32 amount = 4;
|
||
|
bytes signature = 5;
|
||
|
}
|
||
|
|
||
|
message Handshake {
|
||
|
bytes beneficiary = 1;
|
||
|
}
|