Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Commit

Permalink
chore: upd zksolc to v1.5.6 (#231)
Browse files Browse the repository at this point in the history
* chore: upd zksolc to v1.5.6

* fix: add proper solc version to DockerfileRocket

* fix: add v1.5.5
  • Loading branch information
varex83 authored Oct 16, 2024
1 parent 48415b2 commit 5db2e6b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 64 deletions.
8 changes: 5 additions & 3 deletions DockerfileRocket
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@ RUN apt-get install -y curl \
software-properties-common \
wget \
npm
RUN add-apt-repository ppa:ethereum/ethereum
RUN apt-get update
RUN apt-get install -y ethereum
RUN wget https://github.com/ethereum/solidity/releases/download/v0.8.24/solc-static-linux -O /usr/local/bin/solc
RUN chmod +x /usr/local/bin/solc

RUN solc --version

# Installing grafana agent
RUN mkdir -p /etc/apt/keyrings/
RUN wget -q -O - https://apt.grafana.com/gpg.key | gpg --dearmor | tee /etc/apt/keyrings/grafana.gpg > /dev/null
Expand Down
30 changes: 0 additions & 30 deletions api/Dockerfile

This file was deleted.

30 changes: 0 additions & 30 deletions api/analyse.py

This file was deleted.

2 changes: 1 addition & 1 deletion api/src/utils/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub const CARGO_MANIFEST_DIR: &str = env!("CARGO_MANIFEST_DIR");

pub const DURATION_TO_PURGE: u64 = 60 * 5; // 5 minutes

pub const ZKSOLC_VERSIONS: [&str; 3] = ["1.5.6", "1.4.1", "1.4.0"];
pub const ZKSOLC_VERSIONS: [&str; 4] = ["1.5.6", "1.5.5", "1.4.1", "1.4.0"];

pub const DEFAULT_SOLIDITY_VERSION: &str = "0.8.24";

Expand Down

0 comments on commit 5db2e6b

Please sign in to comment.