Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This repository provides various examples of sample code that uses Tellor. Note
- Reading from another EVM chain
- YOLO User - a baseline oracle user that just verifies the data is valid tellor data

For more in-depth information about Tellor, check out our [documentation](https://docs.tellor.io/tellor/).
For more in-depth information about Tellor, check out our [documentation](https://docs.tellor.io/).


## How to use
Expand All @@ -29,12 +29,12 @@ npm i
#### 2. Architecture and Overview

Using tellor layer is simple:
- Have a bridge contract on the chain you want to use (TellorDataBridge). There should already be a [live bridge](https://docs.tellor.io/layer-docs/using-tellor-data/integrating-tellor-data#contract-addresses) for most users, but if you're working with a new chain, feel free to reach out if you want us to deploy it!
- Request data from the tellor chain ([via a tip](https://docs.tellor.io/layer-docs/running-tellor-layer/command-line-usage/creating-transactions#sending-a-tip-data-request))
- Have a bridge contract on the chain you want to use (TellorDataBridge). There should already be a [live bridge](https://docs.tellor.io/tellor/using-tellor-data/integrating-tellor-data#contract-addresses) for most users, but if you're working with a new chain, feel free to reach out if you want us to deploy it!
- Request data from the tellor chain [via a tip](https://docs.tellor.io/tellor/running-tellor-layer/command-line-usage/creating-transactions#sending-a-tip-data-request)
- a few seconds later, grab a proof of the verified data from the tellor layer chain. Can be found here [explorer.tellor.io/oracle-bridge](https://explorer.tellor.io/oracle-bridge)
- submit the data proof to your contract to update your contract with oracle data.

For more advanced users, if you have further questions or if you want to run a reporter yourself, please head to [docs.tellor.io/layer-docs](https://docs.tellor.io/layer-docs)
For more advanced users, if you have further questions or if you want to run a reporter yourself, please head to [docs.tellor.io](https://docs.tellor.io)

#### 3. To run tests:

Expand Down
Loading