Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docs): update network and oracle pages #1667

Merged
merged 3 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
6 changes: 3 additions & 3 deletions docs/build/_partials/_oracles_contract_data.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ import TabItem from '@theme/TabItem';

You can find detailed documentation on the Oracles in their official documentation:

* [Pyth Oracle Docs](https://docs.pyth.network/price-feeds/contract-addresses/evm)
* [Supra Pull Docs](https://gb-docs.supraoracles.com/docs/data-feeds/pull-model/networks)
* [Supra Push Docs](https://gb-docs.supraoracles.com/docs/data-feeds/decentralized/networks)
* [Pyth Oracle Docs](https://docs.pyth.network/price-feeds/contract-addresses/evm)
* [Supra Pull Docs](https://docs.supra.com/docs/data-feeds/pull-modelv1)
Ginowine marked this conversation as resolved.
Show resolved Hide resolved
* [Supra Push Docs](https://docs.supra.com/docs/data-feeds/decentralized)

:::
8 changes: 8 additions & 0 deletions src/theme/NetworkInfo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@ function L1(props: NetworkProps) {
<CodeBlock>{props.permaNodeApi}</CodeBlock>
</td>
</tr>
<tr>
<th>Explorer</th>
<td>
<a href={props.explorer} target='_blank' rel='noopener noreferrer'>
{props.explorer}
</a>
</td>
</tr>
{props.faucet && (
<tr>
<th>Faucet</th>
Expand Down
Loading