Skip to content

Commit cd6b455

Browse files
Merge pull request #197 from chronicleprotocol/toggle
Remove "toggle"
2 parents a493336 + 4eb908b commit cd6b455

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
@@ -20,7 +20,7 @@ If you're building on any of these chains and need production oracle access, rea
2020

2121
:::
2222

23-
## Reading from Chronicle Oracles on Testnet in 4 Steps
23+
## Reading from Chronicle Oracles on **Testnet** in 4 Steps
2424

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

3232

3333
### 1 Select the chain you want to use.
34-
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.
34+
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.
3535

3636
### 2 Select the Oracle(s) to use and its address
37-
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).
37+
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.
3838

3939
### 3 Get the address of the SelfKisser for the selected chain
4040
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
@@ -39,7 +39,7 @@ On Mainnet, to get access to production Oracles, please open a ticket on [Discor
3939

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

42-
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.
42+
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.
4343

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

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

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

78-
**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.
78+
**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.
7979

8080
```bash
8181
$ 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
@@ -39,8 +39,9 @@ On Mainnet, to get access to production Oracles, please open a ticket on [Discor
3939
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.
4040

4141
:::info
42-
Addresses in this contract are hardcoded for the **Sepolia testnet**.
43-
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.
42+
- In the table above you can find the address of the SelfKisser on different chains.
43+
- Addresses in this contract are hardcoded for the **Sepolia testnet**.
44+
- For other supported networks, please check the [Dashboard](https://chroniclelabs.org/dashboard), under the `Testnets` tab.
4445
:::
4546

4647
```js

0 commit comments

Comments
 (0)