-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BTC staking integration deployment after migration (#3)
Resolves #2 This PR fixes the BTC staking integration deployment after migrating to the babylonlabs org. To try out, do `make start-deployment-btc-staking-integration-bitcoind-demo`
- Loading branch information
1 parent
e98f754
commit f4138e8
Showing
15 changed files
with
62 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ This repository contains artifacts and instructions for setting up and running a | |
|
||
4. **Repository Setup**: | ||
```shell | ||
git clone [email protected]:babylonchain/babylon-deployment.git | ||
git clone [email protected]:babylonlabs-io/babylon-integration-deployment.git | ||
git submodule init && git submodule update | ||
``` | ||
|
||
|
Submodule babylon-private
updated
from caa909 to 74a24c
Submodule btc-staker-phase-3
updated
52 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,18 +20,18 @@ WORKDIR /work | |
|
||
ENV GO111MODULE on | ||
ENV RELAYER_TAG v2.5.2 | ||
ENV BABYLON_SDK_TAG v0.2.0-rc.1 | ||
ENV BABYLON_SDK_TAG v0.3.0-rc.0 | ||
|
||
# Install the relayer | ||
RUN git clone https://github.com/cosmos/relayer.git | ||
RUN cd relayer && git fetch origin && git checkout ${RELAYER_TAG} && make install && cd - | ||
|
||
# Install bcd | ||
RUN git clone https://github.com/babylonchain/babylon-sdk.git | ||
RUN git clone https://github.com/babylonlabs-io/babylon-sdk.git | ||
|
||
RUN mkdir -p /root/.ssh && ssh-keyscan github.com >> /root/.ssh/known_hosts | ||
RUN git config --global url."[email protected]:".insteadOf "https://github.com/" | ||
ENV GOPRIVATE=github.com/babylonchain/* | ||
ENV GOPRIVATE=github.com/babylonlabs-io/* | ||
|
||
RUN --mount=type=secret,id=sshKey,target=/root/.ssh/id_rsa cd babylon-sdk && git fetch origin && git checkout ${BABYLON_SDK_TAG} && make install && cd - | ||
|
||
|
@@ -44,7 +44,7 @@ RUN apt-get update && apt-get install -y bash curl jq wget | |
COPY --from=build-env /work/babylon-sdk/demo/go.mod /tmp | ||
RUN WASMVM_VERSION=$(grep github.com/CosmWasm/wasmvm /tmp/go.mod | cut -d' ' -f2) && \ | ||
wget https://github.com/CosmWasm/wasmvm/releases/download/$WASMVM_VERSION/libwasmvm.$(uname -m).so \ | ||
-O /lib/libwasmvm.$(uname -m).so && \ | ||
-O /lib/libwasmvm.$(uname -m).so && \ | ||
# verify checksum | ||
wget https://github.com/CosmWasm/wasmvm/releases/download/$WASMVM_VERSION/checksums.txt -O /tmp/checksums.txt && \ | ||
sha256sum /lib/libwasmvm.$(uname -m).so | grep $(cat /tmp/checksums.txt | grep libwasmvm.$(uname -m) | cut -d ' ' -f 1) | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.