I could not find an example of how to use ApiKey in C# code.
I am trying something like this:
var client = new Client(new Config
{
Environment = EnvironmentSelector.Mainnet, //Why do I need this if I it seems that I have to provide it on the ApiConfig?
ApiConfig = new Configuration
{
//How to properly initialize this object to use the ApiKey?
}
});
Can someone help me setting up the api key for c#?