Setting Up The Venom Smart Contract Development Environment
The first thing to do before starting the smart contracts development
Let's install it
npm install -g locklift
locklift --version
> 2.1.10Initialize your first project
locklift init --path sample-project
> New Locklift project initialized in sample-project
> Installing required dependencies...
> ...
> LockLift initialized in setup-env happy hacking!├── locklift.config.js
├── tsconfig.json
├── package.json
├── package-lock.json
│
├── contracts
│ └── Sample.sol
├── scripts
│ └── 1-deploy-sample.js
└── giverSettings
│ └── index.ts
└── test
└── sample-test.jsConfiguration
Run The Local Node
Last updated