WalletTransactionsCountGet()
Retrieve Total Transaction count of Wallet
Before calling the function make sure you have the Connector object initialized.
Understanding Connector ObjectFunction Call
Field
Type
Description
PubKey
string
Base58 Publickey
WalletTransactionsCountGet("Input here Base58 PublicKey");
Example
Connector connect_ = new Connector("95.111.224.219", 9091);
NodeApi.WalletTransactionsCountGetResult TransactonCount = connect_.WalletTransactionsCountGet("4SFfA1S2xfA3BdgkTn2tK14yDhLuD11RVz78kqx35jct");
Console.WriteLine(TransactonCount);
Output of Example
Output is printed via ObjectDumper
{WalletTransactionsCountGetResult}
Status: {APIResponse}
Code: 0
Message: "Success: "
LastTransactionInnerId: 549
Last updated
Was this helpful?