Skip to content
Closed
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
23 changes: 13 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,22 +68,25 @@ A bug bounty is currently open for these contracts. See details [here][2].

- Create the build folder:

```bash
yarn build
```
```bash
cd scripts
yarn
yarn build
```

- Compile all contracts:

```bash
cargo make rust-optimizer
```
```bash
cargo make rust-optimizer
```

- Formatting:

```bash
yarn format
yarn lint
```
```bash
cd scripts
yarn format
yarn lint
```

This compiles and optimizes all contracts, storing them in `/artifacts` directory along with `checksum.txt` which contains sha256 hashes of each of the `.wasm` files (The script just uses CosmWasm's [rust-optimizer][9]).

Expand Down