37 releases (10 breaking)
0.11.1 | Dec 28, 2021 |
---|---|
0.10.3 | Nov 16, 2021 |
0.8.0-rc1 | Jul 29, 2021 |
0.6.0-alpha1 | Mar 12, 2021 |
0.1.0 | Jul 7, 2020 |
#2 in #escrow
332 downloads per month
72KB
1.5K
SLoC
CW20 Escrow
This is an escrow meta-contract that allows multiple users to create independent escrows. Each escrow has a sender, recipient, and arbiter. It also has a unique id (for future calls to reference it) and an optional timeout.
The basic function is the sender creates an escrow with funds. The arbiter may at any time decide to release the funds to either the intended recipient or the original sender (but no one else), and if it passes with optional timeout, anyone can refund the locked tokens to the original sender.
We also add a function called "top_up", which allows anyone to add more funds to the contract at any time.
Token types
This contract is meant not just to be functional, but also to work as a simple
example of an CW20 "Receiver". And demonstrate how the same calls can be fed
native tokens (via typical ExecuteMsg
route), or cw20 tokens (via Receiver
interface).
Both create
and top_up
can be called directly (with a payload of native tokens),
or from a cw20 contract using the Receiver Interface.
This means we can load the escrow with any number of native or cw20 tokens (or a mix),
allow of which get released when the arbiter decides.
Running this contract
You will need Rust 1.44.1+ with wasm32-unknown-unknown
target installed.
You can run unit tests on this via:
cargo test
Once you are happy with the content, you can compile it to wasm via:
RUSTFLAGS='-C link-arg=-s' cargo wasm
cp ../../target/wasm32-unknown-unknown/release/cw20_escrow.wasm .
ls -l cw20_escrow.wasm
sha256sum cw20_escrow.wasm
Or for a production-ready (optimized) build, run a build command in the the repository root: https://github.com/CosmWasm/cw-plus#compiling.
Dependencies
~4–6MB
~123K SLoC