mirror of
https://github.com/logos-blockchain/logos-blockchain-module.git
synced 2026-07-13 10:39:32 +00:00
* feat: use recommended logos-module-builder to simplify core modules * add tests add tests update readme * update api update api simplify simplify * ci fix * ci fix --------- Co-authored-by: Khushboo Mehta <mehtakhushboo@hotmail.com> Co-authored-by: Logos Workspace <logos@workspace.local>
39 lines
933 B
JSON
39 lines
933 B
JSON
{
|
|
"name": "liblogos_blockchain_module",
|
|
"version": "1.0.0",
|
|
"description": "Logos blockchain node for logos-core",
|
|
"author": "Logos Blockchain Team",
|
|
"type": "core",
|
|
"interface": "universal",
|
|
"codegen": {
|
|
"impl_header": "logos_blockchain_module.h",
|
|
"impl_class": "LogosBlockchainModule"
|
|
},
|
|
"category": "blockchain",
|
|
"main": "liblogos_blockchain_module_plugin",
|
|
"dependencies": [],
|
|
"capabilities": [],
|
|
"include": [
|
|
"liblogos_blockchain.dylib",
|
|
"liblogos_blockchain.so",
|
|
"liblogos_blockchain.dll",
|
|
"liblogos_blockchain_module_plugin.dylib",
|
|
"liblogos_blockchain_module_plugin.so",
|
|
"liblogos_blockchain_module_plugin.dll",
|
|
"circuits"
|
|
],
|
|
|
|
"nix": {
|
|
"packages": {
|
|
"build": [],
|
|
"runtime": ["nlohmann_json", "boost"]
|
|
},
|
|
"external_libraries": [
|
|
{ "name": "logos_blockchain" }
|
|
],
|
|
"cmake": {
|
|
"extra_include_dirs": ["lib"]
|
|
}
|
|
}
|
|
}
|