WalletsGet()
Retrieve General Wallets
Before calling the function make sure you have the Connector object initialized.
Understanding Connector ObjectFunction 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);Example
Connector connect_ = new Connector("95.111.224.219", 9091);
NodeApi.WalletsGetResult wallets = connect_.WalletsGet(new sbyte(),true,0,10);
Console.WriteLine(wallets);Connect_ = Connector("165.22.212.253:9090")
print(Connect_.WalletsGet(0,10,None,True))var connect_ = new Connector("194.163.152.177", 9091);
connect_.WalletsGet(null,true,0,10).then((res) => {connect_.Close();console.log(res); });Output of Example
Output is printed via ObjectDumper
Last updated
Was this helpful?