For the complete documentation index, see llms.txt. This page is also available as Markdown.

Understanding Connector Object

In order to use the C# Library you need to initialize the Connector Object

The connector object let's you connect to the Thrift API of a certain node running Credits Blockchain. In order to able to connect it needs the following variables

  • IP: The IP Address of the node you are connecting with

  • PORT: You need to specify the port number of the API (Default: 9090)

Below you will find an example on how to initialize the object.

Connect_ =  Connector("165.22.212.253:9090")
Connector connect_ = new Connector("95.111.224.219", 9091);
var connect_ = new Connector("194.163.152.177", 9091);

Last updated

Was this helpful?