Skip to content

Commit 5816b2e

Browse files
committed
minor nits and grammar
1 parent 9d42ab0 commit 5816b2e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/content/quickstarts/transmitter.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import DataStreams from "@features/data-streams/common/DataStreams.astro"
3333

3434
While [Chainlink Data Streams](/data-streams/index) provide access to low-latency market data off-chain, the process of bringing this data on-chain requires significant engineering. Developers must build, deploy, and maintain a custom infrastructure service that can reliably connect to the Data Streams API, implement robust WebSocket reconnection logic, and manage the on-chain transaction logic for when and how to push updates.
3535

36-
The [Data Streams Transmitter][GITHUB_REPO], a community-led solution, provides a foundational framework for the DevOps teams and Infrastructure Managers tasked with building these systems. Transmitter is a configurable service that handles the core logic of monitoring off-chain data streams and pushing them to your smart contracts based on predefined conditions, such as time intervals or price deviations. It also includes a web interface to manage your feeds and monitor their status.
36+
The [Data Streams Transmitter][GITHUB_REPO], a community-led solution, provides a foundational framework for the DevOps teams and Infrastructure Managers tasked with building these systems. Transmitter is a configurable service that handles the core logic of monitoring off-chain Data Streams and pushing values to your smart contracts based on predefined conditions, such as time intervals or price deviations. It also includes a web interface to manage your feeds and monitor their status.
3737

3838
This guide walks you through deploying a `DataStreamsFeed` consumer contract, setting up the Data Streams Transmitter, and configuring it to monitor a specific Data Stream and relay it to your on-chain contract.
3939

@@ -96,13 +96,13 @@ First, deploy a `DataStreamsFeed.sol` contract. This contract receives and store
9696
cd chainlink-transmitter-contract
9797
```
9898

99-
1. Install the dependencies using `pnpm` and install/initalize Foundry:
99+
1. Install the dependencies using `pnpm` and install/initialize Foundry:
100100

101101
```bash
102102
pnpm add --save-dev @openzeppelin/contracts @chainlink/contracts && curl -L https://foundry.paradigm.xyz | bash && forge install
103103
```
104104

105-
1. Create a `.env` file in the project's root directory to store your private key, RPC URL, and link token address.:
105+
1. Create a `.env` file in the project's root directory to store your private key, RPC URL, and link token address:
106106

107107
```bash
108108
cat >.env <<EOF
@@ -378,7 +378,7 @@ The **Schedule** section allows you to define how often the Transmitter should p
378378
379379
<Accordion title="Verifier Contracts" >
380380
381-
The **Verifier Contracts** section lets you specify contracts that will verify the data being pushed on chain. The verifier contract for your current network will be automatically selected based on `config.yml`.
381+
The **Verifier Contracts** section lets you specify contracts that will verify the data being pushed on-chain. The verifier contract for your current network will be automatically selected based on `config.yml`.
382382
383383
</Accordion>
384384
@@ -434,7 +434,7 @@ If you run into issues during setup or operation, refer to these common problems
434434
435435
Congratulations! 🎉 You have successfully deployed a `DataStreamsFeed` contract, set up the Data Streams Transmitter, and linked them together.
436436
437-
You can now monitor off-chain data streams and push updates to your smart contracts without writing any code or managing your own backend infrastructure. The Transmitter handles all the complexity of connecting to Data Streams, monitoring data changes, and pushing updates on-chain.
437+
You can now monitor off-chain Data Streams and push updates to your smart contracts without writing any code or managing your own backend infrastructure. The Transmitter handles all the complexity of connecting to Data Streams, monitoring data changes, and pushing updates on-chain.
438438
439439
For more advanced usage, troubleshooting, or to contribute, visit the [GitHub repository][GITHUB_REPO] or check out the [official Data Streams documentation](/data-streams/index).
440440

0 commit comments

Comments
 (0)