├── .gitignore ├── .jsbeautifyrc ├── LICENSE ├── README.md ├── config ├── env.js ├── jest │ ├── cssTransform.js │ └── fileTransform.js ├── paths.js ├── polyfills.js ├── webpack.config.dev.js ├── webpack.config.prod.js └── webpackDevServer.config.js ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── scripts ├── build.js ├── start.js └── test.js ├── src ├── App.css ├── App.js ├── components │ ├── ethereum │ │ ├── AccountInfoTable.js │ │ ├── BlockInfoTable.js │ │ ├── BlocksTable.js │ │ ├── TransactionInfoTable.js │ │ └── TransactionsTable.js │ ├── layout │ │ ├── EthereumEntity.js │ │ ├── Header.js │ │ └── Loading.js │ ├── pages │ │ ├── AccountDetails.js │ │ ├── BlockDetails.js │ │ ├── Main.js │ │ ├── Status.js │ │ └── TransactionDetails.js │ └── providers │ │ └── Web3Provider.js ├── index.css ├── index.js ├── logo.svg ├── registerServiceWorker.js └── utils │ ├── format-utils.js │ ├── search-utils.js │ └── web3-loader.js ├── test └── App.test.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/.gitignore -------------------------------------------------------------------------------- /.jsbeautifyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/.jsbeautifyrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/README.md -------------------------------------------------------------------------------- /config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/config/env.js -------------------------------------------------------------------------------- /config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/config/jest/cssTransform.js -------------------------------------------------------------------------------- /config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/config/jest/fileTransform.js -------------------------------------------------------------------------------- /config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/config/paths.js -------------------------------------------------------------------------------- /config/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/config/polyfills.js -------------------------------------------------------------------------------- /config/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/config/webpack.config.dev.js -------------------------------------------------------------------------------- /config/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/config/webpack.config.prod.js -------------------------------------------------------------------------------- /config/webpackDevServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/config/webpackDevServer.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/public/manifest.json -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/scripts/start.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/scripts/test.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/ethereum/AccountInfoTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/components/ethereum/AccountInfoTable.js -------------------------------------------------------------------------------- /src/components/ethereum/BlockInfoTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/components/ethereum/BlockInfoTable.js -------------------------------------------------------------------------------- /src/components/ethereum/BlocksTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/components/ethereum/BlocksTable.js -------------------------------------------------------------------------------- /src/components/ethereum/TransactionInfoTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/components/ethereum/TransactionInfoTable.js -------------------------------------------------------------------------------- /src/components/ethereum/TransactionsTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/components/ethereum/TransactionsTable.js -------------------------------------------------------------------------------- /src/components/layout/EthereumEntity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/components/layout/EthereumEntity.js -------------------------------------------------------------------------------- /src/components/layout/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/components/layout/Header.js -------------------------------------------------------------------------------- /src/components/layout/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/components/layout/Loading.js -------------------------------------------------------------------------------- /src/components/pages/AccountDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/components/pages/AccountDetails.js -------------------------------------------------------------------------------- /src/components/pages/BlockDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/components/pages/BlockDetails.js -------------------------------------------------------------------------------- /src/components/pages/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/components/pages/Main.js -------------------------------------------------------------------------------- /src/components/pages/Status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/components/pages/Status.js -------------------------------------------------------------------------------- /src/components/pages/TransactionDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/components/pages/TransactionDetails.js -------------------------------------------------------------------------------- /src/components/providers/Web3Provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/components/providers/Web3Provider.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/utils/format-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/utils/format-utils.js -------------------------------------------------------------------------------- /src/utils/search-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/utils/search-utils.js -------------------------------------------------------------------------------- /src/utils/web3-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/src/utils/web3-loader.js -------------------------------------------------------------------------------- /test/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/test/App.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanVerbner/lightweight-eth-explorer/HEAD/yarn.lock --------------------------------------------------------------------------------