├── ext ├── mstch │ ├── cmake │ │ └── mstch-config.cmake │ ├── src │ │ ├── state │ │ │ ├── outside_section.hpp │ │ │ ├── render_state.hpp │ │ │ ├── in_section.hpp │ │ │ ├── outside_section.cpp │ │ │ └── in_section.cpp │ │ ├── mstch.cpp │ │ ├── utils.hpp │ │ ├── visitor │ │ │ ├── has_token.hpp │ │ │ ├── get_token.hpp │ │ │ ├── is_node_empty.hpp │ │ │ ├── render_section.hpp │ │ │ └── render_node.hpp │ │ ├── template_type.hpp │ │ ├── token.hpp │ │ ├── utils.cpp │ │ ├── render_context.hpp │ │ ├── token.cpp │ │ ├── CMakeLists.txt │ │ ├── render_context.cpp │ │ └── template_type.cpp │ ├── CMakeLists.txt │ ├── LICENSE │ └── include │ │ └── mstch │ │ └── mstch.hpp ├── CMakeLists.txt ├── crow │ ├── crow.h │ └── crow │ │ ├── settings.h │ │ ├── ci_map.h │ │ ├── http_request.h │ │ ├── dumb_timer_queue.h │ │ ├── middleware_context.h │ │ ├── socket_adaptors.h │ │ ├── http_response.h │ │ ├── common.h │ │ ├── logging.h │ │ ├── middleware.h │ │ ├── parser.h │ │ └── TinySHA1.hpp ├── fmt │ ├── ostream.cc │ └── ostream.h └── vpetrigocaches │ ├── fifo_cache_policy.hpp │ ├── lru_cache_policy.hpp │ ├── cache_policy.hpp │ ├── lfu_cache_policy.hpp │ └── cache.hpp ├── src ├── templates │ ├── imgs │ │ ├── etn-header-logo.png │ │ └── tx-icon.svg │ ├── partials │ │ ├── tx_table_header.html │ │ └── tx_table_row.html │ ├── tx.html │ ├── mempool_error.html │ ├── altblocks.html │ ├── pushrawtx.html │ ├── footer.html │ ├── rawkeyimgs.html │ ├── rawoutputkeys.html │ ├── js │ │ ├── config.js │ │ ├── crc32.js │ │ └── base58.js │ ├── rawtx.html │ ├── checkrawkeyimgs.html │ ├── index.html │ ├── checkrawoutputkeys.html │ ├── mempool.html │ ├── search_results.html │ ├── checkrawtx.html │ ├── header.html │ ├── my_outputs.html │ └── index2.html ├── version.h.in ├── CMakeLists.txt ├── CmdLineOptions.h ├── electroneum_headers.h ├── MicroCore.h ├── CurrentBlockchainStatus.h ├── MempoolStatus.h ├── rpccalls.h └── CmdLineOptions.cpp ├── .gitignore ├── LICENSE ├── cmake ├── FindUBSan.cmake ├── FindHIDAPI.cmake ├── asan-wrapper ├── FindASan.cmake ├── MyUtils.cmake ├── FindMSan.cmake ├── FindTSan.cmake ├── FindElectroneum.cmake ├── FindSanitizers.cmake └── sanitize-helpers.cmake ├── Dockerfile └── CMakeLists.txt /ext/mstch/cmake/mstch-config.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/mstch-targets.cmake") -------------------------------------------------------------------------------- /src/templates/imgs/etn-header-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/electroneum/electroneum-blockchain-explorer/HEAD/src/templates/imgs/etn-header-logo.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .sass-cache 3 | *.*~ 4 | *.user 5 | .idea/ 6 | *.log 7 | *.orig 8 | tests/ 9 | build/ 10 | cmake-build-debug/ 11 | .ycm_extra_conf.py 12 | .vscode/ 13 | -------------------------------------------------------------------------------- /src/templates/partials/tx_table_header.html: -------------------------------------------------------------------------------- 1 |
If this is newly made tx, it can take some time (up to minute)
7 | for it to get propagated to all nodes' txpools.
8 |
9 | Please refresh in 10-20 seconds to check if its here then.
10 |
Txpool data preparation for the front page failed. 8 | Its processing 9 | {{#network_info}}{{^is_pool_size_zero}}({{tx_pool_size}} txs){{/is_pool_size_zero}}{{/network_info}} 10 | took longer than expected and it timed out. 11 | To view the txpool without time constrain, 12 | go to dedicated txpool page: memory pool 13 |
14 | 15 | 16 | 17 |