candle_auction 0.1.0

CosmWasm implementing candle auction
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/make -f

all: fmt check schema test

fmt:
	cargo fmt --all -- --check
	cargo clippy -- -D warnings

check:
	cargo check --tests

test:
	cargo test

schema:
	cargo run --package candle_auction --example gen
	
.PHONY: fmt check schema test