├── .gitignore ├── README.md ├── config ├── paths.js ├── webpack.common.js ├── webpack.dev.js ├── webpack.prod-analyze.js └── webpack.prod.js ├── dist ├── css │ └── font-awesome.min.css ├── favicon.ico ├── featured.json └── img │ ├── favicon.png │ └── logo.svg ├── package.json ├── scripts ├── deploy.js └── serveDist.js └── src ├── components ├── account.js ├── job.js ├── service │ ├── alpha_example.js │ ├── default.js │ ├── exchange.js │ ├── face_alignment.js │ ├── face_detect.css.js │ ├── face_detect.js │ ├── face_landmarks.css.js │ ├── face_landmarks.js │ └── face_recognition.js └── services.js ├── grpc.js ├── index.html ├── index.js ├── jsonrpc.js └── util.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/README.md -------------------------------------------------------------------------------- /config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/config/paths.js -------------------------------------------------------------------------------- /config/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/config/webpack.common.js -------------------------------------------------------------------------------- /config/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/config/webpack.dev.js -------------------------------------------------------------------------------- /config/webpack.prod-analyze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/config/webpack.prod-analyze.js -------------------------------------------------------------------------------- /config/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/config/webpack.prod.js -------------------------------------------------------------------------------- /dist/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/dist/css/font-awesome.min.css -------------------------------------------------------------------------------- /dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/dist/favicon.ico -------------------------------------------------------------------------------- /dist/featured.json: -------------------------------------------------------------------------------- 1 | [ 2 | "0x2ed982c220fed6c9374e63804670fc16bd481b8f" 3 | ] 4 | -------------------------------------------------------------------------------- /dist/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/dist/img/favicon.png -------------------------------------------------------------------------------- /dist/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/dist/img/logo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/package.json -------------------------------------------------------------------------------- /scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/scripts/deploy.js -------------------------------------------------------------------------------- /scripts/serveDist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/scripts/serveDist.js -------------------------------------------------------------------------------- /src/components/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/src/components/account.js -------------------------------------------------------------------------------- /src/components/job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/src/components/job.js -------------------------------------------------------------------------------- /src/components/service/alpha_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/src/components/service/alpha_example.js -------------------------------------------------------------------------------- /src/components/service/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/src/components/service/default.js -------------------------------------------------------------------------------- /src/components/service/exchange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/src/components/service/exchange.js -------------------------------------------------------------------------------- /src/components/service/face_alignment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/src/components/service/face_alignment.js -------------------------------------------------------------------------------- /src/components/service/face_detect.css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/src/components/service/face_detect.css.js -------------------------------------------------------------------------------- /src/components/service/face_detect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/src/components/service/face_detect.js -------------------------------------------------------------------------------- /src/components/service/face_landmarks.css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/src/components/service/face_landmarks.css.js -------------------------------------------------------------------------------- /src/components/service/face_landmarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/src/components/service/face_landmarks.js -------------------------------------------------------------------------------- /src/components/service/face_recognition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/src/components/service/face_recognition.js -------------------------------------------------------------------------------- /src/components/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/src/components/services.js -------------------------------------------------------------------------------- /src/grpc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/src/grpc.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/src/index.js -------------------------------------------------------------------------------- /src/jsonrpc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/src/jsonrpc.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singnet/alpha-dapp/HEAD/src/util.js --------------------------------------------------------------------------------