-
Notifications
You must be signed in to change notification settings - Fork 4
/
justfile
122 lines (107 loc) · 8.03 KB
/
justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
set dotenv-load
# Build riscv elf file using `~/.sp1/bin/cargo-prove`
build-programs:
cd programs/update-client && ~/.sp1/bin/cargo-prove prove build --elf-name update-client-riscv32im-succinct-zkvm-elf
@echo "ELF created at 'elf/update-client-riscv32im-succinct-zkvm-elf'"
cd programs/membership && ~/.sp1/bin/cargo-prove prove build --elf-name membership-riscv32im-succinct-zkvm-elf
@echo "ELF created at 'elf/membership-riscv32im-succinct-zkvm-elf'"
cd programs/uc-and-membership && ~/.sp1/bin/cargo-prove prove build --elf-name uc-and-membership-riscv32im-succinct-zkvm-elf
@echo "ELF created at 'elf/uc-and-membership-riscv32im-succinct-zkvm-elf'"
cd programs/misbehaviour && ~/.sp1/bin/cargo-prove prove build --elf-name misbehaviour-riscv32im-succinct-zkvm-elf
@echo "ELF created at 'elf/misbehaviour-riscv32im-succinct-zkvm-elf'"
# Build the operator executable using `cargo build` command
build-operator:
@echo "Building the operator executable..."
cargo build --bin operator --locked --release
@echo "Built the operator executable"
# Build the contracts using `forge build` command after cleaning up the cache and output directories
build-contracts:
@echo "Cleaning up the contracts cache and output directories..."
-rm -r contracts/cache contracts/out # `-` is used to ignore the error if the directories do not exist
@echo "Building the contracts..."
forge build
# Install the operator executable using `cargo install` command
install-operator:
@echo "Installing the operator executable..."
cargo install --path operator --locked --force
@echo "Installed the operator executable"
# Run the Solidity tests using `forge test` command
test-foundry testname=".\\*":
forge test -vvv --match-test ^{{testname}}\(.\*\)\$
# Run the Rust tests using `cargo test` command (excluding the sp1-ics07-tendermint-update-client crate)
test-cargo:
cargo test --workspace --exclude sp1-ics07-tendermint-update-client --exclude sp1-ics07-tendermint-membership --exclude sp1-ics07-tendermint-uc-and-membership --exclude sp1-ics07-tendermint-misbehaviour --locked --all-features
# Generate the `genesis.json` file using $TENDERMINT_RPC_URL in the `.env` file
genesis: build-programs
@echo "Generating the genesis file..."
RUST_LOG=info cargo run --bin operator --release -- genesis -o contracts/script/genesis.json
# Generate the fixture files for the Celestia Mocha testnet using the prover parameter.
# The prover parameter should be one of: ["mock", "network", "local"]
# This generates the fixtures for all programs in parallel using GNU parallel.
# If prover is set to network, this command requires the `SP1_PRIVATE_KEY` environment variable to be set.
fixtures: build-operator
@echo "Generating fixtures... This may take a while (up to 20 minutes)"
TENDERMINT_RPC_URL="${TENDERMINT_RPC_URL%/}" && \
CURRENT_HEIGHT=$(curl "$TENDERMINT_RPC_URL"/block | jq -r ".result.block.header.height") && \
TRUSTED_HEIGHT=$(($CURRENT_HEIGHT-100)) && \
TARGET_HEIGHT=$(($CURRENT_HEIGHT-10)) && \
echo "For celestia fixtures, trusted block: $TRUSTED_HEIGHT, target block: $TARGET_HEIGHT, from $TENDERMINT_RPC_URL" && \
parallel --progress --shebang --ungroup -j 6 ::: \
"RUST_LOG=info SP1_PROVER=network ./target/release/operator fixtures update-client --trusted-block $TRUSTED_HEIGHT --target-block $TARGET_HEIGHT -o 'contracts/fixtures/update_client_fixture-plonk.json'" \
"sleep 20 && RUST_LOG=info SP1_PROVER=network ./target/release/operator fixtures update-client --trusted-block $TRUSTED_HEIGHT --target-block $TARGET_HEIGHT -p groth16 -o 'contracts/fixtures/update_client_fixture-groth16.json'" \
"sleep 40 && RUST_LOG=info SP1_PROVER=network ./target/release/operator fixtures update-client-and-membership --key-paths clients/07-tendermint-0/clientState,clients/07-tendermint-001/clientState --trusted-block $TRUSTED_HEIGHT --target-block $TARGET_HEIGHT -o 'contracts/fixtures/uc_and_memberships_fixture-plonk.json'" \
"sleep 60 && RUST_LOG=info SP1_PROVER=network ./target/release/operator fixtures update-client-and-membership --key-paths clients/07-tendermint-0/clientState,clients/07-tendermint-001/clientState --trusted-block $TRUSTED_HEIGHT --target-block $TARGET_HEIGHT -p groth16 -o 'contracts/fixtures/uc_and_memberships_fixture-groth16.json'" \
"sleep 80 && RUST_LOG=info SP1_PROVER=network ./target/release/operator fixtures membership --key-paths clients/07-tendermint-0/clientState,clients/07-tendermint-001/clientState --trusted-block $TRUSTED_HEIGHT -o 'contracts/fixtures/memberships_fixture-plonk.json'" \
"sleep 100 && RUST_LOG=info SP1_PROVER=network ./target/release/operator fixtures membership --key-paths clients/07-tendermint-0/clientState,clients/07-tendermint-001/clientState --trusted-block $TRUSTED_HEIGHT -p groth16 -o 'contracts/fixtures/memberships_fixture-groth16.json'"
cd e2e/interchaintestv8 && RUST_LOG=info SP1_PROVER=network GENERATE_FIXTURES=true go test -v -run '^TestWithSP1ICS07TendermintTestSuite/TestDoubleSignMisbehaviour_Plonk$' -timeout 40m
cd e2e/interchaintestv8 && RUST_LOG=info SP1_PROVER=network GENERATE_FIXTURES=true go test -v -run '^TestWithSP1ICS07TendermintTestSuite/TestBreakingTimeMonotonicityMisbehaviour_Groth16' -timeout 40m
cd e2e/interchaintestv8 && RUST_LOG=info SP1_PROVER=network GENERATE_FIXTURES=true go test -v -run '^TestWithSP1ICS07TendermintTestSuite/Test100Membership_Groth16' -timeout 40m
cd e2e/interchaintestv8 && RUST_LOG=info SP1_PROVER=network GENERATE_FIXTURES=true go test -v -run '^TestWithSP1ICS07TendermintTestSuite/Test25Membership_Plonk' -timeout 40m
@echo "Fixtures generated at 'contracts/fixtures'"
# Generate the `SP1ICS07Tendermint.json` file containing the ABI of the SP1ICS07Tendermint contract
# Requires `jq` to be installed on the system
# Requires `abigen` to be installed on the system to generate the go bindings for e2e tests
generate-abi: clean
cd contracts && forge install && forge build
jq '.abi' contracts/out/SP1ICS07Tendermint.sol/SP1ICS07Tendermint.json > contracts/abi/SP1ICS07Tendermint.json
@echo "ABI file created at 'contracts/abi/SP1ICS07Tendermint.json'"
@echo "Generating go bindings for the end-to-end tests..."
abigen --abi contracts/abi/SP1ICS07Tendermint.json --pkg sp1ics07tendermint --type Contract --out e2e/interchaintestv8/types/sp1ics07tendermint/contract.go
@echo "Done."
# Deploy the SP1ICS07Tendermint contract to the Eth Sepolia testnet if the `.env` file is present
deploy-contracts: genesis
@echo "Deploying the SP1ICS07Tendermint contract"
cd contracts && forge install
cd contracts && forge script script/SP1ICS07Tendermint.s.sol --rpc-url $RPC_URL --private-key $PRIVATE_KEY --broadcast
# Run the operator using the `cargo run --bin operator` command.
# This command requires the `.env` file to be present in the root directory.
operator:
RUST_LOG=info cargo run --bin operator --release -- start
# Run the e2e tests
test-e2e testname:
@echo "Cleaning up the contracts cache and output directories..."
-rm -r contracts/cache contracts/out # `-` is used to ignore the error if the directories do not exist
@echo "Running {{testname}} test..."
cd e2e/interchaintestv8 && go test -v -run "^TestWithSP1ICS07TendermintTestSuite/{{testname}}$" -timeout 40m
# Lint the Rust, Solidity, and Go code using `cargo fmt`, `forge fmt`, `solhint` and `golanci-lint` commands
lint:
@echo "Linting the Rust code..."
cargo fmt --all -- --check
cargo clippy
@echo "Linting the Solidity code..."
forge fmt --check && bun solhint -w 0 -c .solhint.json 'contracts/**/*.sol'
@echo "Linting the Go code..."
cd e2e/interchaintestv8 && golangci-lint run
# Fix the Rust, Solidity, and Go code using `cargo fmt`, `forge fmt`, 'clippy' and `golanci-lint` commands
lint-fix:
@echo "Fixing the Rust code..."
cargo fmt --all
cargo clippy --fix --allow-dirty --allow-staged
@echo "Fixing the Solidity code..."
forge fmt && bun solhint -w 0 -c .solhint.json 'contracts/**/*.sol'
@echo "Fixing the Go code..."
cd e2e/interchaintestv8 && golangci-lint run --fix
clean:
@echo "Cleaning up cache and build artifacts..."
cargo clean
- cd contracts && rm -rf cache out