UNPKG

attest.so

Version:

<div align="center">

20 lines (15 loc) 262 B
# Makefile for building the contract .PHONY: build build: cargo build --target wasm32-unknown-unknown --release .PHONY: test test: cargo test .PHONY: fmt fmt: cargo fmt .PHONY: lint lint: cargo clippy -- -D warnings .PHONY: all all: fmt lint test build