Show / Hide Table of Contents

listplugins Method

Returns a list of plugins loaded by the node.

You must install the plugin RpcServer before you can invoke the method.

Example

Request body:

{
  "jsonrpc": "2.0",
  "method": "listplugins",
  "params": [],
  "id": 1
}

Response body:

{
    "jsonrpc": "2.0",
    "id": 1,
    "result": [
        {
            "name": "DBFTPlugin",
            "version": "3.1.0.0",
            "interfaces": [
                "IP2PPlugin"
            ]
        },
        {
            "name": "LevelDBStore",
            "version": "3.1.0.0",
            "interfaces": []
        },
        {
            "name": "TokensTracker",
            "version": "3.1.0.0",
            "interfaces": [
                "IPersistencePlugin"
            ]
        },
        {
            "name": "RpcServer",
            "version": "3.1.0.0",
            "interfaces": []
        },
        {
            "name": "SystemLog",
            "version": "3.1.0.0",
            "interfaces": [
                "ILogPlugin"
            ]
        }
    ]
}