diff --git a/00.md b/00.md index 60db4ae..542d654 100644 --- a/00.md +++ b/00.md @@ -308,14 +308,14 @@ cashuBo2F0gqJhaUgA_9SLj17PgGFwgaNhYQFhc3hAYWNjMTI0MzVlN2I4NDg0YzNjZjE4NTAxNDkyMT #### Binary Token -V3 and V4 Token can be transmitted in a binary format when applicable. For this a list containing a prefix, a version and the token object is constructed and then serialised using `cbor`. +V3 and V4 Token can be transmitted in a binary format when applicable. For this the serialised token is prepended with a prefix and a version byte. ``` -cbor(["craw", , ]) +utf8('CRAW') ``` -- Token V3 Version: 1 -- Token V4 Version: 2 +- Token V3 Version: `utf8('CRAW') 0x01 cbor(token_object)` +- Token V4 Version: `utf8('CRAW') 0x02 cbor(token_object)` [00]: 00.md [01]: 01.md