> ## Documentation Index
> Fetch the complete documentation index at: https://etherspot.fyi/llms.txt
> Use this file to discover all available pages before exploring further.

# Run SessionKeyValidator SDK examples

To run these examples, you can clone the [Etherspot Modular SDK repo](https://github.com/etherspot/etherspot-modular-sdk/).

Then cd into the directory and run:

```
npm i && npm run init
```

Then create a .env file in the etherspot-modular-sdk directory.

Within it we want to put something like this:

```
WALLET_PRIVATE_KEY=''
WALLET_ADDRESS=''
API_KEY=''
```

<Info>
  Please ensure to prefix your private key with "0x" so the SDK is instantiated correctly.
</Info>

Then, you can try running the get address example like this:

```
npx ts-node 13-list-modules.ts
```

And it should output something like this to show the Etherspot SDK has been instantiated using the private key you used.

```
> ./node_modules/.bin/ts-node ./examples/13-list-modules.ts
```
