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