TransactionsStateGet()

Before calling the function make sure you have the Connector object initialized.

Understanding Connector Object

This Function is not been implemented yet

Function Call

Field

Type

Description

Address

string

Base58 ed25519 Address

Id

List<long>

List with Transaction id numbers

TransactionsStateGet("Input here Base58 Key",new List<long>);

Return value of function: TransactionsStateGetResult

Example

Connector connect_ = new Connector("95.111.224.219", 9091);
NodeApi.TransactionsStateGetResult TransactionStates = connect_.TransactionsStateGet("4SFfA1S2xfA3BdgkTn2tK14yDhLuD11RVz78kqx35jct");
Console.WriteLine(TransactionStates);

Return value of function: TransactionsStateGetResult

Output of Example

Output is printed via ObjectDumper

{TransactionsStateGetResult}
  Status: {APIResponse}
    Code: 2
    Message: "Not Implemented: "
  States: ...
  RoundNum: 62562309

Last updated