├── .dockerignore ├── .env ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── api ├── __init__.py ├── es_wrapper.py ├── explorer.py ├── nomics.py ├── udf.py └── utils.py ├── app.ini ├── app.py ├── config.py ├── docker-compose.override.yml ├── docker-compose.yml ├── docker.ini ├── explorer_config.env ├── non_reg ├── README.md ├── check_non_regression.py └── conftest.py ├── requirements ├── production.pip └── tests.pip ├── services ├── __init__.py ├── bitshares_elasticsearch_client.py ├── bitshares_websocket_client.py ├── cache.py ├── limiter.py └── profiler.py ├── swagger ├── api.yaml ├── paths_es_wrapper.yaml ├── paths_explorer.yaml ├── paths_nomics.yaml └── paths_udf.yaml └── tests ├── __init__.py ├── bitshares_websocket_client_test.py ├── local_urls.yaml ├── pytest.ini ├── test_api_es_wrapper.tavern.yaml ├── test_api_explorer.tavern.yaml ├── test_api_udf.tavern.yaml └── util.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | COMPOSE_PROJECT_NAME=bpab 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/README.md -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/es_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/api/es_wrapper.py -------------------------------------------------------------------------------- /api/explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/api/explorer.py -------------------------------------------------------------------------------- /api/nomics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/api/nomics.py -------------------------------------------------------------------------------- /api/udf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/api/udf.py -------------------------------------------------------------------------------- /api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/api/utils.py -------------------------------------------------------------------------------- /app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/app.ini -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/app.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/config.py -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/docker.ini -------------------------------------------------------------------------------- /explorer_config.env: -------------------------------------------------------------------------------- 1 | WEBSOCKET_URL=ws://88.99.145.10:9999/ws 2 | -------------------------------------------------------------------------------- /non_reg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/non_reg/README.md -------------------------------------------------------------------------------- /non_reg/check_non_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/non_reg/check_non_regression.py -------------------------------------------------------------------------------- /non_reg/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/non_reg/conftest.py -------------------------------------------------------------------------------- /requirements/production.pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/requirements/production.pip -------------------------------------------------------------------------------- /requirements/tests.pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/requirements/tests.pip -------------------------------------------------------------------------------- /services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/bitshares_elasticsearch_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/services/bitshares_elasticsearch_client.py -------------------------------------------------------------------------------- /services/bitshares_websocket_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/services/bitshares_websocket_client.py -------------------------------------------------------------------------------- /services/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/services/cache.py -------------------------------------------------------------------------------- /services/limiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/services/limiter.py -------------------------------------------------------------------------------- /services/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/services/profiler.py -------------------------------------------------------------------------------- /swagger/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/swagger/api.yaml -------------------------------------------------------------------------------- /swagger/paths_es_wrapper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/swagger/paths_es_wrapper.yaml -------------------------------------------------------------------------------- /swagger/paths_explorer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/swagger/paths_explorer.yaml -------------------------------------------------------------------------------- /swagger/paths_nomics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/swagger/paths_nomics.yaml -------------------------------------------------------------------------------- /swagger/paths_udf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/swagger/paths_udf.yaml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/bitshares_websocket_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/tests/bitshares_websocket_client_test.py -------------------------------------------------------------------------------- /tests/local_urls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/tests/local_urls.yaml -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/tests/pytest.ini -------------------------------------------------------------------------------- /tests/test_api_es_wrapper.tavern.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/tests/test_api_es_wrapper.tavern.yaml -------------------------------------------------------------------------------- /tests/test_api_explorer.tavern.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/tests/test_api_explorer.tavern.yaml -------------------------------------------------------------------------------- /tests/test_api_udf.tavern.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/tests/test_api_udf.tavern.yaml -------------------------------------------------------------------------------- /tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitshares/bitshares-explorer-api/HEAD/tests/util.py --------------------------------------------------------------------------------