├── .env ├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cli.sh ├── config-overrides.js ├── config.file ├── docs ├── README.md ├── configuration.md ├── development.md ├── guides │ ├── connection │ │ └── README.md │ ├── deployment │ │ ├── README.md │ │ ├── step-one.md │ │ ├── step-three.md │ │ └── step-two.md │ ├── permissions │ │ ├── README.md │ │ ├── create_account.md │ │ ├── import_account.md │ │ └── update_account.md │ └── push-action │ │ └── README.md ├── images │ ├── deployment │ │ ├── after_file_input.png │ │ ├── compiled.png │ │ ├── compiled_log.png │ │ ├── deployment.png │ │ ├── import_file_input.png │ │ ├── imported_abi.png │ │ ├── step1_after.png │ │ └── step1_before.png │ ├── permissions │ │ ├── create_acc_button.png │ │ ├── create_acc_panel.png │ │ ├── create_acc_result.png │ │ ├── edit_acc_after.png │ │ ├── edit_acc_before.png │ │ ├── import_acc.png │ │ ├── import_keys_after.png │ │ └── import_keys_before.png │ └── push-action │ │ ├── action-history-viewer.png │ │ ├── filter.png │ │ ├── filter_result.png │ │ ├── prefill-action.png │ │ ├── push-action-init.png │ │ ├── push-action-success.png │ │ ├── push-action-type.png │ │ └── success-indicator.png └── pages │ ├── action-list-page.md │ ├── block-list-page.md │ ├── detail-pages │ ├── account-detail-page.md │ ├── action-detail-page.md │ ├── block-detail-page.md │ ├── smart-contract-detail-page.md │ └── transaction-detail-page.md │ ├── info-page.md │ ├── interact │ ├── deployment-page.md │ ├── manage-accounts-page.md │ └── push-action-page.md │ └── transaction-list-page.md ├── helpers ├── README.md └── openBrowser.js ├── init_config.file ├── package.json ├── pm2.js ├── public ├── env-config.js ├── index.html ├── manifest.json └── vendor │ └── favicons │ ├── favicon-144x144.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── routers └── postgres.js ├── scripts ├── init.sh ├── remove_dockers.sh ├── start.sh ├── start_gui.sh └── stop_dockers.sh ├── serve.js ├── src ├── app │ ├── App.jsx │ ├── App.scss │ └── index.js ├── components │ ├── BasicModal │ │ ├── BasicModal.jsx │ │ └── index.js │ ├── CodeViewer │ │ ├── CodeViewer.jsx │ │ ├── CodeViewer.scss │ │ └── index.js │ ├── ConsoleLogger │ │ ├── ConsoleLogger.jsx │ │ ├── ConsoleLogger.scss │ │ └── index.js │ ├── DragDropCodeViewer │ │ ├── DragDropCodeViewer.jsx │ │ ├── DragDropCodeViewer.scss │ │ └── index.js │ ├── Footer │ │ ├── Footer.jsx │ │ ├── Footer.scss │ │ └── index.js │ ├── Header │ │ ├── Header.jsx │ │ ├── Header.scss │ │ ├── components │ │ │ └── ConnectionIndicator │ │ │ │ ├── ConnectionIndicator.jsx │ │ │ │ ├── ConnectionIndicatorReducer.js │ │ │ │ └── index.js │ │ └── index.js │ ├── HelpFAB │ │ ├── HelpFAB.jsx │ │ ├── HelpFAB.scss │ │ └── index.js │ ├── LimitSelectDropdown │ │ ├── LimitSelectDropdown.jsx │ │ └── index.js │ ├── LoadingSpinner │ │ ├── LoadingSpinner.jsx │ │ ├── LoadingSpinner.scss │ │ └── index.js │ └── index.js ├── consts │ └── media-queries.js ├── helpers │ ├── check-ws-conn.js │ ├── error-logger.js │ ├── is-object-empty.js │ ├── params-to-query.js │ ├── pathname-consumer.js │ ├── useForm.js │ └── useToggle.js ├── hocs │ ├── WillRoute.jsx │ └── index.js ├── index.js ├── pages │ ├── AccountdetailPage │ │ ├── AccountdetailPage.jsx │ │ ├── AccountdetailPageReducer.js │ │ ├── components │ │ │ └── AccountDetail │ │ │ │ ├── Accountdetail.jsx │ │ │ │ ├── AccountdetailReducer.js │ │ │ │ └── index.js │ │ └── index.js │ ├── ActiondetailPage │ │ ├── ActiondetailPage.jsx │ │ ├── ActiondetailPageReducer.js │ │ ├── components │ │ │ ├── Actiondetail │ │ │ │ ├── Actiondetail.jsx │ │ │ │ └── index.js │ │ │ └── Actionjson │ │ │ │ ├── Actionjson.jsx │ │ │ │ └── index.js │ │ └── index.js │ ├── ActionlistPage │ │ ├── ActionlistPage.jsx │ │ ├── ActionlistPageReducer.js │ │ ├── components │ │ │ └── Actionlist │ │ │ │ ├── Actionlist.jsx │ │ │ │ ├── ActionlistReducer.js │ │ │ │ └── index.js │ │ └── index.js │ ├── BlockdetailPage │ │ ├── BlockdetailPage.jsx │ │ ├── BlockdetailPageReducer.js │ │ ├── components │ │ │ └── Blockdetail │ │ │ │ ├── Blockdetail.jsx │ │ │ │ ├── BlockdetailReducer.js │ │ │ │ └── index.js │ │ └── index.js │ ├── BlocklistPage │ │ ├── BlocklistPage.jsx │ │ ├── BlocklistPageReducer.js │ │ ├── components │ │ │ └── Blocklist │ │ │ │ ├── Blocklist.jsx │ │ │ │ ├── BlocklistReducer.js │ │ │ │ └── index.js │ │ └── index.js │ ├── CheckShipVersionPage │ │ ├── CheckShipVersionPage.jsx │ │ ├── CheckShipVersionPageReducer.js │ │ └── index.js │ ├── ContractdetailPage │ │ ├── ContractdetailPage.jsx │ │ ├── ContractdetailPageReducer.js │ │ ├── components │ │ │ ├── Contractdetail │ │ │ │ ├── Contractdetail.jsx │ │ │ │ ├── ContractdetailReducer.js │ │ │ │ └── index.js │ │ │ └── MultiIndex │ │ │ │ ├── MultiIndex.jsx │ │ │ │ ├── MultiIndexReducer.js │ │ │ │ └── index.js │ │ └── index.js │ ├── DeploymentPage │ │ ├── DeploymentPage.jsx │ │ ├── DeploymentPageReducer.js │ │ ├── components │ │ │ └── InputInstructions │ │ │ │ ├── InputInstructions.jsx │ │ │ │ └── index.js │ │ └── index.js │ ├── InfoPage │ │ ├── InfoPage.jsx │ │ ├── InfoPage.scss │ │ ├── InfoPageReducer.js │ │ ├── components │ │ │ ├── BlockchainInfo │ │ │ │ ├── BlockchainInfo.jsx │ │ │ │ ├── BlockchainInfoReducer.js │ │ │ │ └── index.js │ │ │ ├── Headblock │ │ │ │ ├── Headblock.jsx │ │ │ │ └── index.js │ │ │ ├── LastIrreversibleBlockInfo │ │ │ │ ├── LastIrreversibleBlockInfo.jsx │ │ │ │ └── index.js │ │ │ └── WelcomePopup │ │ │ │ ├── WelcomePopup.jsx │ │ │ │ ├── WelcomePopupReducer.js │ │ │ │ └── index.js │ │ └── index.js │ ├── NotFound404Page │ │ ├── NotFound404Page.jsx │ │ └── index.js │ ├── PermissionPage │ │ ├── PermissionPage.jsx │ │ ├── PermissionPageReducer.js │ │ ├── components │ │ │ ├── CreateAccount │ │ │ │ ├── CreateAccount.jsx │ │ │ │ ├── CreateAccountReducer.js │ │ │ │ ├── CreateAccountValidatorEngine │ │ │ │ │ └── CreateAccountValidatorEngine.js │ │ │ │ └── index.js │ │ │ ├── ImportAccount │ │ │ │ ├── EditAccountValidatorEngine │ │ │ │ │ └── EditAccountValidatorEngine.js │ │ │ │ ├── ImportAccount.jsx │ │ │ │ ├── ImportAccountValidatorEngine │ │ │ │ │ └── ImportAccountValidatorEngine.js │ │ │ │ └── index.js │ │ │ └── Permissionlist │ │ │ │ ├── Permissionlist.jsx │ │ │ │ └── index.js │ │ └── index.js │ ├── PushactionPage │ │ ├── PushactionPage.jsx │ │ ├── PushactionPageReducer.js │ │ ├── components │ │ │ ├── Actionhistory.jsx │ │ │ ├── PushActionValidatorEngine │ │ │ │ └── PushActionValidatorEngine.js │ │ │ └── index.js │ │ └── index.js │ ├── TransactiondetailPage │ │ ├── TransactiondetailPage.jsx │ │ ├── TransactiondetailPageReducer.js │ │ ├── components │ │ │ └── Transactiondetail │ │ │ │ ├── Transactiondetail.jsx │ │ │ │ ├── TransactiondetailReducer.js │ │ │ │ └── index.js │ │ └── index.js │ └── TransactionlistPage │ │ ├── TransactionlistPage.jsx │ │ ├── TransactionlistPageReducer.js │ │ ├── components │ │ └── Transactionlist │ │ │ ├── Transactionlist.jsx │ │ │ ├── TransactionlistReducer.js │ │ │ └── index.js │ │ └── index.js ├── reducers │ ├── endpoint.js │ ├── errorlog.js │ ├── headblock.js │ ├── index.js │ ├── lastblockinfo.js │ └── permission.js ├── scss │ ├── _body.scss │ ├── _custom.scss │ ├── _ie-fix.scss │ ├── _mixins.scss │ ├── _variables.scss │ ├── style.scss │ └── vendors │ │ ├── .gitkeep │ │ └── _variables.scss ├── services │ ├── api-postgres.js │ └── api-rpc.js ├── setupProxy.js ├── store │ ├── index.js │ └── redux-persist-config.js ├── styled │ ├── ButtonGroupSeperated.js │ ├── ButtonPrimary.js │ ├── ButtonSecondary.js │ ├── CardHeaderStyled.js │ ├── CardStyled.js │ ├── CheckBoxDivStyled.js │ ├── DropdownStyled.js │ ├── ErrorButton.js │ ├── ErrorDivStyled.js │ ├── ExclamationIconStyled.js │ ├── InfoDivStyled.js │ ├── InputStyled.js │ ├── OverlayStyled.js │ ├── PageTitleDivStyled.js │ ├── RadioButtonDivStyled.js │ ├── SearchButton.js │ ├── SuccessIconStyled.js │ ├── TableStyled.js │ ├── ToolTipStyled.js │ ├── ToolTipUncontrolledStyled.js │ └── index.js └── templates │ ├── StandardTemplate │ ├── StandardTemplate.jsx │ └── index.js │ └── index.js └── yarn.lock /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/.env -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/README.md -------------------------------------------------------------------------------- /cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/cli.sh -------------------------------------------------------------------------------- /config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/config-overrides.js -------------------------------------------------------------------------------- /config.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/config.file -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/guides/connection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/guides/connection/README.md -------------------------------------------------------------------------------- /docs/guides/deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/guides/deployment/README.md -------------------------------------------------------------------------------- /docs/guides/deployment/step-one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/guides/deployment/step-one.md -------------------------------------------------------------------------------- /docs/guides/deployment/step-three.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/guides/deployment/step-three.md -------------------------------------------------------------------------------- /docs/guides/deployment/step-two.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/guides/deployment/step-two.md -------------------------------------------------------------------------------- /docs/guides/permissions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/guides/permissions/README.md -------------------------------------------------------------------------------- /docs/guides/permissions/create_account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/guides/permissions/create_account.md -------------------------------------------------------------------------------- /docs/guides/permissions/import_account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/guides/permissions/import_account.md -------------------------------------------------------------------------------- /docs/guides/permissions/update_account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/guides/permissions/update_account.md -------------------------------------------------------------------------------- /docs/guides/push-action/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/guides/push-action/README.md -------------------------------------------------------------------------------- /docs/images/deployment/after_file_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/deployment/after_file_input.png -------------------------------------------------------------------------------- /docs/images/deployment/compiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/deployment/compiled.png -------------------------------------------------------------------------------- /docs/images/deployment/compiled_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/deployment/compiled_log.png -------------------------------------------------------------------------------- /docs/images/deployment/deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/deployment/deployment.png -------------------------------------------------------------------------------- /docs/images/deployment/import_file_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/deployment/import_file_input.png -------------------------------------------------------------------------------- /docs/images/deployment/imported_abi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/deployment/imported_abi.png -------------------------------------------------------------------------------- /docs/images/deployment/step1_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/deployment/step1_after.png -------------------------------------------------------------------------------- /docs/images/deployment/step1_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/deployment/step1_before.png -------------------------------------------------------------------------------- /docs/images/permissions/create_acc_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/permissions/create_acc_button.png -------------------------------------------------------------------------------- /docs/images/permissions/create_acc_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/permissions/create_acc_panel.png -------------------------------------------------------------------------------- /docs/images/permissions/create_acc_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/permissions/create_acc_result.png -------------------------------------------------------------------------------- /docs/images/permissions/edit_acc_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/permissions/edit_acc_after.png -------------------------------------------------------------------------------- /docs/images/permissions/edit_acc_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/permissions/edit_acc_before.png -------------------------------------------------------------------------------- /docs/images/permissions/import_acc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/permissions/import_acc.png -------------------------------------------------------------------------------- /docs/images/permissions/import_keys_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/permissions/import_keys_after.png -------------------------------------------------------------------------------- /docs/images/permissions/import_keys_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/permissions/import_keys_before.png -------------------------------------------------------------------------------- /docs/images/push-action/action-history-viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/push-action/action-history-viewer.png -------------------------------------------------------------------------------- /docs/images/push-action/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/push-action/filter.png -------------------------------------------------------------------------------- /docs/images/push-action/filter_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/push-action/filter_result.png -------------------------------------------------------------------------------- /docs/images/push-action/prefill-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/push-action/prefill-action.png -------------------------------------------------------------------------------- /docs/images/push-action/push-action-init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/push-action/push-action-init.png -------------------------------------------------------------------------------- /docs/images/push-action/push-action-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/push-action/push-action-success.png -------------------------------------------------------------------------------- /docs/images/push-action/push-action-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/push-action/push-action-type.png -------------------------------------------------------------------------------- /docs/images/push-action/success-indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/images/push-action/success-indicator.png -------------------------------------------------------------------------------- /docs/pages/action-list-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/pages/action-list-page.md -------------------------------------------------------------------------------- /docs/pages/block-list-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/pages/block-list-page.md -------------------------------------------------------------------------------- /docs/pages/detail-pages/account-detail-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/pages/detail-pages/account-detail-page.md -------------------------------------------------------------------------------- /docs/pages/detail-pages/action-detail-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/pages/detail-pages/action-detail-page.md -------------------------------------------------------------------------------- /docs/pages/detail-pages/block-detail-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/pages/detail-pages/block-detail-page.md -------------------------------------------------------------------------------- /docs/pages/detail-pages/smart-contract-detail-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/pages/detail-pages/smart-contract-detail-page.md -------------------------------------------------------------------------------- /docs/pages/detail-pages/transaction-detail-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/pages/detail-pages/transaction-detail-page.md -------------------------------------------------------------------------------- /docs/pages/info-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/pages/info-page.md -------------------------------------------------------------------------------- /docs/pages/interact/deployment-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/pages/interact/deployment-page.md -------------------------------------------------------------------------------- /docs/pages/interact/manage-accounts-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/pages/interact/manage-accounts-page.md -------------------------------------------------------------------------------- /docs/pages/interact/push-action-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/pages/interact/push-action-page.md -------------------------------------------------------------------------------- /docs/pages/transaction-list-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/docs/pages/transaction-list-page.md -------------------------------------------------------------------------------- /helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/helpers/README.md -------------------------------------------------------------------------------- /helpers/openBrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/helpers/openBrowser.js -------------------------------------------------------------------------------- /init_config.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/init_config.file -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/package.json -------------------------------------------------------------------------------- /pm2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/pm2.js -------------------------------------------------------------------------------- /public/env-config.js: -------------------------------------------------------------------------------- 1 | window._env_={"NODE_PATH": "http://localhost:8888"} 2 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/vendor/favicons/favicon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/public/vendor/favicons/favicon-144x144.png -------------------------------------------------------------------------------- /public/vendor/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/public/vendor/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /public/vendor/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/public/vendor/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /public/vendor/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/public/vendor/favicons/favicon.ico -------------------------------------------------------------------------------- /routers/postgres.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/routers/postgres.js -------------------------------------------------------------------------------- /scripts/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/scripts/init.sh -------------------------------------------------------------------------------- /scripts/remove_dockers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/scripts/remove_dockers.sh -------------------------------------------------------------------------------- /scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/scripts/start.sh -------------------------------------------------------------------------------- /scripts/start_gui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/scripts/start_gui.sh -------------------------------------------------------------------------------- /scripts/stop_dockers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/scripts/stop_dockers.sh -------------------------------------------------------------------------------- /serve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/serve.js -------------------------------------------------------------------------------- /src/app/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/app/App.jsx -------------------------------------------------------------------------------- /src/app/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/app/App.scss -------------------------------------------------------------------------------- /src/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/app/index.js -------------------------------------------------------------------------------- /src/components/BasicModal/BasicModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/BasicModal/BasicModal.jsx -------------------------------------------------------------------------------- /src/components/BasicModal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/BasicModal/index.js -------------------------------------------------------------------------------- /src/components/CodeViewer/CodeViewer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/CodeViewer/CodeViewer.jsx -------------------------------------------------------------------------------- /src/components/CodeViewer/CodeViewer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/CodeViewer/CodeViewer.scss -------------------------------------------------------------------------------- /src/components/CodeViewer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/CodeViewer/index.js -------------------------------------------------------------------------------- /src/components/ConsoleLogger/ConsoleLogger.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/ConsoleLogger/ConsoleLogger.jsx -------------------------------------------------------------------------------- /src/components/ConsoleLogger/ConsoleLogger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/ConsoleLogger/ConsoleLogger.scss -------------------------------------------------------------------------------- /src/components/ConsoleLogger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/ConsoleLogger/index.js -------------------------------------------------------------------------------- /src/components/DragDropCodeViewer/DragDropCodeViewer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/DragDropCodeViewer/DragDropCodeViewer.jsx -------------------------------------------------------------------------------- /src/components/DragDropCodeViewer/DragDropCodeViewer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/DragDropCodeViewer/DragDropCodeViewer.scss -------------------------------------------------------------------------------- /src/components/DragDropCodeViewer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/DragDropCodeViewer/index.js -------------------------------------------------------------------------------- /src/components/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/Footer/Footer.jsx -------------------------------------------------------------------------------- /src/components/Footer/Footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/Footer/Footer.scss -------------------------------------------------------------------------------- /src/components/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/Footer/index.js -------------------------------------------------------------------------------- /src/components/Header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/Header/Header.jsx -------------------------------------------------------------------------------- /src/components/Header/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/Header/Header.scss -------------------------------------------------------------------------------- /src/components/Header/components/ConnectionIndicator/ConnectionIndicator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/Header/components/ConnectionIndicator/ConnectionIndicator.jsx -------------------------------------------------------------------------------- /src/components/Header/components/ConnectionIndicator/ConnectionIndicatorReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/Header/components/ConnectionIndicator/ConnectionIndicatorReducer.js -------------------------------------------------------------------------------- /src/components/Header/components/ConnectionIndicator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/Header/components/ConnectionIndicator/index.js -------------------------------------------------------------------------------- /src/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/Header/index.js -------------------------------------------------------------------------------- /src/components/HelpFAB/HelpFAB.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/HelpFAB/HelpFAB.jsx -------------------------------------------------------------------------------- /src/components/HelpFAB/HelpFAB.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/HelpFAB/HelpFAB.scss -------------------------------------------------------------------------------- /src/components/HelpFAB/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/HelpFAB/index.js -------------------------------------------------------------------------------- /src/components/LimitSelectDropdown/LimitSelectDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/LimitSelectDropdown/LimitSelectDropdown.jsx -------------------------------------------------------------------------------- /src/components/LimitSelectDropdown/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/LimitSelectDropdown/index.js -------------------------------------------------------------------------------- /src/components/LoadingSpinner/LoadingSpinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/LoadingSpinner/LoadingSpinner.jsx -------------------------------------------------------------------------------- /src/components/LoadingSpinner/LoadingSpinner.scss: -------------------------------------------------------------------------------- 1 | .LoadingSpinner { 2 | 3 | } -------------------------------------------------------------------------------- /src/components/LoadingSpinner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/LoadingSpinner/index.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/consts/media-queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/consts/media-queries.js -------------------------------------------------------------------------------- /src/helpers/check-ws-conn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/helpers/check-ws-conn.js -------------------------------------------------------------------------------- /src/helpers/error-logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/helpers/error-logger.js -------------------------------------------------------------------------------- /src/helpers/is-object-empty.js: -------------------------------------------------------------------------------- 1 | export default ( obj ) =>{ 2 | return Object.getOwnPropertyNames(obj).length < 1; 3 | } 4 | -------------------------------------------------------------------------------- /src/helpers/params-to-query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/helpers/params-to-query.js -------------------------------------------------------------------------------- /src/helpers/pathname-consumer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/helpers/pathname-consumer.js -------------------------------------------------------------------------------- /src/helpers/useForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/helpers/useForm.js -------------------------------------------------------------------------------- /src/helpers/useToggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/helpers/useToggle.js -------------------------------------------------------------------------------- /src/hocs/WillRoute.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/hocs/WillRoute.jsx -------------------------------------------------------------------------------- /src/hocs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/hocs/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/AccountdetailPage/AccountdetailPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/AccountdetailPage/AccountdetailPage.jsx -------------------------------------------------------------------------------- /src/pages/AccountdetailPage/AccountdetailPageReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/AccountdetailPage/AccountdetailPageReducer.js -------------------------------------------------------------------------------- /src/pages/AccountdetailPage/components/AccountDetail/Accountdetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/AccountdetailPage/components/AccountDetail/Accountdetail.jsx -------------------------------------------------------------------------------- /src/pages/AccountdetailPage/components/AccountDetail/AccountdetailReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/AccountdetailPage/components/AccountDetail/AccountdetailReducer.js -------------------------------------------------------------------------------- /src/pages/AccountdetailPage/components/AccountDetail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/AccountdetailPage/components/AccountDetail/index.js -------------------------------------------------------------------------------- /src/pages/AccountdetailPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/AccountdetailPage/index.js -------------------------------------------------------------------------------- /src/pages/ActiondetailPage/ActiondetailPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ActiondetailPage/ActiondetailPage.jsx -------------------------------------------------------------------------------- /src/pages/ActiondetailPage/ActiondetailPageReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ActiondetailPage/ActiondetailPageReducer.js -------------------------------------------------------------------------------- /src/pages/ActiondetailPage/components/Actiondetail/Actiondetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ActiondetailPage/components/Actiondetail/Actiondetail.jsx -------------------------------------------------------------------------------- /src/pages/ActiondetailPage/components/Actiondetail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ActiondetailPage/components/Actiondetail/index.js -------------------------------------------------------------------------------- /src/pages/ActiondetailPage/components/Actionjson/Actionjson.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ActiondetailPage/components/Actionjson/Actionjson.jsx -------------------------------------------------------------------------------- /src/pages/ActiondetailPage/components/Actionjson/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ActiondetailPage/components/Actionjson/index.js -------------------------------------------------------------------------------- /src/pages/ActiondetailPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ActiondetailPage/index.js -------------------------------------------------------------------------------- /src/pages/ActionlistPage/ActionlistPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ActionlistPage/ActionlistPage.jsx -------------------------------------------------------------------------------- /src/pages/ActionlistPage/ActionlistPageReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ActionlistPage/ActionlistPageReducer.js -------------------------------------------------------------------------------- /src/pages/ActionlistPage/components/Actionlist/Actionlist.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ActionlistPage/components/Actionlist/Actionlist.jsx -------------------------------------------------------------------------------- /src/pages/ActionlistPage/components/Actionlist/ActionlistReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ActionlistPage/components/Actionlist/ActionlistReducer.js -------------------------------------------------------------------------------- /src/pages/ActionlistPage/components/Actionlist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ActionlistPage/components/Actionlist/index.js -------------------------------------------------------------------------------- /src/pages/ActionlistPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ActionlistPage/index.js -------------------------------------------------------------------------------- /src/pages/BlockdetailPage/BlockdetailPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/BlockdetailPage/BlockdetailPage.jsx -------------------------------------------------------------------------------- /src/pages/BlockdetailPage/BlockdetailPageReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/BlockdetailPage/BlockdetailPageReducer.js -------------------------------------------------------------------------------- /src/pages/BlockdetailPage/components/Blockdetail/Blockdetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/BlockdetailPage/components/Blockdetail/Blockdetail.jsx -------------------------------------------------------------------------------- /src/pages/BlockdetailPage/components/Blockdetail/BlockdetailReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/BlockdetailPage/components/Blockdetail/BlockdetailReducer.js -------------------------------------------------------------------------------- /src/pages/BlockdetailPage/components/Blockdetail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/BlockdetailPage/components/Blockdetail/index.js -------------------------------------------------------------------------------- /src/pages/BlockdetailPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/BlockdetailPage/index.js -------------------------------------------------------------------------------- /src/pages/BlocklistPage/BlocklistPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/BlocklistPage/BlocklistPage.jsx -------------------------------------------------------------------------------- /src/pages/BlocklistPage/BlocklistPageReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/BlocklistPage/BlocklistPageReducer.js -------------------------------------------------------------------------------- /src/pages/BlocklistPage/components/Blocklist/Blocklist.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/BlocklistPage/components/Blocklist/Blocklist.jsx -------------------------------------------------------------------------------- /src/pages/BlocklistPage/components/Blocklist/BlocklistReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/BlocklistPage/components/Blocklist/BlocklistReducer.js -------------------------------------------------------------------------------- /src/pages/BlocklistPage/components/Blocklist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/BlocklistPage/components/Blocklist/index.js -------------------------------------------------------------------------------- /src/pages/BlocklistPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/BlocklistPage/index.js -------------------------------------------------------------------------------- /src/pages/CheckShipVersionPage/CheckShipVersionPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/CheckShipVersionPage/CheckShipVersionPage.jsx -------------------------------------------------------------------------------- /src/pages/CheckShipVersionPage/CheckShipVersionPageReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/CheckShipVersionPage/CheckShipVersionPageReducer.js -------------------------------------------------------------------------------- /src/pages/CheckShipVersionPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/CheckShipVersionPage/index.js -------------------------------------------------------------------------------- /src/pages/ContractdetailPage/ContractdetailPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ContractdetailPage/ContractdetailPage.jsx -------------------------------------------------------------------------------- /src/pages/ContractdetailPage/ContractdetailPageReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ContractdetailPage/ContractdetailPageReducer.js -------------------------------------------------------------------------------- /src/pages/ContractdetailPage/components/Contractdetail/Contractdetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ContractdetailPage/components/Contractdetail/Contractdetail.jsx -------------------------------------------------------------------------------- /src/pages/ContractdetailPage/components/Contractdetail/ContractdetailReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ContractdetailPage/components/Contractdetail/ContractdetailReducer.js -------------------------------------------------------------------------------- /src/pages/ContractdetailPage/components/Contractdetail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ContractdetailPage/components/Contractdetail/index.js -------------------------------------------------------------------------------- /src/pages/ContractdetailPage/components/MultiIndex/MultiIndex.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ContractdetailPage/components/MultiIndex/MultiIndex.jsx -------------------------------------------------------------------------------- /src/pages/ContractdetailPage/components/MultiIndex/MultiIndexReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ContractdetailPage/components/MultiIndex/MultiIndexReducer.js -------------------------------------------------------------------------------- /src/pages/ContractdetailPage/components/MultiIndex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ContractdetailPage/components/MultiIndex/index.js -------------------------------------------------------------------------------- /src/pages/ContractdetailPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/ContractdetailPage/index.js -------------------------------------------------------------------------------- /src/pages/DeploymentPage/DeploymentPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/DeploymentPage/DeploymentPage.jsx -------------------------------------------------------------------------------- /src/pages/DeploymentPage/DeploymentPageReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/DeploymentPage/DeploymentPageReducer.js -------------------------------------------------------------------------------- /src/pages/DeploymentPage/components/InputInstructions/InputInstructions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/DeploymentPage/components/InputInstructions/InputInstructions.jsx -------------------------------------------------------------------------------- /src/pages/DeploymentPage/components/InputInstructions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/DeploymentPage/components/InputInstructions/index.js -------------------------------------------------------------------------------- /src/pages/DeploymentPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/DeploymentPage/index.js -------------------------------------------------------------------------------- /src/pages/InfoPage/InfoPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/InfoPage/InfoPage.jsx -------------------------------------------------------------------------------- /src/pages/InfoPage/InfoPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/InfoPage/InfoPage.scss -------------------------------------------------------------------------------- /src/pages/InfoPage/InfoPageReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/InfoPage/InfoPageReducer.js -------------------------------------------------------------------------------- /src/pages/InfoPage/components/BlockchainInfo/BlockchainInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/InfoPage/components/BlockchainInfo/BlockchainInfo.jsx -------------------------------------------------------------------------------- /src/pages/InfoPage/components/BlockchainInfo/BlockchainInfoReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/InfoPage/components/BlockchainInfo/BlockchainInfoReducer.js -------------------------------------------------------------------------------- /src/pages/InfoPage/components/BlockchainInfo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/InfoPage/components/BlockchainInfo/index.js -------------------------------------------------------------------------------- /src/pages/InfoPage/components/Headblock/Headblock.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/InfoPage/components/Headblock/Headblock.jsx -------------------------------------------------------------------------------- /src/pages/InfoPage/components/Headblock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/InfoPage/components/Headblock/index.js -------------------------------------------------------------------------------- /src/pages/InfoPage/components/LastIrreversibleBlockInfo/LastIrreversibleBlockInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/InfoPage/components/LastIrreversibleBlockInfo/LastIrreversibleBlockInfo.jsx -------------------------------------------------------------------------------- /src/pages/InfoPage/components/LastIrreversibleBlockInfo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/InfoPage/components/LastIrreversibleBlockInfo/index.js -------------------------------------------------------------------------------- /src/pages/InfoPage/components/WelcomePopup/WelcomePopup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/InfoPage/components/WelcomePopup/WelcomePopup.jsx -------------------------------------------------------------------------------- /src/pages/InfoPage/components/WelcomePopup/WelcomePopupReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/InfoPage/components/WelcomePopup/WelcomePopupReducer.js -------------------------------------------------------------------------------- /src/pages/InfoPage/components/WelcomePopup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/InfoPage/components/WelcomePopup/index.js -------------------------------------------------------------------------------- /src/pages/InfoPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/InfoPage/index.js -------------------------------------------------------------------------------- /src/pages/NotFound404Page/NotFound404Page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/NotFound404Page/NotFound404Page.jsx -------------------------------------------------------------------------------- /src/pages/NotFound404Page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/NotFound404Page/index.js -------------------------------------------------------------------------------- /src/pages/PermissionPage/PermissionPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/PermissionPage/PermissionPage.jsx -------------------------------------------------------------------------------- /src/pages/PermissionPage/PermissionPageReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/PermissionPage/PermissionPageReducer.js -------------------------------------------------------------------------------- /src/pages/PermissionPage/components/CreateAccount/CreateAccount.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/PermissionPage/components/CreateAccount/CreateAccount.jsx -------------------------------------------------------------------------------- /src/pages/PermissionPage/components/CreateAccount/CreateAccountReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/PermissionPage/components/CreateAccount/CreateAccountReducer.js -------------------------------------------------------------------------------- /src/pages/PermissionPage/components/CreateAccount/CreateAccountValidatorEngine/CreateAccountValidatorEngine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/PermissionPage/components/CreateAccount/CreateAccountValidatorEngine/CreateAccountValidatorEngine.js -------------------------------------------------------------------------------- /src/pages/PermissionPage/components/CreateAccount/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/PermissionPage/components/CreateAccount/index.js -------------------------------------------------------------------------------- /src/pages/PermissionPage/components/ImportAccount/EditAccountValidatorEngine/EditAccountValidatorEngine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/PermissionPage/components/ImportAccount/EditAccountValidatorEngine/EditAccountValidatorEngine.js -------------------------------------------------------------------------------- /src/pages/PermissionPage/components/ImportAccount/ImportAccount.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/PermissionPage/components/ImportAccount/ImportAccount.jsx -------------------------------------------------------------------------------- /src/pages/PermissionPage/components/ImportAccount/ImportAccountValidatorEngine/ImportAccountValidatorEngine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/PermissionPage/components/ImportAccount/ImportAccountValidatorEngine/ImportAccountValidatorEngine.js -------------------------------------------------------------------------------- /src/pages/PermissionPage/components/ImportAccount/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/PermissionPage/components/ImportAccount/index.js -------------------------------------------------------------------------------- /src/pages/PermissionPage/components/Permissionlist/Permissionlist.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/PermissionPage/components/Permissionlist/Permissionlist.jsx -------------------------------------------------------------------------------- /src/pages/PermissionPage/components/Permissionlist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/PermissionPage/components/Permissionlist/index.js -------------------------------------------------------------------------------- /src/pages/PermissionPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/PermissionPage/index.js -------------------------------------------------------------------------------- /src/pages/PushactionPage/PushactionPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/PushactionPage/PushactionPage.jsx -------------------------------------------------------------------------------- /src/pages/PushactionPage/PushactionPageReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/PushactionPage/PushactionPageReducer.js -------------------------------------------------------------------------------- /src/pages/PushactionPage/components/Actionhistory.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/PushactionPage/components/Actionhistory.jsx -------------------------------------------------------------------------------- /src/pages/PushactionPage/components/PushActionValidatorEngine/PushActionValidatorEngine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/PushactionPage/components/PushActionValidatorEngine/PushActionValidatorEngine.js -------------------------------------------------------------------------------- /src/pages/PushactionPage/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/PushactionPage/components/index.js -------------------------------------------------------------------------------- /src/pages/PushactionPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/PushactionPage/index.js -------------------------------------------------------------------------------- /src/pages/TransactiondetailPage/TransactiondetailPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/TransactiondetailPage/TransactiondetailPage.jsx -------------------------------------------------------------------------------- /src/pages/TransactiondetailPage/TransactiondetailPageReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/TransactiondetailPage/TransactiondetailPageReducer.js -------------------------------------------------------------------------------- /src/pages/TransactiondetailPage/components/Transactiondetail/Transactiondetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/TransactiondetailPage/components/Transactiondetail/Transactiondetail.jsx -------------------------------------------------------------------------------- /src/pages/TransactiondetailPage/components/Transactiondetail/TransactiondetailReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/TransactiondetailPage/components/Transactiondetail/TransactiondetailReducer.js -------------------------------------------------------------------------------- /src/pages/TransactiondetailPage/components/Transactiondetail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/TransactiondetailPage/components/Transactiondetail/index.js -------------------------------------------------------------------------------- /src/pages/TransactiondetailPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/TransactiondetailPage/index.js -------------------------------------------------------------------------------- /src/pages/TransactionlistPage/TransactionlistPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/TransactionlistPage/TransactionlistPage.jsx -------------------------------------------------------------------------------- /src/pages/TransactionlistPage/TransactionlistPageReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/TransactionlistPage/TransactionlistPageReducer.js -------------------------------------------------------------------------------- /src/pages/TransactionlistPage/components/Transactionlist/Transactionlist.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/TransactionlistPage/components/Transactionlist/Transactionlist.jsx -------------------------------------------------------------------------------- /src/pages/TransactionlistPage/components/Transactionlist/TransactionlistReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/TransactionlistPage/components/Transactionlist/TransactionlistReducer.js -------------------------------------------------------------------------------- /src/pages/TransactionlistPage/components/Transactionlist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/TransactionlistPage/components/Transactionlist/index.js -------------------------------------------------------------------------------- /src/pages/TransactionlistPage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/pages/TransactionlistPage/index.js -------------------------------------------------------------------------------- /src/reducers/endpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/reducers/endpoint.js -------------------------------------------------------------------------------- /src/reducers/errorlog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/reducers/errorlog.js -------------------------------------------------------------------------------- /src/reducers/headblock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/reducers/headblock.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/lastblockinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/reducers/lastblockinfo.js -------------------------------------------------------------------------------- /src/reducers/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/reducers/permission.js -------------------------------------------------------------------------------- /src/scss/_body.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/scss/_body.scss -------------------------------------------------------------------------------- /src/scss/_custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/scss/_custom.scss -------------------------------------------------------------------------------- /src/scss/_ie-fix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/scss/_ie-fix.scss -------------------------------------------------------------------------------- /src/scss/_mixins.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scss/_variables.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/scss/style.scss -------------------------------------------------------------------------------- /src/scss/vendors/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scss/vendors/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/scss/vendors/_variables.scss -------------------------------------------------------------------------------- /src/services/api-postgres.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/services/api-postgres.js -------------------------------------------------------------------------------- /src/services/api-rpc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/services/api-rpc.js -------------------------------------------------------------------------------- /src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/setupProxy.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/redux-persist-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/store/redux-persist-config.js -------------------------------------------------------------------------------- /src/styled/ButtonGroupSeperated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/styled/ButtonGroupSeperated.js -------------------------------------------------------------------------------- /src/styled/ButtonPrimary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/styled/ButtonPrimary.js -------------------------------------------------------------------------------- /src/styled/ButtonSecondary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/styled/ButtonSecondary.js -------------------------------------------------------------------------------- /src/styled/CardHeaderStyled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/styled/CardHeaderStyled.js -------------------------------------------------------------------------------- /src/styled/CardStyled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/styled/CardStyled.js -------------------------------------------------------------------------------- /src/styled/CheckBoxDivStyled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/styled/CheckBoxDivStyled.js -------------------------------------------------------------------------------- /src/styled/DropdownStyled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/styled/DropdownStyled.js -------------------------------------------------------------------------------- /src/styled/ErrorButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/styled/ErrorButton.js -------------------------------------------------------------------------------- /src/styled/ErrorDivStyled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/styled/ErrorDivStyled.js -------------------------------------------------------------------------------- /src/styled/ExclamationIconStyled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/styled/ExclamationIconStyled.js -------------------------------------------------------------------------------- /src/styled/InfoDivStyled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/styled/InfoDivStyled.js -------------------------------------------------------------------------------- /src/styled/InputStyled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/styled/InputStyled.js -------------------------------------------------------------------------------- /src/styled/OverlayStyled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/styled/OverlayStyled.js -------------------------------------------------------------------------------- /src/styled/PageTitleDivStyled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/styled/PageTitleDivStyled.js -------------------------------------------------------------------------------- /src/styled/RadioButtonDivStyled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/styled/RadioButtonDivStyled.js -------------------------------------------------------------------------------- /src/styled/SearchButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/styled/SearchButton.js -------------------------------------------------------------------------------- /src/styled/SuccessIconStyled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/styled/SuccessIconStyled.js -------------------------------------------------------------------------------- /src/styled/TableStyled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/styled/TableStyled.js -------------------------------------------------------------------------------- /src/styled/ToolTipStyled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/styled/ToolTipStyled.js -------------------------------------------------------------------------------- /src/styled/ToolTipUncontrolledStyled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/styled/ToolTipUncontrolledStyled.js -------------------------------------------------------------------------------- /src/styled/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/styled/index.js -------------------------------------------------------------------------------- /src/templates/StandardTemplate/StandardTemplate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/templates/StandardTemplate/StandardTemplate.jsx -------------------------------------------------------------------------------- /src/templates/StandardTemplate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/templates/StandardTemplate/index.js -------------------------------------------------------------------------------- /src/templates/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/src/templates/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EOSIO/eosio-explorer/HEAD/yarn.lock --------------------------------------------------------------------------------