# Create project

#### Syntax

#### &#x20;                                               eueno.createProject(opts)

#### Example

```
const Eueno = require('@eueno/lib-node');
const fs = require('fs');

async function example() {
  const eueno = new Eueno({
    endpoint: 'https://v2-developers.eueno.io',
  });
  
  res = await eueno.createProject({
    walletPrivateKey: 'abc',
    projectName: "orai-eueno"
  })
}


example();
```

## Parameters

<table><thead><tr><th width="135">Name</th><th width="107">Type</th><th width="119">Required</th><th>Description</th></tr></thead><tbody><tr><td>opts</td><td>Object</td><td>Yes</td><td>Initialization parameter</td></tr></tbody></table>

## Properties <a href="#properties" id="properties"></a>

**opts**

<table><thead><tr><th width="200">Name</th><th width="107">Type</th><th width="119">Required</th><th>Description</th></tr></thead><tbody><tr><td>walletPrivateKey</td><td>String</td><td>Yes</td><td>Private key of a wallet</td></tr><tr><td>projectName</td><td>String</td><td>Yes</td><td>Project name</td></tr></tbody></table>
