Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 5 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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ node_modules
.temp
.vite_opt_cache
.vscode
./new
23 changes: 0 additions & 23 deletions .vitepress/components/execution_callout.vue

This file was deleted.

93 changes: 47 additions & 46 deletions .vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@ const { BASE: base = "/" } = process.env;
// https://vitepress.dev/reference/site-config
export default withMermaid({
lang: "en-US",
title: "Rollkit",
description: "The unstoppable stack",
title: " ",
titleTemplate: false,
description: "Launch Fast. Build Your Own Network.",
lastUpdated: true,
cleanUrls: true,
ignoreDeadLinks: true,
base: base,
sitemap: {
hostname: "https://rollkit.dev",
hostname: "https://evolve.dev",
},

head: [
Expand Down Expand Up @@ -67,33 +68,33 @@ export default withMermaid({
"meta",
{
property: "description",
content: "The unstoppable stack.",
content: "Launch Fast. Build Your Own Network. Modular. Production-ready. Yours.",
},
],
["meta", { httpEquiv: "Content-Language", content: "en" }],
["meta", { name: "twitter:card", content: "summary_large_image" }],
["meta", { name: "twitter:image", content: "/img/Rollkit-cover.jpg" }],
["meta", { name: "twitter:site:domain", content: "rollkit.dev" }],
["meta", { name: "twitter:url", content: "https://rollkit.dev" }],
["meta", { name: "og:image", content: "/img/Rollkit-cover.jpg" }],
["meta", { name: "apple-mobile-web-app-title", content: "Rollkit" }],
[
"script",
{},
`
window.chatbaseConfig = {
chatbotId: "sw0sRxREFEQLTdqwC_Fbe",
}
`,
],
[
"script",
{
src: "https://www.chatbase.co/embed.min.js",
id: "sw0sRxREFEQLTdqwC_Fbe",
defer: true,
},
],
["meta", { name: "twitter:image", content: "/img/Evolve-cover.jpg" }],
["meta", { name: "twitter:site:domain", content: "evolve.dev" }],
["meta", { name: "twitter:url", content: "https://evolve.dev" }],
["meta", { name: "og:image", content: "/img/Evolve-cover.jpg" }],
["meta", { name: "apple-mobile-web-app-title", content: "Evolve" }],
// [
// "script",
// {},
// `
// window.chatbaseConfig = {
// chatbotId: "sw0sRxREFEQLTdqwC_Fbe",
// }
// `,
// ],
// [
// "script",
// {
// src: "https://www.chatbase.co/embed.min.js",
// id: "sw0sRxREFEQLTdqwC_Fbe",
// defer: true,
// },
// ],
[
"script",
{
Expand All @@ -119,7 +120,7 @@ export default withMermaid({

footer: {
message: "Released under the APACHE-2.0 License",
copyright: "Copyright © 2023 Rollkit",
copyright: "Copyright © 2024 Evolve",
},

search: {
Expand All @@ -134,20 +135,20 @@ export default withMermaid({
},

editLink: {
pattern: "https://github.com/rollkit/docs/edit/main/:path",
pattern: "https://github.com/evolve/docs/edit/main/:path",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

repo is wrong here

text: "Edit this page on GitHub",
},

logo: {
alt: "Rollkit Logo",
light: "/img/logo.svg",
dark: "/img/logo-dark.svg",
alt: "Evolve Logo",
light: "/img/logo.png",
dark: "/img/logo.png",
},

socialLinks: [
{ icon: "github", link: "https://github.com/rollkit/rollkit" },
{ icon: "twitter", link: "https://twitter.com/RollkitDev" },
{ icon: { svg: telegramSVG }, link: "https://t.me/rollkit" },
{ icon: "github", link: "https://github.com/evolve/evolve" },
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wrong repo

{ icon: "twitter", link: "https://twitter.com/EvolveDev" },
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is that claimed already?

{ icon: { svg: telegramSVG }, link: "https://t.me/evolve" },
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wrong as well

],
},
transformPageData(pageData) {
Expand All @@ -158,8 +159,8 @@ export default withMermaid({
name: "og:title",
content:
pageData.frontmatter.layout === "home"
? `Rollkit`
: `${pageData.title} | Rollkit`,
? `Evolve`
: `${pageData.title} | Evolve`,
},
{
name: "og:description",
Expand All @@ -184,7 +185,7 @@ function sidebarHome() {
collapsed: true,
items: [
{
text: "About Rollkit",
text: "About Evolve",
link: "/learn/about",
},
{
Expand Down Expand Up @@ -244,13 +245,13 @@ function sidebarHome() {
},
],
},
{
text: "Execution",
collapsed: true,
items: [
{ text: "CosmWasm", link: "/guides/execution/cosmwasm" },
],
},
// {
// text: "Execution",
// collapsed: true,
// items: [
// { text: "CosmWasm", link: "/guides/execution/cosmwasm" },
// ],
// },
{
text: "Deploy your chain",
collapsed: true,
Expand Down Expand Up @@ -296,8 +297,8 @@ function sidebarHome() {
link: "/guides/reset-state",
},
{
text: "CometBFT into a Rollkit app",
link: "/guides/cometbft-to-rollkit",
text: "CometBFT into a Evolve app",
link: "/guides/cometbft-to-evolve",
},
{
text: "Create genesis for your chain",
Expand Down
20 changes: 13 additions & 7 deletions .vitepress/constants/constants.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,25 @@
const constants = Object.freeze({
golangVersion: "go1.22.3",

rollkitLatestTag: "v1.0.0-beta.1",
rollkitLatestSha: "cd1970de",
rollkitCosmosSDKVersion: "v0.50.6-rollkit-v0.13.3-no-fraud-proofs",
rollkitIgniteAppVersion: "rollkit/v0.2.1",
evolveLatestTag: "v1.0.0-beta.1",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
evolveLatestTag: "v1.0.0-beta.1",
evolveLatestTag: "v1.0.0-beta.2",

shouldn't it be evNodeLatestTag?

evolveLatestSha: "cd1970de",
evolveCosmosSDKVersion: "v0.50.6-evolve-v0.13.3-no-fraud-proofs",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

to revert as well. however, i wonder where this is used. you can use normal sdk

evolveIgniteAppVersion: "evolve/v0.2.1",
Copy link
Member

@julienrbrt julienrbrt Jul 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

rollkit/v0.3.0

a new tag will happen once the re-branded components have properly updated (ev-node / ev-abci, etc..): ignite/apps#220


localDALatestTag: "v1.0.0-beta.1",
igniteVersionTag: "v28.5.3",

celestiaNodeArabicaTag: "v0.23.4-arabica",
celestiaNodeArabicaRollkitTag: "v1.0.0-beta.1",
celestiaNodeArabicaEvolveTag: "v1.0.0-beta.1",
celestiaNodeMochaTag: "v0.23.4-mocha",
celestiaNodeMochaRollkitTag: "v1.0.0-beta.1",
celestiaNodeMochaEvolveTag: "v1.0.0-beta.1",
celestiaNodeMainnetTag: "v0.22.3",
celestiaNodeMainnetRollkitTag: "v1.0.0-beta.1",
celestiaNodeMainnetEvolveTag: "v1.0.0-beta.1",

// Legacy compatibility - can be removed later
rollkitLatestTag: "v1.0.0-beta.1",
rollkitLatestSha: "cd1970de",
rollkitCosmosSDKVersion: "v0.50.6-evolve-v0.13.3-no-fraud-proofs",
rollkitIgniteAppVersion: "evolve/v0.2.1",
});
export default constants;
Loading
Loading