SmartContractsListGet()

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

Understanding Connector Object

Function Call

Field

Type

Description

Address

string

Base58 ed25519 Smart Contract Address

Offset

long

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

Limit

long

Limit Amount per request

SmartContractsListGet("Input here Base58 Deployer PublicKey Key",0,10);

Return value of function: SmartContractsListGetResult

Example

Connector connect_ = new Connector("95.111.224.219", 9091);
NodeApi.SmartContractsListGetResult SmartContractList = connect_.SmartContractsListGet("4SFfA1S2xfA3BdgkTn2tK14yDhLuD11RVz78kqx35jct",0,10);
Console.WriteLine(SmartContractList);

Return value of function: SmartContractsListGetResult

Output of Example

Output is printed via ObjectDumper

Last updated

Was this helpful?