Interface IGnpRequest

Parameters for sending a request through a GNP communication channel.

interface IGnpRequest {
    data?: PacketData;
    destination?: Address;
    subcommand: Subcommand;
    timeoutMs?: number;
}

Properties

data?: PacketData
destination?: Address
subcommand: Subcommand
timeoutMs?: number