mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
89251e8416
* Added community sync protobuf * Updated community sync send logic * Integrated syncCommunity handling * Added synced_at field and tidied up some other logic * persistence testing * Added testing and join functionality * Fixed issue with empty scan params * Finshed persistence tests for new db funcs * Midway debug of description not persisting after sync * Resolved final issues and tidied up * Polish * delint * Fix error not handled on SetPrivateKey * fix infinite loop, again * Added muted option and test fix * Added Muted to syncing functions, not just in persistence * Fix bug introduced with Muted property * Added a couple of notes for future devs * Added most of the sync RequestToJoin functionality Tests need to be completed and tests are giving some errors * Finished tests for getJoinedAndPending * Added note * Resolving lint * Fix of protobuf gen bug * Fixes to community sync tests * Fixes to test * Continued fix of e2e * Final fix to e2e testing * Updated migration position * resolve missing import * Apparently the linter spellchecks * Fix bug from #2276 merge * Bug fix for leaving quirkiness * Addressed superfluous MessengerResponse field * Addressed feedback * VERSION bump
47 lines
816 B
Protocol Buffer
47 lines
816 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "./;protobuf";
|
|
package protobuf;
|
|
|
|
message RequestAddressForTransaction {
|
|
uint64 clock = 1;
|
|
string value = 2;
|
|
string contract = 3;
|
|
string chat_id = 4;
|
|
}
|
|
|
|
message AcceptRequestAddressForTransaction {
|
|
uint64 clock = 1;
|
|
string id = 2;
|
|
string address = 3;
|
|
string chat_id = 4;
|
|
}
|
|
|
|
message DeclineRequestAddressForTransaction {
|
|
uint64 clock = 1;
|
|
string id = 2;
|
|
string chat_id = 3;
|
|
}
|
|
|
|
message DeclineRequestTransaction {
|
|
uint64 clock = 1;
|
|
string id = 2;
|
|
string chat_id = 3;
|
|
}
|
|
|
|
message RequestTransaction {
|
|
uint64 clock = 1;
|
|
string address = 2;
|
|
string value = 3;
|
|
string contract = 4;
|
|
string chat_id = 5;
|
|
}
|
|
|
|
message SendTransaction {
|
|
uint64 clock = 1;
|
|
string id = 2;
|
|
string transaction_hash = 3;
|
|
bytes signature = 4;
|
|
string chat_id = 5;
|
|
}
|