Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
/konaPublic

Commit161547c

Browse files
refcellsebastianstEvalirSkandaBhatmeyer9
authored
feat: Kona Optimism Monorepo (#1055)
Co-authored-by: Sebastian Stammler <seb@oplabs.co>Co-authored-by: evalir <e@evalir.xyz>Co-authored-by: Skanda Bhat <bhat.skanda.m@gmail.com>Co-authored-by: Julian Meyer <julianmeyer2000@gmail.com>Co-authored-by: Serge Radinovich <47865535+sergerad@users.noreply.github.com>Co-authored-by: fakedev9999 <taehoon@succinct.xyz>Co-authored-by: Emilia Hane <emhane@Emilias-MacBook-Pro.local>Co-authored-by: Arsenii Kulikov <klkvrr@gmail.com>Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>Co-authored-by: nicolas <48695862+merklefruit@users.noreply.github.com>Co-authored-by: clabby <ben@clab.by>
1 parentcf8aa2b commit161547c

File tree

534 files changed

+41653
-624
lines changed

Some content is hidden

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

534 files changed

+41653
-624
lines changed
File renamed without changes.

‎.github/codecov.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@ ignore:
2222
-"**/test_utils*"
2323
-"**/test_util*"
2424
-"**/tests*"
25-
-"crates/providers-alloy"
26-
-"crates/mpt/src/noop.rs"
25+
-"crates/providers/providers-alloy"
26+
-"crates/providers/providers-local"
27+
-"crates/proof/mpt/src/noop.rs"
2728
# Interop - not yet integrated
28-
-"crates/proof-sdk/proof-interop"
29+
-"crates/proof/proof-interop"
2930
-"bin/host/src/interop"
3031
-"bin/client/src/interop"
3132

‎.github/workflows/deny.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name:Deny
2+
3+
on:
4+
push:
5+
branches:[main]
6+
pull_request:
7+
branches:[main]
8+
schedule:[cron: "00 00 * * *"]
9+
10+
jobs:
11+
cargo-deny:
12+
runs-on:ubuntu-latest
13+
steps:
14+
-uses:actions/checkout@v4
15+
with:
16+
submodules:true
17+
-uses:EmbarkStudios/cargo-deny-action@v2

‎.github/workflows/no_std.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name:no_std checks
2+
3+
on:
4+
push:
5+
branches:[main]
6+
merge_group:
7+
pull_request:
8+
9+
env:
10+
CARGO_TERM_COLOR:always
11+
12+
jobs:
13+
no-std:
14+
runs-on:ubuntu-latest
15+
timeout-minutes:30
16+
steps:
17+
-uses:actions/checkout@v4
18+
with:
19+
submodules:true
20+
-uses:dtolnay/rust-toolchain@stable
21+
with:
22+
target:riscv32imac-unknown-none-elf
23+
-uses:taiki-e/install-action@cargo-hack
24+
-uses:Swatinem/rust-cache@v2
25+
with:
26+
cache-on-failure:true
27+
-name:check
28+
run:./scripts/check_no_std.sh

‎.github/workflows/sync.yaml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name:Synchronize Git Submodules
2+
3+
on:
4+
push:
5+
branches:[main]
6+
schedule:
7+
-cron:'30 5 * * *'
8+
workflow_dispatch:
9+
10+
jobs:
11+
submodule-sync:
12+
name:Synchronize the git submodule
13+
runs-on:ubuntu-latest
14+
timeout-minutes:30
15+
steps:
16+
-uses:actions/checkout@v4
17+
with:
18+
submodules:true
19+
token:${{ secrets.PAT_TOKEN }}
20+
-uses:taiki-e/install-action@just
21+
-uses:dtolnay/rust-toolchain@stable
22+
-name:Update Submodule
23+
run:just source && just bind
24+
-name:Create Pull Request
25+
id:cpr
26+
uses:peter-evans/create-pull-request@v7
27+
with:
28+
token:${{ secrets.PAT_TOKEN }}
29+
commit-message:Update Submodules
30+
signoff:false
31+
branch:bot/update-submodules
32+
base:main
33+
delete-branch:true
34+
title:'[BOT] Update Submodules'
35+
body:|
36+
### Description
37+
38+
Automated PR to update git submodules.
39+
labels:|
40+
A-submodules
41+
C-bot
42+
assignees:refcell
43+
draft:false

‎CONTRIBUTING.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#Contributing
2+
3+
Thank you for wanting to contribute! Before contributing to this repository,
4+
please read through this document and discuss the change you wish to make via issue.
5+
6+
##Dependencies
7+
8+
Before working with this repository locally, you'll need to install the following dependencies.
9+
10+
-[just][just] for our command-runner scripts.
11+
- The[Rust toolchain][rust]
12+
13+
**Optional**
14+
15+
-[mdbook](https://github.com/rust-lang/mdBook) to contribute to the[book][book]
16+
-[mdbook-template](https://github.com/sgoudham/mdbook-template)
17+
-[mdbook-mermaid](https://github.com/badboy/mdbook-mermaid)
18+
19+
##Pull Request Process
20+
21+
1. Before anything,[create an issue][create-an-issue] to discuss the change you're
22+
wanting to make, if it is significant or changes functionality. Feel free to skip this step for trivial changes.
23+
1. Once your change is implemented, ensure that all checks are passing before creating a PR. The full CI pipeline can
24+
be run locally via the`justfile`s in the repository.
25+
1. Make sure to update any documentation that has gone stale as a result of the change, in the`README` files, the[book][book],
26+
and in rustdoc comments.
27+
1. Once you have sign-off from a maintainer, you may merge your pull request yourself if you have permissions to do so.
28+
If not, the maintainer who approves your pull request will add it to the merge queue.
29+
30+
<!-- Links-->
31+
32+
[just]:https://github.com/casey/just
33+
[rust]:https://rustup.rs/
34+
35+
[book]:https://op-rs.github.io/kona
36+
37+
[create-an-issue]:https://github.com/op-rs/kona/issues/new

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp