├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .heroku ├── .htaccess ├── Procfile ├── index.php ├── robots.txt └── sitemap.xml ├── .solcover.js ├── .soliumignore ├── .soliumrc.json ├── Dockerfile ├── LICENSE ├── README.md ├── angular.json ├── contracts ├── Kudos.structs.sol ├── KudosOrganisations.sol ├── KudosPollFactory.sol ├── KudosRouter.sol ├── KudosTokenFactory.sol ├── Migrations.sol └── string-utils.sol ├── e2e ├── protractor.conf.js ├── src │ ├── helpers.ts │ ├── pages │ │ ├── donate.po.ts │ │ ├── home.po.ts │ │ └── page.abstract.po.ts │ └── tests │ │ ├── donate-page.e2e-spec.ts │ │ ├── home-page.e2e-spec.ts │ │ └── org-creation.e2e-spec.ts └── tsconfig.e2e.json ├── karma.conf.js ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── now.json ├── package.json ├── scripts └── fix-angular-cli-crypto.js ├── src ├── app │ ├── +app │ │ ├── admin │ │ │ ├── admin.component.html │ │ │ ├── admin.component.scss │ │ │ ├── admin.component.spec.ts │ │ │ ├── admin.component.ts │ │ │ └── index.ts │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── common.abstract.spec.ts │ │ ├── common.abstract.ts │ │ ├── faqs-on-app │ │ │ ├── faqs-on-app.component.html │ │ │ ├── faqs-on-app.component.scss │ │ │ ├── faqs-on-app.component.spec.ts │ │ │ ├── faqs-on-app.component.ts │ │ │ └── index.ts │ │ ├── home │ │ │ ├── home.component.html │ │ │ ├── home.component.scss │ │ │ ├── home.component.spec.ts │ │ │ ├── home.component.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── poll │ │ │ ├── index.ts │ │ │ ├── poll-active │ │ │ ├── poll-active.component.html │ │ │ ├── poll-active.component.scss │ │ │ ├── poll-active.component.spec.ts │ │ │ └── poll-active.component.ts │ │ │ ├── poll-chart │ │ │ ├── poll-chart.component.html │ │ │ ├── poll-chart.component.scss │ │ │ ├── poll-chart.component.spec.ts │ │ │ └── poll-chart.component.ts │ │ │ └── poll-previous │ │ │ ├── poll-previous.component.html │ │ │ ├── poll-previous.component.scss │ │ │ ├── poll-previous.component.spec.ts │ │ │ └── poll-previous.component.ts │ ├── +website │ │ ├── content │ │ │ ├── about │ │ │ │ ├── about.component.html │ │ │ │ ├── about.component.scss │ │ │ │ ├── about.component.spec.ts │ │ │ │ └── about.component.ts │ │ │ ├── content-base.abstract.spec.ts │ │ │ ├── content-base.abstract.ts │ │ │ ├── content-base.scss │ │ │ ├── content.component.html │ │ │ ├── content.component.scss │ │ │ ├── content.component.spec.ts │ │ │ ├── content.component.ts │ │ │ ├── donate │ │ │ │ ├── donate.component.html │ │ │ │ ├── donate.component.scss │ │ │ │ ├── donate.component.spec.ts │ │ │ │ └── donate.component.ts │ │ │ ├── faqs-page │ │ │ │ ├── faqs-page.component.html │ │ │ │ ├── faqs-page.component.scss │ │ │ │ ├── faqs-page.component.spec.ts │ │ │ │ └── faqs-page.component.ts │ │ │ ├── index.ts │ │ │ └── privacy-policy │ │ │ │ ├── privacy-policy.component.html │ │ │ │ ├── privacy-policy.component.scss │ │ │ │ ├── privacy-policy.component.spec.ts │ │ │ │ └── privacy-policy.component.ts │ │ ├── index.ts │ │ ├── join │ │ │ ├── index.ts │ │ │ ├── join.component.html │ │ │ ├── join.component.scss │ │ │ ├── join.component.spec.ts │ │ │ └── join.component.ts │ │ ├── landing │ │ │ ├── index.ts │ │ │ ├── landing.component.html │ │ │ ├── landing.component.scss │ │ │ ├── landing.component.spec.ts │ │ │ └── landing.component.ts │ │ └── website.module.ts │ ├── app-common.module.ts │ ├── app-routing.module.ts │ ├── app-wrapper.component.html │ ├── app-wrapper.component.scss │ ├── app-wrapper.component.ts │ ├── app-wrapper.module.ts │ ├── components │ │ ├── blockie │ │ │ ├── blockie.component.html │ │ │ ├── blockie.component.scss │ │ │ ├── blockie.component.spec.ts │ │ │ └── blockie.component.ts │ │ ├── faqs │ │ │ ├── faqs.component.html │ │ │ ├── faqs.component.scss │ │ │ ├── faqs.component.spec.ts │ │ │ └── faqs.component.ts │ │ ├── graph │ │ │ ├── graph.component.html │ │ │ ├── graph.component.scss │ │ │ ├── graph.component.spec.ts │ │ │ └── graph.component.ts │ │ ├── help-cards │ │ │ ├── help-cards.component.html │ │ │ ├── help-cards.component.scss │ │ │ ├── help-cards.component.spec.ts │ │ │ └── help-cards.component.ts │ │ ├── index.ts │ │ └── share-dialog │ │ │ ├── share-dialog.component.html │ │ │ ├── share-dialog.component.scss │ │ │ ├── share-dialog.component.spec.ts │ │ │ └── share-dialog.component.ts │ ├── shared │ │ ├── animations │ │ │ ├── card-in-out.ts │ │ │ └── ease-in-out.ts │ │ ├── contracts │ │ │ ├── kudos-organisations.service.spec.ts │ │ │ ├── kudos-organisations.service.ts │ │ │ ├── kudos-poll.service.spec.ts │ │ │ ├── kudos-poll.service.ts │ │ │ ├── kudos-token.service.spec.ts │ │ │ ├── kudos-token.service.ts │ │ │ ├── mixins │ │ │ │ ├── basic-token.mixin.spec.ts │ │ │ │ ├── basic-token.mixin.ts │ │ │ │ ├── burnable-token.mixin.spec.ts │ │ │ │ ├── burnable-token.mixin.ts │ │ │ │ ├── index.ts │ │ │ │ ├── membership.mixin.spec.ts │ │ │ │ ├── membership.mixin.ts │ │ │ │ ├── owneable.mixin.spec.ts │ │ │ │ ├── owneable.mixin.ts │ │ │ │ └── smart-contract-extender.helper.ts │ │ │ ├── smart-contract.abstract.spec.ts │ │ │ ├── smart-contract.abstract.ts │ │ │ └── truffle.interface.ts │ │ ├── guards │ │ │ ├── is-connected.guard.spec.ts │ │ │ ├── is-connected.guard.ts │ │ │ ├── is-owner.guard.spec.ts │ │ │ ├── is-owner.guard.ts │ │ │ ├── is-poll.guard.spec.ts │ │ │ ├── is-poll.guard.ts │ │ │ ├── is-token.guard.spec.ts │ │ │ └── is-token.guard.ts │ │ ├── index.ts │ │ ├── kudos-poll-factory.service.spec.ts │ │ ├── kudos-poll-factory.service.ts │ │ ├── kudos-token-factory.service.spec.ts │ │ ├── kudos-token-factory.service.ts │ │ ├── moesif.helpers.spec.ts │ │ ├── moesif.helpers.ts │ │ ├── service-worker.service.spec.ts │ │ ├── service-worker.service.ts │ │ ├── store │ │ │ ├── account │ │ │ │ ├── account.actions.ts │ │ │ │ ├── account.effects.ts │ │ │ │ ├── account.reducers.ts │ │ │ │ ├── account.spec.ts │ │ │ │ └── index.ts │ │ │ ├── effects.ts │ │ │ ├── index.ts │ │ │ ├── kudos-poll │ │ │ │ ├── index.ts │ │ │ │ ├── kudos-poll.actions.ts │ │ │ │ ├── kudos-poll.effects.ts │ │ │ │ ├── kudos-poll.models.ts │ │ │ │ ├── kudos-poll.reducers.ts │ │ │ │ └── kudos-poll.spec.ts │ │ │ ├── kudos-token │ │ │ │ ├── index.ts │ │ │ │ ├── kudos-token.actions.ts │ │ │ │ ├── kudos-token.effects.ts │ │ │ │ ├── kudos-token.models.ts │ │ │ │ ├── kudos-token.reducers.ts │ │ │ │ └── kudos-token.spec.ts │ │ │ ├── reducers.ts │ │ │ ├── router │ │ │ │ ├── index.ts │ │ │ │ ├── router.effects.ts │ │ │ │ └── router.spec.ts │ │ │ ├── status │ │ │ │ ├── index.ts │ │ │ │ ├── status.actions.ts │ │ │ │ ├── status.effects.ts │ │ │ │ ├── status.reducers.ts │ │ │ │ └── status.spec.ts │ │ │ └── testing-utils.ts │ │ ├── translation-loader.service.spec.ts │ │ ├── translation-loader.service.ts │ │ ├── web3.service.spec.ts │ │ └── web3.service.ts │ └── styles │ │ └── _index.scss ├── assets │ ├── .gitkeep │ ├── app-store-badge.png │ ├── bg-colorful.png │ ├── cipher.png │ ├── donation-qr.svg │ ├── google-play-badge.png │ ├── metamask-network.png │ └── toshi.png ├── environments │ ├── environment.e2e.ts │ ├── environment.prod.ts │ └── environment.ts ├── favicon.png ├── i18n │ ├── en.json │ └── es.json ├── index.html ├── main.ts ├── ngsw-config.json ├── polyfills.ts ├── styles.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── test ├── KudosOrganisations.js ├── KudosPoll.js ├── KudosRouter.js └── KudosToken.js ├── truffle.js ├── tsconfig.json └── tslint.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/.gitignore -------------------------------------------------------------------------------- /.heroku/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/.heroku/.htaccess -------------------------------------------------------------------------------- /.heroku/Procfile: -------------------------------------------------------------------------------- 1 | web: vendor/bin/heroku-php-apache2 ./ 2 | -------------------------------------------------------------------------------- /.heroku/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.heroku/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/.heroku/robots.txt -------------------------------------------------------------------------------- /.heroku/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/.heroku/sitemap.xml -------------------------------------------------------------------------------- /.solcover.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | copyPackages: ['zeppelin-solidity'], 3 | }; 4 | -------------------------------------------------------------------------------- /.soliumignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/.soliumignore -------------------------------------------------------------------------------- /.soliumrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/.soliumrc.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/angular.json -------------------------------------------------------------------------------- /contracts/Kudos.structs.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/contracts/Kudos.structs.sol -------------------------------------------------------------------------------- /contracts/KudosOrganisations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/contracts/KudosOrganisations.sol -------------------------------------------------------------------------------- /contracts/KudosPollFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/contracts/KudosPollFactory.sol -------------------------------------------------------------------------------- /contracts/KudosRouter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/contracts/KudosRouter.sol -------------------------------------------------------------------------------- /contracts/KudosTokenFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/contracts/KudosTokenFactory.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/string-utils.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/contracts/string-utils.sol -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/e2e/src/helpers.ts -------------------------------------------------------------------------------- /e2e/src/pages/donate.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/e2e/src/pages/donate.po.ts -------------------------------------------------------------------------------- /e2e/src/pages/home.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/e2e/src/pages/home.po.ts -------------------------------------------------------------------------------- /e2e/src/pages/page.abstract.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/e2e/src/pages/page.abstract.po.ts -------------------------------------------------------------------------------- /e2e/src/tests/donate-page.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/e2e/src/tests/donate-page.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/tests/home-page.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/e2e/src/tests/home-page.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/tests/org-creation.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/e2e/src/tests/org-creation.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/karma.conf.js -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/now.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/package.json -------------------------------------------------------------------------------- /scripts/fix-angular-cli-crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/scripts/fix-angular-cli-crypto.js -------------------------------------------------------------------------------- /src/app/+app/admin/admin.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/admin/admin.component.html -------------------------------------------------------------------------------- /src/app/+app/admin/admin.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/admin/admin.component.scss -------------------------------------------------------------------------------- /src/app/+app/admin/admin.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/admin/admin.component.spec.ts -------------------------------------------------------------------------------- /src/app/+app/admin/admin.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/admin/admin.component.ts -------------------------------------------------------------------------------- /src/app/+app/admin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/admin/index.ts -------------------------------------------------------------------------------- /src/app/+app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/app.component.html -------------------------------------------------------------------------------- /src/app/+app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/app.component.scss -------------------------------------------------------------------------------- /src/app/+app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/+app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/app.component.ts -------------------------------------------------------------------------------- /src/app/+app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/app.module.ts -------------------------------------------------------------------------------- /src/app/+app/common.abstract.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/common.abstract.spec.ts -------------------------------------------------------------------------------- /src/app/+app/common.abstract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/common.abstract.ts -------------------------------------------------------------------------------- /src/app/+app/faqs-on-app/faqs-on-app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/faqs-on-app/faqs-on-app.component.html -------------------------------------------------------------------------------- /src/app/+app/faqs-on-app/faqs-on-app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/faqs-on-app/faqs-on-app.component.scss -------------------------------------------------------------------------------- /src/app/+app/faqs-on-app/faqs-on-app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/faqs-on-app/faqs-on-app.component.spec.ts -------------------------------------------------------------------------------- /src/app/+app/faqs-on-app/faqs-on-app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/faqs-on-app/faqs-on-app.component.ts -------------------------------------------------------------------------------- /src/app/+app/faqs-on-app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/faqs-on-app/index.ts -------------------------------------------------------------------------------- /src/app/+app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/home/home.component.html -------------------------------------------------------------------------------- /src/app/+app/home/home.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/home/home.component.scss -------------------------------------------------------------------------------- /src/app/+app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/+app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/home/home.component.ts -------------------------------------------------------------------------------- /src/app/+app/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/home/index.ts -------------------------------------------------------------------------------- /src/app/+app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/index.ts -------------------------------------------------------------------------------- /src/app/+app/poll/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/poll/index.ts -------------------------------------------------------------------------------- /src/app/+app/poll/poll-active/poll-active.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/poll/poll-active/poll-active.component.html -------------------------------------------------------------------------------- /src/app/+app/poll/poll-active/poll-active.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/poll/poll-active/poll-active.component.scss -------------------------------------------------------------------------------- /src/app/+app/poll/poll-active/poll-active.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/poll/poll-active/poll-active.component.spec.ts -------------------------------------------------------------------------------- /src/app/+app/poll/poll-active/poll-active.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/poll/poll-active/poll-active.component.ts -------------------------------------------------------------------------------- /src/app/+app/poll/poll-chart/poll-chart.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/poll/poll-chart/poll-chart.component.html -------------------------------------------------------------------------------- /src/app/+app/poll/poll-chart/poll-chart.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/poll/poll-chart/poll-chart.component.scss -------------------------------------------------------------------------------- /src/app/+app/poll/poll-chart/poll-chart.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/poll/poll-chart/poll-chart.component.spec.ts -------------------------------------------------------------------------------- /src/app/+app/poll/poll-chart/poll-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/poll/poll-chart/poll-chart.component.ts -------------------------------------------------------------------------------- /src/app/+app/poll/poll-previous/poll-previous.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/poll/poll-previous/poll-previous.component.html -------------------------------------------------------------------------------- /src/app/+app/poll/poll-previous/poll-previous.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/poll/poll-previous/poll-previous.component.scss -------------------------------------------------------------------------------- /src/app/+app/poll/poll-previous/poll-previous.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/poll/poll-previous/poll-previous.component.spec.ts -------------------------------------------------------------------------------- /src/app/+app/poll/poll-previous/poll-previous.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+app/poll/poll-previous/poll-previous.component.ts -------------------------------------------------------------------------------- /src/app/+website/content/about/about.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/about/about.component.html -------------------------------------------------------------------------------- /src/app/+website/content/about/about.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/about/about.component.scss -------------------------------------------------------------------------------- /src/app/+website/content/about/about.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/about/about.component.spec.ts -------------------------------------------------------------------------------- /src/app/+website/content/about/about.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/about/about.component.ts -------------------------------------------------------------------------------- /src/app/+website/content/content-base.abstract.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/content-base.abstract.spec.ts -------------------------------------------------------------------------------- /src/app/+website/content/content-base.abstract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/content-base.abstract.ts -------------------------------------------------------------------------------- /src/app/+website/content/content-base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/content-base.scss -------------------------------------------------------------------------------- /src/app/+website/content/content.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/content.component.html -------------------------------------------------------------------------------- /src/app/+website/content/content.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/content.component.scss -------------------------------------------------------------------------------- /src/app/+website/content/content.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/content.component.spec.ts -------------------------------------------------------------------------------- /src/app/+website/content/content.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/content.component.ts -------------------------------------------------------------------------------- /src/app/+website/content/donate/donate.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/donate/donate.component.html -------------------------------------------------------------------------------- /src/app/+website/content/donate/donate.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/donate/donate.component.scss -------------------------------------------------------------------------------- /src/app/+website/content/donate/donate.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/donate/donate.component.spec.ts -------------------------------------------------------------------------------- /src/app/+website/content/donate/donate.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/donate/donate.component.ts -------------------------------------------------------------------------------- /src/app/+website/content/faqs-page/faqs-page.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/faqs-page/faqs-page.component.html -------------------------------------------------------------------------------- /src/app/+website/content/faqs-page/faqs-page.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/faqs-page/faqs-page.component.scss -------------------------------------------------------------------------------- /src/app/+website/content/faqs-page/faqs-page.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/faqs-page/faqs-page.component.spec.ts -------------------------------------------------------------------------------- /src/app/+website/content/faqs-page/faqs-page.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/faqs-page/faqs-page.component.ts -------------------------------------------------------------------------------- /src/app/+website/content/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/index.ts -------------------------------------------------------------------------------- /src/app/+website/content/privacy-policy/privacy-policy.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/privacy-policy/privacy-policy.component.html -------------------------------------------------------------------------------- /src/app/+website/content/privacy-policy/privacy-policy.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/privacy-policy/privacy-policy.component.scss -------------------------------------------------------------------------------- /src/app/+website/content/privacy-policy/privacy-policy.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/privacy-policy/privacy-policy.component.spec.ts -------------------------------------------------------------------------------- /src/app/+website/content/privacy-policy/privacy-policy.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/content/privacy-policy/privacy-policy.component.ts -------------------------------------------------------------------------------- /src/app/+website/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/index.ts -------------------------------------------------------------------------------- /src/app/+website/join/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/join/index.ts -------------------------------------------------------------------------------- /src/app/+website/join/join.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/join/join.component.html -------------------------------------------------------------------------------- /src/app/+website/join/join.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/join/join.component.scss -------------------------------------------------------------------------------- /src/app/+website/join/join.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/join/join.component.spec.ts -------------------------------------------------------------------------------- /src/app/+website/join/join.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/join/join.component.ts -------------------------------------------------------------------------------- /src/app/+website/landing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/landing/index.ts -------------------------------------------------------------------------------- /src/app/+website/landing/landing.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/landing/landing.component.html -------------------------------------------------------------------------------- /src/app/+website/landing/landing.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/landing/landing.component.scss -------------------------------------------------------------------------------- /src/app/+website/landing/landing.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/landing/landing.component.spec.ts -------------------------------------------------------------------------------- /src/app/+website/landing/landing.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/landing/landing.component.ts -------------------------------------------------------------------------------- /src/app/+website/website.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/+website/website.module.ts -------------------------------------------------------------------------------- /src/app/app-common.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/app-common.module.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app-wrapper.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/app-wrapper.component.html -------------------------------------------------------------------------------- /src/app/app-wrapper.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/app-wrapper.component.scss -------------------------------------------------------------------------------- /src/app/app-wrapper.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/app-wrapper.component.ts -------------------------------------------------------------------------------- /src/app/app-wrapper.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/app-wrapper.module.ts -------------------------------------------------------------------------------- /src/app/components/blockie/blockie.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/components/blockie/blockie.component.html -------------------------------------------------------------------------------- /src/app/components/blockie/blockie.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/components/blockie/blockie.component.scss -------------------------------------------------------------------------------- /src/app/components/blockie/blockie.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/components/blockie/blockie.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/blockie/blockie.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/components/blockie/blockie.component.ts -------------------------------------------------------------------------------- /src/app/components/faqs/faqs.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/components/faqs/faqs.component.html -------------------------------------------------------------------------------- /src/app/components/faqs/faqs.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/components/faqs/faqs.component.scss -------------------------------------------------------------------------------- /src/app/components/faqs/faqs.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/components/faqs/faqs.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/faqs/faqs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/components/faqs/faqs.component.ts -------------------------------------------------------------------------------- /src/app/components/graph/graph.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/components/graph/graph.component.html -------------------------------------------------------------------------------- /src/app/components/graph/graph.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/components/graph/graph.component.scss -------------------------------------------------------------------------------- /src/app/components/graph/graph.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/components/graph/graph.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/graph/graph.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/components/graph/graph.component.ts -------------------------------------------------------------------------------- /src/app/components/help-cards/help-cards.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/components/help-cards/help-cards.component.html -------------------------------------------------------------------------------- /src/app/components/help-cards/help-cards.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/components/help-cards/help-cards.component.scss -------------------------------------------------------------------------------- /src/app/components/help-cards/help-cards.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/components/help-cards/help-cards.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/help-cards/help-cards.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/components/help-cards/help-cards.component.ts -------------------------------------------------------------------------------- /src/app/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/components/index.ts -------------------------------------------------------------------------------- /src/app/components/share-dialog/share-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/components/share-dialog/share-dialog.component.html -------------------------------------------------------------------------------- /src/app/components/share-dialog/share-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/components/share-dialog/share-dialog.component.scss -------------------------------------------------------------------------------- /src/app/components/share-dialog/share-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/components/share-dialog/share-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/share-dialog/share-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/components/share-dialog/share-dialog.component.ts -------------------------------------------------------------------------------- /src/app/shared/animations/card-in-out.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/animations/card-in-out.ts -------------------------------------------------------------------------------- /src/app/shared/animations/ease-in-out.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/animations/ease-in-out.ts -------------------------------------------------------------------------------- /src/app/shared/contracts/kudos-organisations.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/contracts/kudos-organisations.service.spec.ts -------------------------------------------------------------------------------- /src/app/shared/contracts/kudos-organisations.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/contracts/kudos-organisations.service.ts -------------------------------------------------------------------------------- /src/app/shared/contracts/kudos-poll.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/contracts/kudos-poll.service.spec.ts -------------------------------------------------------------------------------- /src/app/shared/contracts/kudos-poll.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/contracts/kudos-poll.service.ts -------------------------------------------------------------------------------- /src/app/shared/contracts/kudos-token.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/contracts/kudos-token.service.spec.ts -------------------------------------------------------------------------------- /src/app/shared/contracts/kudos-token.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/contracts/kudos-token.service.ts -------------------------------------------------------------------------------- /src/app/shared/contracts/mixins/basic-token.mixin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/contracts/mixins/basic-token.mixin.spec.ts -------------------------------------------------------------------------------- /src/app/shared/contracts/mixins/basic-token.mixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/contracts/mixins/basic-token.mixin.ts -------------------------------------------------------------------------------- /src/app/shared/contracts/mixins/burnable-token.mixin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/contracts/mixins/burnable-token.mixin.spec.ts -------------------------------------------------------------------------------- /src/app/shared/contracts/mixins/burnable-token.mixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/contracts/mixins/burnable-token.mixin.ts -------------------------------------------------------------------------------- /src/app/shared/contracts/mixins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/contracts/mixins/index.ts -------------------------------------------------------------------------------- /src/app/shared/contracts/mixins/membership.mixin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/contracts/mixins/membership.mixin.spec.ts -------------------------------------------------------------------------------- /src/app/shared/contracts/mixins/membership.mixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/contracts/mixins/membership.mixin.ts -------------------------------------------------------------------------------- /src/app/shared/contracts/mixins/owneable.mixin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/contracts/mixins/owneable.mixin.spec.ts -------------------------------------------------------------------------------- /src/app/shared/contracts/mixins/owneable.mixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/contracts/mixins/owneable.mixin.ts -------------------------------------------------------------------------------- /src/app/shared/contracts/mixins/smart-contract-extender.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/contracts/mixins/smart-contract-extender.helper.ts -------------------------------------------------------------------------------- /src/app/shared/contracts/smart-contract.abstract.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/contracts/smart-contract.abstract.spec.ts -------------------------------------------------------------------------------- /src/app/shared/contracts/smart-contract.abstract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/contracts/smart-contract.abstract.ts -------------------------------------------------------------------------------- /src/app/shared/contracts/truffle.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/contracts/truffle.interface.ts -------------------------------------------------------------------------------- /src/app/shared/guards/is-connected.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/guards/is-connected.guard.spec.ts -------------------------------------------------------------------------------- /src/app/shared/guards/is-connected.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/guards/is-connected.guard.ts -------------------------------------------------------------------------------- /src/app/shared/guards/is-owner.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/guards/is-owner.guard.spec.ts -------------------------------------------------------------------------------- /src/app/shared/guards/is-owner.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/guards/is-owner.guard.ts -------------------------------------------------------------------------------- /src/app/shared/guards/is-poll.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/guards/is-poll.guard.spec.ts -------------------------------------------------------------------------------- /src/app/shared/guards/is-poll.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/guards/is-poll.guard.ts -------------------------------------------------------------------------------- /src/app/shared/guards/is-token.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/guards/is-token.guard.spec.ts -------------------------------------------------------------------------------- /src/app/shared/guards/is-token.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/guards/is-token.guard.ts -------------------------------------------------------------------------------- /src/app/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/index.ts -------------------------------------------------------------------------------- /src/app/shared/kudos-poll-factory.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/kudos-poll-factory.service.spec.ts -------------------------------------------------------------------------------- /src/app/shared/kudos-poll-factory.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/kudos-poll-factory.service.ts -------------------------------------------------------------------------------- /src/app/shared/kudos-token-factory.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/kudos-token-factory.service.spec.ts -------------------------------------------------------------------------------- /src/app/shared/kudos-token-factory.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/kudos-token-factory.service.ts -------------------------------------------------------------------------------- /src/app/shared/moesif.helpers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/moesif.helpers.spec.ts -------------------------------------------------------------------------------- /src/app/shared/moesif.helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/moesif.helpers.ts -------------------------------------------------------------------------------- /src/app/shared/service-worker.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/service-worker.service.spec.ts -------------------------------------------------------------------------------- /src/app/shared/service-worker.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/service-worker.service.ts -------------------------------------------------------------------------------- /src/app/shared/store/account/account.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/account/account.actions.ts -------------------------------------------------------------------------------- /src/app/shared/store/account/account.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/account/account.effects.ts -------------------------------------------------------------------------------- /src/app/shared/store/account/account.reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/account/account.reducers.ts -------------------------------------------------------------------------------- /src/app/shared/store/account/account.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/account/account.spec.ts -------------------------------------------------------------------------------- /src/app/shared/store/account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/account/index.ts -------------------------------------------------------------------------------- /src/app/shared/store/effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/effects.ts -------------------------------------------------------------------------------- /src/app/shared/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/index.ts -------------------------------------------------------------------------------- /src/app/shared/store/kudos-poll/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/kudos-poll/index.ts -------------------------------------------------------------------------------- /src/app/shared/store/kudos-poll/kudos-poll.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/kudos-poll/kudos-poll.actions.ts -------------------------------------------------------------------------------- /src/app/shared/store/kudos-poll/kudos-poll.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/kudos-poll/kudos-poll.effects.ts -------------------------------------------------------------------------------- /src/app/shared/store/kudos-poll/kudos-poll.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/kudos-poll/kudos-poll.models.ts -------------------------------------------------------------------------------- /src/app/shared/store/kudos-poll/kudos-poll.reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/kudos-poll/kudos-poll.reducers.ts -------------------------------------------------------------------------------- /src/app/shared/store/kudos-poll/kudos-poll.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/kudos-poll/kudos-poll.spec.ts -------------------------------------------------------------------------------- /src/app/shared/store/kudos-token/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/kudos-token/index.ts -------------------------------------------------------------------------------- /src/app/shared/store/kudos-token/kudos-token.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/kudos-token/kudos-token.actions.ts -------------------------------------------------------------------------------- /src/app/shared/store/kudos-token/kudos-token.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/kudos-token/kudos-token.effects.ts -------------------------------------------------------------------------------- /src/app/shared/store/kudos-token/kudos-token.models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/kudos-token/kudos-token.models.ts -------------------------------------------------------------------------------- /src/app/shared/store/kudos-token/kudos-token.reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/kudos-token/kudos-token.reducers.ts -------------------------------------------------------------------------------- /src/app/shared/store/kudos-token/kudos-token.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/kudos-token/kudos-token.spec.ts -------------------------------------------------------------------------------- /src/app/shared/store/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/reducers.ts -------------------------------------------------------------------------------- /src/app/shared/store/router/index.ts: -------------------------------------------------------------------------------- 1 | export * from './router.effects'; 2 | -------------------------------------------------------------------------------- /src/app/shared/store/router/router.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/router/router.effects.ts -------------------------------------------------------------------------------- /src/app/shared/store/router/router.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/router/router.spec.ts -------------------------------------------------------------------------------- /src/app/shared/store/status/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/status/index.ts -------------------------------------------------------------------------------- /src/app/shared/store/status/status.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/status/status.actions.ts -------------------------------------------------------------------------------- /src/app/shared/store/status/status.effects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/status/status.effects.ts -------------------------------------------------------------------------------- /src/app/shared/store/status/status.reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/status/status.reducers.ts -------------------------------------------------------------------------------- /src/app/shared/store/status/status.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/status/status.spec.ts -------------------------------------------------------------------------------- /src/app/shared/store/testing-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/store/testing-utils.ts -------------------------------------------------------------------------------- /src/app/shared/translation-loader.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/translation-loader.service.spec.ts -------------------------------------------------------------------------------- /src/app/shared/translation-loader.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/translation-loader.service.ts -------------------------------------------------------------------------------- /src/app/shared/web3.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/web3.service.spec.ts -------------------------------------------------------------------------------- /src/app/shared/web3.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/shared/web3.service.ts -------------------------------------------------------------------------------- /src/app/styles/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/app/styles/_index.scss -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/app-store-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/assets/app-store-badge.png -------------------------------------------------------------------------------- /src/assets/bg-colorful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/assets/bg-colorful.png -------------------------------------------------------------------------------- /src/assets/cipher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/assets/cipher.png -------------------------------------------------------------------------------- /src/assets/donation-qr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/assets/donation-qr.svg -------------------------------------------------------------------------------- /src/assets/google-play-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/assets/google-play-badge.png -------------------------------------------------------------------------------- /src/assets/metamask-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/assets/metamask-network.png -------------------------------------------------------------------------------- /src/assets/toshi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/assets/toshi.png -------------------------------------------------------------------------------- /src/environments/environment.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/environments/environment.e2e.ts -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/favicon.png -------------------------------------------------------------------------------- /src/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/i18n/en.json -------------------------------------------------------------------------------- /src/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/i18n/es.json -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/ngsw-config.json -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /test/KudosOrganisations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/test/KudosOrganisations.js -------------------------------------------------------------------------------- /test/KudosPoll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/test/KudosPoll.js -------------------------------------------------------------------------------- /test/KudosRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/test/KudosRouter.js -------------------------------------------------------------------------------- /test/KudosToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/test/KudosToken.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/truffle.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pedro-vk/EthKudos/HEAD/tslint.json --------------------------------------------------------------------------------