Initialization of CoinGecko Adapter
The code below demonstrates how to initialize the CoinGeckoMessageAdapter and pass it to the Connector.
Connector Connector = new Connector();
...
var messageAdapter = new CoinGeckoMessageAdapter(Connector.TransactionIdGenerator)
{
Token = "<Your value>".To<SecureString>(),
QuoteCurrency = "<Your value>",
};
Connector.Adapter.InnerAdapters.Add(messageAdapter);
...