Skip to content

Commit

Permalink
Add txid to SubmitRedeemTx response (#434)
Browse files Browse the repository at this point in the history
* Add txid to SubmitRedeemTxResponse proto message

* Update server

* Update client

* Update e2e test

* Fix e2e tests
  • Loading branch information
altafan authored Jan 29, 2025
1 parent 3bd3cf7 commit 69e61a1
Show file tree
Hide file tree
Showing 17 changed files with 1,183 additions and 681 deletions.
3 changes: 3 additions & 0 deletions api-spec/openapi/swagger/ark/v1/service.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -871,6 +871,9 @@
"properties": {
"signedRedeemTx": {
"type": "string"
},
"txid": {
"type": "string"
}
}
},
Expand Down
1 change: 1 addition & 0 deletions api-spec/protobuf/ark/v1/service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ message SubmitRedeemTxRequest {
}
message SubmitRedeemTxResponse {
string signed_redeem_tx = 1;
string txid = 2;
}

message GetTransactionsStreamRequest {}
Expand Down
286 changes: 188 additions & 98 deletions api-spec/protobuf/gen/ark/v1/admin.pb.gw.go

Large diffs are not rendered by default.

180 changes: 130 additions & 50 deletions api-spec/protobuf/gen/ark/v1/explorer.pb.gw.go

Large diffs are not rendered by default.

278 changes: 144 additions & 134 deletions api-spec/protobuf/gen/ark/v1/service.pb.go

Large diffs are not rendered by default.

Loading

0 comments on commit 69e61a1

Please sign in to comment.