sfortop / ethereum-contract-monitoring
0.8.5
2018-08-09 11:54 UTC
Requires
- php: ^7.2
- furqansiddiqui/erc20-php: dev-master
- furqansiddiqui/ethereum-rpc: dev-master
- furqansiddiqui/http-client: dev-master
- php-amqplib/php-amqplib: ^v2.7
- prolic/humus-amqp: ^v1.4
- sandrokeil/interop-config: ^2.1
- zendframework/zend-component-installer: ^2.1
- zendframework/zend-config-aggregator: ^1.1
- zendframework/zend-db: ^2.9
- zendframework/zend-di: ^3.0
- zendframework/zend-diactoros: ^1.8
- zendframework/zend-expressive: ^3.0
- zendframework/zend-expressive-fastroute: ^3.0
- zendframework/zend-expressive-helpers: ^5.1
- zendframework/zend-filter: ^2.8
- zendframework/zend-hydrator: ^2.4
- zendframework/zend-log: ^2.10
- zendframework/zend-servicemanager: ^3.3
- zendframework/zend-stdlib: ^3.2
Requires (Dev)
- filp/whoops: ^2.2
- phpstan/phpstan: ^0.9.2
- phpunit/phpunit: ^7.2
- squizlabs/php_codesniffer: ^2.9.1
- zendframework/zend-expressive-tooling: ^1.0
- zfcampus/zf-development-mode: ^3.2
This package is auto-updated.
Last update: 2025-03-18 20:44:57 UTC
README
#php ethereum transaction monitoring
all scripts work with Redis list and put result to own list to next processing
- block-announcer - read last announced block and announces next pack of blocks to parse
- block-reader - read transactions from announced blocks
- transaction-reader - read transactions info from previous list
- transaction-checker - check if transactions are belong to contract
- transaction-announcer - pass checked transaction to RabbitMQ
RabbitMQ configuration passed by env variables
'host' => getenv('PGTW_RMQ_HOST')?: 'rabbitmq',
'port' => getenv('PGTW_RMQ_PORT')?: 5672,
'login' => getenv('PGTW_RMQ_USER') ?:'guest',
'password' => getenv('PGTW_RMQ_PASS') ?:'guest',
Redis configuration passed by env variables
'host' => getenv('PGTW_REDIS') ?: 'redis',
'port' => getenv('PGTW_REDIS_PORT') ?: '6379',
'db' => getenv('PGTW_REDIS_DB') ?: '2',
geth
node configuration
'host' => parse_url(getenv('ETHEREUM_NODE_URL'))['host'] ?? null,