https://github.com/blocknetdx/plugin-adapter
https://github.com/blocknetdx/plugin-adapter
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/blocknetdx/plugin-adapter
- Owner: blocknetdx
- Created: 2022-06-15T08:26:23.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-22T20:29:34.000Z (about 1 year ago)
- Last Synced: 2025-03-22T21:32:09.570Z (about 1 year ago)
- Language: Python
- Size: 119 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# plugin-adapter
### Deployment Process
Within the EXR ENV, use this general form:
```yaml
plugin-adapter:
image: blocknetdx/plugin-adapter
restart: unless-stopped
# ports:
# - "5000:5000"
environment:
UTXO_PLUGIN_LIST: 'BLOCK:172.31.8.23,SYS:172.31.10.15'
stop_signal: SIGINT
stop_grace_period: 5m
depends_on:
- utxo-plugin-BLOCK
- utxo-plugin-SYS
logging:
driver: "json-file"
options:
max-size: "2m"
max-file: "10"
networks:
backend:
ipv4_address: 172.31.10.28
```
The UTXO_PLUGIN_LIST env var contains a list of all the coins for which utxo-plugin service is to be supported, and the backend network IP address of each of the corresponding utxo-plugin containers.