Skip to content

Commit 150eabf

Browse files
committed
added transmitter reference in overview + sidebar/resources link
1 parent 412256f commit 150eabf

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

src/config/sidebar.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -491,6 +491,10 @@ export const SIDEBAR: Partial<Record<Sections, SectionEntry[]>> = {
491491
title: "Starter Kits and Frameworks",
492492
url: "resources/create-a-chainlinked-project?parent=dataStreams",
493493
},
494+
{
495+
title: "Transmitter (Community Tool)",
496+
url: "quickstarts/transmitter?parent=dataStreams",
497+
},
494498
{
495499
title: "Bridges and Associated Risks",
496500
url: "resources/bridge-risks?parent=dataStreams",

src/content/data-streams/index.mdx

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,27 @@ Access data directly through REST APIs or WebSocket connections using our SDKs:
9191

9292
1. Implement Verification: Add [onchain verification](/data-streams/reference/onchain-verification) to ensure data authenticity in your smart contracts.
9393

94-
### Streams Trade: An alternative implementation
94+
## Alternative Implementations
95+
96+
### Streams Trade
9597

9698
For applications that require automated data retrieval and execution, Streams Trade combines Chainlink Data Streams with [Chainlink Automation](/chainlink-automation) to deliver automated trade execution with frontrunning mitigation. This approach suits dApps that require automated, trust-minimized trade execution and high-frequency market data.
9799

98100
[Learn more about Streams Trade](/data-streams/streams-trade).
101+
102+
### Data Streams Transmitter
103+
104+
<Aside type="caution" title="Disclaimer">
105+
The Data Streams Transmitter and the reference consumer contract are community-built tools. The Transmitter is
106+
developed and maintained by [HackBG](https://github.com/hackbg) and the contract is a community endeavour. These are
107+
not official Chainlink products and are not supported by Chainlink Labs. No warranties or guarantees are provided.
108+
Please do your own research and audit the code before using this tool in a production environment.
109+
</Aside>
110+
111+
While Data Streams provides low-latency data offchain, bringing verified reports onchain requires developers to build and maintain a custom service to monitor the feed and push updates.
112+
113+
[Data Streams Transmitter](https://github.com/hackbg/chainlink-datastreams-transmitter) is a configurable service that you operate on your own infrastructure. It offers a simplified process for DevOps teams and Infrastructure Managers, handling the core logic of connecting to the off-chain Data Streams network via a WebSocket, monitoring for new reports, and relaying them to your smart contracts. The service also includes a UI for on-the-fly configuration and monitoring.
114+
115+
Based on predefined conditions like time intervals or price deviations, the Transmitter bundles and sends a report for onchain verification and consumption. This approach suits dApps that need fresh data pushed onchain based on custom logic, without the overhead of building and maintaining the necessary infrastructure.
116+
117+
[See our quickstart guide for Data Streams Transmitter](/quickstarts/transmitter).

0 commit comments

Comments
 (0)