├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── deploy-dev.yml │ └── deploy-prod.yml ├── .gitignore ├── .postcssrc.json ├── .prettierrc.json ├── DEVELOPER.md ├── LICENCE.md ├── README.md ├── angular.json ├── eslint.config.js ├── ngsw-config.json ├── package.json ├── src ├── app │ ├── app.component.ts │ ├── app.config.ts │ ├── app.routes.ts │ ├── components │ │ ├── bit-set-controller │ │ │ ├── bit-set-controller.component.html │ │ │ └── bit-set-controller.component.ts │ │ ├── bit-set │ │ │ ├── bit-set.component.ts │ │ │ └── bit-set.worker.ts │ │ ├── connect-wallet-guard │ │ │ └── connect-wallet-guard.component.ts │ │ ├── ether-tran-status │ │ │ └── ether-tx-status.component.ts │ │ ├── load-bit-set-dialog │ │ │ ├── load-bit-set-dialog.component.html │ │ │ └── load-bit-set-dialog.component.ts │ │ ├── menu-bar │ │ │ ├── buttons │ │ │ │ ├── connect-button.component.ts │ │ │ │ ├── logo-button.component.ts │ │ │ │ ├── network-switch-button.component.ts │ │ │ │ └── theme-button.component.ts │ │ │ └── menu-bar.component.ts │ │ ├── nft │ │ │ ├── nft-increasable-power │ │ │ │ └── nft-increasable-power.component.ts │ │ │ ├── nft-info │ │ │ │ └── nft-info.component.ts │ │ │ └── nft-list │ │ │ │ ├── nft-list.component.html │ │ │ │ └── nft-list.component.ts │ │ ├── popover-help-button │ │ │ └── popover-help-button.component.ts │ │ └── vkey-input │ │ │ └── vkey-input.component.ts │ ├── directives │ │ └── long-press.directive.ts │ ├── models │ │ └── eth-account.ts │ ├── pages │ │ ├── admin │ │ │ ├── actions │ │ │ │ ├── contract-info.component.ts │ │ │ │ ├── token-disable-minting.component.ts │ │ │ │ ├── token-mint.component.ts │ │ │ │ ├── token-ownership-transfer.component.ts │ │ │ │ ├── token-sale-set-price.component.ts │ │ │ │ ├── token-sale-transfer-ownership.component.ts │ │ │ │ ├── token-sale-withdraw-erc20.component.ts │ │ │ │ └── token-sale-withdraw-eth.component.ts │ │ │ └── admin.component.ts │ │ ├── contact │ │ │ ├── contact.component.html │ │ │ └── contact.component.ts │ │ ├── eth-addr-generator │ │ │ ├── eth-addr-generator.component.ts │ │ │ ├── eth-addr-history │ │ │ │ ├── eth-addr-history-grid-header.component.ts │ │ │ │ └── eth-addr-history.component.ts │ │ │ └── eth-info │ │ │ │ └── eth-info.component.ts │ │ ├── nft │ │ │ ├── about-nft │ │ │ │ ├── about-nft.component.html │ │ │ │ └── about-nft.component.ts │ │ │ ├── find-rare │ │ │ │ ├── find-rare.component.ts │ │ │ │ ├── mint-button-renderer.component.ts │ │ │ │ ├── rare-js.worker.ts │ │ │ │ └── rare-wasm.worker.ts │ │ │ ├── mint-nft │ │ │ │ └── mint-nft.component.ts │ │ │ ├── nft.component.ts │ │ │ ├── view-all-nfts │ │ │ │ └── view-all-nfts.component.ts │ │ │ ├── view-my-nfts │ │ │ │ └── view-my-nfts.component.ts │ │ │ └── view-nft │ │ │ │ └── view-nft.component.ts │ │ ├── privacy-policy │ │ │ ├── privacy-policy.component.html │ │ │ └── privacy-policy.component.ts │ │ ├── source-code │ │ │ ├── source-code.component.html │ │ │ └── source-code.component.ts │ │ ├── terms-of-service │ │ │ ├── terms-of-service.component.html │ │ │ └── terms-of-service.component.ts │ │ ├── token │ │ │ ├── about-token │ │ │ │ ├── about-token.component.html │ │ │ │ └── about-token.component.ts │ │ │ ├── acquire-token │ │ │ │ └── acquire-token.component.ts │ │ │ ├── burn-token │ │ │ │ └── burn-token.component.ts │ │ │ └── token.component.ts │ │ └── tools │ │ │ ├── tools.component.ts │ │ │ └── vanity-address-generator │ │ │ ├── components │ │ │ ├── address-found.component.ts │ │ │ ├── advanced.component.ts │ │ │ ├── info.component.ts │ │ │ └── prefix-suffix.component.ts │ │ │ ├── vanity-address-generator.component.ts │ │ │ └── vanity.worker.ts │ ├── pipes │ │ ├── big-int-to-eth-address.pipe.ts │ │ ├── duration.pipe.ts │ │ ├── international-date-time.pipe.ts │ │ ├── localized-date-time.pipe.ts │ │ └── wei-to-eth.pipe.ts │ ├── services │ │ ├── analytics.service.ts │ │ ├── chains.service.ts │ │ ├── network-status.service.ts │ │ ├── nft-contract.service.ts │ │ ├── opensea.service.ts │ │ ├── theme.service.ts │ │ ├── token-contract.service.ts │ │ ├── token-sale-contract.service.ts │ │ ├── tx-balance.service.ts │ │ └── wallet.service.ts │ ├── strategies │ │ └── custom-route-reuse-strategy.ts │ └── utils │ │ ├── array-utils.ts │ │ ├── async-utils.ts │ │ ├── big-int-utils.ts │ │ ├── error-utils.ts │ │ ├── eth-utils.ts │ │ └── wasm-utils.ts ├── assets │ ├── .well-known │ │ └── walletconnect.txt │ ├── azure │ │ └── staticwebapp.config.json │ ├── icons │ │ ├── 100x100.svg │ │ ├── 128x128.png │ │ ├── 144x144.png │ │ ├── 152x152.png │ │ ├── 180x180.png │ │ ├── 192x192.png │ │ ├── 384x384.png │ │ ├── 48x48.png │ │ ├── 512x512.png │ │ ├── 72x72.png │ │ └── 96x96.png │ ├── nft │ │ ├── 2800x1050.png │ │ ├── 32x32.svg │ │ ├── 350x350.png │ │ └── 600x400.png │ └── token │ │ ├── 256x256.png │ │ ├── 32x32.svg │ │ └── 64x64.png ├── environments │ ├── config.ts │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── pwa.json ├── robots.txt ├── styles.css └── types │ └── global.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tsconfig.worker.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/deploy-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/.github/workflows/deploy-dev.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/.github/workflows/deploy-prod.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/.postcssrc.json -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /DEVELOPER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/DEVELOPER.md -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/angular.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/eslint.config.js -------------------------------------------------------------------------------- /ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/ngsw-config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/app.config.ts -------------------------------------------------------------------------------- /src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/app.routes.ts -------------------------------------------------------------------------------- /src/app/components/bit-set-controller/bit-set-controller.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/components/bit-set-controller/bit-set-controller.component.html -------------------------------------------------------------------------------- /src/app/components/bit-set-controller/bit-set-controller.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/components/bit-set-controller/bit-set-controller.component.ts -------------------------------------------------------------------------------- /src/app/components/bit-set/bit-set.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/components/bit-set/bit-set.component.ts -------------------------------------------------------------------------------- /src/app/components/bit-set/bit-set.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/components/bit-set/bit-set.worker.ts -------------------------------------------------------------------------------- /src/app/components/connect-wallet-guard/connect-wallet-guard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/components/connect-wallet-guard/connect-wallet-guard.component.ts -------------------------------------------------------------------------------- /src/app/components/ether-tran-status/ether-tx-status.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/components/ether-tran-status/ether-tx-status.component.ts -------------------------------------------------------------------------------- /src/app/components/load-bit-set-dialog/load-bit-set-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/components/load-bit-set-dialog/load-bit-set-dialog.component.html -------------------------------------------------------------------------------- /src/app/components/load-bit-set-dialog/load-bit-set-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/components/load-bit-set-dialog/load-bit-set-dialog.component.ts -------------------------------------------------------------------------------- /src/app/components/menu-bar/buttons/connect-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/components/menu-bar/buttons/connect-button.component.ts -------------------------------------------------------------------------------- /src/app/components/menu-bar/buttons/logo-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/components/menu-bar/buttons/logo-button.component.ts -------------------------------------------------------------------------------- /src/app/components/menu-bar/buttons/network-switch-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/components/menu-bar/buttons/network-switch-button.component.ts -------------------------------------------------------------------------------- /src/app/components/menu-bar/buttons/theme-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/components/menu-bar/buttons/theme-button.component.ts -------------------------------------------------------------------------------- /src/app/components/menu-bar/menu-bar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/components/menu-bar/menu-bar.component.ts -------------------------------------------------------------------------------- /src/app/components/nft/nft-increasable-power/nft-increasable-power.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/components/nft/nft-increasable-power/nft-increasable-power.component.ts -------------------------------------------------------------------------------- /src/app/components/nft/nft-info/nft-info.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/components/nft/nft-info/nft-info.component.ts -------------------------------------------------------------------------------- /src/app/components/nft/nft-list/nft-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/components/nft/nft-list/nft-list.component.html -------------------------------------------------------------------------------- /src/app/components/nft/nft-list/nft-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/components/nft/nft-list/nft-list.component.ts -------------------------------------------------------------------------------- /src/app/components/popover-help-button/popover-help-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/components/popover-help-button/popover-help-button.component.ts -------------------------------------------------------------------------------- /src/app/components/vkey-input/vkey-input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/components/vkey-input/vkey-input.component.ts -------------------------------------------------------------------------------- /src/app/directives/long-press.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/directives/long-press.directive.ts -------------------------------------------------------------------------------- /src/app/models/eth-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/models/eth-account.ts -------------------------------------------------------------------------------- /src/app/pages/admin/actions/contract-info.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/admin/actions/contract-info.component.ts -------------------------------------------------------------------------------- /src/app/pages/admin/actions/token-disable-minting.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/admin/actions/token-disable-minting.component.ts -------------------------------------------------------------------------------- /src/app/pages/admin/actions/token-mint.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/admin/actions/token-mint.component.ts -------------------------------------------------------------------------------- /src/app/pages/admin/actions/token-ownership-transfer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/admin/actions/token-ownership-transfer.component.ts -------------------------------------------------------------------------------- /src/app/pages/admin/actions/token-sale-set-price.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/admin/actions/token-sale-set-price.component.ts -------------------------------------------------------------------------------- /src/app/pages/admin/actions/token-sale-transfer-ownership.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/admin/actions/token-sale-transfer-ownership.component.ts -------------------------------------------------------------------------------- /src/app/pages/admin/actions/token-sale-withdraw-erc20.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/admin/actions/token-sale-withdraw-erc20.component.ts -------------------------------------------------------------------------------- /src/app/pages/admin/actions/token-sale-withdraw-eth.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/admin/actions/token-sale-withdraw-eth.component.ts -------------------------------------------------------------------------------- /src/app/pages/admin/admin.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/admin/admin.component.ts -------------------------------------------------------------------------------- /src/app/pages/contact/contact.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/contact/contact.component.html -------------------------------------------------------------------------------- /src/app/pages/contact/contact.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/contact/contact.component.ts -------------------------------------------------------------------------------- /src/app/pages/eth-addr-generator/eth-addr-generator.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/eth-addr-generator/eth-addr-generator.component.ts -------------------------------------------------------------------------------- /src/app/pages/eth-addr-generator/eth-addr-history/eth-addr-history-grid-header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/eth-addr-generator/eth-addr-history/eth-addr-history-grid-header.component.ts -------------------------------------------------------------------------------- /src/app/pages/eth-addr-generator/eth-addr-history/eth-addr-history.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/eth-addr-generator/eth-addr-history/eth-addr-history.component.ts -------------------------------------------------------------------------------- /src/app/pages/eth-addr-generator/eth-info/eth-info.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/eth-addr-generator/eth-info/eth-info.component.ts -------------------------------------------------------------------------------- /src/app/pages/nft/about-nft/about-nft.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/nft/about-nft/about-nft.component.html -------------------------------------------------------------------------------- /src/app/pages/nft/about-nft/about-nft.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/nft/about-nft/about-nft.component.ts -------------------------------------------------------------------------------- /src/app/pages/nft/find-rare/find-rare.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/nft/find-rare/find-rare.component.ts -------------------------------------------------------------------------------- /src/app/pages/nft/find-rare/mint-button-renderer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/nft/find-rare/mint-button-renderer.component.ts -------------------------------------------------------------------------------- /src/app/pages/nft/find-rare/rare-js.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/nft/find-rare/rare-js.worker.ts -------------------------------------------------------------------------------- /src/app/pages/nft/find-rare/rare-wasm.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/nft/find-rare/rare-wasm.worker.ts -------------------------------------------------------------------------------- /src/app/pages/nft/mint-nft/mint-nft.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/nft/mint-nft/mint-nft.component.ts -------------------------------------------------------------------------------- /src/app/pages/nft/nft.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/nft/nft.component.ts -------------------------------------------------------------------------------- /src/app/pages/nft/view-all-nfts/view-all-nfts.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/nft/view-all-nfts/view-all-nfts.component.ts -------------------------------------------------------------------------------- /src/app/pages/nft/view-my-nfts/view-my-nfts.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/nft/view-my-nfts/view-my-nfts.component.ts -------------------------------------------------------------------------------- /src/app/pages/nft/view-nft/view-nft.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/nft/view-nft/view-nft.component.ts -------------------------------------------------------------------------------- /src/app/pages/privacy-policy/privacy-policy.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/privacy-policy/privacy-policy.component.html -------------------------------------------------------------------------------- /src/app/pages/privacy-policy/privacy-policy.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/privacy-policy/privacy-policy.component.ts -------------------------------------------------------------------------------- /src/app/pages/source-code/source-code.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/source-code/source-code.component.html -------------------------------------------------------------------------------- /src/app/pages/source-code/source-code.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/source-code/source-code.component.ts -------------------------------------------------------------------------------- /src/app/pages/terms-of-service/terms-of-service.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/terms-of-service/terms-of-service.component.html -------------------------------------------------------------------------------- /src/app/pages/terms-of-service/terms-of-service.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/terms-of-service/terms-of-service.component.ts -------------------------------------------------------------------------------- /src/app/pages/token/about-token/about-token.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/token/about-token/about-token.component.html -------------------------------------------------------------------------------- /src/app/pages/token/about-token/about-token.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/token/about-token/about-token.component.ts -------------------------------------------------------------------------------- /src/app/pages/token/acquire-token/acquire-token.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/token/acquire-token/acquire-token.component.ts -------------------------------------------------------------------------------- /src/app/pages/token/burn-token/burn-token.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/token/burn-token/burn-token.component.ts -------------------------------------------------------------------------------- /src/app/pages/token/token.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/token/token.component.ts -------------------------------------------------------------------------------- /src/app/pages/tools/tools.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/tools/tools.component.ts -------------------------------------------------------------------------------- /src/app/pages/tools/vanity-address-generator/components/address-found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/tools/vanity-address-generator/components/address-found.component.ts -------------------------------------------------------------------------------- /src/app/pages/tools/vanity-address-generator/components/advanced.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/tools/vanity-address-generator/components/advanced.component.ts -------------------------------------------------------------------------------- /src/app/pages/tools/vanity-address-generator/components/info.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/tools/vanity-address-generator/components/info.component.ts -------------------------------------------------------------------------------- /src/app/pages/tools/vanity-address-generator/components/prefix-suffix.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/tools/vanity-address-generator/components/prefix-suffix.component.ts -------------------------------------------------------------------------------- /src/app/pages/tools/vanity-address-generator/vanity-address-generator.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/tools/vanity-address-generator/vanity-address-generator.component.ts -------------------------------------------------------------------------------- /src/app/pages/tools/vanity-address-generator/vanity.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pages/tools/vanity-address-generator/vanity.worker.ts -------------------------------------------------------------------------------- /src/app/pipes/big-int-to-eth-address.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pipes/big-int-to-eth-address.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/duration.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pipes/duration.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/international-date-time.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pipes/international-date-time.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/localized-date-time.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pipes/localized-date-time.pipe.ts -------------------------------------------------------------------------------- /src/app/pipes/wei-to-eth.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/pipes/wei-to-eth.pipe.ts -------------------------------------------------------------------------------- /src/app/services/analytics.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/services/analytics.service.ts -------------------------------------------------------------------------------- /src/app/services/chains.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/services/chains.service.ts -------------------------------------------------------------------------------- /src/app/services/network-status.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/services/network-status.service.ts -------------------------------------------------------------------------------- /src/app/services/nft-contract.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/services/nft-contract.service.ts -------------------------------------------------------------------------------- /src/app/services/opensea.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/services/opensea.service.ts -------------------------------------------------------------------------------- /src/app/services/theme.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/services/theme.service.ts -------------------------------------------------------------------------------- /src/app/services/token-contract.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/services/token-contract.service.ts -------------------------------------------------------------------------------- /src/app/services/token-sale-contract.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/services/token-sale-contract.service.ts -------------------------------------------------------------------------------- /src/app/services/tx-balance.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/services/tx-balance.service.ts -------------------------------------------------------------------------------- /src/app/services/wallet.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/services/wallet.service.ts -------------------------------------------------------------------------------- /src/app/strategies/custom-route-reuse-strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/strategies/custom-route-reuse-strategy.ts -------------------------------------------------------------------------------- /src/app/utils/array-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/utils/array-utils.ts -------------------------------------------------------------------------------- /src/app/utils/async-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/utils/async-utils.ts -------------------------------------------------------------------------------- /src/app/utils/big-int-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/utils/big-int-utils.ts -------------------------------------------------------------------------------- /src/app/utils/error-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/utils/error-utils.ts -------------------------------------------------------------------------------- /src/app/utils/eth-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/utils/eth-utils.ts -------------------------------------------------------------------------------- /src/app/utils/wasm-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/app/utils/wasm-utils.ts -------------------------------------------------------------------------------- /src/assets/.well-known/walletconnect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/assets/.well-known/walletconnect.txt -------------------------------------------------------------------------------- /src/assets/azure/staticwebapp.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/assets/azure/staticwebapp.config.json -------------------------------------------------------------------------------- /src/assets/icons/100x100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/assets/icons/100x100.svg -------------------------------------------------------------------------------- /src/assets/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/assets/icons/128x128.png -------------------------------------------------------------------------------- /src/assets/icons/144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/assets/icons/144x144.png -------------------------------------------------------------------------------- /src/assets/icons/152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/assets/icons/152x152.png -------------------------------------------------------------------------------- /src/assets/icons/180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/assets/icons/180x180.png -------------------------------------------------------------------------------- /src/assets/icons/192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/assets/icons/192x192.png -------------------------------------------------------------------------------- /src/assets/icons/384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/assets/icons/384x384.png -------------------------------------------------------------------------------- /src/assets/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/assets/icons/48x48.png -------------------------------------------------------------------------------- /src/assets/icons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/assets/icons/512x512.png -------------------------------------------------------------------------------- /src/assets/icons/72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/assets/icons/72x72.png -------------------------------------------------------------------------------- /src/assets/icons/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/assets/icons/96x96.png -------------------------------------------------------------------------------- /src/assets/nft/2800x1050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/assets/nft/2800x1050.png -------------------------------------------------------------------------------- /src/assets/nft/32x32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/assets/nft/32x32.svg -------------------------------------------------------------------------------- /src/assets/nft/350x350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/assets/nft/350x350.png -------------------------------------------------------------------------------- /src/assets/nft/600x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/assets/nft/600x400.png -------------------------------------------------------------------------------- /src/assets/token/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/assets/token/256x256.png -------------------------------------------------------------------------------- /src/assets/token/32x32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/assets/token/32x32.svg -------------------------------------------------------------------------------- /src/assets/token/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/assets/token/64x64.png -------------------------------------------------------------------------------- /src/environments/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/environments/config.ts -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/pwa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/pwa.json -------------------------------------------------------------------------------- /src/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/robots.txt -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/src/types/global.d.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tsconfig.worker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denyshorman/visualkey/HEAD/tsconfig.worker.json --------------------------------------------------------------------------------