Context
arkd#988 (Forward sweep txs event in transaction stream) was merged to master at 2026-03-23T09:16:57Z.
What changed in arkd
Two additive changes to the GetTransactionsStream gRPC + REST API:
1. New sweep_tx event type on GetTransactionsStreamResponse (field 4)
message GetTransactionsStreamResponse {
oneof data {
TxNotification commitment_tx = 1;
TxNotification ark_tx = 2;
Heartbeat heartbeat = 3;
TxNotification sweep_tx = 4; // NEW
}
}
2. New swept_vtxos field on TxNotification (field 6)
message TxNotification {
...
repeated Outpoint swept_vtxos = 6; // NEW
}
3. OpenAPI / REST — both service.openapi.json and types.openapi.json updated
Required updates in this SDK
Reference
/cc @luckysori @philipp
Context
arkd#988 (Forward sweep txs event in transaction stream) was merged to master at 2026-03-23T09:16:57Z.
What changed in arkd
Two additive changes to the
GetTransactionsStreamgRPC + REST API:1. New
sweep_txevent type onGetTransactionsStreamResponse(field 4)2. New
swept_vtxosfield onTxNotification(field 6)3. OpenAPI / REST — both
service.openapi.jsonandtypes.openapi.jsonupdatedRequired updates in this SDK
ark-grpcbindings from updated proto (sweep_txvariant,SweptVtxosfield)ark-restOpenAPI client (sweepTx+sweptVtxos)SweepTxvariant inGetTransactionsStreamstream dispatcher inark-grpc/src/client.rsswept_vtxosonTxNotificationRust typeget_transactions_stream_response.rsand related model filesReference
eeb0baef6937b7544e0f659edbeee58f8aa2a90e/cc @luckysori @philipp