Runtime represents the runtimes supported by a given Oasis node.

interface NodeRuntime {
    capabilities: NodeCapabilities;
    extra_info: Uint8Array;
    id: Uint8Array;
    version: Version;
}

Properties

capabilities: NodeCapabilities

Capabilities are the node's capabilities for a given runtime.

extra_info: Uint8Array

ExtraInfo is the extra per node + per runtime opaque data associated with the current instance.

id: Uint8Array

ID is the public key identifying the runtime.

version: Version

Version is the version of the runtime.