├── .github └── pull_request_template.md ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .travis.yml.disabled ├── Dockerfile ├── LICENSE ├── README.md ├── config-overrides.js ├── package.json ├── public ├── config.json ├── favicon.png ├── index.html ├── manifest.json └── robots.txt ├── scripts ├── ci_build.sh └── ci_deploy.sh ├── src ├── colors.ts ├── components │ ├── access-keystore │ │ ├── decrypt.worker.ts │ │ └── index.tsx │ ├── access-private-key │ │ ├── __snapshots__ │ │ │ └── index.test.tsx.snap │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── access-tabs │ │ ├── index.tsx │ │ └── style.css │ ├── account-info │ │ ├── __snapshots__ │ │ │ └── index.test.tsx.snap │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── button │ │ ├── __snapshots__ │ │ │ └── index.test.tsx.snap │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── copy-to-clipboard │ │ ├── __snapshots__ │ │ │ └── index.test.tsx.snap │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── disclaimer │ │ ├── __snapshots__ │ │ │ └── index.test.tsx.snap │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── faucet-pending │ │ ├── __snapshots__ │ │ │ └── index.test.tsx.snap │ │ ├── index.test.tsx │ │ └── index.tsx │ ├── faucet-request │ │ └── index.tsx │ ├── footer │ │ ├── __snapshots__ │ │ │ └── index.test.tsx.snap │ │ ├── index.test.tsx │ │ ├── index.tsx │ │ └── style.css │ ├── generate-form │ │ ├── encrypt.worker.ts │ │ └── index.tsx │ ├── header │ │ ├── __snapshots__ │ │ │ └── index.test.tsx.snap │ │ ├── index.test.tsx │ │ ├── index.tsx │ │ └── style.css │ ├── layout │ │ ├── index.tsx │ │ └── style.css │ ├── send-form │ │ └── index.tsx │ ├── sidebar │ │ ├── index.tsx │ │ └── style.css │ ├── spinner-with-check-mark │ │ ├── __snapshots__ │ │ │ └── index.test.tsx.snap │ │ ├── index.test.tsx │ │ ├── index.tsx │ │ └── style.css │ └── spinner │ │ ├── __snapshots__ │ │ └── index.test.tsx.snap │ │ ├── index.test.tsx │ │ └── index.tsx ├── constants │ └── index.ts ├── containers │ ├── faucet │ │ └── index.tsx │ ├── generate │ │ └── index.tsx │ ├── home │ │ └── index.tsx │ └── send │ │ └── index.tsx ├── contexts │ └── zil-context │ │ └── index.tsx ├── index.css ├── index.tsx ├── react-app-env.d.ts ├── reportWebVitals.ts ├── routes.tsx ├── setupTests.ts ├── use-async-fn.test.tsx ├── use-async-fn.ts ├── utils.spec.ts └── utils.ts ├── tsconfig.json └── yarn.lock /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/.travis.yml.disabled -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/README.md -------------------------------------------------------------------------------- /config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/config-overrides.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/package.json -------------------------------------------------------------------------------- /public/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/public/config.json -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | user-agent: * 2 | -------------------------------------------------------------------------------- /scripts/ci_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/scripts/ci_build.sh -------------------------------------------------------------------------------- /scripts/ci_deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/scripts/ci_deploy.sh -------------------------------------------------------------------------------- /src/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/colors.ts -------------------------------------------------------------------------------- /src/components/access-keystore/decrypt.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/access-keystore/decrypt.worker.ts -------------------------------------------------------------------------------- /src/components/access-keystore/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/access-keystore/index.tsx -------------------------------------------------------------------------------- /src/components/access-private-key/__snapshots__/index.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/access-private-key/__snapshots__/index.test.tsx.snap -------------------------------------------------------------------------------- /src/components/access-private-key/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/access-private-key/index.test.tsx -------------------------------------------------------------------------------- /src/components/access-private-key/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/access-private-key/index.tsx -------------------------------------------------------------------------------- /src/components/access-tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/access-tabs/index.tsx -------------------------------------------------------------------------------- /src/components/access-tabs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/access-tabs/style.css -------------------------------------------------------------------------------- /src/components/account-info/__snapshots__/index.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/account-info/__snapshots__/index.test.tsx.snap -------------------------------------------------------------------------------- /src/components/account-info/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/account-info/index.test.tsx -------------------------------------------------------------------------------- /src/components/account-info/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/account-info/index.tsx -------------------------------------------------------------------------------- /src/components/button/__snapshots__/index.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/button/__snapshots__/index.test.tsx.snap -------------------------------------------------------------------------------- /src/components/button/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/button/index.test.tsx -------------------------------------------------------------------------------- /src/components/button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/button/index.tsx -------------------------------------------------------------------------------- /src/components/copy-to-clipboard/__snapshots__/index.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/copy-to-clipboard/__snapshots__/index.test.tsx.snap -------------------------------------------------------------------------------- /src/components/copy-to-clipboard/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/copy-to-clipboard/index.test.tsx -------------------------------------------------------------------------------- /src/components/copy-to-clipboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/copy-to-clipboard/index.tsx -------------------------------------------------------------------------------- /src/components/disclaimer/__snapshots__/index.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/disclaimer/__snapshots__/index.test.tsx.snap -------------------------------------------------------------------------------- /src/components/disclaimer/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/disclaimer/index.test.tsx -------------------------------------------------------------------------------- /src/components/disclaimer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/disclaimer/index.tsx -------------------------------------------------------------------------------- /src/components/faucet-pending/__snapshots__/index.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/faucet-pending/__snapshots__/index.test.tsx.snap -------------------------------------------------------------------------------- /src/components/faucet-pending/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/faucet-pending/index.test.tsx -------------------------------------------------------------------------------- /src/components/faucet-pending/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/faucet-pending/index.tsx -------------------------------------------------------------------------------- /src/components/faucet-request/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/faucet-request/index.tsx -------------------------------------------------------------------------------- /src/components/footer/__snapshots__/index.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/footer/__snapshots__/index.test.tsx.snap -------------------------------------------------------------------------------- /src/components/footer/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/footer/index.test.tsx -------------------------------------------------------------------------------- /src/components/footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/footer/index.tsx -------------------------------------------------------------------------------- /src/components/footer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/footer/style.css -------------------------------------------------------------------------------- /src/components/generate-form/encrypt.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/generate-form/encrypt.worker.ts -------------------------------------------------------------------------------- /src/components/generate-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/generate-form/index.tsx -------------------------------------------------------------------------------- /src/components/header/__snapshots__/index.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/header/__snapshots__/index.test.tsx.snap -------------------------------------------------------------------------------- /src/components/header/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/header/index.test.tsx -------------------------------------------------------------------------------- /src/components/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/header/index.tsx -------------------------------------------------------------------------------- /src/components/header/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/header/style.css -------------------------------------------------------------------------------- /src/components/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/layout/index.tsx -------------------------------------------------------------------------------- /src/components/layout/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/layout/style.css -------------------------------------------------------------------------------- /src/components/send-form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/send-form/index.tsx -------------------------------------------------------------------------------- /src/components/sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/sidebar/index.tsx -------------------------------------------------------------------------------- /src/components/sidebar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/sidebar/style.css -------------------------------------------------------------------------------- /src/components/spinner-with-check-mark/__snapshots__/index.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/spinner-with-check-mark/__snapshots__/index.test.tsx.snap -------------------------------------------------------------------------------- /src/components/spinner-with-check-mark/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/spinner-with-check-mark/index.test.tsx -------------------------------------------------------------------------------- /src/components/spinner-with-check-mark/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/spinner-with-check-mark/index.tsx -------------------------------------------------------------------------------- /src/components/spinner-with-check-mark/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/spinner-with-check-mark/style.css -------------------------------------------------------------------------------- /src/components/spinner/__snapshots__/index.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/spinner/__snapshots__/index.test.tsx.snap -------------------------------------------------------------------------------- /src/components/spinner/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/spinner/index.test.tsx -------------------------------------------------------------------------------- /src/components/spinner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/components/spinner/index.tsx -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/containers/faucet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/containers/faucet/index.tsx -------------------------------------------------------------------------------- /src/containers/generate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/containers/generate/index.tsx -------------------------------------------------------------------------------- /src/containers/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/containers/home/index.tsx -------------------------------------------------------------------------------- /src/containers/send/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/containers/send/index.tsx -------------------------------------------------------------------------------- /src/contexts/zil-context/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/contexts/zil-context/index.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/routes.tsx -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/use-async-fn.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/use-async-fn.test.tsx -------------------------------------------------------------------------------- /src/use-async-fn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/use-async-fn.ts -------------------------------------------------------------------------------- /src/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/utils.spec.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zilliqa/dev-wallet/HEAD/yarn.lock --------------------------------------------------------------------------------