Skip to content
This repository was archived by the owner on Aug 9, 2024. It is now read-only.

feat: add dummy circuits #95

Closed
wants to merge 32 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
8439136
dummy circuits
ratankaliani Jan 17, 2024
8fc93ea
add dummy circuits
ratankaliani Jan 17, 2024
65a924d
fix
ratankaliani Jan 17, 2024
91113d5
update succinct.json
ratankaliani Jan 17, 2024
119e901
dummy
ratankaliani Jan 17, 2024
8c4fa6f
add proof
ratankaliani Jan 17, 2024
a39f2b5
dummy vectorx
ratankaliani Jan 17, 2024
4cb91d7
add reinitialize
ratankaliani Jan 17, 2024
3268b3c
update README
ratankaliani Jan 17, 2024
987d4e3
wip: missing field data_root?
ratankaliani Jan 17, 2024
2a3f086
fixes, imports
ratankaliani Jan 17, 2024
b6b9222
move to dummy
ratankaliani Jan 17, 2024
1fdefb2
fix
ratankaliani Jan 17, 2024
6d6fec9
dummy vectorx
ratankaliani Jan 19, 2024
b90865d
chore: cargo update
ratankaliani Jan 19, 2024
bca4820
lint
ratankaliani Jan 19, 2024
7dba8a7
merge
ratankaliani Jan 19, 2024
06831e6
add updated vectorx scripts
ratankaliani Jan 20, 2024
df7b7ad
refactor: vectorx operator
ratankaliani Jan 20, 2024
c521695
is_dummy_operator
ratankaliani Jan 20, 2024
41257c3
add is_dummy_operator
ratankaliani Jan 20, 2024
0e4b534
use dummy
ratankaliani Jan 20, 2024
ac16881
clean
ratankaliani Jan 20, 2024
b25f1dd
clean
ratankaliani Jan 20, 2024
035c2ee
update rust toolchain
ratankaliani Jan 20, 2024
b4f77fb
update cargo clippy version
ratankaliani Jan 22, 2024
3d9fb9d
README, scripts
ratankaliani Jan 22, 2024
6366d40
script
ratankaliani Jan 22, 2024
77f03b7
change delay to 5 mins
ratankaliani Jan 22, 2024
66f88da
fix loop/delay
ratankaliani Jan 22, 2024
9b66b4e
read loop delay mins
ratankaliani Jan 23, 2024
897e20c
fix: NEXT_AUTHORITY_SET_EXISTS
ratankaliani Jan 23, 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: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ CONTRACT_ADDRESS=
CHAIN_ID=
HEADER_RANGE_FUNCTION_ID=
ROTATE_FUNCTION_ID=
# Mark `true` if you're using RustX proofs which are not real VectorX proofs.
IS_DUMMY_OPERATOR=

# Event Indexer
# For each Avail chain `chainName` to index, set the following environment variables:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ jobs:
~/.cargo/git/db/
target/
~/.rustup/
key: test-rust-nightly-2023-08-24-${{ hashFiles('**/Cargo.toml') }}
restore-keys: rust-nightly-2023-08-24-
key: test-rust-nightly-2024-01-16-${{ hashFiles('**/Cargo.toml') }}
restore-keys: rust-nightly-2024-01-16-

- name: Install nightly toolchain
id: rustc-toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2023-08-24
toolchain: nightly-2024-01-16
override: true

- name: Run cargo test
Expand Down Expand Up @@ -67,15 +67,15 @@ jobs:
~/.cargo/git/db/
target/
~/.rustup/
key: clippy-rust-nightly-2023-08-24-${{ hashFiles('**/Cargo.toml') }}
restore-keys: rust-nightly-2023-08-24-
key: clippy-rust-nightly-2024-01-16-${{ hashFiles('**/Cargo.toml') }}
restore-keys: rust-nightly-2024-01-16-

- name: Install nightly toolchain
id: rustc-toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2023-08-24
toolchain: nightly-2024-01-16
override: true
components: rustfmt, clippy

Expand Down
Loading
Loading