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

Feat/rdoc 54 #15

Merged
merged 10 commits into from
Jun 18, 2024
4 changes: 4 additions & 0 deletions docs/basics/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@

Ronin is an EVM blockchain specifically forged for gaming. Launched by Sky Mavis, the creator of Web3’s breakout title Axie Infinity which has generated over $1.3 B in revenue, Ronin is the only blockchain proven to scale a single game to accommodate millions of daily active users and has processed over $4 B in NFT volumes. Ronin optimizes for near-instant transactions and negligible fees that enable millions of in-game transactions to occur seamlessly, making it the leading choice for Web3 games.

### Ronin whitepaper

Download the latest version of our whitepaper here: <a href="/basics/white-paper" target="_blank">Ronin whitepaper</a>.

Check warning on line 13 in docs/basics/introduction.md

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [Google.Colons] ': R' should be in lowercase. Raw Output: {"message": "[Google.Colons] ': R' should be in lowercase.", "location": {"path": "docs/basics/introduction.md", "range": {"start": {"line": 13, "column": 1}}}, "severity": "WARNING"}

## What makes Ronin unique as a blockchain?

### Ronin is battle-tested and scalable
Expand Down
215 changes: 0 additions & 215 deletions docs/basics/white-paper.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/get-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ General information about the Ronin chain and a guide on buying RON.
findSidebarItem('/basics/introduction'),
findSidebarItem('/basics/acquire-ron'),
findSidebarItem('/basics/key-concepts'),
findSidebarItem('/basics/white-paper'),
findSidebarItem('/basics/tokenomics'),
findSidebarItem('/basics/nodes'),
findSidebarItem('/basics/rewards'),
Expand Down
11 changes: 5 additions & 6 deletions docs/validators/onboarding/become-validator.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,20 +43,19 @@ Before registering as a Validator Candidate, make sure that you have at least 25
<img src={becomeValidator} width={1280} />

2. Familiarize yourself with the requirements and slashing rules.
It's also highly recommended that you read the
[white paper](./../../basics/white-paper.md).
It's also highly recommended that you read the <a href="/basics/white-paper" target="_blank">Ronin whitepaper</a>.
<img src={stepOne} width={1280} />

3. Set up your validator node.
1. Set up your validator node.
<img src={stepTwo} width={1280} />

4. Fill in your addresses and specify the commission rate.
1. Fill in your addresses and specify the commission rate.
<img src={stepThree} width={1280} />

5. Provide the initial stake of RON.
1. Provide the initial stake of RON.
<img src={stepFour} width={1280} />

6. Enter your fast finality vote key—see [Add or change finality vote key](../manage/finality.mdx) for details.
1. Enter your fast finality vote key—see [Add or change finality vote key](../manage/finality.mdx) for details.
<img src={stepFive} width={1280} />

Congratulations, you're now a Validator Candidate.
Expand Down
23 changes: 10 additions & 13 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,11 @@ const config = {
label: 'Basics',
to: 'basics',
},
{
label: 'Whitepaper',
to: '/basics/white-paper',
target: '_blank',
},
// Apps
{
label: 'dApps',
Expand All @@ -168,10 +173,6 @@ const config = {
label: 'Bridge operators',
to: 'bridge-operators',
},
{
label: 'Support',
to: 'https://support.roninchain.com/hc/en-us',
},
// Search
{
type: 'search',
Expand All @@ -196,25 +197,21 @@ const config = {
{
type: 'link',
label: 'Blog',
href: 'https://blog.roninchain.com/',
href: 'https://roninchain.com/blog/',
},
],
},
{
title: 'Links',
items: [
{
label: 'Developer docs',
href: 'https://docs.skymavis.com/ronin/overview',
},
{
label: 'RON staking',
href: 'https://app.roninchain.com/staking/',
},
{
label: 'Ronin brand kit',
href: 'https://drive.google.com/drive/folders/1ZM0R6fd13IhvBpTFwOBebYZqmTxQNgJi',
},
{
label: 'Support',
to: 'https://support.roninchain.com/hc/en-us',
},
],
},
],
Expand Down
2 changes: 0 additions & 2 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ const sidebars = {
'basics/acquire-ron',
// Key concepts
'basics/key-concepts',
// White paper
'basics/white-paper',
// Tokenomics
'basics/tokenomics',
// Nodes
Expand Down
16 changes: 16 additions & 0 deletions src/pages/basics/white-paper.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import React from 'react';

const Whitepaper = () => {
return (
<div style={{ height: '100vh' }}>
<iframe
src="/Ronin_Whitepaper_v2.pdf"
width="100%"
height="100%"
style={{ border: 'none' }}
></iframe>
</div>
);
};

export default Whitepaper;
Binary file added static/Ronin_Whitepaper_v2.pdf
Binary file not shown.
Loading