> For the complete documentation index, see [llms.txt](https://liquiidio.gitbook.io/unity-plugin-suite/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://liquiidio.gitbook.io/unity-plugin-suite/eossharp/examples/getting_started.md).

# Configuration

## Configuration

In order to interact with the Eos blockchain, you need to create a new instance of the **Eos** class with an **EosConfigurator**.

```csharp
Eos eos = new Eos(new EosConfigurator()
{    
    HttpEndpoint = "https://api.wax.liquidstudios.io", //WAX Mainnet
    ChainId = "1064487b3cd1a897ce03ae5b6a865651747e2e152090f99c1d19d44e01aea5a4",
    ExpireSeconds = 60,
    SignProvider = new DefaultSignProvider("myprivatekey")
});
```
