Skip to content

Commit

Permalink
Merge pull request #273 from osrm/main
Browse files Browse the repository at this point in the history
chore: correction typos
  • Loading branch information
neekolas authored Sep 23, 2024
2 parents a0906e9 + 8a8f207 commit d20effe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions packages/bot-kit-pro/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Bot Kit Pro connects to the XMTP network via GRPC for reliable, high-performance

A common complaint from developers using XMTP to build bots is the high cost of running `client.conversations.list()` after restarting their apps. We added a database-backed cache so that apps need to decrypt a conversation only once.

### 🔎 Designed For auditability
### 🔎 Designed for auditability

No more poring over server logs. Because every incoming and outgoing message is stored in a database, you can build admin pages using tools like Retool to view the history of your bot's replies.

Expand Down Expand Up @@ -75,9 +75,9 @@ yarn install

### Bot Configuration

Each bot expects a configration, which can be created using `newBotConfig`.
Each bot expects a configuration, which can be created using `newBotConfig`.

You can also optionally provide application-level configuration to specify howt he database connection is established. The following environment variables are respected for app level configuration, and take precedence over any configuration values provided in code.
You can also optionally provide application-level configuration to specify how he database connection is established. The following environment variables are respected for app level configuration, and take precedence over any configuration values provided in code.

- `POSTGRES_CONNECTION_STRING`

Expand Down
4 changes: 2 additions & 2 deletions packages/cli-starter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Starter project for building an XMTP CLI
- [yargs](https://www.npmjs.com/package/yargs) for command line parsing
- [ink](https://www.npmjs.com/package/ink) for rendering the CLI using React components

### Intialize random wallet
### Initialize random wallet

Initialize with a random wallet by running:

Expand Down Expand Up @@ -61,7 +61,7 @@ const { env, message, address } = argv
const client = await Client.create(loadWallet(), { env })
```

To send a message, you'll need to create a conversation instance and then send that message to the conversaiton.
To send a message, you'll need to create a conversation instance and then send that message to the conversation.

```ts
const conversation = await client.conversations.newConversation(address)
Expand Down

0 comments on commit d20effe

Please sign in to comment.