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

Commit

Permalink
Bump version to v0.2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
FabijanC committed Aug 16, 2022
1 parent a756d6e commit a5c53a5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,15 +115,15 @@ docker pull shardlabs/starknet-devnet:<TAG>

Image tags correspond to Devnet versions as on PyPI and GitHub, with the `latest` tag used for the latest image. These images are built for linux/amd64. To use the arm64 versions, since `0.1.23` you can append `-arm` to the tag. E.g.:

- `shardlabs/starknet-devnet:0.2.9` - image for the amd64 architecture
- `shardlabs/starknet-devnet:0.2.9-arm` - image for the arm64 architecture
- `shardlabs/starknet-devnet:0.2.10` - image for the amd64 architecture
- `shardlabs/starknet-devnet:0.2.10-arm` - image for the arm64 architecture
- `shardlabs/starknet-devnet:latest-arm`

By appending the `-seed0` suffix, you can access images which [predeploy funded accounts](#predeployed-accounts) with `--seed 0`, thus always deploying the same set of accounts. E.g.:

- `shardlabs/starknet-devnet:0.2.9-seed0`
- `shardlabs/starknet-devnet:0.2.10-seed0`
- `shardlabs/starknet-devnet:latest-seed0`
- `shardlabs/starknet-devnet:0.2.9-arm-seed0`
- `shardlabs/starknet-devnet:0.2.10-arm-seed0`

The server inside the container listens to the port 5050, which you need to publish to a desired `<PORT>` on your host machine:

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "starknet_devnet"
version = "0.2.9"
version = "0.2.10"
description = "A local testnet for Starknet"
authors = ["FabijanC <[email protected]>"]
license = "ISC"
Expand Down
2 changes: 1 addition & 1 deletion starknet_devnet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from crypto_cpp_py.cpp_bindings import cpp_hash


__version__ = "0.2.9"
__version__ = "0.2.10"


def patched_pedersen_hash(left: int, right: int) -> int:
Expand Down

0 comments on commit a5c53a5

Please sign in to comment.