-
Notifications
You must be signed in to change notification settings - Fork 386
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Validator Manager Docs + Cleanup (#1929)
* add OKX OS * 1922 okx integration page (#1925) * add code to okxos.mdx * Update okxos.mdx * Update okxos.mdx * nit formatting * add disclaimer, change import to require * update note on API Key storage * update descriptions and add code * update code example description * update code snippets * add transaction checking * add get tx * add bash script * nit spelling * update conclusion * Update okxos.mdx * nit:formatting * fix broken links * rm elastic subnets, rm wagmi subnet reference * add evm-l1 section + redirects * validator manager docs * fix FolderCode icon * rewardmanager info, nits, fix broken links --------- Signed-off-by: Owen <owenwahlgren@gmail.com> Co-authored-by: Julian Martinez <73849597+Julian-dev28@users.noreply.github.com>
- Loading branch information
1 parent
732354e
commit b1c6e3b
Showing
50 changed files
with
746 additions
and
626 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
"use client"; | ||
import React, { useEffect } from "react"; | ||
import mermaid from "mermaid"; | ||
|
||
mermaid.initialize({ | ||
startOnLoad: true, | ||
}); | ||
|
||
type MermaidProps = { | ||
readonly chart: string; | ||
}; | ||
|
||
const Mermaid = ({ chart }: MermaidProps): JSX.Element => { | ||
useEffect(() => mermaid.contentLoaded(), []); | ||
|
||
return <div className="mermaid">{chart}</div>; | ||
}; | ||
|
||
export default Mermaid; |
343 changes: 0 additions & 343 deletions
343
content/docs/avalanche-l1s/add-utility/cross-chain-bridge.mdx
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.