README.md 5.42 KiB
Newer Older
Michael Müller's avatar
Michael Müller committed
<div align="center">
    <img src="./.images/cargo-contract.svg" alt="cargo-contract" height="170" />
Michael Müller's avatar
Michael Müller committed
[![CI Status][a1]][a2]
[![Latest Release][d1]][d2]
[a1]: https://gitlab.parity.io/parity/mirrors/cargo-contract/badges/master/pipeline.svg
[a2]: https://gitlab.parity.io/parity/mirrors/cargo-contract/pipelines
[b2]: https://substrate.stackexchange.com/questions/tagged/ink?tab=Votes
Michael Müller's avatar
Michael Müller committed
[d1]: https://img.shields.io/crates/v/cargo-contract.svg
[d2]: https://crates.io/crates/cargo-contract
Michael Müller's avatar
Michael Müller committed
<p align="center">

> <img src="./.images/ink-squid.svg" alt="squink, the ink! mascot" style="vertical-align: middle" align="left" height="60" />`cargo-contract` is a CLI tool which helps you develop smart contracts in Parity's <a href="https://github.com/paritytech/ink">ink!</a>.<br/>ink! is a Rust [eDSL](https://wiki.haskell.org/Embedded_domain_specific_language) which allows you to write smart contracts for blockchains built on the [Substrate](https://github.com/paritytech/substrate) framework.
</p>

<br/>
[Guided Tutorial for Beginners](https://docs.substrate.io/tutorials/v3/ink-workshop/pt1/)&nbsp;&nbsp;&nbsp;&nbsp; 
Michael Müller's avatar
Michael Müller committed
[ink! Documentation Portal](https://paritytech.github.io/ink-docs)
Michael Müller's avatar
Michael Müller committed
<br/>
</div>
Michael Müller's avatar
Michael Müller committed
More relevant links:
* Find answers to your questions by joining our [Stack Exchange][b2] community
Michael Müller's avatar
Michael Müller committed
* [`ink!`](https://github.com/paritytech/ink) ‒ The main ink! repository with smart contract examples
* [Contracts UI](https://paritytech.github.io/contracts-ui/) ‒ Frontend for contract deployment and interaction
* [Substrate Contracts Node](https://github.com/paritytech/substrate-contracts-node) ‒ Simple Substrate blockchain which includes smart contract functionality
Michael Müller's avatar
Michael Müller committed


## Installation
Michael Müller's avatar
Michael Müller committed
* Step 1: `rustup component add rust-src`.

* Step 2: Install `binaryen` in a version >= 99:

  * [Debian/Ubuntu](https://tracker.debian.org/pkg/binaryen): `apt-get install binaryen`
  * [Homebrew](https://formulae.brew.sh/formula/binaryen): `brew install binaryen`
  * [Arch Linux](https://archlinux.org/packages/community/x86_64/binaryen/): `pacman -S binaryen`
  * Windows: [binary releases are available](https://github.com/WebAssembly/binaryen/releases)
Michael Müller's avatar
Michael Müller committed
  There's only an old version in your distributions package manager? Just use a 
  [binary release](https://github.com/WebAssembly/binaryen/releases).
Chevdor's avatar
Chevdor committed
* Step 3: Install `dylint`
  * (MacOS) `brew install openssl`
  * `cargo install cargo-dylint dylint-link`.
Chevdor's avatar
Chevdor committed
* Step 4: `cargo install --force --locked cargo-contract`.
You can always update the `cargo-contract` binary to the latest version by running the Step 4.
### Installation using Docker Image
If you prefer to use Docker instead we have a Docker image
[available on the Docker Hub](https://hub.docker.com/r/paritytech/contracts-ci-linux):

```bash
# Pull the latest stable image.
docker pull paritytech/contracts-ci-linux:production

# Create a new contract in your current directory.
docker run --rm -it -v $(pwd):/sources paritytech/contracts-ci-linux:production \
  cargo +nightly contract new --target-dir /sources my_contract

# Build the contract. This will create the contract file under
# `my_contract/target/ink/my_contract.contract`.
docker run --rm -it -v $(pwd):/sources paritytech/contracts-ci-linux:production \
  cargo +nightly contract build --manifest-path=/sources/my_contract/Cargo.toml
```

If you want to reproduce other steps of CI process you can use the following
[guide](https://github.com/paritytech/scripts#reproduce-ci-locally).
Michael Müller's avatar
Michael Müller committed
## Usage
Michael Müller's avatar
Michael Müller committed
You can always use `cargo contract help` to print information on available
commands and their usage.
Michael Müller's avatar
Michael Müller committed
For each command there is also a `--help` flag with info on additional parameters,
e.g. `cargo contract new --help`.
Michael Müller's avatar
Michael Müller committed
##### `cargo contract new my_contract`
Michael Müller's avatar
Michael Müller committed
Creates an initial smart contract with some scaffolding code into a new
folder `my_contract` .
Michael Müller's avatar
Michael Müller committed
The contract contains the source code for the [`Flipper`](https://github.com/paritytech/ink/blob/master/examples/flipper/lib.rs) 
contract, which is about the simplest "smart" contract you can build ‒ a `bool` which gets flipped
from `true` to `false` through the `flip()` function.
Michael Müller's avatar
Michael Müller committed
##### `cargo +nightly contract build`
Michael Müller's avatar
Michael Müller committed
Compiles the contract into optimized WebAssembly bytecode, generates metadata for it,
and bundles both together in a `<name>.contract` file, which you can use for
deploying the contract on-chain.
Michael Müller's avatar
Michael Müller committed
`cargo contract build` must be run using the `nightly` toolchain. If you have
[`rustup`](https://github.com/rust-lang/rustup) installed, the simplest way to
do so is `cargo +nightly contract build`.
Michael Müller's avatar
Michael Müller committed
To avoid having to always add `+nightly` you can also set `nightly` as the default
toolchain of a directory by executing `rustup override set nightly` in it.
Michael Müller's avatar
Michael Müller committed
##### `cargo contract check`
Michael Müller's avatar
Michael Müller committed
Checks that the code builds as WebAssembly. This command does not output any `<name>.contract`
artifact to the `target/` directory.
##### `cargo contract test`

Runs test suites defined for a smart contract off-chain.
##### `cargo contract upload`

Upload a contract to a `pallet-contracts` enabled chain. See [extrinsics](docs/extrinsics.md).

##### `cargo contract instantiate`

Create an instance of a contract on chain. See [extrinsics](docs/extrinsics.md).

##### `cargo contract call`

Invoke a message on an existing contract on chain. See [extrinsics](docs/extrinsics.md).

## License

Michael Müller's avatar
Michael Müller committed
The entire code within this repository is licensed under the [GPLv3](LICENSE).

Please [contact us](https://www.parity.io/contact/) if you have questions about
the licensing of our products.