> For the complete documentation index, see [llms.txt](https://docs.0xweb.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.0xweb.org/package-manager/dequanto-dependency.md).

# Dequanto dependency

The generated classes will include `Dequanto` dependencies for the Blockchain communication. See the `Dequanto` section to read more about the library.

#### Automatically

To automatically install required dependencies run the initialization command inside your project root

```
0xweb init
```

#### Manually

You can perform the same steps manually

* Clone the [dequanto](https://github.com/0xweb-org/dequanto) [🔗](https://emojipedia.org/link/) repository

  `git submodule add` [`https://github.com/0xweb-org/dequanto`](https://github.com/0xweb-org/dequanto)&#x20;
* Add `@dequanto` alias to your `tsconfig.json` file

```json
{
  "compilerOptions": {
    "baseUrl": "./",
    "paths": {
      "@dequanto/*": "dequanto/src/*"
    }
  }
}
```
