WalletsGet()

Retrieve General Wallets

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

Understanding Connector Objectchevron-right

Function Call

Field

Type

Description

OrdCol

sbyte

Sbyte OrdCol

Desc

bool

Descending or Ascending

Offset

long

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

Limit

long

Limit Amount per request

WalletsGet(new sbyte(),true,0,10);
circle-info

Return value of function: WalletsGetResult

Example

Connector connect_ = new Connector("95.111.224.219", 9091);
NodeApi.WalletsGetResult wallets = connect_.WalletsGet(new sbyte(),true,0,10);
Console.WriteLine(wallets);
circle-info

Return value of function: WalletsGetResult

Output of Example

Output is printed via ObjectDumper

Last updated

Was this helpful?