Initialization of Aevo Adapter
The code below demonstrates how to initialize the AevoMessageAdapter and pass it to the Connector.
Connector Connector = new Connector();
...
var messageAdapter = new AevoMessageAdapter(Connector.TransactionIdGenerator)
{
ApiKey = "<Your value>",
ApiSecret = "<Your value>".To<SecureString>(),
WalletAddress = "<Your value>",
SigningKey = "<Your value>".To<SecureString>(),
};
Connector.Adapter.InnerAdapters.Add(messageAdapter);
...