> For the complete documentation index, see [llms.txt](https://docs.certhis.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.certhis.io/certhis-wallet/introduction.md).

# Introduction

### **Installation:**

To install Certhis Wallet in your project, open your terminal and run the following command:

```shell
$ npm i @certhis/certhis-wallet
```

### **Initialization:**

Before using Certhis Wallet, you need to initialize it by importing the necessary libraries and calling the `init` function. Here's an example of how to do it:

```javascript
const CerthisWallet = require("@certhis/certhis-wallet");
const certhis_wallet = CerthisWallet.init();
const Web3 = certhis_wallet.getWeb3();
```
