Skip to content

Commit 248fc2a

Browse files
author
tac0turtle
committed
remove more rollkit mentions
1 parent 5eca409 commit 248fc2a

Some content is hidden

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

78 files changed

+295
-296
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ body:
1212
label: Version Information
1313
description: Please provide versions of all relevant components
1414
placeholder: |
15-
Rollkit:
15+
ev-node:
1616
Execution Implementation:
1717
validations:
1818
required: true
@@ -112,7 +112,7 @@ body:
112112
description: |
113113
Please provide relevant logs from different components:
114114
- Node logs
115-
- Rollkit logs
115+
- Ev-node logs
116116
- DA logs
117117
- Sequencer logs
118118
- Execution logs

CONTRIBUTING.md

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

33
## Finding an issue
44

5-
GitHub issues are used to track the work associated with Rollkit. That's where you can find things to work on.
5+
GitHub issues are used to track the work associated with Evolve. That's where you can find things to work on.
66

77
Issue labels have been used to help designate the priority, status and beginner-friendliness of various issues. Here are some of the ones that are most relevant to finding a good issue to work on:
88

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,4 @@ make proto-lint
100100
| 2024/01/12 | [Informal Systems](https://informal.systems/) | [eccdd...bcb9d](https://github.com/evstack/ev-node/commit/eccdd0f1793a5ac532011ef4d896de9e0d8bcb9d) | [informal-systems.pdf](docs/audit/informal-systems.pdf) |
101101
| 2024/01/10 | [Binary Builders](https://binary.builders/) | [eccdd...bcb9d](https://github.com/evstack/ev-node/commit/eccdd0f1793a5ac532011ef4d896de9e0d8bcb9d) | [binary-builders.pdf](docs/audit/binary-builders.pdf) |
102102

103-
[docs]: <https://rollkit.dev> <!-- todo rename once we have the domain-->
103+
[docs]: <https://ev.xyz>

apps/evm/based/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Rollkit EVM Based Sequencer
1+
# Evolve EVM Based Sequencer
22

3-
This directory contains the implementation of a based EVM sequencer using Rollkit.
3+
This directory contains the implementation of a based EVM sequencer using Evolve.
44

55
## Prerequisites
66

@@ -12,7 +12,7 @@ This directory contains the implementation of a based EVM sequencer using Rollki
1212

1313
1. Both EVM and DA layers must be running before starting the aggregator
1414
1. For the EVM layer, Reth can be conveniently run using `docker compose` from the go-execution-evm repository.
15-
2. For the DA layer, local-da can be built and run from the `rollkit/da/cmd/local-da` directory.
15+
2. For the DA layer, local-da can be built and run from the `ev-node/da/cmd/local-da` directory.
1616

1717
2. Build the sequencer:
1818

apps/evm/based/cmd/init.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ import (
1111
rollgenesis "github.com/evstack/ev-node/pkg/genesis"
1212
)
1313

14-
// InitCmd initializes a new rollkit.yaml file in the current directory
14+
// InitCmd initializes a new evolve.yaml file in the current directory
1515
func InitCmd() *cobra.Command {
1616
initCmd := &cobra.Command{
1717
Use: "init",
18-
Short: "Initialize rollkit config",
18+
Short: "Initialize evolve config",
1919
Long: fmt.Sprintf("This command initializes a new %s file in the specified directory (or current directory if not specified).", rollconf.ConfigName),
2020
RunE: func(cmd *cobra.Command, args []string) error {
2121
homePath, err := cmd.Flags().GetString(rollconf.FlagRootDir)
@@ -47,7 +47,7 @@ func InitCmd() *cobra.Command {
4747
}
4848

4949
if err := cfg.SaveAsYaml(); err != nil {
50-
return fmt.Errorf("error writing rollkit.yaml file: %w", err)
50+
return fmt.Errorf("error writing evolve.yaml file: %w", err)
5151
}
5252

5353
if err := rollcmd.LoadOrGenNodeKey(homePath); err != nil {
@@ -57,7 +57,7 @@ func InitCmd() *cobra.Command {
5757
// get chain ID or use default
5858
chainID, _ := cmd.Flags().GetString(rollconf.FlagChainID)
5959
if chainID == "" {
60-
chainID = "rollkit-test"
60+
chainID = "evolve-test"
6161
}
6262

6363
// Initialize genesis without app state

apps/evm/based/cmd/run.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func NewExtendedRunNodeCmd(ctx context.Context) *cobra.Command {
4141

4242
cmd := &cobra.Command{
4343
Use: "start",
44-
Short: "Run the rollkit node in based mode",
44+
Short: "Run the evolve node in based mode",
4545
PreRunE: func(cmd *cobra.Command, args []string) error {
4646
var err error
4747

apps/evm/based/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const (
1616

1717
var RootCmd = &cobra.Command{
1818
Use: AppName,
19-
Short: "evm-based is a based evm execution environment for rollkit, out of the box it works with reth",
19+
Short: "evm-based is a based evm execution environment for ev-node, out of the box it works with reth",
2020
}
2121

2222
func main() {

apps/evm/single/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Rollkit EVM Single Sequencer
1+
# Evolve EVM Single Sequencer
22

3-
This directory contains the implementation of a single EVM sequencer using Rollkit.
3+
This directory contains the implementation of a single EVM sequencer using Ev-node.
44

55
## Prerequisites
66

@@ -11,7 +11,7 @@ This directory contains the implementation of a single EVM sequencer using Rollk
1111

1212
1. Both EVM and DA layers must be running before starting the sequencer
1313
1. For the EVM layer, Reth can be conveniently run using `docker compose` from <path_to>/execution/evm/docker.
14-
2. For the DA layer, local-da can be built and run from the `rollkit/da/cmd/local-da` directory.
14+
2. For the DA layer, local-da can be built and run from the `ev-node/da/cmd/local-da` directory.
1515

1616
2. Build the sequencer:
1717

apps/evm/single/cmd/init.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ import (
1111
rollgenesis "github.com/evstack/ev-node/pkg/genesis"
1212
)
1313

14-
// InitCmd initializes a new rollkit.yaml file in the current directory
14+
// InitCmd initializes a new evolve.yaml file in the current directory
1515
func InitCmd() *cobra.Command {
1616
initCmd := &cobra.Command{
1717
Use: "init",
18-
Short: "Initialize rollkit config",
18+
Short: "Initialize evolve config",
1919
Long: fmt.Sprintf("This command initializes a new %s file in the specified directory (or current directory if not specified).", rollconf.ConfigName),
2020
RunE: func(cmd *cobra.Command, args []string) error {
2121
homePath, err := cmd.Flags().GetString(rollconf.FlagRootDir)
@@ -47,7 +47,7 @@ func InitCmd() *cobra.Command {
4747
}
4848

4949
if err := cfg.SaveAsYaml(); err != nil {
50-
return fmt.Errorf("error writing rollkit.yaml file: %w", err)
50+
return fmt.Errorf("error writing evolve.yaml file: %w", err)
5151
}
5252

5353
if err := rollcmd.LoadOrGenNodeKey(homePath); err != nil {
@@ -57,7 +57,7 @@ func InitCmd() *cobra.Command {
5757
// get chain ID or use default
5858
chainID, _ := cmd.Flags().GetString(rollconf.FlagChainID)
5959
if chainID == "" {
60-
chainID = "rollkit-test"
60+
chainID = "evolve-test"
6161
}
6262

6363
// Initialize genesis without app state

apps/evm/single/cmd/run.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
var RunCmd = &cobra.Command{
2626
Use: "start",
2727
Aliases: []string{"node", "run"},
28-
Short: "Run the rollkit node with EVM execution client",
28+
Short: "Run the evolve node with EVM execution client",
2929
RunE: func(cmd *cobra.Command, args []string) error {
3030
executor, err := createExecutionClient(cmd)
3131
if err != nil {

0 commit comments

Comments
 (0)