TransactionsGet()

Retrieve a list of Transactions recorded on the given PublicKey

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

Understanding Connector Object

Function Call

Field

Type

Description

PubKey

​string​

Base58 ed25519 PublicKey

OffSet

long

Offset enables you to search 10 Transactions later or any given number

Limit

long

The maximum amount of transactions you want to retrieve in 1 Function call

TransactionsGet("Input here Base58 PublicKey", 0, 10);

Return value of function: TransactionsGetResult

Example

Connector connect_ = new Connector("95.111.224.219", 9091);
NodeApi.TransactionsGetResult Transactions = connect_.TransactionsGet("4SFfA1S2xfA3BdgkTn2tK14yDhLuD11RVz78kqx35jct", 0, 10);
Console.WriteLine(Transactions);

Return value of function: TransactionsGetResult

Output of Example

Output is printed via ObjectDumper

Last updated

Was this helpful?