Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit cc56f04

Browse files
authored
chore: rename to evolve (#607)
* evolve * reword * minor fix
1 parent 7c70707 commit cc56f04

64 files changed

Lines changed: 1379 additions & 1411 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/auto_review_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
auto-add-reviewer:
99
name: Auto add reviewer to PR
10-
uses: rollkit/.github/.github/workflows/reusable_housekeeping.yml@v0.5.0
10+
uses: evstack/.github/.github/workflows/reusable_housekeeping.yml@v0.5.0
1111
secrets: inherit
1212
permissions:
1313
issues: write

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup Node
1515
uses: actions/setup-node@v4
1616
with:
17-
node-version: 18
17+
node-version: 20
1818
cache: yarn # or pnpm / npm
1919
- name: Install dependencies
2020
run: yarn install # or pnpm install / npm ci

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Setup Node
3434
uses: actions/setup-node@v4
3535
with:
36-
node-version: 18
36+
node-version: 20
3737
cache: yarn # or pnpm / npm
3838
- name: Setup Pages
3939
uses: actions/configure-pages@v5

.github/workflows/preview.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Deploy PR previews
22

33
on:
4-
# This workflow requires pull_request and won't work with pull_request_target
5-
# due to github permissions
4+
# This workflow requires pull_request and won't work with pull_request_target
5+
# due to github permissions
66
pull_request:
77
types:
88
- opened
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup Node
2525
uses: actions/setup-node@v4
2626
with:
27-
node-version: 18
27+
node-version: 20
2828
cache: yarn
2929

3030
- name: Install dependencies
@@ -37,7 +37,7 @@ jobs:
3737
uses: rossjrw/pr-preview-action@v1
3838
with:
3939
source-dir: .vitepress/dist
40-
deploy-repository: rollkit/docs-preview
40+
deploy-repository: evstack/docs-preview
4141
token: ${{ secrets.PREVIEW_DEPLOY }}
4242
preview-branch: main
4343
umbrella-dir: .

.vitepress/components/callout.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div>
3-
<p>This tutorial explores Rollkit, currently in Alpha. If you encounter bugs, please report them via a GitHub <a href="https://github.com/rollkit/docs/issues/new">issue ticket</a> or reach out in our <a href="https://t.me/rollkit">Telegram group</a>.</p>
3+
<p>This tutorial explores Evolve, currently in Alpha. If you encounter bugs, please report them via a GitHub <a href="https://github.com/evstack/docs/issues/new">issue ticket</a> or reach out in our <a href="https://t.me/rollkit">Telegram group</a>.</p>
44
</div>
55
</template>
66

@@ -12,4 +12,4 @@ export default {
1212

1313
<style scoped>
1414
/* Add any custom styles for the component here */
15-
</style>
15+
</style>

.vitepress/components/execution_callout.vue

Lines changed: 0 additions & 23 deletions
This file was deleted.

.vitepress/components/twitter.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
<template>
33
<blockquote class="twitter-tweet" data-lang="en" data-theme="dark">
4-
<p lang="de" dir="ltr">rollkit start <a href="https://t.co/tytjFm1Z4Y">pic.twitter.com/tytjFm1Z4Y</a></p>&mdash; Josh Stein 🤳✨ (@JoshCStein) <a href="https://twitter.com/JoshCStein/status/1783880747301880161?ref_src=twsrc%5Etfw">April 26, 2024</a>
4+
<p lang="de" dir="ltr">evolve start <a href="https://t.co/tytjFm1Z4Y">pic.twitter.com/tytjFm1Z4Y</a></p>&mdash; Josh Stein 🤳✨ (@JoshCStein) <a href="https://twitter.com/JoshCStein/status/1783880747301880161?ref_src=twsrc%5Etfw">April 26, 2024</a>
55
</blockquote>
66
</template>
77

.vitepress/config.ts

Lines changed: 71 additions & 89 deletions
Original file line numberDiff line numberDiff line change
@@ -9,50 +9,24 @@ const { BASE: base = "/" } = process.env;
99
// https://vitepress.dev/reference/site-config
1010
export default withMermaid({
1111
lang: "en-US",
12-
title: "Rollkit",
13-
description: "The unstoppable stack",
12+
title: " ",
13+
titleTemplate: false,
14+
description: "Launch Fast. Build Your Own Network.",
1415
lastUpdated: true,
1516
cleanUrls: true,
1617
ignoreDeadLinks: true,
1718
base: base,
1819
sitemap: {
19-
hostname: "https://rollkit.dev",
20+
hostname: "https://evolve.dev",
2021
},
2122

2223
head: [
2324
["link", { rel: "icon", href: "/img/favicon.svg", type: "image/svg+xml" }],
2425
["link", { rel: "icon", href: "/img/favicon.png", type: "image/png" }],
25-
// [
26-
// 'link',
27-
// {
28-
// rel: 'icon',
29-
// type: 'image/svg+xml',
30-
// href: '/img/favicon-dark.svg',
31-
// media: '(prefers-color-scheme: dark)',
32-
// },
33-
// ],
34-
// [
35-
// 'link',
36-
// {
37-
// rel: 'icon',
38-
// type: 'image/png',
39-
// href: '/img/favicon-dark.png',
40-
// media: '(prefers-color-scheme: dark)',
41-
// },
42-
// ],
4326
[
4427
"link",
4528
{ rel: "shortcut icon", href: "/favicon.ico", type: "image/x-icon" },
4629
],
47-
// [
48-
// 'link',
49-
// {
50-
// rel: 'icon',
51-
// type: 'image/x-icon',
52-
// href: '/img/favicon-dark.ico',
53-
// media: '(prefers-color-scheme: dark)',
54-
// },
55-
// ],
5630
["meta", { name: "msapplication-TileColor", content: "#fff" }],
5731
["meta", { name: "theme-color", content: "#fff" }],
5832
[
@@ -67,33 +41,16 @@ export default withMermaid({
6741
"meta",
6842
{
6943
property: "description",
70-
content: "The unstoppable stack.",
44+
content: "Own It. Shape It. Launch It. Evolve your app",
7145
},
7246
],
7347
["meta", { httpEquiv: "Content-Language", content: "en" }],
7448
["meta", { name: "twitter:card", content: "summary_large_image" }],
75-
["meta", { name: "twitter:image", content: "/img/Rollkit-cover.jpg" }],
76-
["meta", { name: "twitter:site:domain", content: "rollkit.dev" }],
77-
["meta", { name: "twitter:url", content: "https://rollkit.dev" }],
78-
["meta", { name: "og:image", content: "/img/Rollkit-cover.jpg" }],
79-
["meta", { name: "apple-mobile-web-app-title", content: "Rollkit" }],
80-
[
81-
"script",
82-
{},
83-
`
84-
window.chatbaseConfig = {
85-
chatbotId: "sw0sRxREFEQLTdqwC_Fbe",
86-
}
87-
`,
88-
],
89-
[
90-
"script",
91-
{
92-
src: "https://www.chatbase.co/embed.min.js",
93-
id: "sw0sRxREFEQLTdqwC_Fbe",
94-
defer: true,
95-
},
96-
],
49+
["meta", { name: "twitter:image", content: "/img/Evolve-cover.jpg" }],
50+
["meta", { name: "twitter:site:domain", content: "evolve.dev" }],
51+
["meta", { name: "twitter:url", content: "https://evolve.dev" }],
52+
["meta", { name: "og:image", content: "/img/Evolve-cover.jpg" }],
53+
["meta", { name: "apple-mobile-web-app-title", content: "Evolve" }],
9754
[
9855
"script",
9956
{
@@ -102,14 +59,45 @@ export default withMermaid({
10259
defer: true,
10360
},
10461
],
105-
[
106-
"script",
107-
{
108-
src: "https://platform.twitter.com/widgets.js",
109-
async: true,
110-
},
111-
],
11262
],
63+
64+
// // Build optimizations
65+
// vite: {
66+
// build: {
67+
// rollupOptions: {
68+
// output: {
69+
// manualChunks: (id) => {
70+
// // Extract vendor chunks
71+
// if (id.includes('node_modules')) {
72+
// if (id.includes('vue') || id.includes('@vue')) {
73+
// return 'vue';
74+
// }
75+
// if (id.includes('mermaid')) {
76+
// return 'mermaid';
77+
// }
78+
// return 'vendor';
79+
// }
80+
// },
81+
// },
82+
// },
83+
// // Enable minification
84+
// minify: 'terser',
85+
// terserOptions: {
86+
// compress: {
87+
// drop_console: true,
88+
// drop_debugger: true,
89+
// },
90+
// },
91+
// // Optimize chunk size
92+
// chunkSizeWarningLimit: 1000,
93+
// },
94+
// // Optimize dependencies
95+
// optimizeDeps: {
96+
// include: ['vue', '@vue/runtime-core', '@vue/runtime-dom', '@vue/shared'],
97+
// exclude: ['vitepress'],
98+
// },
99+
// },
100+
113101
themeConfig: {
114102
// https://vitepress.dev/reference/default-theme-config
115103
nav: nav(),
@@ -119,7 +107,7 @@ export default withMermaid({
119107

120108
footer: {
121109
message: "Released under the APACHE-2.0 License",
122-
copyright: "Copyright © 2023 Rollkit",
110+
copyright: "Copyright © 2024 Evolve",
123111
},
124112

125113
search: {
@@ -134,20 +122,20 @@ export default withMermaid({
134122
},
135123

136124
editLink: {
137-
pattern: "https://github.com/rollkit/docs/edit/main/:path",
125+
pattern: "https://github.com/evstack/docs/edit/main/:path",
138126
text: "Edit this page on GitHub",
139127
},
140128

141129
logo: {
142-
alt: "Rollkit Logo",
143-
light: "/img/logo.svg",
144-
dark: "/img/logo-dark.svg",
130+
alt: "Evolve Logo",
131+
light: "/img/logo.png",
132+
dark: "/img/logo.png",
145133
},
146134

147135
socialLinks: [
148-
{ icon: "github", link: "https://github.com/rollkit/rollkit" },
149-
{ icon: "twitter", link: "https://twitter.com/RollkitDev" },
150-
{ icon: { svg: telegramSVG }, link: "https://t.me/rollkit" },
136+
{ icon: "github", link: "https://github.com/evstack" },
137+
{ icon: "twitter", link: "https://twitter.com/ev_stack" },
138+
{ icon: { svg: telegramSVG }, link: "https://t.me/+2p8-IYf6sQ0zNmEx" },
151139
],
152140
},
153141
transformPageData(pageData) {
@@ -158,8 +146,8 @@ export default withMermaid({
158146
name: "og:title",
159147
content:
160148
pageData.frontmatter.layout === "home"
161-
? `Rollkit`
162-
: `${pageData.title} | Rollkit`,
149+
? `Evolve`
150+
: `${pageData.title} | Evolve`,
163151
},
164152
{
165153
name: "og:description",
@@ -184,7 +172,7 @@ function sidebarHome() {
184172
collapsed: true,
185173
items: [
186174
{
187-
text: "About Rollkit",
175+
text: "About Evolve",
188176
link: "/learn/about",
189177
},
190178
{
@@ -201,7 +189,7 @@ function sidebarHome() {
201189
},
202190
{
203191
text: "Execution",
204-
link: "/learn/execution"
192+
link: "/learn/execution",
205193
},
206194
{
207195
text: "Technical Specifications",
@@ -244,13 +232,13 @@ function sidebarHome() {
244232
},
245233
],
246234
},
247-
{
248-
text: "Execution",
249-
collapsed: true,
250-
items: [
251-
{ text: "CosmWasm", link: "/guides/execution/cosmwasm" },
252-
],
253-
},
235+
// {
236+
// text: "Execution",
237+
// collapsed: true,
238+
// items: [
239+
// { text: "CosmWasm", link: "/guides/execution/cosmwasm" },
240+
// ],
241+
// },
254242
{
255243
text: "Deploy your chain",
256244
collapsed: true,
@@ -281,7 +269,7 @@ function sidebarHome() {
281269
text: "Reth State Backup",
282270
link: "/guides/evm/reth-backup",
283271
},
284-
]
272+
],
285273
},
286274
{
287275
text: "Run a Full Node",
@@ -296,8 +284,8 @@ function sidebarHome() {
296284
link: "/guides/reset-state",
297285
},
298286
{
299-
text: "CometBFT into a Rollkit app",
300-
link: "/guides/cometbft-to-rollkit",
287+
text: "CometBFT into a Evolve app",
288+
link: "/guides/cometbft-to-evolve",
301289
},
302290
{
303291
text: "Create genesis for your chain",
@@ -316,13 +304,7 @@ function sidebarHome() {
316304
{
317305
text: "Blog",
318306
collapsed: true,
319-
items: [
320-
{ text: "Overview", link: "/blog/overview" },
321-
{
322-
text: "Rollkit: The First Sovereign Rollup Framework",
323-
link: "/blog/rollkit-the-first-sovereign-rollup-framework",
324-
},
325-
],
307+
items: [{ text: "Overview", link: "/blog/overview" }],
326308
},
327309
];
328310
}

0 commit comments

Comments
 (0)