{"id":19373465,"url":"https://github.com/neo-project/neo-modules","last_synced_at":"2025-04-04T10:05:24.261Z","repository":{"id":36960950,"uuid":"139128922","full_name":"neo-project/neo-modules","owner":"neo-project","description":null,"archived":false,"fork":false,"pushed_at":"2024-06-12T07:57:30.000Z","size":1506,"stargazers_count":61,"open_issues_count":62,"forks_count":101,"subscribers_count":32,"default_branch":"master","last_synced_at":"2025-03-28T09:04:52.944Z","etag":null,"topics":["neo"],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/neo-project.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-06-29T09:21:01.000Z","updated_at":"2025-02-03T13:51:06.000Z","dependencies_parsed_at":"2023-02-15T12:00:51.053Z","dependency_job_id":"98e41d61-a5a6-4367-8547-25aaa4175dbd","html_url":"https://github.com/neo-project/neo-modules","commit_stats":{"total_commits":355,"total_committers":33,"mean_commits":"10.757575757575758","dds":0.7887323943661972,"last_synced_commit":"52122bd286b0a9854ded648516bb223a8ecb4d2e"},"previous_names":[],"tags_count":44,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo-project%2Fneo-modules","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo-project%2Fneo-modules/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo-project%2Fneo-modules/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/neo-project%2Fneo-modules/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/neo-project","download_url":"https://codeload.github.com/neo-project/neo-modules/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247156730,"owners_count":20893200,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["neo"],"created_at":"2024-11-10T08:28:28.735Z","updated_at":"2025-04-04T10:05:24.238Z","avatar_url":"https://github.com/neo-project.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n\u003ca href=\"https://neo.org/\"\u003e\n      \u003cimg\n      src=\"https://neo3.azureedge.net/images/logo%20files-dark.svg\"\n      width=\"250px\" alt=\"neo-logo\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e      \n  \u003ca href=\"https://github.com/neo-project/neo-modules/blob/master/LICENSE\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/license-MIT-blue.svg\" alt=\"License\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/neo-project/neo-modules/releases\"\u003e\n    \u003cimg src=\"https://badge.fury.io/gh/neo-project%2Fneo-modules.svg\" alt=\"Current neo-modules version.\"\u003e\n  \u003c/a\u003e    \n\u003c/p\u003e\n\n# ARCHIVED\n\nThis repository was merged into https://github.com/neo-project/neo, newer (post-3.7.5) modules versions can be obtained from it.\n\n## What is it\n\nA set of plugins/modules that can be used inside the NEO core library is available in this repository. You can refer to [the official documentation](https://docs.neo.org/docs/en-us/node/cli/setup.html) for the more detailed usage guide. \n\nIn addition, a C# SDK module is included for developers to call RPC methods with ease.\n\n## Using Plugins\nPlugins can be used to increase functionality, as well as providing policies definitions of the network.\nOne common example is to add the ApplicationLogs plugin in order to enable your node to create log files.\n\nTo configure a plugin, you can directly download the desired plugin from the [Releases page](https://github.com/neo-project/neo-modules/releases).\n\nAlternatively, you can compile from source code by following the below steps:\n- Clone this repository;\n- Open it in Visual Studio, select the plugin you want to enable and select `publish` \\(compile it using Release configuration\\)\n- Create the Plugins folder in neo-cli / neo-gui (where the binary file is located, such as `/neo-cli/bin/Release/netcoreapp3.0/Plugins`)\n- Copy the .dll and the folder with the configuration files into the `Plugins` folder.\n  - Remarkably, you should put the dependency of the plugin in the `Plugins` folder as well. For example, since the `RpcServer` has the package reference on the `Microsoft.AspNetCore.ResponseCompression`, so the corresponding dll file should be put together with the plugin.\n\nThe resulting folder structure is going to be like this:\n\n```sh\n./neo-cli.dll\n./Plugins/ApplicationLogs.dll\n./Plugins/ApplicationsLogs/config.json\n```\n\n## Plugins/Modules\n\n### ApplicationLogs\nAdd this plugin to your application if need to access the log files. This can be useful to handle notifications, but remember that this also largely increases the space used by the application. `LevelDBStore` and `RpcServer` are also needed for this plugin. You can find more details [here](https://docs.neo.org/docs/en-us/reference/rpc/latest-version/api/getapplicationlog.html).\n\n### StatesDumper\nExports neo-cli status data \\(useful for debugging\\), such as storage modifications block by block.\n\n### LevelDBStore\nIf there is no further modification of the configuration file of the neo-node, it is the default storage engine in the NEO system. In this case, you should paste the `LevelDBStore` in the Plugins before launching the node.\n\n### RocksDBStore\nYou can also use `RocksDBStore` in the NEO system by modifying the default storage engine section in the configuration file.\n\n### RpcServer\nPlugin for hosting a RpcServer on the neo-node, being able to disable specific calls.\n\n### TokensTracker\nPlugin that enables NEP11 and NEP17 tracking using LevelDB.\nThis module works in conjunction with RpcServer, otherwise, just local storage (on leveldb) would be created. \n\n## C# SDK\n\n### RpcClient\nThe RpcClient Project is an individual SDK that is used to interact with NEO blockchain through NEO RPC methods for development using. The main functions include RPC calling, Transaction making, Contract deployment \u0026 calling, and Asset transfering.\nIt needs a NEO node with the `RpcServer` plugin as a provider. And the provider needs more plugins like `TokensTracker` and `ApplicationLogs` if you want to call RPC methods supplied by the plugins.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneo-project%2Fneo-modules","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneo-project%2Fneo-modules","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneo-project%2Fneo-modules/lists"}