gradido/docu/other/protobuf/Transaction.proto
Ulf Gebhardt 610971f5d3
included existing docu
transformed a lot of odt & txt files to md format
2021-04-16 22:08:51 +02:00

19 lines
463 B
Protocol Buffer

syntax = "proto3";
package gradido;
import "BasicTypes.proto";
/*
id will be set by Node server
txHash will be also set by Node server,
calculated from previous transaction txHash and this id, sigMap and received;
*/
// at least 232 Byte for a transfer without memo
message Transaction {
uint64 id = 1; // 8
TimestampSeconds received = 2; // 8
SignatureMap sigMap = 3; // 96 Byte
bytes txHash = 4; // 32 Byte
bytes bodyBytes = 5;
}