Skip to content

Commit 39736da

Browse files
chore: update zkvyper and era test node
1 parent 5fd13c0 commit 39736da

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Diff for: .github/workflows/test.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ jobs:
2828
2929
echo "Installing zkvyper and era_test_node"
3030
# Install zkvyper and era_test_node from binary repositories
31-
curl --location https://raw.githubusercontent.com/matter-labs/zkvyper-bin/v1.5.6/linux-amd64/zkvyper-linux-amd64-musl-v1.5.6 \
31+
curl --location https://raw.githubusercontent.com/matter-labs/zkvyper-bin/v1.5.7/linux-amd64/zkvyper-linux-amd64-musl-v1.5.7 \
3232
--silent --output /usr/local/bin/zkvyper && \
3333
chmod +x /usr/local/bin/zkvyper && \
3434
zkvyper --version
35-
curl --location https://github.com/matter-labs/era-test-node/releases/download/v0.1.0-alpha.29/era_test_node-v0.1.0-alpha.29-x86_64-unknown-linux-gnu.tar.gz \
35+
curl --location https://github.com/matter-labs/era-test-node/releases/download/v0.1.0-alpha.30/era_test_node-v0.1.0-alpha.30-x86_64-unknown-linux-gnu.tar.gz \
3636
--silent --output era_test_node.tar.gz && \
3737
tar --extract --file=era_test_node.tar.gz && \
3838
mv era_test_node /usr/local/bin/era_test_node && \

Diff for: boa_zksync/util.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def stop_subprocess(proc: Popen[bytes]):
3939

4040

4141
def install_zkvyper_compiler(
42-
source="https://raw.githubusercontent.com/matter-labs/zkvyper-bin/v1.5.6/linux-amd64/zkvyper-linux-amd64-musl-v1.5.6", # noqa: E501
42+
source="https://raw.githubusercontent.com/matter-labs/zkvyper-bin/v1.5.7/linux-amd64/zkvyper-linux-amd64-musl-v1.5.7", # noqa: E501
4343
destination="/usr/local/bin/zkvyper",
4444
):
4545
"""
@@ -58,7 +58,7 @@ def install_zkvyper_compiler(
5858

5959

6060
def install_era_test_node(
61-
source="https://github.com/matter-labs/era-test-node/releases/download/v0.1.0-alpha.29/era_test_node-v0.1.0-alpha.29-x86_64-unknown-linux-gnu.tar.gz", # noqa: E501
61+
source="https://github.com/matter-labs/era-test-node/releases/download/v0.1.0-alpha.30/era_test_node-v0.1.0-alpha.30-x86_64-unknown-linux-gnu.tar.gz", # noqa: E501
6262
destination="/usr/local/bin/era_test_node",
6363
):
6464
"""

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "titanoboa-zksync"
3-
version = "0.2.6"
3+
version = "0.2.7"
44
description = "A Zksync plugin for the Titanoboa Vyper interpreter"
55
license = { file = "LICENSE" }
66
readme = "README.md"

0 commit comments

Comments
 (0)