This monorepository contains the source code for the core smart contracts implementing Glow Protocol on the Terra blockchain.
You can find information about the architecture, usage, and function of the smart contracts on the official Glow documentation site.
Glow depends on Anchor Protocol and Terraswap and uses its implementation of the CW20 token specification.
Contract | Reference | Description |
---|---|---|
lotto |
doc | Glow Lotto, a prize-linked savings accounts built on top of Anchor money-market |
community |
doc | Manages the Glow Ecosystem Fund (GEF) |
gov |
doc | Allows Glow contracts to be controlled by decentralized governance and distributes protocol revenues to GLOW stakers |
staking |
doc | Distributes GLOW rewards to to LP stakers |
distibutor |
doc | Distributes GLOW rewards to users of Glow protocol based on a dynamic emission rate algorithm |
airdrop |
doc | Distributes GLOW to selected addresses at the token genesis event |
vesting |
doc | Distributes GLOW over time to founding team, investors and contributors |
- Rust v1.52.0+
wasm32-unknown-unknown
target- Docker
-
Install
rustup
via https://rustup.rs/ -
Run the following:
rustup default stable
rustup target add wasm32-unknown-unknown
- Make sure Docker is installed
Each contract contains Rust unit and integration tests embedded within the contract source directories. You can run:
cargo test
cargo unit-test
cargo integration-test
After making sure tests pass, you can compile each contract with the following:
RUSTFLAGS='-C link-arg=-s' cargo wasm
cp ../../target/wasm32-unknown-unknown/release/cw1_subkeys.wasm .
ls -l cw1_subkeys.wasm
sha256sum cw1_subkeys.wasm
For production builds, run the following:
docker run --rm -v "$(pwd)":/code \
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/target \
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
cosmwasm/workspace-optimizer:0.11.5
This performs several optimizations which can significantly reduce the final size of the contract binaries, which will be available inside the artifacts/
directory.
Copyright 2021 Glow Protocol Ltd.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.