Initialization of Reya Adapter

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

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

Connection settings window