Skip to content

Commit 474ac3e

Browse files
committed
cardano: add support for 258-tagged sets
The btc.rs changes are due to the Bitoin related btc.proto changes that are pulled in as well.
1 parent 49e5ab8 commit 474ac3e

16 files changed

+197
-76
lines changed

CHANGELOG-npm.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

3-
## Unreleased
3+
## 0.9.0
4+
- cardano: add support for 258-tagged sets
45

56
## 0.8.0
67
- cardano: allow vote delegation

CHANGELOG-rust.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

3-
## Unreleased
3+
## 0.7.0
4+
- cardano: add support for 258-tagged sets
45

56
## 0.6.0
67
- btc: handle error when an input's previous transaction is required but missing

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bitbox-api"
33
authors = ["Marko Bencun <[email protected]>"]
4-
version = "0.6.0"
4+
version = "0.7.0"
55
homepage = "https://bitbox.swiss/"
66
repository = "https://github.com/BitBoxSwiss/bitbox-api-rs/"
77
readme = "README-rust.md"

NPM_VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.8.0
1+
0.9.0

examples/cardano.rs

+3
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ async fn demo<R: bitbox_api::runtime::Runtime>() {
9494
withdrawals: vec![],
9595
validity_interval_start: 41110811,
9696
allow_zero_ttl: false,
97+
tag_cbor_sets: false,
9798
};
9899

99100
let witness = paired_bitbox
@@ -148,6 +149,7 @@ async fn demo<R: bitbox_api::runtime::Runtime>() {
148149
withdrawals: vec![],
149150
validity_interval_start: 41110811,
150151
allow_zero_ttl: false,
152+
tag_cbor_sets: false,
151153
};
152154

153155
let witness = paired_bitbox
@@ -185,6 +187,7 @@ async fn demo<R: bitbox_api::runtime::Runtime>() {
185187
}],
186188
validity_interval_start: 0,
187189
allow_zero_ttl: false,
190+
tag_cbor_sets: false,
188191
};
189192

190193
let witness = paired_bitbox

messages/btc.proto

+11-1
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@ message BTCSignInitRequest {
115115
}
116116
FormatUnit format_unit = 8;
117117
bool contains_silent_payment_outputs = 9;
118+
// used script configs for outputs that send to an address of the same keystore, but not
119+
// necessarily the same account (as defined by `script_configs` above).
120+
repeated BTCScriptConfigWithKeypath output_script_configs = 10;
118121
}
119122

120123
message BTCSignNextResponse {
@@ -174,12 +177,19 @@ message BTCSignOutputRequest {
174177
uint64 value = 3;
175178
bytes payload = 4; // if ours is false. Renamed from `hash`.
176179
repeated uint32 keypath = 5; // if ours is true
177-
// If ours is true. References a script config from BTCSignInitRequest
180+
// If ours is true and `output_script_config_index` is absent. References a script config from
181+
// BTCSignInitRequest. This allows change output identification and allows us to identify
182+
// non-change outputs to the same account, so we can display this info to the user.
178183
uint32 script_config_index = 6;
179184
optional uint32 payment_request_index = 7;
180185
// If provided, `type` and `payload` is ignored. The generated output pkScript is returned in
181186
// BTCSignNextResponse. `contains_silent_payment_outputs` in the init request must be true.
182187
SilentPayment silent_payment = 8;
188+
// If ours is true. If set, `script_config_index` is ignored. References an output script config
189+
// from BTCSignInitRequest. This enables verification that an output belongs to the same keystore,
190+
// even if it is from a different account than we spend from, allowing us to display this info to
191+
// the user.
192+
optional uint32 output_script_config_index = 9;
183193
}
184194

185195
message BTCScriptConfigRegistration {

messages/cardano.proto

+3
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,9 @@ message CardanoSignTransactionRequest {
126126
repeated Withdrawal withdrawals = 7;
127127
uint64 validity_interval_start = 8;
128128
bool allow_zero_ttl = 9; // include ttl even if it is zero
129+
// Tag arrays in the transaction serialization with the 258 tag.
130+
// See https://github.com/IntersectMBO/cardano-ledger/blob/6e2d37cc0f47bd02e89b4ce9f78b59c35c958e96/eras/conway/impl/cddl-files/extra.cddl#L5
131+
bool tag_cbor_sets = 10;
129132
}
130133

131134
message CardanoSignTransactionResponse {

sandbox/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sandbox/src/Cardano.tsx

+7
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ function CardanoSignTransaction({ bb02 }: Props) {
202202
withdrawals: [],
203203
validityIntervalStart: BigInt(41110811),
204204
allowZeroTTL: false,
205+
tagCborSets: false,
205206
};
206207
case 'zero-ttl':
207208
return {
@@ -224,6 +225,7 @@ function CardanoSignTransaction({ bb02 }: Props) {
224225
withdrawals: [],
225226
validityIntervalStart: BigInt(41110811),
226227
allowZeroTTL: true,
228+
tagCborSets: false,
227229
};
228230
case 'tokens':
229231
return {
@@ -262,6 +264,7 @@ function CardanoSignTransaction({ bb02 }: Props) {
262264
withdrawals: [],
263265
validityIntervalStart: BigInt(41110811),
264266
allowZeroTTL: false,
267+
tagCborSets: false,
265268
};
266269
case 'delegate':
267270
return {
@@ -292,6 +295,7 @@ function CardanoSignTransaction({ bb02 }: Props) {
292295
withdrawals: [],
293296
validityIntervalStart: BigInt(41110811),
294297
allowZeroTTL: false,
298+
tagCborSets: false,
295299
};
296300
case 'vote-delegation':
297301
return {
@@ -317,6 +321,7 @@ function CardanoSignTransaction({ bb02 }: Props) {
317321
withdrawals: [],
318322
validityIntervalStart: BigInt(41110811),
319323
allowZeroTTL: false,
324+
tagCborSets: false,
320325
};
321326
case 'vote-delegation-keyhash':
322327
return {
@@ -343,6 +348,7 @@ function CardanoSignTransaction({ bb02 }: Props) {
343348
withdrawals: [],
344349
validityIntervalStart: BigInt(41110811),
345350
allowZeroTTL: false,
351+
tagCborSets: false,
346352
};
347353
case 'withdraw-staking-rewards':
348354
return {
@@ -366,6 +372,7 @@ function CardanoSignTransaction({ bb02 }: Props) {
366372
],
367373
validityIntervalStart: BigInt(0),
368374
allowZeroTTL: false,
375+
tagCborSets: false,
369376
};
370377
}
371378
};

src/btc.rs

+1
Original file line numberDiff line numberDiff line change
@@ -723,6 +723,7 @@ impl<R: Runtime> PairedBitBox<R> {
723723
.get_next_response(Request::BtcSignInit(pb::BtcSignInitRequest {
724724
coin: coin as _,
725725
script_configs: transaction.script_configs.clone(),
726+
output_script_configs: vec![],
726727
version: transaction.version,
727728
num_inputs: transaction.inputs.len() as _,
728729
num_outputs: transaction.outputs.len() as _,

src/cardano.rs

+3
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,9 @@ impl<R: Runtime> PairedBitBox<R> {
135135
&self,
136136
transaction: pb::CardanoSignTransactionRequest,
137137
) -> Result<pb::CardanoSignTransactionResponse, Error> {
138+
if transaction.tag_cbor_sets {
139+
self.validate_version(">=9.22.0")?;
140+
}
138141
match self
139142
.query_proto_cardano(pb::cardano_request::Request::SignTransaction(transaction))
140143
.await?

0 commit comments

Comments
 (0)