Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions documentation.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,12 @@
"name": "TimestampEnd",
"in": "query"
},
{
"type": "integer",
"format": "int64",
"name": "TransactionType",
"in": "query"
},
{
"type": "string",
"name": "Pagination.OrderField",
Expand Down
3 changes: 2 additions & 1 deletion model/transaction.proto
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ message GetTransactionsRequest {
string AccountAddress = 3;
int64 TimestampStart = 4 [jstype = JS_STRING];
int64 TimestampEnd = 5 [jstype = JS_STRING];
Pagination Pagination = 6;
uint32 TransactionType = 6;
Pagination Pagination = 7;
}
message GetTransactionsResponse {
// Number of transactions in total
Expand Down