-
Notifications
You must be signed in to change notification settings - Fork 56
chore: rename to evolve #607
Changes from 5 commits
4afe398
cc6d459
43f2b9f
f7bf86f
e6ded1a
bdf20df
e3edb8c
993b3b0
d02b0c3
29fca71
693dc29
3e13f6a
ec3de5d
a5a2369
577f139
c693420
dc3ea98
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,3 +8,4 @@ node_modules | |
| .temp | ||
| .vite_opt_cache | ||
| .vscode | ||
| ./new | ||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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, | ||
tac0turtle marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| 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: [ | ||
|
|
@@ -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", | ||
| { | ||
|
|
@@ -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: { | ||
|
|
@@ -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", | ||
|
||
| 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", | ||
tac0turtle marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| }, | ||
|
|
||
| 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" }, | ||
|
||
| { icon: "twitter", link: "https://twitter.com/EvolveDev" }, | ||
|
||
| { icon: { svg: telegramSVG }, link: "https://t.me/evolve" }, | ||
|
||
| ], | ||
| }, | ||
| transformPageData(pageData) { | ||
|
|
@@ -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", | ||
|
|
@@ -184,7 +185,7 @@ function sidebarHome() { | |
| collapsed: true, | ||
| items: [ | ||
| { | ||
| text: "About Rollkit", | ||
| text: "About Evolve", | ||
| link: "/learn/about", | ||
| }, | ||
| { | ||
|
|
@@ -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, | ||
|
|
@@ -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", | ||
|
|
||
| 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", | ||||||
|
||||||
| evolveLatestTag: "v1.0.0-beta.1", | |
| evolveLatestTag: "v1.0.0-beta.2", |
shouldn't it be evNodeLatestTag?
Outdated
There was a problem hiding this comment.
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
Outdated
There was a problem hiding this comment.
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
Uh oh!
There was an error while loading. Please reload this page.