Skip to content

Commit

Permalink
Merge branch 'celestiaorg:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
santosdios authored Nov 22, 2024
2 parents cf3f64f + cd6c8a7 commit 1767930
Show file tree
Hide file tree
Showing 9 changed files with 56 additions and 71 deletions.
101 changes: 39 additions & 62 deletions .vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,38 +25,9 @@ export default {
head: [
[
"link",
{
rel: "icon",
href: "/favicons/favicon.svg",
type: "image/svg+xml",
},
{ rel: "icon", href: "/favicons/favicon.svg", type: "image/svg+xml" },
],
// [
// "link",
// {
// rel: "icon",
// type: "image/svg+xml",
// href: "/favicons/favicon-dark.svg",
// media: "(prefers-color-scheme: dark)",
// },
// ],
[
"link",
{
rel: "icon",
href: "/favicons/favicon.png",
type: "image/png",
},
],
// [
// "link",
// {
// rel: "icon",
// type: "image/png",
// href: "/favicons/favicon-dark.png",
// media: "(prefers-color-scheme: dark)",
// },
// ],
["link", { rel: "icon", href: "/favicons/favicon.png", type: "image/png" }],
[
"link",
{
Expand All @@ -65,15 +36,6 @@ export default {
type: "image/x-icon",
},
],
// [
// "link",
// {
// rel: "icon",
// type: "image/x-icon",
// href: "/favicons/favicon-dark.ico",
// media: "(prefers-color-scheme: dark)",
// },
// ],
["meta", { name: "msapplication-TileColor", content: "#fff" }],
["meta", { name: "theme-color", content: "#fff" }],
[
Expand All @@ -84,8 +46,6 @@ export default {
"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no",
},
],
// ['meta', { property: 'og:title', content: 'Celestia' }],
// ['meta', { property: 'og:description', content: 'The first modular blockchain network.' }],
[
"meta",
{
Expand All @@ -94,23 +54,34 @@ export default {
},
],
["meta", { httpEquiv: "Content-Language", content: "en" }],

["meta", { name: "twitter:card", content: "summary_large_image" }],
["meta", { name: "twitter:image", content: "/Celestia-og.png" }],
["meta", { name: "twitter:site", content: "@CelestiaOrg" }],
["meta", { name: "twitter:site:domain", content: "docs.celestia.org" }],
["meta", { name: "twitter:url", content: "https://docs.celestia.org" }],
[
"meta",
{
name: "twitter:site:domain",
content: "docs.celestia.org",
name: "twitter:image",
content: "https://docs.celestia.org/Celestia-og.png",
},
],
["meta", { name: "twitter:image:alt", content: "Celestia Documentation" }],

["meta", { property: "og:type", content: "website" }],
["meta", { property: "og:site_name", content: "Celestia Docs" }],
["meta", { property: "og:url", content: "https://docs.celestia.org" }],
[
"meta",
{
name: "twitter:url",
content: "https://docs.celestia.org",
property: "og:image",
content: "https://docs.celestia.org/Celestia-og.png",
},
],
["meta", { name: "og:image", content: "/Celestia-og.png" }],
["meta", { property: "og:image:width", content: "1200" }],
["meta", { property: "og:image:height", content: "630" }],
["meta", { property: "og:image:type", content: "image/png" }],

["meta", { name: "apple-mobile-web-app-title", content: "Celestia" }],
[
"script",
Expand Down Expand Up @@ -232,20 +203,26 @@ export default {
},
transformPageData(pageData) {
pageData.frontmatter.head ??= [];
pageData.frontmatter.head.push([
"meta",
{
name: "og:title",
content:
pageData.frontmatter.layout === "home"
? `Celestia Docs`
: `${pageData.title} | Celestia Docs`,
},
{
name: "og:description",
content: pageData.frontmatter.layout === `${pageData.description}`,
},
]);
pageData.frontmatter.head.push(
[
"meta",
{
property: "og:title",
content:
pageData.frontmatter.layout === "home"
? "Celestia Docs"
: `${pageData.title} | Celestia Docs`,
},
],
[
"meta",
{
property: "og:description",
content:
pageData.description || "The first modular blockchain network.",
},
],
);
},
};

Expand Down
4 changes: 2 additions & 2 deletions .vitepress/constants/arabica_versions.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const arabicaVersions = Object.freeze({
"app-latest-sha": "2507aafc20b6f405ede3def2f7439580ed092731",
"core-latest-tag": "v1.43.0-tm-v0.34.35",
"core-latest-sha": "c2c6463a79697d511650d5113738acf5861ba7d7",
"node-latest-tag": "v0.20.1-arabica",
"node-latest-sha": "317784012f867ce7ed4e50acff5dbce378cbde8d",
"node-latest-tag": "v0.20.2-arabica",
"node-latest-sha": "2dc9cce7b5dffc14fd4fe156d2aa9869318e0f68",
});
export default arabicaVersions;
4 changes: 2 additions & 2 deletions .vitepress/constants/mainnet_versions.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const mainnetVersions = Object.freeze({
"app-latest-sha": "06f24f5dbe48c29964e1d8cfb030cffd90797ded",
"core-latest-tag": "v1.41.0-tm-v0.34.29",
"core-latest-sha": "aef322775c75783488b439cdf7ca33f38da08426",
"node-latest-tag": "v0.17.2",
"node-latest-sha": "57f8bd81c573d1a54613c73cf49e5d392a864dd6",
"node-latest-tag": "v0.20.2",
"node-latest-sha": "b24d47fe29d2b244d501194956412cb7bb60f30f",
});
export default mainnetVersions;
4 changes: 2 additions & 2 deletions .vitepress/constants/mocha_versions.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const mochaVersions = Object.freeze({
"app-latest-sha": "5d6c695af84d11f4f5c91ba20512eec40449942e",
"core-latest-tag": "v1.43.0-tm-v0.34.35",
"core-latest-sha": "c2c6463a79697d511650d5113738acf5861ba7d7",
"node-latest-tag": "v0.20.1-mocha",
"node-latest-sha": "353141fb5a0a33c10a8678ac6e92a90b02f74dbd",
"node-latest-tag": "v0.20.2-mocha",
"node-latest-sha": "2dc9cce7b5dffc14fd4fe156d2aa9869318e0f68",
});
export default mochaVersions;
8 changes: 8 additions & 0 deletions how-to-guides/config-toml.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ description: A guide to the contents of the Config.toml file.

Please, make sure that you have installed and initialized `celestia-node`

## Viewing the help menu

In order to view all flags and their descriptions, use:

```bash
celestia light start --help
```

## Understanding config.toml

After initialization, for any type of node, you will find a
Expand Down
2 changes: 1 addition & 1 deletion how-to-guides/docker-images.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ Congratulations! You now have a node running with persistent storage.
## Troubleshooting

For security purposes Celestia expects to interact with the your node's
For security purposes Celestia expects to interact with your node's
keys in a read-only manner. This is enforced using linux style permissions
on the filesystem. Windows NTFS does not support these types of permissions.
As a result the recommended path for Windows users to mount a persisted
Expand Down
2 changes: 1 addition & 1 deletion how-to-guides/ethereum-fallback.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ prev:
# Ethereum fallback

Ethereum fallback is a mechanism
that enables Ethereum L2s (or L3s) to “fall back” to using Ethereum
that enables Ethereum L2s (or L3s) to “fallback” to using Ethereum
calldata for data availability in the event of downtime on Celestia
Mainnet Beta. This feature is currently supported by Celestia integrations
with:
Expand Down
2 changes: 1 addition & 1 deletion how-to-guides/network-upgrade-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ As of the Lemongrass upgrade in September 2024, Celestia has implemented [CIP-10
1. **Pre-programmed height**: Used for the Lemongrass network upgrade (v2)
2. **In-protocol signaling**: Used for all subsequent upgrades (v3+)

Under the in-protocol signaling mechanism, validators submit messages to signal their readiness and preference for the next version. The upgrade activates automatically once a quorum of 5/6 of validators has signaled for the same version.
Under the in-protocol signaling mechanism, validators submit messages to signal their readiness and preference for the next version. The upgrade activates automatically once a quorum of 5/6 of validators have signaled for the same version.

## Upgrade process

Expand Down
Binary file modified public/Celestia-og.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 1767930

Please sign in to comment.