TransactionsStateGet()
Before calling the function make sure you have the Connector object initialized.
Understanding Connector ObjectThis 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>);Example
Connector connect_ = new Connector("95.111.224.219", 9091);
NodeApi.TransactionsStateGetResult TransactionStates = connect_.TransactionsStateGet("4SFfA1S2xfA3BdgkTn2tK14yDhLuD11RVz78kqx35jct");
Console.WriteLine(TransactionStates);Connect_ = Connector("165.22.212.253:9090")
print(Connect_.TransactionsStateGet("EoPibFsGPE4xqXH2tYTBQUeJqSMMFvCZUdqAW9Bnh3nd",None))var connect_ = new Connector("194.163.152.177", 9091);
connect_.TransactionsStateGet("EoPibFsGPE4xqXH2tYTBQUeJqSMMFvCZUdqAW9Bnh3nd",null).then((res) => {connect_.Close();console.log(res); });Output of Example
Output is printed via ObjectDumper
Last updated
Was this helpful?