mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-11 14:09:15 +00:00
11 lines
362 B
Bash
Executable File
11 lines
362 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This must get from 2-3 different repos, fix the versions here:
|
|
|
|
COSMWASM_VERSION="v1.0.0-beta"
|
|
|
|
curl -sS -L -O "https://github.com/CosmWasm/cosmwasm/releases/download/${COSMWASM_VERSION}/hackatom.wasm"
|
|
curl -sS -L -O "https://github.com/CosmWasm/cosmwasm/releases/download/${COSMWASM_VERSION}/ibc_reflect.wasm"
|
|
|
|
sha256sum *.wasm >checksums.sha256
|