rusk-vm 0.9.0

Rusk VM is the virtual machine running Dusk Network's Smart contracts
Documentation
![Dusk CI](https://github.com/dusk-network/rusk-vm/actions/workflows/dusk_ci.yml/badge.svg)
[![codecov](https://codecov.io/gh/dusk-network/rusk-vm/branch/master/graph/badge.svg?token=FdcdAfyk0C)](https://codecov.io/gh/dusk-network/rusk-vm)

# Rust WASM Virtual Machine

## Usage

To compile and test the contracts, run

```bash
$ make test
```

## Contract deployment and Calls
Check the `tests` for actual usage examples of the contract deployment and call interfaces.

## ABI

The [dusk-abi](https://github.com/dusk-network/dusk-abi) crate is responsible for contract communication with the VM. As well as implementing panic handlers and the boilerplate neccesary to run a contract in a no_std environment.

### Introduction

For more info have a look at the [wiki](https://github.com/dusk-network/rusk-vm/wiki/Introducing)