Skip to content

Commit

Permalink
Update to use soroban-cli v0.7.1 (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbellamy authored Apr 5, 2023
1 parent 279fa9d commit e7c81a3
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: stellar/actions/rust-cache@main
- run: rustup update
- run: rustup target add wasm32-unknown-unknown
- run: cargo install --target-dir ~/.cargo/target --locked --version 0.6.0 soroban-cli
- run: cargo install --target-dir ~/.cargo/target --locked --version 0.7.1 soroban-cli
- name: Use Node.js 17.x
uses: actions/setup-node@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ENV PATH="$PATH:/root/.cargo/bin"
RUN rustup target add wasm32-unknown-unknown

RUN apt install -y build-essential
RUN cargo install --locked --version 0.6.0 soroban-cli
RUN cargo install --locked --version 0.7.1 soroban-cli
# WORKDIR /
RUN mkdir /workspace
WORKDIR /workspace
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ build-optimized: fmt
done

build-docker:
docker build . --tag soroban-preview:7
docker build . --tag soroban-preview:8

check: fmt
cargo clippy --all-targets
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ___

### Dependencies

1. `soroban-cli v0.6.0`. See https://soroban.stellar.org/docs/getting-started/setup#install-the-soroban-cli
1. `soroban-cli v0.7.1`. See https://soroban.stellar.org/docs/getting-started/setup#install-the-soroban-cli
2. `docker` (both Standalone and Futurenet backends require it).
3. `Node.js v17`
4. `Freighter wallet v2.9.1`. Download it from https://github.com/stellar/freighter/releases/tag/2.9.1 and Enable "Experimental Mode" in the settings (gear icon).
Expand Down
2 changes: 1 addition & 1 deletion docker/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

# Build image and tag it with image name and version
docker build . \
--tag soroban-preview:7 \
--tag soroban-preview:8 \
--force-rm \
--rm
5 changes: 2 additions & 3 deletions quickstart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,14 @@ docker run -dti \
-p 8001:8000 \
--ipc=host \
--network soroban-network \
soroban-preview:7
soroban-preview:8

# Run the stellar quickstart image
docker run --rm -ti \
--platform linux/amd64 \
--name stellar \
--network soroban-network \
-p 8000:8000 \
stellar/quickstart:soroban-dev@sha256:3d14a36df8e7d3da899369f00231125d81745ab457076082d22eabc35c6de78e \
stellar/quickstart:soroban-dev@sha256:a057ec6f06c6702c005693f8265ed1261e901b153a754e97cf18b0962257e872 \
$ARGS \
--enable-soroban-rpc \
--protocol-version 20 \
Expand Down

0 comments on commit e7c81a3

Please sign in to comment.