Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,40 @@
# SimplicityHL Standard Library

This repository contains the standard library for [SimplicityHL](https://github.com/BlockstreamResearch/SimplicityHL).

## Dev Info
### Compilation

To compile the project, execute the following command:

```bash
cargo build
```

To compile the contracts, execute the following command:

```bash
simplex build
```

### Test

To run the tests, execute the following command:

```bash
simplex test -v
```

### Linting

To format the rust files, execute the following command:

```bash
cargo fmt
```

To check the project for common mistakes, execute the following command:

```bash
cargo clippy --workspace --all-targets --all-features -- -D warnings
```
Loading