Skip to content

Commit d89b796

Browse files
tac0turtletac0turtle
andauthored
chore: rename rollkit to ev-node (#2493)
<!-- Please read and fill out this form before submitting your PR. Please make sure you have reviewed our contributors guide before submitting your first PR. NOTE: PR titles should follow semantic commits: https://www.conventionalcommits.org/en/v1.0.0/ --> ## Overview <!-- Please provide an explanation of the PR, including the appropriate context, background, goal, and rationale. If there is an issue with this information, please provide a tl;dr and link the issue. Ex: Closes #<issue number> --> --------- Co-authored-by: tac0turtle <you@example.com>
1 parent 4bc21d3 commit d89b796

File tree

202 files changed

+3051
-1310
lines changed

Some content is hidden

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

202 files changed

+3051
-1310
lines changed

.github/auto_request_review.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
reviewers:
22
defaults:
3-
- rollkit
3+
- ev-node
44
groups:
5-
rollkit:
5+
ev-node:
66
- team:core
77
files:
88
".github/**":
9-
- rollkit
9+
- ev-node
1010
options:
1111
ignore_draft: true
1212
ignored_keywords:

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ updates:
1919
schedule:
2020
interval: daily
2121
allow:
22-
- dependency-name: "rollkit/*"
22+
- dependency-name: "ev-node/*"
2323
labels:
2424
- T:dependencies
2525
# Group all patch updates into a single PR
@@ -48,7 +48,7 @@ updates:
4848
schedule:
4949
interval: daily
5050
allow:
51-
- dependency-name: "github.com/rollkit/*"
51+
- dependency-name: "github.com/ev-node/*"
5252
labels:
5353
- T:dependencies
5454
# Group all patch updates into a single PR

.github/workflows/ci_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
run: |
6060
rm -rf /opt/homebrew/bin/gtar
6161
- name: Version Release
62-
uses: rollkit/.github/.github/actions/version-release@v0.5.0
62+
uses: evstack/.github/.github/actions/version-release@v0.5.0
6363
with:
6464
github-token: ${{secrets.GITHUB_TOKEN}}
6565
version-bump: ${{inputs.version}}

.github/workflows/claude-code-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
Be constructive and helpful in your feedback.
5353
5454
# Optional: Use sticky comments to make Claude reuse the same comment on subsequent pushes to the same PR
55-
# use_sticky_comment: true
55+
use_sticky_comment: true
5656

5757
# Optional: Customize review based on file types
5858
# direct_prompt: |

.github/workflows/housekeeping.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
issue-management:
1111
if: ${{ github.event.issue }}
1212
name: Add issues to project and add triage label
13-
uses: rollkit/.github/.github/workflows/reusable_housekeeping.yml@v0.5.0
13+
uses: evstack/.github/.github/workflows/reusable_housekeeping.yml@v0.5.0
1414
secrets: inherit
1515
permissions:
1616
issues: write
@@ -19,7 +19,7 @@ jobs:
1919
run-labels: true
2020
labels-to-add: "needs-triage"
2121
run-projects: true
22-
project-url: https://github.com/orgs/rollkit/projects/7
22+
project-url: https://github.com/orgs/evstack/projects/7
2323

2424
auto-add-assignee-pr:
2525
# ignore dependabot PRs

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
# hadolint lints the Dockerfile
3434
hadolint:
35-
uses: rollkit/.github/.github/workflows/reusable_dockerfile_lint.yml@v0.5.0 # yamllint disable-line rule:line-length
35+
uses: evstack/.github/.github/workflows/reusable_dockerfile_lint.yml@v0.5.0 # yamllint disable-line rule:line-length
3636
with:
3737
dockerfile: Dockerfile
3838
failure-threshold: error
@@ -41,13 +41,13 @@ jobs:
4141
runs-on: ubuntu-latest
4242
steps:
4343
- uses: actions/checkout@v4
44-
- uses: rollkit/.github/.github/actions/yamllint@v0.5.0
44+
- uses: evstack/.github/.github/actions/yamllint@v0.5.0
4545

4646
markdown-lint:
4747
runs-on: ubuntu-latest
4848
steps:
4949
- uses: actions/checkout@v4
50-
- uses: rollkit/.github/.github/actions/markdown-lint@v0.5.0
50+
- uses: evstack/.github/.github/actions/markdown-lint@v0.5.0
5151

5252
# Checks that the .goreleaser.yaml file is valid
5353
goreleaser-check:

.github/workflows/rust-publish.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -28,49 +28,49 @@ jobs:
2828
- name: Check crate versions
2929
run: |
3030
echo "=== Checking crate versions ==="
31-
echo "rollkit-types version: $(cargo pkgid -p rollkit-types | cut -d# -f2)"
32-
echo "rollkit-client version: $(cargo pkgid -p rollkit-client | cut -d# -f2)"
31+
echo "types version: $(cargo pkgid -p ev-types | cut -d# -f2)"
32+
echo "ev-client version: $(cargo pkgid -p ev-client | cut -d# -f2)"
3333
3434
- name: Run tests
3535
run: cargo test --workspace --all-features
3636

37-
- name: Package and publish rollkit-types (dry run)
37+
- name: Package and publish ev-types (dry run)
3838
if: github.event_name == 'workflow_dispatch' && inputs.dry_run
3939
run: |
40-
cd client/crates/rollkit-types
40+
cd client/crates/types
4141
cargo package --allow-dirty
4242
cargo publish --dry-run
4343
44-
- name: Package and publish rollkit-client (dry run)
44+
- name: Package and publish ev-client (dry run)
4545
if: github.event_name == 'workflow_dispatch' && inputs.dry_run
4646
run: |
47-
cd client/crates/rollkit-client
47+
cd client/crates/client
4848
cargo package --allow-dirty
4949
cargo publish --dry-run
5050
51-
- name: Publish rollkit-types
51+
- name: Publish ev-types
5252
if: (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')) || (github.event_name == 'workflow_dispatch' && !inputs.dry_run)
5353
env:
5454
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
5555
run: |
56-
cd client/crates/rollkit-types
56+
cd client/crates/types
5757
cargo package --allow-dirty
5858
cargo publish
5959
60-
- name: Wait for rollkit-types to be available
60+
- name: Wait for ev-types to be available
6161
if: (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')) || (github.event_name == 'workflow_dispatch' && !inputs.dry_run)
6262
run: |
63-
echo "Waiting for rollkit-types to be available on crates.io..."
63+
echo "Waiting for ev-types to be available on crates.io..."
6464
sleep 60
6565
# Verify the package is available
66-
cargo search rollkit-types --limit 1
66+
cargo search ev-types --limit 1
6767
68-
- name: Publish rollkit-client
68+
- name: Publish ev-client
6969
if: (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')) || (github.event_name == 'workflow_dispatch' && !inputs.dry_run)
7070
env:
7171
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
7272
run: |
73-
cd client/crates/rollkit-client
73+
cd client/crates/client
7474
cargo package --allow-dirty
7575
cargo publish
7676
@@ -83,17 +83,17 @@ jobs:
8383
# Rust Client Release
8484
8585
This release includes:
86-
- `rollkit-types`: Proto-generated types for Rollkit
87-
- `rollkit-client`: High-level Rust client for Rollkit gRPC services
86+
- `ev-types`: Proto-generated types for ev-node
87+
- `ev-client`: High-level Rust client for ev-node gRPC services
8888
8989
## Installation
9090
9191
Add to your `Cargo.toml`:
9292
```toml
9393
[dependencies]
94-
rollkit-client = "<version>"
94+
ev-client = "<version>"
9595
```
9696
97-
See the [README](https://github.com/rollkit/rollkit/tree/main/client/crates/rollkit-client) for usage examples.
97+
See the [README](https://github.com/evstack/ev-node/tree/main/client/crates/client) for usage examples.
9898
draft: false
9999
prerelease: false

.github/workflows/rust-test.yml

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

5454
- name: Check examples
5555
run: |
56-
cd client/crates/rollkit-client
56+
cd client/crates/client
5757
cargo check --examples --verbose
5858
5959
coverage:

.github/workflows/test.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
type: string
1010

1111
jobs:
12-
build-rollkit-image:
12+
build-ev-node-image:
1313
name: Build Rollkit Docker Image
1414
# skip building images for merge groups as they are already built on PRs and main
1515
if: github.event_name != 'merge_group'
@@ -30,16 +30,16 @@ jobs:
3030
username: ${{ github.actor }}
3131
password: ${{ secrets.GITHUB_TOKEN }}
3232

33-
- name: Build and push rollkit Docker image
33+
- name: Build and push ev-node Docker image
3434
uses: docker/build-push-action@v6
3535
with:
3636
context: .
3737
push: true
3838
platforms: linux/amd64,linux/arm64
39-
tags: ghcr.io/${{ github.repository_owner }}/rollkit:${{ inputs.image-tag }}
39+
tags: ghcr.io/${{ github.repository_owner }}/evstack:${{ inputs.image-tag }}
4040

41-
build-rollkit-evm-single-image:
42-
name: Build Rollkit EVM Single Docker Image
41+
build-ev-node-evm-single-image:
42+
name: Build ev-node EVM Single Docker Image
4343
# skip building images for merge groups as they are already built on PRs and main
4444
if: github.event_name != 'merge_group'
4545
runs-on: ubuntu-latest
@@ -59,18 +59,18 @@ jobs:
5959
username: ${{ github.actor }}
6060
password: ${{ secrets.GITHUB_TOKEN }}
6161

62-
- name: Build and push rollkit-evm-single Docker image
62+
- name: Build and push ev-node-evm-single Docker image
6363
uses: docker/build-push-action@v6
6464
with:
6565
context: .
6666
file: apps/evm/single/Dockerfile
6767
push: true
6868
platforms: linux/amd64,linux/arm64
69-
tags: ghcr.io/${{ github.repository_owner }}/rollkit-evm-single:${{ inputs.image-tag }}
69+
tags: ghcr.io/${{ github.repository_owner }}/ev-node-evm-single:${{ inputs.image-tag }}
7070

7171
docker-tests:
7272
name: Docker E2E Tests
73-
needs: build-rollkit-image
73+
needs: build-ev-node-image
7474
runs-on: ubuntu-latest
7575
steps:
7676
- uses: actions/checkout@v4
@@ -81,19 +81,19 @@ jobs:
8181
- name: Run Docker E2E Tests
8282
run: make test-docker-e2e
8383
env:
84-
ROLLKIT_IMAGE_REPO: ghcr.io/${{ github.repository }}
85-
ROLLKIT_IMAGE_TAG: ${{ inputs.image-tag }}
84+
EV_NODE_IMAGE_REPO: ghcr.io/${{ github.repository }}
85+
EV_NODE_IMAGE_TAG: ${{ inputs.image-tag }}
8686

8787
build_all-apps:
88-
name: Build All Rollkit Binaries
88+
name: Build All ev-node Binaries
8989
runs-on: ubuntu-latest
9090
steps:
9191
- uses: actions/checkout@v4
9292
- name: set up go
9393
uses: actions/setup-go@v5
9494
with:
9595
go-version-file: ./go.mod
96-
- name: Build all rollkit binaries
96+
- name: Build all ev-node binaries
9797
run: make build-all
9898

9999
go_mod_tidy_check:

.golangci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ formatters:
4444
sections:
4545
- standard
4646
- default
47-
- prefix(github.com/rollkit)
48-
- prefix(github.com/rollkit/rollkit)
47+
- prefix(github.com/evstack)
48+
- prefix(github.com/evstack/ev-node)
4949
custom-order: true
5050
exclusions:
5151
generated: lax

0 commit comments

Comments
 (0)