Initialization of Injective Adapter

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

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

Connection settings window