Skip to content

Commit

Permalink
change the download dir for cosmwasm contracts (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
yito88 authored Nov 14, 2024
1 parent c8d0036 commit 0d79ad5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,9 @@ namada:
RUN chmod +x /usr/local/bin/wasmd

# download cosmwasm contracts
RUN curl -LO https://github.com/public-awesome/cw-nfts/releases/download/v${cw721_version}/cw721_base.wasm
RUN curl -LO https://github.com/public-awesome/cw-ics721/releases/download/v${ics721_version}/ics721_base.wasm
RUN mkdir -p /cosmwasm_contracts
RUN curl -L -o /cosmwasm_contracts/cw721_base.wasm https://github.com/public-awesome/cw-nfts/releases/download/v${cw721_version}/cw721_base.wasm
RUN curl -L -o /cosmwasm_contracts/ics721_base.wasm https://github.com/public-awesome/cw-ics721/releases/download/v${ics721_version}/ics721_base.wasm

# download cometbft
RUN curl -o cometbft.tar.gz -LO https://github.com/cometbft/cometbft/releases/download/v${cometbft_version}/cometbft_${cometbft_version}_linux_amd64.tar.gz
Expand Down

0 comments on commit 0d79ad5

Please sign in to comment.