Skip to content

Commit 63eb1e0

Browse files
authored
Merge pull request #10 from ephemeraHQ/legend
readme fix
2 parents 2cdcdbd + 74787f2 commit 63eb1e0

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</div>
1111

1212
[`@xmtp/agent-starter`](https://github.com/ephemeraHQ/xmtp-agents/tree/main/packages/agent-starter).
13-
is a library for building agents that communicate in a secure and interoperable way over the [XMTP](https://xmtp.org/) network.
13+
is a library for building agents that communicate over the [XMTP](https://xmtp.org/) network.
1414

1515
#### Why XMTP?
1616

@@ -34,7 +34,7 @@ To run your XMTP agent, you need two keys:
3434

3535
```bash
3636
WALLET_KEY= # the private key of the wallet
37-
ENCRYPTION_KEY= # a second random 32 bytes encryption key for local db encryptioney for encryption (can be random)
37+
ENCRYPTION_KEY= # a second fixed/random 32 bytes encryptioney for local db
3838
```
3939

4040
> See [encryption keys](https://github.com/ephemeraHQ/xmtp-agents/tree/main/packages/agent-starter/README.md#encryption-keys) to learn more.
@@ -230,5 +230,5 @@ Use a `.env` file for your environment variables:
230230

231231
```bash
232232
WALLET_KEY= # the private key of the wallet
233-
ENCRYPTION_KEY= # a second random 32 bytes encryption key for local db encryptioney for encryption (can be random)
233+
ENCRYPTION_KEY= # a second fixed/random 32 bytes encryptioney for local db
234234
```

examples/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Use a `.env` file for your environment variables:
3333

3434
```bash
3535
WALLET_KEY= # the private key of the wallet
36-
ENCRYPTION_KEY= # a second random 32 bytes encryption key for local db encryptioney for encryption (can be random)
36+
ENCRYPTION_KEY= # a second fixed/random 32 bytes encryptioney for local db
3737
```
3838

3939
## Contribute

examples/express/.env.example

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
WALLET_KEY= # the private key of the wallet
2-
ENCRYPTION_KEY= # a second random 32 bytes encryption key for local db encryptioney for encryption (can be random)
2+
ENCRYPTION_KEY= # a second fixed/random 32 bytes encryptioney for local db

examples/gated-group/.env.example

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
WALLET_KEY= # the private key of the wallet
2-
ENCRYPTION_KEY= # a second random 32 bytes encryption key for local db encryptioney for encryption (can be random)
2+
ENCRYPTION_KEY= # a second fixed/random 32 bytes encryptioney for local db

examples/gated-group/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ To create a gated group chat using XMTP, you will need an admin bot within the g
77
```bash
88
ALCHEMY_API_KEY= #alchemy api to check NFT ownership
99
WALLET_KEY= # the private key of admin bot
10-
ENCRYPTION_KEY= # a second random 32 bytes encryption key for local db encryptioney for encryption (can be random)
10+
ENCRYPTION_KEY= # a second fixed/random 32 bytes encryptioney for local db
1111
```
1212

1313
## Start the XMTP agent

examples/gpt/.env.example

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
WALLET_KEY= # the private key of the wallet
2-
ENCRYPTION_KEY= # a second random 32 bytes encryption key for local db encryptioney for encryption (can be random)
2+
ENCRYPTION_KEY= # a second fixed/random 32 bytes encryptioney for local db
33
OPENAI_API_KEY= # sk-proj-...

0 commit comments

Comments
 (0)