This repository contains the source code for the core smart contracts of Mars Protocol. Smart contracts are meant to be compiled to .wasm
files and uploaded to the Terra blockchain.
Follow these instructions to verify that the smart contracts that exist on chain correspond to a particular version of the contract's source code:
-
Find the code ID of the contract you wish to verify.
This can be found on the smart contract's page on Terra Finder. For example, the code ID of the MARS token contract terra1a7zxk56c72elupp7p44hn4k94fsvavnhylhr6h is
610
. -
Get the SHA256 checksum of the code ID's wasm binary:
- One way to do this is to get the checksum directly from the blockchain:
CODE_ID=610 curl "https://fcd.terra.dev/terra/wasm/v1beta1/codes/${CODE_ID}" \ | jq ".code_info.code_hash" \ | tr -d \" \ | base64 -d \ | hexdump -v -e '/1 "%02x"'
- Alternatively, download the wasm byte code relating to the code ID from the blockchain and calculate its SHA256 checksum:
CODE_ID=610 curl "https://fcd.terra.dev/terra/wasm/v1beta1/codes/${CODE_ID}/byte_code" \ | jq ".byte_code" \ | tr -d \" \ | base64 -d \ | shasum -a 256
For example, the checksum of code ID
610
(the MARS token contract) is1cca9c6dbfcb876212ee21250b1352df6e0041a5a13b7c1bc562f0f001455977
. -
Get the SHA256 checksum of a smart contract's wasm binary built from source code. To do this, first clone this repo, checkout a particular release, compile the smart contracts using the same version of rust-optimizer listed in the releases, and verify the checksum written to
artifacts/checksums.txt
. -
Finally, verify that the two checksums are identical.
./scripts/build_artifacts.sh
Compiles and optimizes all contracts, storing them in /artifacts
directory along with checksum.txt
which contains sha256 hashes of each of the .wasm
files (The script just uses CosmWasm's rust-optimizer).
./scripts/build_schema.sh
Is equivalent of running cargo schema
in each of the smart contracts in /contracts
directory, which creates JSON schema files for relevant contract calls, quieries and query responses (See: cosmwams-schema.
rustfmt
is used to format any Rust source code:
cargo fmt
clippy
is used as a linting tool:
cargo +nightly clippy --tests --all-features -- -D warnings
Node.js scripts are used for deploying and integration testing. These scripts must be run from the scripts
directory.
Setup:
cd scripts
npm install
TypeScript scripts must be executed with ts-node
using:
node --loader ts-node/esm <script>.ts
# build the smart contracts
./scripts/build_artifacts.sh
cd scripts
npm install
# set the deploying wallet
echo "TEST_MAIN=<MNEMONIC_OF_YOUR_DEPLOYING_WALLET>" >> .env
# set the network, defaults to LocalTerra if unset
echo "NETWORK=testnet" >> .env
# ensure the deploy_config.ts has a cw20_code_id specified for above network
node --loader ts-node/esm deploy.ts
# inside a package to run specific package tests
cargo unit-test
# in the root directory to run all tests
cargo test
Integration tests require LocalTerra to be running:
git clone https://github.com/terra-money/LocalTerra.git
cd LocalTerra
docker compose up
Adjust the timeout_*
config items in LocalTerra/config/config.toml
to 250ms
to make the test run faster:
sed -E -I .bak '/timeout_(propose|prevote|precommit|commit)/s/[0-9]+m?s/250ms/' config/config.toml
Required environment variables (can be set in scripts/.env
):
CW_PLUS_ARTIFACTS_PATH # path to cw-plus artifacts (example cw20-base.wasm)
ASTROPORT_ARTIFACTS_PATH # path to astroport artifacts
MARS_MOCKS_ARTIFACTS_PATH # path to mars-mocks artifacts
cd scripts
node --loader ts-node/esm tests/<test>.ts
- Get LocalTerra repo and set
LOCAL_TERRA_REPO_PATH
env variable to its path. - Run
run_tests.sh
from the scripts directory:
cd scripts
./run_tests.sh
- Create a .env file in the top level of the scripts directory if doesn't already exist
- Add the env variable NETWORK=[network_to_generate_from_e.g._NETWORK=testnet]
- Add the env variable REDBANK_ADDRESS=[your_deployed_red_bank_contract_address]
- Run
node --loader ts-node/esm whitelist.ts
- Check the whitelists folder for [NETWORK].json output
Contents of this repository are open source under GNU General Public License v3 or later.