Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
name: Build Docusaurus
name: Build Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ jobs:
lint-and-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 15.x
uses: actions/setup-node@v1
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: ^15.x
node-version: 22
- run: npm ci
- run: npm run build
- run: npm run lint
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ data.json
schema.json
*.dic
.idea/
.docusaurus
Empty file removed .nojekyll
Empty file.
30 changes: 0 additions & 30 deletions css/custom.css

This file was deleted.

75 changes: 75 additions & 0 deletions docs/config/gatsby-config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@

module.exports = {
pathPrefix: "",
siteMetadata: {
title: 'Ethereum JSON-RPC Specification',
description: 'A specification of the standard interface for Ethereum clients.',
siteUrl: 'https://open-rpc.org',
logoUrl: 'https://raw.githubusercontent.com/open-rpc/design/master/icons/open-rpc-logo-noText/open-rpc-logo-noText%20(PNG)/256x256.png',
primaryColor: '#3f51b5', //material-ui primary color
secondaryColor: '#f50057', //material-ui secondary color
author: '',
menuLinks: [ {
name: 'Contributors Guide',
link: '/making-changes',
ignoreNextPrev: true
},
{
name: 'API Documentation',
link: '/api-documentation'
}
],
footerLinks: [
{
name: 'OpenRPC',
link: 'https://open-rpc.org'
}
]
},
plugins: [
{
resolve: 'gatsby-plugin-mdx',
options: {
extensions: ['.mdx', '.md'],
gatsbyRemarkPlugins: [
{
resolve: 'gatsby-remark-autolink-headers',
options: {
icon: false,
},
},
],
},
},
"gatsby-openrpc-theme",
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'pristine-site',
short_name: 'pristine-site',
start_url: '/',
background_color: 'transparent',
theme_color: '#3f51b5',
display: 'minimal-ui',
icon: 'src/images/gatsby-icon.png', // This path is relative to the root of the site.
},
},
"gatsby-plugin-image",
"gatsby-plugin-sharp",
"gatsby-transformer-sharp",
{
resolve: "gatsby-source-filesystem",
options: {
name: "images",
path: __dirname + '/src/images',
},
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "docs",
path: __dirname + '/src/docs',
},
},
],
}
8 changes: 7 additions & 1 deletion docs/reference/making-changes.md → docs/making-changes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
---
title: Contributors Guide
description: A guide for proposing changes to the Ethereum JSON-RPC API
path: /docs/making-changes
---

# Contributors Guide

This guide will explain for new and experienced contributors alike how to
Expand Down Expand Up @@ -115,4 +121,4 @@ others don't.

[exec-apis]: https://github.com/ethereum/execution-apis
[pm]: https://github.com/ethereum/pm
[test-gen]: https://github.com/ethereum/execution-apis/blob/main/tests/README.md
[test-gen]: ../tests/README.md
43 changes: 0 additions & 43 deletions docs/reference/intro.md

This file was deleted.

103 changes: 0 additions & 103 deletions docusaurus.config.ts

This file was deleted.

Loading