├── .editorconfig ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── _config.yml ├── gulpfile.js ├── package.json ├── scripts ├── filter-html.js ├── generator-i18n.js ├── helper-require.js ├── processor-pages.js └── processor-posts.js ├── source ├── _data │ ├── en.yml │ ├── languages.yml │ └── zh.yml ├── en │ ├── build │ │ └── index.md │ ├── contact │ │ └── index.md │ ├── contributors │ │ └── index.md │ ├── faq │ │ └── index.md │ ├── learn │ │ ├── cash.md │ │ ├── compare.md │ │ ├── debit.md │ │ ├── framework.md │ │ ├── generalized-plasma.md │ │ ├── index.md │ │ ├── mvp.md │ │ └── prime.md │ ├── research │ │ └── index.md │ └── resources │ │ └── index.md ├── favicon.ico ├── img │ ├── apple-touch-icon.png │ ├── favicon.png │ ├── index │ │ ├── architecture.jpeg │ │ ├── cryptoeconomics.png │ │ ├── ethresearch.png │ │ ├── hero.png │ │ ├── karl-dot-tech.png │ │ └── omisego.png │ ├── learn │ │ ├── cash │ │ │ ├── pc-block.png │ │ │ └── pc-tx.png │ │ └── debit │ │ │ ├── pd-channels.png │ │ │ ├── pd-payment.png │ │ │ └── pd-xfer.png │ ├── logo-dark.png │ ├── logo-light.png │ ├── misc │ │ └── github │ │ │ ├── github1.png │ │ │ ├── github2.png │ │ │ └── github3.png │ ├── plasma-cash │ │ ├── pc-block.png │ │ └── pc-tx.png │ └── plasma-debit │ │ ├── pd-channels.png │ │ ├── pd-payment.png │ │ └── pd-xfer.png ├── index.html ├── robots.txt └── zh │ ├── build │ └── index.md │ ├── contact │ └── index.md │ ├── contributors │ └── index.md │ ├── faq │ └── index.md │ ├── learn │ ├── cash.md │ ├── compare.md │ ├── debit.md │ ├── framework.md │ ├── index.md │ └── mvp.md │ ├── research │ └── index.md │ └── resources │ └── index.md ├── themes └── learn-plasma │ ├── _config.yml │ ├── layout │ ├── category.ejs │ ├── generic.ejs │ ├── index.ejs │ ├── layout.ejs │ ├── page.ejs │ ├── post.ejs │ └── tag.ejs │ └── src │ ├── fonts │ ├── Barlow-Medium.ttf │ ├── Barlow-Regular.ttf │ ├── Barlow-Thin.ttf │ ├── OpenSans-Bold.ttf │ ├── OpenSans-Light.ttf │ ├── OpenSans-Regular.ttf │ ├── OpenSans-SemiBold.ttf │ └── themify.ttf │ ├── index.js │ ├── index.styl │ └── js │ └── page.js └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/_config.yml -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/package.json -------------------------------------------------------------------------------- /scripts/filter-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/scripts/filter-html.js -------------------------------------------------------------------------------- /scripts/generator-i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/scripts/generator-i18n.js -------------------------------------------------------------------------------- /scripts/helper-require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/scripts/helper-require.js -------------------------------------------------------------------------------- /scripts/processor-pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/scripts/processor-pages.js -------------------------------------------------------------------------------- /scripts/processor-posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/scripts/processor-posts.js -------------------------------------------------------------------------------- /source/_data/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/_data/en.yml -------------------------------------------------------------------------------- /source/_data/languages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/_data/languages.yml -------------------------------------------------------------------------------- /source/_data/zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/_data/zh.yml -------------------------------------------------------------------------------- /source/en/build/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/en/build/index.md -------------------------------------------------------------------------------- /source/en/contact/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/en/contact/index.md -------------------------------------------------------------------------------- /source/en/contributors/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/en/contributors/index.md -------------------------------------------------------------------------------- /source/en/faq/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/en/faq/index.md -------------------------------------------------------------------------------- /source/en/learn/cash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/en/learn/cash.md -------------------------------------------------------------------------------- /source/en/learn/compare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/en/learn/compare.md -------------------------------------------------------------------------------- /source/en/learn/debit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/en/learn/debit.md -------------------------------------------------------------------------------- /source/en/learn/framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/en/learn/framework.md -------------------------------------------------------------------------------- /source/en/learn/generalized-plasma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/en/learn/generalized-plasma.md -------------------------------------------------------------------------------- /source/en/learn/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/en/learn/index.md -------------------------------------------------------------------------------- /source/en/learn/mvp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/en/learn/mvp.md -------------------------------------------------------------------------------- /source/en/learn/prime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/en/learn/prime.md -------------------------------------------------------------------------------- /source/en/research/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/en/research/index.md -------------------------------------------------------------------------------- /source/en/resources/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/en/resources/index.md -------------------------------------------------------------------------------- /source/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/apple-touch-icon.png -------------------------------------------------------------------------------- /source/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/favicon.png -------------------------------------------------------------------------------- /source/img/index/architecture.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/index/architecture.jpeg -------------------------------------------------------------------------------- /source/img/index/cryptoeconomics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/index/cryptoeconomics.png -------------------------------------------------------------------------------- /source/img/index/ethresearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/index/ethresearch.png -------------------------------------------------------------------------------- /source/img/index/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/index/hero.png -------------------------------------------------------------------------------- /source/img/index/karl-dot-tech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/index/karl-dot-tech.png -------------------------------------------------------------------------------- /source/img/index/omisego.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/index/omisego.png -------------------------------------------------------------------------------- /source/img/learn/cash/pc-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/learn/cash/pc-block.png -------------------------------------------------------------------------------- /source/img/learn/cash/pc-tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/learn/cash/pc-tx.png -------------------------------------------------------------------------------- /source/img/learn/debit/pd-channels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/learn/debit/pd-channels.png -------------------------------------------------------------------------------- /source/img/learn/debit/pd-payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/learn/debit/pd-payment.png -------------------------------------------------------------------------------- /source/img/learn/debit/pd-xfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/learn/debit/pd-xfer.png -------------------------------------------------------------------------------- /source/img/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/logo-dark.png -------------------------------------------------------------------------------- /source/img/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/logo-light.png -------------------------------------------------------------------------------- /source/img/misc/github/github1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/misc/github/github1.png -------------------------------------------------------------------------------- /source/img/misc/github/github2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/misc/github/github2.png -------------------------------------------------------------------------------- /source/img/misc/github/github3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/misc/github/github3.png -------------------------------------------------------------------------------- /source/img/plasma-cash/pc-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/plasma-cash/pc-block.png -------------------------------------------------------------------------------- /source/img/plasma-cash/pc-tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/plasma-cash/pc-tx.png -------------------------------------------------------------------------------- /source/img/plasma-debit/pd-channels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/plasma-debit/pd-channels.png -------------------------------------------------------------------------------- /source/img/plasma-debit/pd-payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/plasma-debit/pd-payment.png -------------------------------------------------------------------------------- /source/img/plasma-debit/pd-xfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/img/plasma-debit/pd-xfer.png -------------------------------------------------------------------------------- /source/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/index.html -------------------------------------------------------------------------------- /source/robots.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/zh/build/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/zh/build/index.md -------------------------------------------------------------------------------- /source/zh/contact/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/zh/contact/index.md -------------------------------------------------------------------------------- /source/zh/contributors/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/zh/contributors/index.md -------------------------------------------------------------------------------- /source/zh/faq/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/zh/faq/index.md -------------------------------------------------------------------------------- /source/zh/learn/cash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/zh/learn/cash.md -------------------------------------------------------------------------------- /source/zh/learn/compare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/zh/learn/compare.md -------------------------------------------------------------------------------- /source/zh/learn/debit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/zh/learn/debit.md -------------------------------------------------------------------------------- /source/zh/learn/framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/zh/learn/framework.md -------------------------------------------------------------------------------- /source/zh/learn/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/zh/learn/index.md -------------------------------------------------------------------------------- /source/zh/learn/mvp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/zh/learn/mvp.md -------------------------------------------------------------------------------- /source/zh/research/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/zh/research/index.md -------------------------------------------------------------------------------- /source/zh/resources/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/source/zh/resources/index.md -------------------------------------------------------------------------------- /themes/learn-plasma/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/themes/learn-plasma/_config.yml -------------------------------------------------------------------------------- /themes/learn-plasma/layout/category.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/themes/learn-plasma/layout/category.ejs -------------------------------------------------------------------------------- /themes/learn-plasma/layout/generic.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/themes/learn-plasma/layout/generic.ejs -------------------------------------------------------------------------------- /themes/learn-plasma/layout/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/themes/learn-plasma/layout/index.ejs -------------------------------------------------------------------------------- /themes/learn-plasma/layout/layout.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/themes/learn-plasma/layout/layout.ejs -------------------------------------------------------------------------------- /themes/learn-plasma/layout/page.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/themes/learn-plasma/layout/page.ejs -------------------------------------------------------------------------------- /themes/learn-plasma/layout/post.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/themes/learn-plasma/layout/post.ejs -------------------------------------------------------------------------------- /themes/learn-plasma/layout/tag.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/themes/learn-plasma/layout/tag.ejs -------------------------------------------------------------------------------- /themes/learn-plasma/src/fonts/Barlow-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/themes/learn-plasma/src/fonts/Barlow-Medium.ttf -------------------------------------------------------------------------------- /themes/learn-plasma/src/fonts/Barlow-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/themes/learn-plasma/src/fonts/Barlow-Regular.ttf -------------------------------------------------------------------------------- /themes/learn-plasma/src/fonts/Barlow-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/themes/learn-plasma/src/fonts/Barlow-Thin.ttf -------------------------------------------------------------------------------- /themes/learn-plasma/src/fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/themes/learn-plasma/src/fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /themes/learn-plasma/src/fonts/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/themes/learn-plasma/src/fonts/OpenSans-Light.ttf -------------------------------------------------------------------------------- /themes/learn-plasma/src/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/themes/learn-plasma/src/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /themes/learn-plasma/src/fonts/OpenSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/themes/learn-plasma/src/fonts/OpenSans-SemiBold.ttf -------------------------------------------------------------------------------- /themes/learn-plasma/src/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/themes/learn-plasma/src/fonts/themify.ttf -------------------------------------------------------------------------------- /themes/learn-plasma/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/themes/learn-plasma/src/index.js -------------------------------------------------------------------------------- /themes/learn-plasma/src/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/themes/learn-plasma/src/index.styl -------------------------------------------------------------------------------- /themes/learn-plasma/src/js/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/themes/learn-plasma/src/js/page.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethsociety/learn-plasma/HEAD/webpack.config.js --------------------------------------------------------------------------------