Caution
The GDAX service is no longer available. Its successor, Coinbase Pro, has also been discontinued; use the current Coinbase connector for Coinbase. This connector does not work; the documentation is retained for reference only.
Adapter initialization GDAX
The code below demonstrates how to initialize the GdaxMessageAdapter and send it to Connector.
Connector Connector = new Connector();
...
var messageAdapter = new GdaxMessageAdapter(Connector.TransactionIdGenerator)
{
Key = "<Your API Key>".To<SecureString>(),
Secret = "<Your API Secret>".To<SecureString>(),
};
Connector.Adapter.InnerAdapters.Add(messageAdapter);
...