Adapter initialization: Chainflip

The following code initializes ChainflipMessageAdapter and adds it to Connector.

Connector connector = new Connector();
...
var messageAdapter = new ChainflipMessageAdapter(connector.TransactionIdGenerator)
{
	WalletAddress = "<Your EVM wallet address>",
	PrivateKey = "<Your EVM private key>".To<SecureString>(),
};
connector.Adapter.InnerAdapters.Add(messageAdapter);
...

Set the wallet credentials, destination addresses, and any other required properties described on the Connector configuration page.

See also

Connector configuration

Connection settings window