Skip to content

Commit

Permalink
feat: add initial ethereum light client (#150)
Browse files Browse the repository at this point in the history
Co-authored-by: srdtrk <[email protected]>
Co-authored-by: srdtrk <[email protected]>
  • Loading branch information
3 people authored Dec 11, 2024
1 parent 66bed7c commit a30f974
Show file tree
Hide file tree
Showing 90 changed files with 7,878 additions and 109 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,33 @@ jobs:
with:
command: build
args: --bin operator --release --locked

build-08-wasm-eth:
name: build-08-wasm-eth
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: "Check out the repo"
uses: "actions/checkout@v4"
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt, clippy
target: wasm32-unknown-unknown
- name: Install cargo-run-script and cosmwasm-check
uses: actions-rs/cargo@v1
with:
command: install
args: cargo-run-script cosmwasm-check
- name: Install just
uses: extractions/setup-just@v2
- name: Build optimized wasm binary
run: just build-optimized-wasm
# checks that the wasm binary is a proper cosmwasm smart contract
# it checks for things like memories, exports, imports, available capabilities, and non-determinism
- name: Check cosmwasm file
run: cosmwasm-check artifacts/cw_ics08_wasm_eth.wasm


1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ broadcast/*/31337/
# Rust
target
elf
artifacts

# Config files and test artifacts
programs/relayer/config.json
Expand Down
Loading

0 comments on commit a30f974

Please sign in to comment.