πDequanto dependency
Automatically
0xweb initManually
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@dequanto/*": "dequanto/src/*"
}
}
}Last updated
The generated classes will include Dequanto dependencies for the Blockchain communication. See the Dequanto section to read more about the library.
To automatically install required dependencies run the initialization command inside your project root
0xweb initYou can perform the same steps manually
Clone the dequanto π repository
git submodule add https://github.com/0xweb-org/dequanto
Add @dequanto alias to your tsconfig.json file
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@dequanto/*": "dequanto/src/*"
}
}
}Last updated