Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ cardano.onNetworkChange((network : number) => void)

The `project_id` for API requests can be created under [blockfrost.io](https://blockfrost.io/).

**Recommended:** Follow this [approach](https://github.com/lxieyang/chrome-extension-boilerplate-react#secrets) in order to keep the keys seperate from the repository.
**Recommended:** Follow this [approach](https://github.com/lxieyang/chrome-extension-boilerplate-react#secrets) in order to keep the keys separate from the repository.

```
# Update secrets file with your own keys
Expand Down
4 changes: 2 additions & 2 deletions src/wasm/cardano_message_signing/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ pub struct HeaderMap {
partial_init_vector: Option<Vec<u8>>,
// INT(7) key type
counter_signature: Option<Box<CounterSignature>>,
// all other headers not listed above. Does NOT contian the above, but the accessor functions do
// all other headers not listed above. Does NOT contain the above, but the accessor functions do
other_headers: LinkedHashMap<Label, CBORValue>,
}

Expand Down Expand Up @@ -870,7 +870,7 @@ pub struct COSEKey {
key_id: Option<Vec<u8>>,
// INT(3) algorithm identifier. See AlgorithmIds enum (EdDSA, ChaChaPoly, etc)
algorithm_id: Option<Label>,
// INT(4) opertions that this key is valid for if this field exists
// INT(4) operations that this key is valid for if this field exists
key_ops: Option<Labels>,
// INT(5)
base_init_vector: Option<Vec<u8>>,
Expand Down