Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: canonical vm adjustments #544

Merged
merged 14 commits into from
Sep 30, 2022
Merged
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Have linguist ignore typescript compiler sources
tsc/* linguist-vendored
components/clarinet-cli/js/* linguist-vendored
components/clarinet-cli/dts/* linguist-vendored
components/clarinet-cli/tsc/* linguist-vendored

# Declare Clarity files that will always have LF line endings on checkout.
*.clar text eol=lf
Expand Down
4 changes: 0 additions & 4 deletions .gitmodules

This file was deleted.

119 changes: 40 additions & 79 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 1 addition & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ sudo apt install build-essential pkg-config libssl-dev
You can build Clarinet from source using Cargo with the following commands:

```bash
git clone https://github.com/hirosystems/clarinet.git --recursive
git clone https://github.com/hirosystems/clarinet.git
cd clarinet
cargo clarinet-install
```
Expand All @@ -83,13 +83,6 @@ By default, you will be in our development branch, `develop`, with code that has
git checkout main
```

If you have previously checked out the source, ensure you have the latest code (including submodules) before building using:

```
git pull
git submodule update --recursive
```

## Getting started with Clarinet

The following sections describe how to create a new project in Clarinet and populate it with smart contracts. Clarinet
Expand Down Expand Up @@ -487,8 +480,6 @@ name = "my-project"
[[project.requirements]]
contract_id = "SP2PABAF9FTAJYNFZH93XENAJ8FVY99RRM50D2JG9.nft-trait"

boot_contracts = ["pox", "costs-v2", "bns"]

[project.cache_location]
path = ".requirements"

Expand Down
Loading