├── .DS_Store ├── .gitignore ├── LICENSE.md ├── README.md ├── app ├── app │ ├── app.js │ ├── controllers.js │ ├── modules │ │ ├── angular-blockies.js │ │ ├── angular-qrcode.js │ │ ├── angular-route.min.js │ │ └── angular-sweet-alert.js │ ├── services │ │ ├── lang.js │ │ └── storage.js │ └── views │ │ ├── create.html │ │ ├── encrypt.html │ │ ├── link.html │ │ ├── main.html │ │ ├── new.html │ │ ├── restore.html │ │ ├── setting.html │ │ ├── unlock.html │ │ └── validate.html ├── icon.png ├── index.html ├── lib │ ├── ledger-tezos │ │ ├── .flowconfig │ │ ├── index.js │ │ ├── lib │ │ │ ├── Tezos.js │ │ │ ├── Tezos.js.flow │ │ │ ├── Tezos.js.map │ │ │ ├── utils.js │ │ │ ├── utils.js.flow │ │ │ └── utils.js.map │ │ ├── package.json │ │ └── src │ │ │ ├── Tezos.js │ │ │ └── utils.js │ └── trezor-tezos │ │ ├── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── protob │ │ ├── messages-bootloader.proto │ │ ├── messages-common.proto │ │ ├── messages-debug.proto │ │ ├── messages-management.proto │ │ ├── messages-tezos.proto │ │ ├── messages.proto │ │ └── trezor.tezos.proto │ │ └── yarn.lock ├── skin │ ├── css │ │ ├── angular-csp.css │ │ ├── bootstrap.min.css │ │ ├── fontawesome-all.min.css │ │ ├── sweet-alert.css │ │ └── tezbox.css │ ├── images │ │ ├── bg.png │ │ ├── icon-128.png │ │ ├── icon-16.png │ │ ├── icon-19.png │ │ ├── icon-38.png │ │ ├── icon.png │ │ ├── ledger-icon.png │ │ ├── ledger-logo.svg │ │ ├── loader.jpg │ │ ├── logo.jpg │ │ ├── logo.png │ │ └── trezor-logo.svg │ ├── js │ │ ├── angular │ │ │ └── angular.min.js │ │ ├── blockies.min.js │ │ ├── bootstrap │ │ │ └── bootstrap.min.js │ │ ├── eztz.min.js │ │ ├── jquery │ │ │ └── jquery.min.js │ │ ├── ledger.xtz.js │ │ ├── qrcode.js │ │ ├── sjcl.js │ │ ├── sweet-alert.min.js │ │ ├── tezbox.js │ │ ├── trezor.xtz.js │ │ └── underscore │ │ │ └── underscore.js │ └── webfonts │ │ ├── VisbyCF-Bold.eot │ │ ├── VisbyCF-Bold.ttf │ │ ├── VisbyCF-Bold.woff │ │ ├── VisbyCF-Bold.woff2 │ │ ├── VisbyCF-BoldOblique.ttf │ │ ├── VisbyCF-DemiBold.eot │ │ ├── VisbyCF-DemiBold.ttf │ │ ├── VisbyCF-DemiBold.woff │ │ ├── VisbyCF-DemiBold.woff2 │ │ ├── VisbyCF-DemiBoldOblique.eot │ │ ├── VisbyCF-DemiBoldOblique.ttf │ │ ├── VisbyCF-DemiBoldOblique.woff │ │ ├── VisbyCF-DemiBoldOblique.woff2 │ │ ├── VisbyCF-ExtraBold.eot │ │ ├── VisbyCF-ExtraBold.ttf │ │ ├── VisbyCF-ExtraBold.woff │ │ ├── VisbyCF-ExtraBold.woff2 │ │ ├── VisbyCF-ExtraBoldOblique.eot │ │ ├── VisbyCF-ExtraBoldOblique.ttf │ │ ├── VisbyCF-ExtraBoldOblique.woff │ │ ├── VisbyCF-ExtraBoldOblique.woff2 │ │ ├── VisbyCF-Heavy.eot │ │ ├── VisbyCF-Heavy.ttf │ │ ├── VisbyCF-Heavy.woff │ │ ├── VisbyCF-Heavy.woff2 │ │ ├── VisbyCF-HeavyOblique.eot │ │ ├── VisbyCF-HeavyOblique.ttf │ │ ├── VisbyCF-HeavyOblique.woff │ │ ├── VisbyCF-HeavyOblique.woff2 │ │ ├── VisbyCF-Light.eot │ │ ├── VisbyCF-Light.ttf │ │ ├── VisbyCF-Light.woff │ │ ├── VisbyCF-Light.woff2 │ │ ├── VisbyCF-LightOblique.eot │ │ ├── VisbyCF-LightOblique.ttf │ │ ├── VisbyCF-LightOblique.woff │ │ ├── VisbyCF-LightOblique.woff2 │ │ ├── VisbyCF-Medium.eot │ │ ├── VisbyCF-Medium.ttf │ │ ├── VisbyCF-Medium.woff │ │ ├── VisbyCF-Medium.woff2 │ │ ├── VisbyCF-MediumOblique.eot │ │ ├── VisbyCF-MediumOblique.ttf │ │ ├── VisbyCF-MediumOblique.woff │ │ ├── VisbyCF-MediumOblique.woff2 │ │ ├── VisbyCF-Thin.eot │ │ ├── VisbyCF-Thin.ttf │ │ ├── VisbyCF-Thin.woff │ │ ├── VisbyCF-Thin.woff2 │ │ ├── VisbyCF-ThinOblique.eot │ │ ├── VisbyCF-ThinOblique.ttf │ │ ├── VisbyCF-ThinOblique.woff │ │ ├── VisbyCF-ThinOblique.woff2 │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 └── splash.html ├── assets └── icon.png ├── main.js ├── package.json ├── yarn-error.log └── yarn.lock /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/README.md -------------------------------------------------------------------------------- /app/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/app/app.js -------------------------------------------------------------------------------- /app/app/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/app/controllers.js -------------------------------------------------------------------------------- /app/app/modules/angular-blockies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/app/modules/angular-blockies.js -------------------------------------------------------------------------------- /app/app/modules/angular-qrcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/app/modules/angular-qrcode.js -------------------------------------------------------------------------------- /app/app/modules/angular-route.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/app/modules/angular-route.min.js -------------------------------------------------------------------------------- /app/app/modules/angular-sweet-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/app/modules/angular-sweet-alert.js -------------------------------------------------------------------------------- /app/app/services/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/app/services/lang.js -------------------------------------------------------------------------------- /app/app/services/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/app/services/storage.js -------------------------------------------------------------------------------- /app/app/views/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/app/views/create.html -------------------------------------------------------------------------------- /app/app/views/encrypt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/app/views/encrypt.html -------------------------------------------------------------------------------- /app/app/views/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/app/views/link.html -------------------------------------------------------------------------------- /app/app/views/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/app/views/main.html -------------------------------------------------------------------------------- /app/app/views/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/app/views/new.html -------------------------------------------------------------------------------- /app/app/views/restore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/app/views/restore.html -------------------------------------------------------------------------------- /app/app/views/setting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/app/views/setting.html -------------------------------------------------------------------------------- /app/app/views/unlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/app/views/unlock.html -------------------------------------------------------------------------------- /app/app/views/validate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/app/views/validate.html -------------------------------------------------------------------------------- /app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/icon.png -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/index.html -------------------------------------------------------------------------------- /app/lib/ledger-tezos/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/ledger-tezos/.flowconfig -------------------------------------------------------------------------------- /app/lib/ledger-tezos/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/ledger-tezos/index.js -------------------------------------------------------------------------------- /app/lib/ledger-tezos/lib/Tezos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/ledger-tezos/lib/Tezos.js -------------------------------------------------------------------------------- /app/lib/ledger-tezos/lib/Tezos.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/ledger-tezos/lib/Tezos.js.flow -------------------------------------------------------------------------------- /app/lib/ledger-tezos/lib/Tezos.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/ledger-tezos/lib/Tezos.js.map -------------------------------------------------------------------------------- /app/lib/ledger-tezos/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/ledger-tezos/lib/utils.js -------------------------------------------------------------------------------- /app/lib/ledger-tezos/lib/utils.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/ledger-tezos/lib/utils.js.flow -------------------------------------------------------------------------------- /app/lib/ledger-tezos/lib/utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/ledger-tezos/lib/utils.js.map -------------------------------------------------------------------------------- /app/lib/ledger-tezos/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/ledger-tezos/package.json -------------------------------------------------------------------------------- /app/lib/ledger-tezos/src/Tezos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/ledger-tezos/src/Tezos.js -------------------------------------------------------------------------------- /app/lib/ledger-tezos/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/ledger-tezos/src/utils.js -------------------------------------------------------------------------------- /app/lib/trezor-tezos/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/trezor-tezos/index.js -------------------------------------------------------------------------------- /app/lib/trezor-tezos/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/trezor-tezos/package-lock.json -------------------------------------------------------------------------------- /app/lib/trezor-tezos/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/trezor-tezos/package.json -------------------------------------------------------------------------------- /app/lib/trezor-tezos/protob/messages-bootloader.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/trezor-tezos/protob/messages-bootloader.proto -------------------------------------------------------------------------------- /app/lib/trezor-tezos/protob/messages-common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/trezor-tezos/protob/messages-common.proto -------------------------------------------------------------------------------- /app/lib/trezor-tezos/protob/messages-debug.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/trezor-tezos/protob/messages-debug.proto -------------------------------------------------------------------------------- /app/lib/trezor-tezos/protob/messages-management.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/trezor-tezos/protob/messages-management.proto -------------------------------------------------------------------------------- /app/lib/trezor-tezos/protob/messages-tezos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/trezor-tezos/protob/messages-tezos.proto -------------------------------------------------------------------------------- /app/lib/trezor-tezos/protob/messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/trezor-tezos/protob/messages.proto -------------------------------------------------------------------------------- /app/lib/trezor-tezos/protob/trezor.tezos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/trezor-tezos/protob/trezor.tezos.proto -------------------------------------------------------------------------------- /app/lib/trezor-tezos/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/lib/trezor-tezos/yarn.lock -------------------------------------------------------------------------------- /app/skin/css/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/css/angular-csp.css -------------------------------------------------------------------------------- /app/skin/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/css/bootstrap.min.css -------------------------------------------------------------------------------- /app/skin/css/fontawesome-all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/css/fontawesome-all.min.css -------------------------------------------------------------------------------- /app/skin/css/sweet-alert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/css/sweet-alert.css -------------------------------------------------------------------------------- /app/skin/css/tezbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/css/tezbox.css -------------------------------------------------------------------------------- /app/skin/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/images/bg.png -------------------------------------------------------------------------------- /app/skin/images/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/images/icon-128.png -------------------------------------------------------------------------------- /app/skin/images/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/images/icon-16.png -------------------------------------------------------------------------------- /app/skin/images/icon-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/images/icon-19.png -------------------------------------------------------------------------------- /app/skin/images/icon-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/images/icon-38.png -------------------------------------------------------------------------------- /app/skin/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/images/icon.png -------------------------------------------------------------------------------- /app/skin/images/ledger-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/images/ledger-icon.png -------------------------------------------------------------------------------- /app/skin/images/ledger-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/images/ledger-logo.svg -------------------------------------------------------------------------------- /app/skin/images/loader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/images/loader.jpg -------------------------------------------------------------------------------- /app/skin/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/images/logo.jpg -------------------------------------------------------------------------------- /app/skin/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/images/logo.png -------------------------------------------------------------------------------- /app/skin/images/trezor-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/images/trezor-logo.svg -------------------------------------------------------------------------------- /app/skin/js/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/js/angular/angular.min.js -------------------------------------------------------------------------------- /app/skin/js/blockies.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/js/blockies.min.js -------------------------------------------------------------------------------- /app/skin/js/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/js/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /app/skin/js/eztz.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/js/eztz.min.js -------------------------------------------------------------------------------- /app/skin/js/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/js/jquery/jquery.min.js -------------------------------------------------------------------------------- /app/skin/js/ledger.xtz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/js/ledger.xtz.js -------------------------------------------------------------------------------- /app/skin/js/qrcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/js/qrcode.js -------------------------------------------------------------------------------- /app/skin/js/sjcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/js/sjcl.js -------------------------------------------------------------------------------- /app/skin/js/sweet-alert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/js/sweet-alert.min.js -------------------------------------------------------------------------------- /app/skin/js/tezbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/js/tezbox.js -------------------------------------------------------------------------------- /app/skin/js/trezor.xtz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/js/trezor.xtz.js -------------------------------------------------------------------------------- /app/skin/js/underscore/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/js/underscore/underscore.js -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-Bold.eot -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-Bold.ttf -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-Bold.woff -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-Bold.woff2 -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-BoldOblique.ttf -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-DemiBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-DemiBold.eot -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-DemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-DemiBold.ttf -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-DemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-DemiBold.woff -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-DemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-DemiBold.woff2 -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-DemiBoldOblique.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-DemiBoldOblique.eot -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-DemiBoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-DemiBoldOblique.ttf -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-DemiBoldOblique.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-DemiBoldOblique.woff -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-DemiBoldOblique.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-DemiBoldOblique.woff2 -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-ExtraBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-ExtraBold.eot -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-ExtraBold.ttf -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-ExtraBold.woff -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-ExtraBold.woff2 -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-ExtraBoldOblique.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-ExtraBoldOblique.eot -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-ExtraBoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-ExtraBoldOblique.ttf -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-ExtraBoldOblique.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-ExtraBoldOblique.woff -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-ExtraBoldOblique.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-ExtraBoldOblique.woff2 -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-Heavy.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-Heavy.eot -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-Heavy.ttf -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-Heavy.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-Heavy.woff -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-Heavy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-Heavy.woff2 -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-HeavyOblique.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-HeavyOblique.eot -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-HeavyOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-HeavyOblique.ttf -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-HeavyOblique.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-HeavyOblique.woff -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-HeavyOblique.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-HeavyOblique.woff2 -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-Light.eot -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-Light.ttf -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-Light.woff -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-Light.woff2 -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-LightOblique.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-LightOblique.eot -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-LightOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-LightOblique.ttf -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-LightOblique.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-LightOblique.woff -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-LightOblique.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-LightOblique.woff2 -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-Medium.eot -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-Medium.ttf -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-Medium.woff -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-Medium.woff2 -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-MediumOblique.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-MediumOblique.eot -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-MediumOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-MediumOblique.ttf -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-MediumOblique.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-MediumOblique.woff -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-MediumOblique.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-MediumOblique.woff2 -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-Thin.eot -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-Thin.ttf -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-Thin.woff -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-Thin.woff2 -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-ThinOblique.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-ThinOblique.eot -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-ThinOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-ThinOblique.ttf -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-ThinOblique.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-ThinOblique.woff -------------------------------------------------------------------------------- /app/skin/webfonts/VisbyCF-ThinOblique.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/VisbyCF-ThinOblique.woff2 -------------------------------------------------------------------------------- /app/skin/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /app/skin/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /app/skin/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /app/skin/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /app/skin/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /app/skin/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /app/skin/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /app/skin/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /app/skin/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /app/skin/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /app/skin/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /app/skin/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /app/skin/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /app/skin/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /app/skin/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/skin/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /app/splash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/app/splash.html -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/assets/icon.png -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/package.json -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tezbox/desktop-wallet/HEAD/yarn.lock --------------------------------------------------------------------------------