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 ObjectFunction 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);Example
Connector connect_ = new Connector("95.111.224.219", 9091);
NodeApi.TransactionsGetResult Transactions = connect_.TransactionsGet("4SFfA1S2xfA3BdgkTn2tK14yDhLuD11RVz78kqx35jct", 0, 10);
Console.WriteLine(Transactions);Connect_ = Connector("165.22.212.253:9090")
print(Connect_.TransactionsGet("ACkyon3ERkNEcNwpjUn4S6TLP3L76LFg3X6kWoJx82dK",0,10))var connect_ = new Connector("194.163.152.177", 9091);
connect_.TransactionsGet("ACkyon3ERkNEcNwpjUn4S6TLP3L76LFg3X6kWoJx82dK").then((res) => {connect_.Close();console.log(res); });Output of Example
Output is printed via ObjectDumper
Last updated
Was this helpful?