├── .browserslistrc ├── .editorconfig ├── .firebase └── hosting.ZGlzdFxzbWFydC1iY2gtZXhwbG9yZXI.cache ├── .firebaserc ├── .gitignore ├── LICENSE ├── README.md ├── angular.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── firebase.json ├── karma.conf.js ├── netlify.toml ├── package.json ├── screenshot.png ├── src ├── app │ ├── angular-material.module.ts │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── componenents │ │ └── common │ │ │ └── footer │ │ │ ├── footer.component.html │ │ │ ├── footer.component.scss │ │ │ ├── footer.component.spec.ts │ │ │ └── footer.component.ts │ ├── components │ │ ├── address │ │ │ ├── event-log │ │ │ │ ├── event-log.component.html │ │ │ │ ├── event-log.component.scss │ │ │ │ ├── event-log.component.spec.ts │ │ │ │ └── event-log.component.ts │ │ │ ├── tokens │ │ │ │ └── sep20-list │ │ │ │ │ ├── sep20-list.component.html │ │ │ │ │ ├── sep20-list.component.scss │ │ │ │ │ ├── sep20-list.component.spec.ts │ │ │ │ │ └── sep20-list.component.ts │ │ │ └── transactions │ │ │ │ └── list │ │ │ │ ├── list.component.html │ │ │ │ ├── list.component.scss │ │ │ │ ├── list.component.spec.ts │ │ │ │ └── list.component.ts │ │ ├── block │ │ │ ├── information │ │ │ │ ├── information.component.html │ │ │ │ ├── information.component.scss │ │ │ │ ├── information.component.spec.ts │ │ │ │ └── information.component.ts │ │ │ └── transactions │ │ │ │ ├── transactions.component.html │ │ │ │ ├── transactions.component.scss │ │ │ │ ├── transactions.component.spec.ts │ │ │ │ └── transactions.component.ts │ │ ├── common │ │ │ └── top-navigation │ │ │ │ ├── top-navigation.component.html │ │ │ │ ├── top-navigation.component.scss │ │ │ │ ├── top-navigation.component.spec.ts │ │ │ │ └── top-navigation.component.ts │ │ ├── connect-to-node │ │ │ ├── connect-to-node.component.html │ │ │ ├── connect-to-node.component.scss │ │ │ ├── connect-to-node.component.spec.ts │ │ │ └── connect-to-node.component.ts │ │ ├── height-ticker │ │ │ ├── height-ticker.component.html │ │ │ ├── height-ticker.component.scss │ │ │ ├── height-ticker.component.spec.ts │ │ │ └── height-ticker.component.ts │ │ ├── latest │ │ │ ├── blocks │ │ │ │ ├── blocks.component.html │ │ │ │ ├── blocks.component.scss │ │ │ │ ├── blocks.component.spec.ts │ │ │ │ └── blocks.component.ts │ │ │ └── transactions │ │ │ │ ├── transactions.component.html │ │ │ │ ├── transactions.component.scss │ │ │ │ ├── transactions.component.spec.ts │ │ │ │ └── transactions.component.ts │ │ ├── metamask │ │ │ └── meta-mask-connect │ │ │ │ ├── meta-mask-connect.component.html │ │ │ │ ├── meta-mask-connect.component.scss │ │ │ │ ├── meta-mask-connect.component.spec.ts │ │ │ │ └── meta-mask-connect.component.ts │ │ ├── search │ │ │ ├── address-result │ │ │ │ └── address-result │ │ │ │ │ ├── address-result.component.html │ │ │ │ │ ├── address-result.component.scss │ │ │ │ │ ├── address-result.component.spec.ts │ │ │ │ │ └── address-result.component.ts │ │ │ ├── block-result │ │ │ │ └── block-result │ │ │ │ │ ├── block-result.component.html │ │ │ │ │ ├── block-result.component.scss │ │ │ │ │ ├── block-result.component.spec.ts │ │ │ │ │ └── block-result.component.ts │ │ │ ├── empty-result │ │ │ │ ├── empty-result.component.html │ │ │ │ ├── empty-result.component.scss │ │ │ │ ├── empty-result.component.spec.ts │ │ │ │ └── empty-result.component.ts │ │ │ ├── ens-name-result │ │ │ │ └── ens-name-result │ │ │ │ │ ├── ens-name-result.component.html │ │ │ │ │ ├── ens-name-result.component.scss │ │ │ │ │ ├── ens-name-result.component.spec.ts │ │ │ │ │ └── ens-name-result.component.ts │ │ │ ├── search.component.html │ │ │ ├── search.component.scss │ │ │ ├── search.component.spec.ts │ │ │ ├── search.component.ts │ │ │ └── tx-result │ │ │ │ └── tx-result │ │ │ │ ├── tx-result.component.html │ │ │ │ ├── tx-result.component.scss │ │ │ │ ├── tx-result.component.spec.ts │ │ │ │ └── tx-result.component.ts │ │ ├── transaction │ │ │ ├── decoded-values │ │ │ │ ├── decoded-values.component.html │ │ │ │ ├── decoded-values.component.scss │ │ │ │ ├── decoded-values.component.spec.ts │ │ │ │ └── decoded-values.component.ts │ │ │ ├── details │ │ │ │ ├── details.component.html │ │ │ │ ├── details.component.scss │ │ │ │ ├── details.component.spec.ts │ │ │ │ └── details.component.ts │ │ │ ├── transaction-logs │ │ │ │ ├── transaction-logs.component.html │ │ │ │ ├── transaction-logs.component.scss │ │ │ │ ├── transaction-logs.component.spec.ts │ │ │ │ └── transaction-logs.component.ts │ │ │ └── transaction-method │ │ │ │ ├── transaction-method.component.html │ │ │ │ ├── transaction-method.component.scss │ │ │ │ ├── transaction-method.component.spec.ts │ │ │ │ └── transaction-method.component.ts │ │ └── ui │ │ │ ├── chips │ │ │ ├── general-chip │ │ │ │ ├── general-chip.component.html │ │ │ │ ├── general-chip.component.scss │ │ │ │ ├── general-chip.component.spec.ts │ │ │ │ └── general-chip.component.ts │ │ │ ├── transaction-fromto-chip │ │ │ │ ├── transaction-fromto-chip.component.html │ │ │ │ ├── transaction-fromto-chip.component.scss │ │ │ │ ├── transaction-fromto-chip.component.spec.ts │ │ │ │ └── transaction-fromto-chip.component.ts │ │ │ └── transaction-method-chip │ │ │ │ ├── transaction-method-chip.component.html │ │ │ │ ├── transaction-method-chip.component.scss │ │ │ │ ├── transaction-method-chip.component.spec.ts │ │ │ │ └── transaction-method-chip.component.ts │ │ │ ├── hash-icon │ │ │ ├── hash-icon.component.html │ │ │ ├── hash-icon.component.scss │ │ │ ├── hash-icon.component.spec.ts │ │ │ ├── hash-icon.component.ts │ │ │ └── jazzicon.d.ts │ │ │ ├── rich-tooltip │ │ │ ├── rich-tooltip.component.html │ │ │ ├── rich-tooltip.component.scss │ │ │ ├── rich-tooltip.component.spec.ts │ │ │ ├── rich-tooltip.component.ts │ │ │ └── richt-tooltip.directive.ts │ │ │ ├── text-area │ │ │ ├── text-area.component.html │ │ │ ├── text-area.component.scss │ │ │ ├── text-area.component.spec.ts │ │ │ └── text-area.component.ts │ │ │ └── token-icon │ │ │ ├── token-icon.component.html │ │ │ ├── token-icon.component.scss │ │ │ ├── token-icon.component.spec.ts │ │ │ └── token-icon.component.ts │ ├── pages │ │ ├── address │ │ │ ├── address.component.html │ │ │ ├── address.component.scss │ │ │ ├── address.component.spec.ts │ │ │ └── address.component.ts │ │ ├── block │ │ │ ├── block.component.html │ │ │ ├── block.component.scss │ │ │ ├── block.component.spec.ts │ │ │ └── block.component.ts │ │ ├── home │ │ │ ├── home.component.html │ │ │ ├── home.component.scss │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ │ └── transaction │ │ │ ├── transaction.component.html │ │ │ ├── transaction.component.scss │ │ │ ├── transaction.component.spec.ts │ │ │ └── transaction.component.ts │ ├── pipes │ │ ├── address │ │ │ ├── address.pipe.spec.ts │ │ │ └── address.pipe.ts │ │ ├── hextodate │ │ │ ├── hextodate.pipe.spec.ts │ │ │ └── hextodate.pipe.ts │ │ ├── hextoint │ │ │ ├── hextoint.pipe.spec.ts │ │ │ └── hextoint.pipe.ts │ │ ├── hextostring │ │ │ ├── hextostring.pipe.spec.ts │ │ │ └── hextostring.pipe.ts │ │ ├── shorthash │ │ │ ├── shorthash.pipe.spec.ts │ │ │ └── shorthash.pipe.ts │ │ ├── time-elapsed │ │ │ ├── time-elapsed.pipe.spec.ts │ │ │ └── time-elapsed.pipe.ts │ │ └── wei │ │ │ ├── wei.pipe.spec.ts │ │ │ └── wei.pipe.ts │ └── services │ │ ├── api │ │ ├── adapters │ │ │ ├── adapter.locator.ts │ │ │ ├── adapter.service.spec.ts │ │ │ ├── adapter.service.ts │ │ │ ├── basic-browser │ │ │ │ ├── basic-browser.service.spec.ts │ │ │ │ ├── basic-browser.service.ts │ │ │ │ ├── basic-browser.types.ts │ │ │ │ └── types │ │ │ │ │ ├── account.ts │ │ │ │ │ ├── block.ts │ │ │ │ │ └── transaction.ts │ │ │ └── web3 │ │ │ │ ├── web3-sbch.extension.ts │ │ │ │ ├── web3.connector.ts │ │ │ │ ├── web3.service.spec.ts │ │ │ │ └── web3.service.ts │ │ ├── node-api.service.spec.ts │ │ └── node-api.service.ts │ │ ├── helpers │ │ ├── event-decoder │ │ │ └── event-decoder.ts │ │ ├── sep20-helper │ │ │ ├── sep20-helper.service.spec.ts │ │ │ └── sep20-helper.service.ts │ │ └── util │ │ │ ├── util-helper.service.spec.ts │ │ │ └── util-helper.service.ts │ │ ├── metamask │ │ ├── metamask.service.spec.ts │ │ ├── metamask.service.ts │ │ └── metamask.types.ts │ │ ├── resources │ │ ├── address │ │ │ ├── address-resource.service.spec.ts │ │ │ └── address-resource.service.ts │ │ ├── block │ │ │ ├── block-resource.service.spec.ts │ │ │ └── block-resource.service.ts │ │ ├── contract │ │ │ ├── contract-resource.service.spec.ts │ │ │ └── contract-resource.service.ts │ │ ├── sep20 │ │ │ ├── sep20-resource.service.spec.ts │ │ │ └── sep20-resource.service.ts │ │ └── transaction │ │ │ ├── transaction-resource.service.spec.ts │ │ │ └── transaction-resource.service.ts │ │ ├── session.route-guard.ts │ │ ├── session.service.spec.ts │ │ ├── session.service.ts │ │ └── user │ │ ├── notification │ │ ├── notification.service.spec.ts │ │ └── notification.service.ts │ │ └── search │ │ ├── search.service.spec.ts │ │ └── search.service.ts ├── assets │ ├── .gitkeep │ ├── config │ │ ├── config-empty.json │ │ ├── config.json │ │ ├── contract-abi.json │ │ ├── contract.json │ │ └── nodes.json │ ├── fonts │ │ ├── Heebo-VariableFont_wght.ttf │ │ ├── RobotoMono-VariableFont_wght.ttf │ │ └── heebo │ │ │ ├── Heebo-VariableFont_wght.ttf │ │ │ ├── heebo-v10-latin-regular.eot │ │ │ ├── heebo-v10-latin-regular.svg │ │ │ ├── heebo-v10-latin-regular.ttf │ │ │ ├── heebo-v10-latin-regular.woff │ │ │ └── heebo-v10-latin-regular.woff2 │ └── images │ │ ├── MetaMask_Fox.svg │ │ ├── cube-svgrepo-com.svg │ │ ├── github_logo.svg │ │ ├── loader.svg │ │ ├── logo.png │ │ ├── logo_smartscan.png │ │ ├── logo_smartscan.svg │ │ ├── screenshot.png │ │ ├── telegram_logo.svg │ │ ├── text_logo.png │ │ ├── tokens │ │ ├── 0x0000000000000000000000000000000000002711.png │ │ ├── 0x048a4811d30089b5AA86e2E711A6A4aa67dbe275.png │ │ ├── 0x09A4CDb1569563fF277aC457cED35fe2551aEC1D.png │ │ ├── 0x0D8b355f9CEDeB612f2df4B39CdD87059A244567.png │ │ ├── 0x0b00366fBF7037E9d75E4A569ab27dAB84759302.png │ │ ├── 0x225FCa2A940cd5B18DFb168cD9B7f921C63d7B6E.png │ │ ├── 0x252fd94f3Fb53D3D62F4FEc708501ACd59A57e52.png │ │ ├── 0x265bd28d79400d55a1665707fa14a72978fa6043.png │ │ ├── 0x2a886b947d5a8f0e09408C9069914Fa44C06ed7e.png │ │ ├── 0x2f309b9D47b1Ce7f0ec30a26baB2dEaB8c4ea5E9.png │ │ ├── 0x3743eC0673453E5009310C727Ba4eaF7b3a1cc04.png │ │ ├── 0x3d13DaFcCA3a188DB340c81414239Bc2be312Ec9.png │ │ ├── 0x445B3712A09f8102Dd0c1ffb6B3b0dE4D3B643b7.png │ │ ├── 0x481De06DCA0198844faA36FCa04Db364e5c2f86C.png │ │ ├── 0x5B75B5eb28bEceDBB0A5A3cfeE6cdb4327E1856B.png │ │ ├── 0x5a3bB59F34D60E9EB5643Fb80C8D712275F6a96A.png │ │ ├── 0x5fA664f69c2A4A3ec94FaC3cBf7049BD9CA73129.png │ │ ├── 0x659F04F36e90143fCaC202D4BC36C699C078fC98.png │ │ ├── 0x6732E55Ac3ECa734F54C26Bd8DF4eED52Fb79a6E.png │ │ ├── 0x675E1d6FcE8C7cC091aED06A68D079489450338a.png │ │ ├── 0x71df12B5A718e0110991BB641cb379077d9e8Ef7.png │ │ ├── 0x73BE9c8Edf5e951c9a0762EA2b1DE8c8F38B5e91.png │ │ ├── 0x7642Df81b5BEAeEb331cc5A104bd13Ba68c34B91.png │ │ ├── 0x77CB87b57F54667978Eb1B199b28a0db8C8E1c0B.png │ │ ├── 0x7DF65F158126898725f262378538B60db543C11A.png │ │ ├── 0x7b2B3C5308ab5b2a1d9a94d20D35CCDf61e05b72.png │ │ ├── 0x7b82A3b1417Cd21E67f745917a80cC0f53277B8C.png │ │ ├── 0x7eBeAdb95724a006aFaF2F1f051B13F4eBEBf711.png │ │ ├── 0x80453ACDfE0073D6743B27D72e06F48777EeAd80.png │ │ ├── 0x8f66C730e383Bb412a9a3cB58178BAb2f432d194.png │ │ ├── 0x9288df32951386A8254aEaF80a66B78cCaf75b82.png │ │ ├── 0x98Dd7eC28FB43b3C4c770AE532417015fa939Dd3.png │ │ ├── 0x98Ff640323C059d8C4CB846976973FEEB0E068aA.png │ │ ├── 0xB24D7763516bca9656779d760be9a32490f46E27.png │ │ ├── 0xB5b1939ef0a3743d0Ae9282DbA62312b614A5Ac0.png │ │ ├── 0xC41C680c60309d4646379eD62020c534eB67b6f4.png │ │ ├── 0xF2d4D9c65C2d1080ac9e1895F6a32045741831Cd.png │ │ ├── 0xFf3ed63bf8bC9303eA0A7E1215bA2f82D569799e.png │ │ ├── 0xFfA2394B61D3dE16538a2Bbf3491297Cc5a7C79a.png │ │ ├── 0xc2100c9486B320B6db2Fc6D1f2BeAAB713fF069D.png │ │ ├── 0xc70c7718C7f1CCd906534C2c4a76914173EC2c44.png │ │ ├── 0xc8E09AEdB3c949a875e1FD571dC4b3E48FB221f0.png │ │ ├── 0xd2597a0bde31Ddec2440E256d8AA35eb63F1A9e3.png │ │ ├── 0xd8DE06b017857A821BA873D4F174B9580454f6c4.png │ │ └── 0xe11829a7d5d8806bb36e118461a1012588fafd89.png │ │ └── twitter_logo.svg ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── favicon.png ├── index.d.ts ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss ├── styles │ ├── global.scss │ ├── material-overrides.scss │ └── mixins.scss └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.firebase/hosting.ZGlzdFxzbWFydC1iY2gtZXhwbG9yZXI.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/.firebase/hosting.ZGlzdFxzbWFydC1iY2gtZXhwbG9yZXI.cache -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/angular.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/firebase.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/karma.conf.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/app/angular-material.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/angular-material.module.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/componenents/common/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/componenents/common/footer/footer.component.html -------------------------------------------------------------------------------- /src/app/componenents/common/footer/footer.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/componenents/common/footer/footer.component.scss -------------------------------------------------------------------------------- /src/app/componenents/common/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/componenents/common/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /src/app/componenents/common/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/componenents/common/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/components/address/event-log/event-log.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/address/event-log/event-log.component.html -------------------------------------------------------------------------------- /src/app/components/address/event-log/event-log.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/address/event-log/event-log.component.scss -------------------------------------------------------------------------------- /src/app/components/address/event-log/event-log.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/address/event-log/event-log.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/address/event-log/event-log.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/address/event-log/event-log.component.ts -------------------------------------------------------------------------------- /src/app/components/address/tokens/sep20-list/sep20-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/address/tokens/sep20-list/sep20-list.component.html -------------------------------------------------------------------------------- /src/app/components/address/tokens/sep20-list/sep20-list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/address/tokens/sep20-list/sep20-list.component.scss -------------------------------------------------------------------------------- /src/app/components/address/tokens/sep20-list/sep20-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/address/tokens/sep20-list/sep20-list.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/address/tokens/sep20-list/sep20-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/address/tokens/sep20-list/sep20-list.component.ts -------------------------------------------------------------------------------- /src/app/components/address/transactions/list/list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/address/transactions/list/list.component.html -------------------------------------------------------------------------------- /src/app/components/address/transactions/list/list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/address/transactions/list/list.component.scss -------------------------------------------------------------------------------- /src/app/components/address/transactions/list/list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/address/transactions/list/list.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/address/transactions/list/list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/address/transactions/list/list.component.ts -------------------------------------------------------------------------------- /src/app/components/block/information/information.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/block/information/information.component.html -------------------------------------------------------------------------------- /src/app/components/block/information/information.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/block/information/information.component.scss -------------------------------------------------------------------------------- /src/app/components/block/information/information.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/block/information/information.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/block/information/information.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/block/information/information.component.ts -------------------------------------------------------------------------------- /src/app/components/block/transactions/transactions.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/block/transactions/transactions.component.html -------------------------------------------------------------------------------- /src/app/components/block/transactions/transactions.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/block/transactions/transactions.component.scss -------------------------------------------------------------------------------- /src/app/components/block/transactions/transactions.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/block/transactions/transactions.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/block/transactions/transactions.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/block/transactions/transactions.component.ts -------------------------------------------------------------------------------- /src/app/components/common/top-navigation/top-navigation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/common/top-navigation/top-navigation.component.html -------------------------------------------------------------------------------- /src/app/components/common/top-navigation/top-navigation.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/common/top-navigation/top-navigation.component.scss -------------------------------------------------------------------------------- /src/app/components/common/top-navigation/top-navigation.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/common/top-navigation/top-navigation.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/common/top-navigation/top-navigation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/common/top-navigation/top-navigation.component.ts -------------------------------------------------------------------------------- /src/app/components/connect-to-node/connect-to-node.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/connect-to-node/connect-to-node.component.html -------------------------------------------------------------------------------- /src/app/components/connect-to-node/connect-to-node.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/connect-to-node/connect-to-node.component.scss -------------------------------------------------------------------------------- /src/app/components/connect-to-node/connect-to-node.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/connect-to-node/connect-to-node.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/connect-to-node/connect-to-node.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/connect-to-node/connect-to-node.component.ts -------------------------------------------------------------------------------- /src/app/components/height-ticker/height-ticker.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/height-ticker/height-ticker.component.html -------------------------------------------------------------------------------- /src/app/components/height-ticker/height-ticker.component.scss: -------------------------------------------------------------------------------- 1 | h5 { 2 | margin: 0; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/components/height-ticker/height-ticker.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/height-ticker/height-ticker.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/height-ticker/height-ticker.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/height-ticker/height-ticker.component.ts -------------------------------------------------------------------------------- /src/app/components/latest/blocks/blocks.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/latest/blocks/blocks.component.html -------------------------------------------------------------------------------- /src/app/components/latest/blocks/blocks.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/latest/blocks/blocks.component.scss -------------------------------------------------------------------------------- /src/app/components/latest/blocks/blocks.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/latest/blocks/blocks.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/latest/blocks/blocks.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/latest/blocks/blocks.component.ts -------------------------------------------------------------------------------- /src/app/components/latest/transactions/transactions.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/latest/transactions/transactions.component.html -------------------------------------------------------------------------------- /src/app/components/latest/transactions/transactions.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/latest/transactions/transactions.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/latest/transactions/transactions.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/latest/transactions/transactions.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/latest/transactions/transactions.component.ts -------------------------------------------------------------------------------- /src/app/components/metamask/meta-mask-connect/meta-mask-connect.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/metamask/meta-mask-connect/meta-mask-connect.component.html -------------------------------------------------------------------------------- /src/app/components/metamask/meta-mask-connect/meta-mask-connect.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/metamask/meta-mask-connect/meta-mask-connect.component.scss -------------------------------------------------------------------------------- /src/app/components/metamask/meta-mask-connect/meta-mask-connect.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/metamask/meta-mask-connect/meta-mask-connect.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/metamask/meta-mask-connect/meta-mask-connect.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/metamask/meta-mask-connect/meta-mask-connect.component.ts -------------------------------------------------------------------------------- /src/app/components/search/address-result/address-result/address-result.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/address-result/address-result/address-result.component.html -------------------------------------------------------------------------------- /src/app/components/search/address-result/address-result/address-result.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/address-result/address-result/address-result.component.scss -------------------------------------------------------------------------------- /src/app/components/search/address-result/address-result/address-result.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/address-result/address-result/address-result.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/search/address-result/address-result/address-result.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/address-result/address-result/address-result.component.ts -------------------------------------------------------------------------------- /src/app/components/search/block-result/block-result/block-result.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/block-result/block-result/block-result.component.html -------------------------------------------------------------------------------- /src/app/components/search/block-result/block-result/block-result.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/block-result/block-result/block-result.component.scss -------------------------------------------------------------------------------- /src/app/components/search/block-result/block-result/block-result.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/block-result/block-result/block-result.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/search/block-result/block-result/block-result.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/block-result/block-result/block-result.component.ts -------------------------------------------------------------------------------- /src/app/components/search/empty-result/empty-result.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/empty-result/empty-result.component.html -------------------------------------------------------------------------------- /src/app/components/search/empty-result/empty-result.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/empty-result/empty-result.component.scss -------------------------------------------------------------------------------- /src/app/components/search/empty-result/empty-result.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/empty-result/empty-result.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/search/empty-result/empty-result.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/empty-result/empty-result.component.ts -------------------------------------------------------------------------------- /src/app/components/search/ens-name-result/ens-name-result/ens-name-result.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/ens-name-result/ens-name-result/ens-name-result.component.html -------------------------------------------------------------------------------- /src/app/components/search/ens-name-result/ens-name-result/ens-name-result.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/ens-name-result/ens-name-result/ens-name-result.component.scss -------------------------------------------------------------------------------- /src/app/components/search/ens-name-result/ens-name-result/ens-name-result.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/ens-name-result/ens-name-result/ens-name-result.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/search/ens-name-result/ens-name-result/ens-name-result.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/ens-name-result/ens-name-result/ens-name-result.component.ts -------------------------------------------------------------------------------- /src/app/components/search/search.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/search.component.html -------------------------------------------------------------------------------- /src/app/components/search/search.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/search.component.scss -------------------------------------------------------------------------------- /src/app/components/search/search.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/search.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/search/search.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/search.component.ts -------------------------------------------------------------------------------- /src/app/components/search/tx-result/tx-result/tx-result.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/tx-result/tx-result/tx-result.component.html -------------------------------------------------------------------------------- /src/app/components/search/tx-result/tx-result/tx-result.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/tx-result/tx-result/tx-result.component.scss -------------------------------------------------------------------------------- /src/app/components/search/tx-result/tx-result/tx-result.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/tx-result/tx-result/tx-result.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/search/tx-result/tx-result/tx-result.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/search/tx-result/tx-result/tx-result.component.ts -------------------------------------------------------------------------------- /src/app/components/transaction/decoded-values/decoded-values.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/transaction/decoded-values/decoded-values.component.html -------------------------------------------------------------------------------- /src/app/components/transaction/decoded-values/decoded-values.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/transaction/decoded-values/decoded-values.component.scss -------------------------------------------------------------------------------- /src/app/components/transaction/decoded-values/decoded-values.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/transaction/decoded-values/decoded-values.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/transaction/decoded-values/decoded-values.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/transaction/decoded-values/decoded-values.component.ts -------------------------------------------------------------------------------- /src/app/components/transaction/details/details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/transaction/details/details.component.html -------------------------------------------------------------------------------- /src/app/components/transaction/details/details.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/transaction/details/details.component.scss -------------------------------------------------------------------------------- /src/app/components/transaction/details/details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/transaction/details/details.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/transaction/details/details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/transaction/details/details.component.ts -------------------------------------------------------------------------------- /src/app/components/transaction/transaction-logs/transaction-logs.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/transaction/transaction-logs/transaction-logs.component.html -------------------------------------------------------------------------------- /src/app/components/transaction/transaction-logs/transaction-logs.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/transaction/transaction-logs/transaction-logs.component.scss -------------------------------------------------------------------------------- /src/app/components/transaction/transaction-logs/transaction-logs.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/transaction/transaction-logs/transaction-logs.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/transaction/transaction-logs/transaction-logs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/transaction/transaction-logs/transaction-logs.component.ts -------------------------------------------------------------------------------- /src/app/components/transaction/transaction-method/transaction-method.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/transaction/transaction-method/transaction-method.component.html -------------------------------------------------------------------------------- /src/app/components/transaction/transaction-method/transaction-method.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/transaction/transaction-method/transaction-method.component.scss -------------------------------------------------------------------------------- /src/app/components/transaction/transaction-method/transaction-method.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/transaction/transaction-method/transaction-method.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/transaction/transaction-method/transaction-method.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/transaction/transaction-method/transaction-method.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/chips/general-chip/general-chip.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/chips/general-chip/general-chip.component.html -------------------------------------------------------------------------------- /src/app/components/ui/chips/general-chip/general-chip.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/chips/general-chip/general-chip.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/chips/general-chip/general-chip.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/chips/general-chip/general-chip.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/ui/chips/general-chip/general-chip.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/chips/general-chip/general-chip.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/chips/transaction-fromto-chip/transaction-fromto-chip.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/chips/transaction-fromto-chip/transaction-fromto-chip.component.html -------------------------------------------------------------------------------- /src/app/components/ui/chips/transaction-fromto-chip/transaction-fromto-chip.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/chips/transaction-fromto-chip/transaction-fromto-chip.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/chips/transaction-fromto-chip/transaction-fromto-chip.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/chips/transaction-fromto-chip/transaction-fromto-chip.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/ui/chips/transaction-fromto-chip/transaction-fromto-chip.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/chips/transaction-fromto-chip/transaction-fromto-chip.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/chips/transaction-method-chip/transaction-method-chip.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/chips/transaction-method-chip/transaction-method-chip.component.html -------------------------------------------------------------------------------- /src/app/components/ui/chips/transaction-method-chip/transaction-method-chip.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/chips/transaction-method-chip/transaction-method-chip.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/chips/transaction-method-chip/transaction-method-chip.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/chips/transaction-method-chip/transaction-method-chip.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/ui/chips/transaction-method-chip/transaction-method-chip.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/chips/transaction-method-chip/transaction-method-chip.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/hash-icon/hash-icon.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/hash-icon/hash-icon.component.html -------------------------------------------------------------------------------- /src/app/components/ui/hash-icon/hash-icon.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/ui/hash-icon/hash-icon.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/hash-icon/hash-icon.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/ui/hash-icon/hash-icon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/hash-icon/hash-icon.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/hash-icon/jazzicon.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@metamask/jazzicon' 2 | -------------------------------------------------------------------------------- /src/app/components/ui/rich-tooltip/rich-tooltip.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/rich-tooltip/rich-tooltip.component.html -------------------------------------------------------------------------------- /src/app/components/ui/rich-tooltip/rich-tooltip.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/rich-tooltip/rich-tooltip.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/rich-tooltip/rich-tooltip.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/rich-tooltip/rich-tooltip.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/ui/rich-tooltip/rich-tooltip.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/rich-tooltip/rich-tooltip.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/rich-tooltip/richt-tooltip.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/rich-tooltip/richt-tooltip.directive.ts -------------------------------------------------------------------------------- /src/app/components/ui/text-area/text-area.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/text-area/text-area.component.html -------------------------------------------------------------------------------- /src/app/components/ui/text-area/text-area.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/text-area/text-area.component.scss -------------------------------------------------------------------------------- /src/app/components/ui/text-area/text-area.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/text-area/text-area.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/ui/text-area/text-area.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/text-area/text-area.component.ts -------------------------------------------------------------------------------- /src/app/components/ui/token-icon/token-icon.component.html: -------------------------------------------------------------------------------- 1 |
token-icon works!
2 | -------------------------------------------------------------------------------- /src/app/components/ui/token-icon/token-icon.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/ui/token-icon/token-icon.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/token-icon/token-icon.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/ui/token-icon/token-icon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/components/ui/token-icon/token-icon.component.ts -------------------------------------------------------------------------------- /src/app/pages/address/address.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pages/address/address.component.html -------------------------------------------------------------------------------- /src/app/pages/address/address.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pages/address/address.component.scss -------------------------------------------------------------------------------- /src/app/pages/address/address.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pages/address/address.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/address/address.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pages/address/address.component.ts -------------------------------------------------------------------------------- /src/app/pages/block/block.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pages/block/block.component.html -------------------------------------------------------------------------------- /src/app/pages/block/block.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/pages/block/block.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pages/block/block.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/block/block.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pages/block/block.component.ts -------------------------------------------------------------------------------- /src/app/pages/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pages/home/home.component.html -------------------------------------------------------------------------------- /src/app/pages/home/home.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pages/home/home.component.scss -------------------------------------------------------------------------------- /src/app/pages/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pages/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pages/home/home.component.ts -------------------------------------------------------------------------------- /src/app/pages/transaction/transaction.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pages/transaction/transaction.component.html -------------------------------------------------------------------------------- /src/app/pages/transaction/transaction.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pages/transaction/transaction.component.scss -------------------------------------------------------------------------------- /src/app/pages/transaction/transaction.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pages/transaction/transaction.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/transaction/transaction.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pages/transaction/transaction.component.ts -------------------------------------------------------------------------------- /src/app/pipes/address/address.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pipes/address/address.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/pipes/address/address.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pipes/address/address.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/hextodate/hextodate.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pipes/hextodate/hextodate.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/pipes/hextodate/hextodate.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pipes/hextodate/hextodate.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/hextoint/hextoint.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pipes/hextoint/hextoint.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/pipes/hextoint/hextoint.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pipes/hextoint/hextoint.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/hextostring/hextostring.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pipes/hextostring/hextostring.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/pipes/hextostring/hextostring.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pipes/hextostring/hextostring.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/shorthash/shorthash.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pipes/shorthash/shorthash.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/pipes/shorthash/shorthash.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pipes/shorthash/shorthash.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/time-elapsed/time-elapsed.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pipes/time-elapsed/time-elapsed.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/pipes/time-elapsed/time-elapsed.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pipes/time-elapsed/time-elapsed.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/wei/wei.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pipes/wei/wei.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/pipes/wei/wei.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/pipes/wei/wei.pipe.ts -------------------------------------------------------------------------------- /src/app/services/api/adapters/adapter.locator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/api/adapters/adapter.locator.ts -------------------------------------------------------------------------------- /src/app/services/api/adapters/adapter.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/api/adapters/adapter.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/api/adapters/adapter.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/api/adapters/adapter.service.ts -------------------------------------------------------------------------------- /src/app/services/api/adapters/basic-browser/basic-browser.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/api/adapters/basic-browser/basic-browser.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/api/adapters/basic-browser/basic-browser.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/api/adapters/basic-browser/basic-browser.service.ts -------------------------------------------------------------------------------- /src/app/services/api/adapters/basic-browser/basic-browser.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/api/adapters/basic-browser/basic-browser.types.ts -------------------------------------------------------------------------------- /src/app/services/api/adapters/basic-browser/types/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/api/adapters/basic-browser/types/account.ts -------------------------------------------------------------------------------- /src/app/services/api/adapters/basic-browser/types/block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/api/adapters/basic-browser/types/block.ts -------------------------------------------------------------------------------- /src/app/services/api/adapters/basic-browser/types/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/api/adapters/basic-browser/types/transaction.ts -------------------------------------------------------------------------------- /src/app/services/api/adapters/web3/web3-sbch.extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/api/adapters/web3/web3-sbch.extension.ts -------------------------------------------------------------------------------- /src/app/services/api/adapters/web3/web3.connector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/api/adapters/web3/web3.connector.ts -------------------------------------------------------------------------------- /src/app/services/api/adapters/web3/web3.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/api/adapters/web3/web3.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/api/adapters/web3/web3.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/api/adapters/web3/web3.service.ts -------------------------------------------------------------------------------- /src/app/services/api/node-api.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/api/node-api.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/api/node-api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/api/node-api.service.ts -------------------------------------------------------------------------------- /src/app/services/helpers/event-decoder/event-decoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/helpers/event-decoder/event-decoder.ts -------------------------------------------------------------------------------- /src/app/services/helpers/sep20-helper/sep20-helper.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/helpers/sep20-helper/sep20-helper.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/helpers/sep20-helper/sep20-helper.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/helpers/sep20-helper/sep20-helper.service.ts -------------------------------------------------------------------------------- /src/app/services/helpers/util/util-helper.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/helpers/util/util-helper.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/helpers/util/util-helper.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/helpers/util/util-helper.service.ts -------------------------------------------------------------------------------- /src/app/services/metamask/metamask.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/metamask/metamask.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/metamask/metamask.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/metamask/metamask.service.ts -------------------------------------------------------------------------------- /src/app/services/metamask/metamask.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/metamask/metamask.types.ts -------------------------------------------------------------------------------- /src/app/services/resources/address/address-resource.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/resources/address/address-resource.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/resources/address/address-resource.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/resources/address/address-resource.service.ts -------------------------------------------------------------------------------- /src/app/services/resources/block/block-resource.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/resources/block/block-resource.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/resources/block/block-resource.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/resources/block/block-resource.service.ts -------------------------------------------------------------------------------- /src/app/services/resources/contract/contract-resource.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/resources/contract/contract-resource.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/resources/contract/contract-resource.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/resources/contract/contract-resource.service.ts -------------------------------------------------------------------------------- /src/app/services/resources/sep20/sep20-resource.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/resources/sep20/sep20-resource.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/resources/sep20/sep20-resource.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/resources/sep20/sep20-resource.service.ts -------------------------------------------------------------------------------- /src/app/services/resources/transaction/transaction-resource.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/resources/transaction/transaction-resource.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/resources/transaction/transaction-resource.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/resources/transaction/transaction-resource.service.ts -------------------------------------------------------------------------------- /src/app/services/session.route-guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/session.route-guard.ts -------------------------------------------------------------------------------- /src/app/services/session.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/session.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/session.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/session.service.ts -------------------------------------------------------------------------------- /src/app/services/user/notification/notification.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/user/notification/notification.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/user/notification/notification.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/user/notification/notification.service.ts -------------------------------------------------------------------------------- /src/app/services/user/search/search.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/user/search/search.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/user/search/search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/app/services/user/search/search.service.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/config/config-empty.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/assets/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/config/config.json -------------------------------------------------------------------------------- /src/assets/config/contract-abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/config/contract-abi.json -------------------------------------------------------------------------------- /src/assets/config/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/config/contract.json -------------------------------------------------------------------------------- /src/assets/config/nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/config/nodes.json -------------------------------------------------------------------------------- /src/assets/fonts/Heebo-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/fonts/Heebo-VariableFont_wght.ttf -------------------------------------------------------------------------------- /src/assets/fonts/RobotoMono-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/fonts/RobotoMono-VariableFont_wght.ttf -------------------------------------------------------------------------------- /src/assets/fonts/heebo/Heebo-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/fonts/heebo/Heebo-VariableFont_wght.ttf -------------------------------------------------------------------------------- /src/assets/fonts/heebo/heebo-v10-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/fonts/heebo/heebo-v10-latin-regular.eot -------------------------------------------------------------------------------- /src/assets/fonts/heebo/heebo-v10-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/fonts/heebo/heebo-v10-latin-regular.svg -------------------------------------------------------------------------------- /src/assets/fonts/heebo/heebo-v10-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/fonts/heebo/heebo-v10-latin-regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/heebo/heebo-v10-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/fonts/heebo/heebo-v10-latin-regular.woff -------------------------------------------------------------------------------- /src/assets/fonts/heebo/heebo-v10-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/fonts/heebo/heebo-v10-latin-regular.woff2 -------------------------------------------------------------------------------- /src/assets/images/MetaMask_Fox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/MetaMask_Fox.svg -------------------------------------------------------------------------------- /src/assets/images/cube-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/cube-svgrepo-com.svg -------------------------------------------------------------------------------- /src/assets/images/github_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/github_logo.svg -------------------------------------------------------------------------------- /src/assets/images/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/loader.svg -------------------------------------------------------------------------------- /src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/logo.png -------------------------------------------------------------------------------- /src/assets/images/logo_smartscan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/logo_smartscan.png -------------------------------------------------------------------------------- /src/assets/images/logo_smartscan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/logo_smartscan.svg -------------------------------------------------------------------------------- /src/assets/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/screenshot.png -------------------------------------------------------------------------------- /src/assets/images/telegram_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/telegram_logo.svg -------------------------------------------------------------------------------- /src/assets/images/text_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/text_logo.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x0000000000000000000000000000000000002711.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x0000000000000000000000000000000000002711.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x048a4811d30089b5AA86e2E711A6A4aa67dbe275.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x048a4811d30089b5AA86e2E711A6A4aa67dbe275.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x09A4CDb1569563fF277aC457cED35fe2551aEC1D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x09A4CDb1569563fF277aC457cED35fe2551aEC1D.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x0D8b355f9CEDeB612f2df4B39CdD87059A244567.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x0D8b355f9CEDeB612f2df4B39CdD87059A244567.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x0b00366fBF7037E9d75E4A569ab27dAB84759302.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x0b00366fBF7037E9d75E4A569ab27dAB84759302.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x225FCa2A940cd5B18DFb168cD9B7f921C63d7B6E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x225FCa2A940cd5B18DFb168cD9B7f921C63d7B6E.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x252fd94f3Fb53D3D62F4FEc708501ACd59A57e52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x252fd94f3Fb53D3D62F4FEc708501ACd59A57e52.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x265bd28d79400d55a1665707fa14a72978fa6043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x265bd28d79400d55a1665707fa14a72978fa6043.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x2a886b947d5a8f0e09408C9069914Fa44C06ed7e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x2a886b947d5a8f0e09408C9069914Fa44C06ed7e.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x2f309b9D47b1Ce7f0ec30a26baB2dEaB8c4ea5E9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x2f309b9D47b1Ce7f0ec30a26baB2dEaB8c4ea5E9.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x3743eC0673453E5009310C727Ba4eaF7b3a1cc04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x3743eC0673453E5009310C727Ba4eaF7b3a1cc04.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x3d13DaFcCA3a188DB340c81414239Bc2be312Ec9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x3d13DaFcCA3a188DB340c81414239Bc2be312Ec9.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x445B3712A09f8102Dd0c1ffb6B3b0dE4D3B643b7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x445B3712A09f8102Dd0c1ffb6B3b0dE4D3B643b7.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x481De06DCA0198844faA36FCa04Db364e5c2f86C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x481De06DCA0198844faA36FCa04Db364e5c2f86C.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x5B75B5eb28bEceDBB0A5A3cfeE6cdb4327E1856B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x5B75B5eb28bEceDBB0A5A3cfeE6cdb4327E1856B.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x5a3bB59F34D60E9EB5643Fb80C8D712275F6a96A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x5a3bB59F34D60E9EB5643Fb80C8D712275F6a96A.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x5fA664f69c2A4A3ec94FaC3cBf7049BD9CA73129.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x5fA664f69c2A4A3ec94FaC3cBf7049BD9CA73129.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x659F04F36e90143fCaC202D4BC36C699C078fC98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x659F04F36e90143fCaC202D4BC36C699C078fC98.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x6732E55Ac3ECa734F54C26Bd8DF4eED52Fb79a6E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x6732E55Ac3ECa734F54C26Bd8DF4eED52Fb79a6E.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x675E1d6FcE8C7cC091aED06A68D079489450338a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x675E1d6FcE8C7cC091aED06A68D079489450338a.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x71df12B5A718e0110991BB641cb379077d9e8Ef7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x71df12B5A718e0110991BB641cb379077d9e8Ef7.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x73BE9c8Edf5e951c9a0762EA2b1DE8c8F38B5e91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x73BE9c8Edf5e951c9a0762EA2b1DE8c8F38B5e91.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x7642Df81b5BEAeEb331cc5A104bd13Ba68c34B91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x7642Df81b5BEAeEb331cc5A104bd13Ba68c34B91.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x77CB87b57F54667978Eb1B199b28a0db8C8E1c0B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x77CB87b57F54667978Eb1B199b28a0db8C8E1c0B.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x7DF65F158126898725f262378538B60db543C11A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x7DF65F158126898725f262378538B60db543C11A.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x7b2B3C5308ab5b2a1d9a94d20D35CCDf61e05b72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x7b2B3C5308ab5b2a1d9a94d20D35CCDf61e05b72.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x7b82A3b1417Cd21E67f745917a80cC0f53277B8C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x7b82A3b1417Cd21E67f745917a80cC0f53277B8C.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x7eBeAdb95724a006aFaF2F1f051B13F4eBEBf711.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x7eBeAdb95724a006aFaF2F1f051B13F4eBEBf711.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x80453ACDfE0073D6743B27D72e06F48777EeAd80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x80453ACDfE0073D6743B27D72e06F48777EeAd80.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x8f66C730e383Bb412a9a3cB58178BAb2f432d194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x8f66C730e383Bb412a9a3cB58178BAb2f432d194.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x9288df32951386A8254aEaF80a66B78cCaf75b82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x9288df32951386A8254aEaF80a66B78cCaf75b82.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x98Dd7eC28FB43b3C4c770AE532417015fa939Dd3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x98Dd7eC28FB43b3C4c770AE532417015fa939Dd3.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0x98Ff640323C059d8C4CB846976973FEEB0E068aA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0x98Ff640323C059d8C4CB846976973FEEB0E068aA.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0xB24D7763516bca9656779d760be9a32490f46E27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0xB24D7763516bca9656779d760be9a32490f46E27.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0xB5b1939ef0a3743d0Ae9282DbA62312b614A5Ac0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0xB5b1939ef0a3743d0Ae9282DbA62312b614A5Ac0.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0xC41C680c60309d4646379eD62020c534eB67b6f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0xC41C680c60309d4646379eD62020c534eB67b6f4.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0xF2d4D9c65C2d1080ac9e1895F6a32045741831Cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0xF2d4D9c65C2d1080ac9e1895F6a32045741831Cd.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0xFf3ed63bf8bC9303eA0A7E1215bA2f82D569799e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0xFf3ed63bf8bC9303eA0A7E1215bA2f82D569799e.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0xFfA2394B61D3dE16538a2Bbf3491297Cc5a7C79a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0xFfA2394B61D3dE16538a2Bbf3491297Cc5a7C79a.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0xc2100c9486B320B6db2Fc6D1f2BeAAB713fF069D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0xc2100c9486B320B6db2Fc6D1f2BeAAB713fF069D.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0xc70c7718C7f1CCd906534C2c4a76914173EC2c44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0xc70c7718C7f1CCd906534C2c4a76914173EC2c44.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0xc8E09AEdB3c949a875e1FD571dC4b3E48FB221f0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0xc8E09AEdB3c949a875e1FD571dC4b3E48FB221f0.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0xd2597a0bde31Ddec2440E256d8AA35eb63F1A9e3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0xd2597a0bde31Ddec2440E256d8AA35eb63F1A9e3.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0xd8DE06b017857A821BA873D4F174B9580454f6c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0xd8DE06b017857A821BA873D4F174B9580454f6c4.png -------------------------------------------------------------------------------- /src/assets/images/tokens/0xe11829a7d5d8806bb36e118461a1012588fafd89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/tokens/0xe11829a7d5d8806bb36e118461a1012588fafd89.png -------------------------------------------------------------------------------- /src/assets/images/twitter_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/assets/images/twitter_logo.svg -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/favicon.png -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'ethereum-checksum-address'; 2 | -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/styles/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/styles/global.scss -------------------------------------------------------------------------------- /src/styles/material-overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/styles/material-overrides.scss -------------------------------------------------------------------------------- /src/styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/styles/mixins.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jay-bch/smartbch-explorer/HEAD/tslint.json --------------------------------------------------------------------------------