WalletDataGet()
Retrieve data about Wallet
Before calling the function make sure you have the Connector object initialized.
Understanding Connector ObjectFunction Call
Field
Type
Description
PubKey
string
Base58 Publickey
WalletDataGet("Input here Base58 PublicKey");
Example
Connector connect_ = new Connector("95.111.224.219", 9091);
NodeApi.WalletDataGetResult walletdata = connect_.WalletDataGet("4SFfA1S2xfA3BdgkTn2tK14yDhLuD11RVz78kqx35jct");
Console.WriteLine(walletdata);
Output of Example
Output is printed via ObjectDumper
{WalletDataGetResult}
Status: {APIResponse}
Code: 0
Message: "Success: "
WalletData: {WalletData}
WalletId: 0
Balance: {Amount}
Integral: 248866058
Fraction: 664013671875000000
LastTransactionId: 27
Delegated: null
Last updated
Was this helpful?