Skip to content

Commit

Permalink
small typos
Browse files Browse the repository at this point in the history
  • Loading branch information
prusnak authored Nov 29, 2024
1 parent 291f725 commit 6887a43
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions 00.md
Original file line number Diff line number Diff line change
Expand Up @@ -308,14 +308,15 @@ cashuBo2F0gqJhaUgA_9SLj17PgGFwgaNhYQFhc3hAYWNjMTI0MzVlN2I4NDg0YzNjZjE4NTAxNDkyMT

#### Binary Token

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.
V3 and V4 Token can be transmitted in a binary format when applicable (for example when transmitting via NFC).
For this the serialised token is prepended with a prefix and a version byte.

```
utf8('craw') utf8(<token_version>) <serialised_token>
utf8("craw") utf8(<token_version>) <serialised_token>
```

- Token V3 Version: `utf8('craw') utf8("A") cbor(token_object)`
- Token V4 Version: `utf8('craw') utf8("B") cbor(token_object)`
- Token V3 Version: `utf8("craw") utf8("A") cbor(token_object)`
- Token V4 Version: `utf8("craw") utf8("B") cbor(token_object)`

[00]: 00.md
[01]: 01.md
Expand Down

0 comments on commit 6887a43

Please sign in to comment.