Skip to content

Commit a3c4396

Browse files
csmarcntn-x2
andauthored
fix: typos (#65)
* minor fix * fix typo in DID workshop * fix another typo * Update docs/sdk/1-workshop/03-attester/02-did.md Co-authored-by: Marton Csernai <[email protected]> Co-authored-by: Antonio <[email protected]>
1 parent 8645c88 commit a3c4396

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

docs/sdk/1-workshop/03-attester/01-account.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ All we need to create an account is a mnemonic.
1818
A KILT account is a set of cryptographic elements:
1919

2020
- The address, which is generated from the public key
21-
- A signing keypair write transactions on-chain
21+
- A signing keypair to write transactions on-chain
2222

2323
:::
2424

@@ -52,6 +52,7 @@ We will use `getAccount` later to load the account that we will create and store
5252
## Execute
5353

5454
Now run it to get your <span class="label-role attester">Attester</span> `<address>` and `<mnenomic>`.
55+
5556
```bash
5657
yarn ts-node ./attester/generateAccount.ts
5758
```

docs/sdk/1-workshop/03-attester/02-did.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Take a look at our [DID documentation](/docs/sdk/core-feature/did) if you want t
2525

2626
There are currently four different key types that a DID supports:
2727

28-
- An _authentication keypair_, used to sign claims and presented them when requested
28+
- An _authentication keypair_, used to sign claims and create authenticated credential presentations
2929
- A _key-agreement keypair_, used to encrypt/decrypt messages
3030
- An _assertion-method keypair_, used to write CTypes and attestations on chain
3131
- A _capability-delegation keypair_, used to write delegations on chain
@@ -48,6 +48,7 @@ Because the DID and the account are not connected, DIDs do not hold any coins.
4848
A keystore has multiple purposes:
4949

5050
The keystore ...
51+
5152
- stores private keys that belong to a DID
5253
- creates new keys
5354
- encrypts and decrypts arbitrary data
@@ -56,7 +57,7 @@ The keystore ...
5657

5758
To create a DID we need a keystore.
5859
For our <span class="label-role attester">Attester</span> we'll need all four types of keys.
59-
Since three of the key types use are used for signatures, we can use the same key for these.
60+
Since three of the key types are used for signatures, we can use the same key for these.
6061
We'll use a demo keystore to generate them.
6162
Create a file `attester/generateKeypairs.ts` and copy the code below.
6263

0 commit comments

Comments
 (0)