Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enclaves: light client check #69

Merged
merged 29 commits into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
1534dd5
Extract light client verification code
hu55a1n1 Jul 1, 2024
81a6df9
cargo fmt
hu55a1n1 Jul 1, 2024
0c6181d
Implement light client check for mtcs.run
hu55a1n1 Jul 1, 2024
fadf927
Remove #![warn(missing_docs)] from enclaves
hu55a1n1 Jul 2, 2024
92490bc
Rename value -> proof_value
hu55a1n1 Jul 2, 2024
754dcf1
Impl light client check for transfers enclave
hu55a1n1 Jul 2, 2024
f1c5495
Clippy fix
hu55a1n1 Jul 2, 2024
5ea2ff1
Update Cargo.lock
hu55a1n1 Jul 2, 2024
b2125ea
Fix workspace
hu55a1n1 Jul 2, 2024
b0125ea
Clippy fix
hu55a1n1 Jul 2, 2024
de58478
Pin rust to v1.78
hu55a1n1 Jul 2, 2024
4fa1bc9
Rename .cargo/config to config.toml
hu55a1n1 Jul 2, 2024
e75475c
Update CI to pick pinned toolchain
hu55a1n1 Jul 2, 2024
84df58c
Add rust-toolchain file
hu55a1n1 Jul 2, 2024
52392c8
Use old-style rust-toolchain
hu55a1n1 Jul 2, 2024
210d4f0
Fix Cargo.toml exclusion for transfers contract
hu55a1n1 Jul 2, 2024
499d49b
Merge branch 'main' into hu55a1n1/22-mtcs-enclave-light-client-check
hu55a1n1 Jul 8, 2024
ebd04bb
Merge remote-tracking branch 'origin/main' into hu55a1n1/22-mtcs-encl…
hu55a1n1 Jul 15, 2024
62dd959
Revert CI modifications
hu55a1n1 Jul 15, 2024
bfb139e
Update CosmWasm dev-deps
hu55a1n1 Jul 15, 2024
77323b8
Merge remote-tracking branch 'origin/main' into hu55a1n1/22-mtcs-encl…
hu55a1n1 Jul 23, 2024
f40d7ae
Update listen.sh to include query
hu55a1n1 Jul 23, 2024
2fb0197
Fix bug in request msg creation
hu55a1n1 Jul 23, 2024
5861640
Add delay to wait for block
hu55a1n1 Jul 23, 2024
b8fbb11
Undo remove newline from workflow .ymls
hu55a1n1 Jul 23, 2024
6c42c64
Replace sleep with `wasmd status` based delay
hu55a1n1 Jul 23, 2024
268f675
Fix listen.sh bug for wasmd commmand
Jul 24, 2024
b3df408
Remove redundant TODOs
hu55a1n1 Jul 24, 2024
5963400
Merge branch 'hu55a1n1/22-mtcs-enclave-light-client-check' of github.…
hu55a1n1 Jul 24, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cosmwasm-basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,4 @@ jobs:

- name: Schema Changes
# fails if any changes not committed
run: git diff --exit-code schema
run: git diff --exit-code schema
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,4 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: test
args: --no-default-features --no-fail-fast --no-run --workspace
args: --no-default-features --no-fail-fast --no-run --workspace
Loading
Loading