Skip to content

Commit 4eb908b

Browse files
Remove "toggle"
1 parent 8160629 commit 4eb908b

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

docs/Developers/Guides/readingFromOracles.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you're building on any of these chains and need production oracle access, rea
2222

2323
:::
2424

25-
## Reading from Chronicle Oracles on Testnet in 4 Steps
25+
## Reading from Chronicle Oracles on **Testnet** in 4 Steps
2626

2727
<div style={{textAlign: 'center'}}>
2828
<img
@@ -33,10 +33,10 @@ If you're building on any of these chains and need production oracle access, rea
3333

3434

3535
### 1 Select the chain you want to use.
36-
Chronicle Oracles are live on 10 chains, with more integrations rolling out regularly. Using the [Dashboard](https://chroniclelabs.org/dashboard/oracles), you can quickly find the available chains.
36+
Chronicle Oracles are live on several chains, with more integrations rolling out regularly. Using the [Dashboard](https://chroniclelabs.org/dashboard/oracles), you can quickly find the available chains.
3737

3838
### 2 Select the Oracle(s) to use and its address
39-
Once on the desired chain, find the oracle address that you need for that chain. Before reading from an Oracle, the address making the call needs to be whitelisted for that Oracle. To find the Testnet addresses for the Oracles, simply toggle the `<dev mode>` on the [Dashboard](https://chroniclelabs.org/dashboard/oracles).
39+
Before reading from an Oracle, the address making the call needs to be whitelisted for that Oracle. To find the Testnet addresses for the Oracles, simply select the `Testnets` tab on the [Dashboard](https://chroniclelabs.org/dashboard/oracles), then select the desired chain.
4040

4141
### 3 Get the address of the SelfKisser for the selected chain
4242
Chronicle Oracles are read protected by a whitelist. On Testnet networks, you can whitelist yourself using the [SelfKisser](https://github.com/chronicleprotocol/self-kisser/blob/main/src/SelfKisser.sol) contract. **Ensure you're using the correct SelfKisser address for each chain.**

docs/Developers/Guides/whitelistAddress.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ On Mainnet, to get access to production Oracles, please open a ticket on [Discor
4040

4141
This example demonstrates the whitelisting process on **Ethereum Sepolia**. The addresses used correspond to the SelfKisser and Oracles on Ethereum Sepolia.
4242

43-
Depending on the Testnet network you select, **please make sure to use the appropriate addresses for that specific chain. To find a specific Oracle address for your chosen chain use the [Chronicle Dashboard](https://chroniclelabs.org/dashboard)** by toggling the `<dev mode>` from the top right corner for Testnet Oracles.
43+
Depending on the testnet you select, make sure to use the appropriate oracle address for that specific chain. You can find the correct address by visiting the [Chronicle Dashboard](https://chroniclelabs.org/dashboard) and selecting the `Testnets` tab to view available testnets and their corresponding oracle addresses.
4444

4545
The address of the **SelfKisser** for each chain can be found in the table at the top of this page.
4646

@@ -76,7 +76,7 @@ For quick testing, feel free to use the following Oracle address:
7676

7777
- Chronicle_ETH_USD_3: `0xdd6D76262Fd7BdDe428dcfCd94386EbAe0151603` on Ethereum Sepolia.
7878

79-
**Alternatively, you can find a specific Oracle address for your chosen chain using the [Chronicle Dashboard](https://chroniclelabs.org/dashboard)** by toggling the `<dev mode>` from the top right corner for Testnet Oracles.
79+
**Alternatively, you can find a specific Oracle address for your chosen chain using the [Chronicle Dashboard](https://chroniclelabs.org/dashboard)** by selecting `Testnets` and then selecting the desired Testnet chain.
8080

8181
```bash
8282
$ cast call <oracle address> "tolled(address)(bool)" <your address> --rpc-url $rpc

docs/Developers/tutorials/Remix.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,9 @@ On Mainnet, to get access to production Oracles, please open a ticket on [Discor
4040
An example contract named `OracleReader.sol` allows you to consume Oracle data and can be quickly deployed on [Remix](https://remix.ethereum.org/). Remix is a web-based integrated development environment (IDE) for creating, running, and debugging smart contracts directly in your browser.
4141

4242
:::info
43-
Addresses in this contract are hardcoded for the **Sepolia testnet**.
44-
For other supported networks, please check the [Dashboard](https://chroniclelabs.org/dashboard). By toggling the `<dev mode>` option located in the top right corner, you can find the Oracles' addresses for different chains on Testnet. In the table above you can find the address of the SelfKisser on different chains.
43+
- In the table above you can find the address of the SelfKisser on different chains.
44+
- Addresses in this contract are hardcoded for the **Sepolia testnet**.
45+
- For other supported networks, please check the [Dashboard](https://chroniclelabs.org/dashboard), under the `Testnets` tab.
4546
:::
4647

4748
```js

0 commit comments

Comments
 (0)