Skip to content
This repository was archived by the owner on Jan 8, 2026. It is now read-only.

Commit 7ac27a3

Browse files
committed
fix: use newest quickstart
1 parent c77fdf3 commit 7ac27a3

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.cargo/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# paths = ["/path/to/override"] # path dependency overrides
22

33
[alias] # command aliases
4-
install_soroban = "install --git https://github.com/AhaLabs/soroban-tools --rev dc2a543993a293155516df52e79cc120cbd3dfe0 --root ./target soroban-cli --debug"
4+
install_soroban = "install --git https://github.com/AhaLabs/soroban-tools --rev c7fb7e08ba8efa9828d9df863d991558f269e35b --root ./target soroban-cli --debug"
55
b = "build --target wasm32-unknown-unknown --release"
66
# c = "check"
77
# t = "test"

quickstart.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ esac
1919

2020
# this is set to the quickstart `soroban-dev` image annointed as the release
2121
# for a given Soroban Release, it is captured on Soroban Releases - https://soroban.stellar.org/docs/reference/releases
22-
QUICKSTART_SOROBAN_DOCKER_SHA=stellar/quickstart:testing@sha256:1c98f895f8b69cc843eeaa5230d67044dbeb390a5529d51dd7762d8ff685c3f8
22+
QUICKSTART_SOROBAN_DOCKER_SHA=stellar/quickstart:soroban-dev
2323

2424
shift
2525

@@ -54,6 +54,7 @@ docker run -dti \
5454

5555
docker run --rm -ti \
5656
--name stellar \
57+
--pull always \
5758
--network soroban-network \
5859
-p 8000:8000 \
5960
"$QUICKSTART_SOROBAN_DOCKER_SHA" \

shared/contracts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ export const crowdfund = new Crowdfund.Contract({
1414
...Crowdfund.networks[network as keyof typeof Crowdfund.networks],
1515
})
1616

17-
export const server = new Server(rpcUrl)
17+
export const server = new Server(rpcUrl, { allowHttp: rpcUrl.startsWith('http:') })

0 commit comments

Comments
 (0)