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