Initialization of Balancer Adapter

The code below demonstrates how to initialize the BalancerMessageAdapter and pass it to the Connector.

Connector Connector = new Connector();
...
var messageAdapter = new BalancerMessageAdapter(Connector.TransactionIdGenerator)
{
	WalletAddress = "<Your value>",
	PrivateKey = "<Your value>".To<SecureString>(),
};
Connector.Adapter.InnerAdapters.Add(messageAdapter);
...

Connection settings window