app-store/apps/bitcoind/config.json
Jorge Montejo a51dfd050d
[Bitcoind] Add rpc bind and allow for docker setup (#3768)
* Update docker-compose.yml

* update version in config.json

* listen p2p conections by default
2024-06-20 20:56:26 +02:00

138 lines
3.4 KiB
JSON

{
"$schema": "../schema.json",
"name": "Bitcoin",
"available": true,
"exposable": false,
"no_gui": true,
"port": 8333,
"id": "bitcoind",
"description": "Bitcoin core node",
"tipi_version": 5,
"version": "27.0",
"categories": [
"finance"
],
"short_desc": "Bitcoin core node",
"author": "Bitcoin developers",
"source": "https://github.com/lncm/docker-bitcoind",
"form_fields": [
{
"type": "number",
"label": "Reduce storage requirements by enabling pruning (deleting) of old blocks",
"hint": "default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >=550 = automatically prune block files to stay under the specified target size in MiB",
"required": false,
"env_variable": "BITCOIND_PRUNING"
},
{
"type": "number",
"label": "DB Cache Size (In mb)",
"hint": "Set database cache size in megabytes; machines sync faster with a larger cache. Recommend setting as high as possible based upon machine's available RAM. Default 450 Mb.",
"required": false,
"env_variable": "BITCOIND_DB_CACHE"
},
{
"type": "number",
"label": "Max Mempool Size (In mb)",
"hint": "Keep the transaction memory pool below <n> megabytes. Default 300 Mb.",
"required": false,
"env_variable": "BITCOIND_MAX_MEMPOOL"
},
{
"type": "text",
"label": "Listen for Incoming Connections",
"hint": "Accept incoming connections from peers.",
"required": false,
"env_variable": "BITCOIND_LISTEN",
"options": [
{
"label": "Yes",
"value": "1"
},
{
"label": "No",
"value": "0"
}
]
},
{
"type": "text",
"label": "Accept JSON-RPC requests",
"hint": "Allows you to use bitcoin-cli to communicate with the node",
"required": false,
"env_variable": "BITCOIND_SERVER",
"options": [
{
"label": "Yes",
"value": "1"
},
{
"label": "No",
"value": "0"
}
]
},
{
"type": "number",
"label": "Max Peer Connections",
"hint": "Maintain at most N connections to peers. Leave empty for default 125.",
"required": false,
"env_variable": "BITCOIND_MAXPEERS"
},
{
"type": "text",
"label": "Enable txindex",
"hint": "Enabled by default",
"required": false,
"env_variable": "BITCOIND_TXINDEX",
"options": [
{
"label": "Yes",
"value": "1"
},
{
"label": "No",
"value": "0"
}
]
},
{
"type": "text",
"label": "Enable peer bloom filters",
"hint": "Enabled by default",
"required": false,
"env_variable": "BITCOIND_BLOOM_FILTERS",
"options": [
{
"label": "Yes",
"value": "1"
},
{
"label": "No",
"value": "0"
}
]
},
{
"type": "text",
"label": "Enable block filter index",
"hint": "Enabled by default",
"required": false,
"env_variable": "BITCOIND_BLOCK_FILTER",
"options": [
{
"label": "Yes",
"value": "1"
},
{
"label": "No",
"value": "0"
}
]
}
],
"supported_architectures": [
"amd64",
"arm64"
]
}