
├── .babelrc ├── .gitignore ├── LICENSE.txt ├── README.md ├── components ├── CorePrinciple.tsx ├── Description.tsx ├── Dots.tsx ├── EventCard.tsx ├── Events.tsx ├── Header.tsx ├── Members.tsx └── Section.tsx ├── lib ├── members.json └── mq.ts ├── next.config.js ├── out ├── 404 │ └── index.html ├── .nojekyll ├── CNAME ├── _next │ └── static │ │ ├── M5JAJV~qJn1IG6150hzXy │ │ └── pages │ │ │ ├── _app.js │ │ │ ├── _error.js │ │ │ └── index.js │ │ ├── MWZV9VKaCgw~6s0294Olf │ │ └── pages │ │ │ ├── _app.js │ │ │ ├── _error.js │ │ │ └── index.js │ │ ├── chunks │ │ └── commons.8f6215f5cc3146e31096.js │ │ ├── nL98ZtBEM1bVKaJI6k4ol │ │ └── pages │ │ │ ├── _app.js │ │ │ ├── _error.js │ │ │ └── index.js │ │ └── runtime │ │ ├── main-91754cbc66a26f000159.js │ │ └── webpack-42652fa8b82c329c0559.js ├── index.html ├── index │ └── index.html └── static │ ├── Aeonik-Bold.ttf │ ├── Aeonik-Regular.ttf │ ├── dots_dark.png │ ├── dots_light.png │ ├── events │ ├── defi-summit-prague.jpg │ └── defi-summit.jpg │ └── telegram.png ├── package.json ├── pages ├── _document.tsx └── index.tsx ├── static ├── Aeonik-Bold.ttf ├── Aeonik-Regular.ttf ├── dots_dark.png ├── dots_light.png ├── events │ ├── defi-summit-prague.jpg │ └── defi-summit.jpg └── telegram.png ├── tsconfig.json ├── typings └── emotion-normalize.d.ts └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["next/babel", "@zeit/next-typescript/babel"], 3 | "env": { 4 | "production": { 5 | "plugins": [["emotion", { "hoist": true }]] 6 | }, 7 | "development": { 8 | "plugins": [["emotion", { "sourceMap": true, "autoLabel": true }]] 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.gitignore.io/api/node 3 | 4 | ### Node ### 5 | # Logs 6 | logs 7 | *.log 8 | npm-debug.log* 9 | yarn-debug.log* 10 | yarn-error.log* 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | 24 | # nyc test coverage 25 | .nyc_output 26 | 27 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 28 | .grunt 29 | 30 | # Bower dependency directory (https://bower.io/) 31 | bower_components 32 | 33 | # node-waf configuration 34 | .lock-wscript 35 | 36 | # Compiled binary addons (https://nodejs.org/api/addons.html) 37 | build/Release 38 | 39 | # Dependency directories 40 | node_modules/ 41 | jspm_packages/ 42 | 43 | # Optional npm cache directory 44 | .npm 45 | 46 | # Optional eslint cache 47 | .eslintcache 48 | 49 | # Optional REPL history 50 | .node_repl_history 51 | 52 | # Output of 'npm pack' 53 | *.tgz 54 | 55 | # Yarn Integrity file 56 | .yarn-integrity 57 | 58 | # dotenv environment variables file 59 | .env 60 | 61 | # parcel-bundler cache (https://parceljs.org/) 62 | .cache 63 | 64 | # next.js build output 65 | .next 66 | 67 | # nuxt.js build output 68 | .nuxt 69 | 70 | # vuepress build output 71 | .vuepress/dist 72 | 73 | # Serverless directories 74 | .serverless 75 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | Copyright (c) 2018 Ian Macalinao 3 | 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 18 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 19 | DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 20 | OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE 21 | OR OTHER DEALINGS IN THE SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # @defi/site 2 | 3 | The DeFi website. 4 | 5 | ## Running 6 | 7 | We use Next.js to build the website. 8 | 9 | ``` 10 | $ yarn 11 | $ yarn dev 12 | ``` 13 | 14 | ## Deploying 15 | 16 | First, ensure you have no uncommitted changes. Then: 17 | 18 | ``` 19 | $ yarn deploy 20 | ``` 21 | 22 | This will push the website to GitHub Pages, and the changes will be reflected shortly. 23 | 24 | ## License 25 | 26 | MIT -------------------------------------------------------------------------------- /components/CorePrinciple.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react"; 2 | import styled from "react-emotion"; 3 | import mq from "../lib/mq"; 4 | import { css } from "emotion"; 5 | 6 | type Props = { 7 | id: string; 8 | className?: string; 9 | title: string; 10 | children: any; 11 | }; 12 | 13 | const CorePrinciple = ({ id, className, title, children }: Props) => ( 14 |
12 | We saw an overlap in the problems that decentralized finance protocols 13 | were trying to solve and thought there would be no better way to tackle 14 | them then by forming an open community of like-minded projects. 15 |
16 |27 | Members of DeFi take interoperability into account when building 28 | their projects. This helps strengthen the compounding effects of all 29 | our projects as a whole. Open sourcing helps us reach this goal by 30 | allowing us to collectively understand how all of our products can 31 | be woven together on a technical level. 32 |
33 |42 | We strive to create a financial system that is accessible to anyone 43 | with an internet connection. We believe in a world where value flows 44 | freely, regardless of one’s geographic location. 45 |
46 |49 | We believe that financial services should not be built in opaque 50 | silos, but rather that market-level information should be 51 | transparent to all participants while still preserving individual 52 | privacy. 53 |
54 |f)&&(L=($=$.replace(" ",":")).length),0
1?i-1:0),s=1;s h4{margin-top:0;margin-bottom:17px;",j.medium(Object(s.css)("font-size:14px;line-height:17px;letter-spacing:normal;")),";}"),ne=w(ee,{target:"ewvgo0i1"})("background-color:#fafbff;h2{margin-bottom:14px;}"),re=n(77);function ie(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=[],r=!0,i=!1,a=void 0;try{for(var o,s=e[Symbol.iterator]();!(r=(o=s.next()).done)&&(n.push(o.value),!t||n.length!==t);r=!0);}catch(e){i=!0,a=e}finally{try{r||null==s.return||s.return()}finally{if(i)throw a}}return n}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}var ae=w(function(e){var t=e.header,n=e.members,i=e.className;return r.createElement("div",{className:i},r.createElement("h4",null,t),r.createElement("ul",null,n.map(function(e){var t=re.members[e];return r.createElement("li",{key:e},r.createElement("a",{href:t&&t.url||"#",target:"_blank"},e))})))},{target:"ebj7umv0"})('h4{color:#000d45;font-size:28px;font-weight:bold;line-height:34px;:after{display:block;content:"";margin-top:12px;height:1px;width:33px;border-bottom:5px solid #0734ff;}margin-bottom:27px;}ul{list-style:none;padding:0;margin:0;}a{text-decoration:none;color:#0734ff;font-size:20px;line-height:24px;:hover{color:#000d45;}}margin-bottom:67px;'),oe=function(e){var t=e.categories;return r.createElement("div",{className:Object(s.css)("flex:50%;")},t.map(function(e){var t=ie(e,2),n=t[0],i=t[1];return r.createElement(ae,{header:n,members:i})}))},se=w("div",{target:"ebj7umv1"})("display:flex;",j.medium(Object(s.css)("flex-direction:column;")),";"),ce=w(function(e){var t=e.className,n=Object.entries(re.categories).sort(function(e,t){return e f)&&(L=($=$.replace(" ",":")).length),0 1?i-1:0),s=1;s h4{margin-top:0;margin-bottom:17px;",j.medium(Object(s.css)("font-size:14px;line-height:17px;letter-spacing:normal;")),";}"),ne=w(ee,{target:"ewvgo0i1"})("background-color:#fafbff;h2{margin-bottom:14px;}"),re=n(77);function ie(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=[],r=!0,i=!1,a=void 0;try{for(var o,s=e[Symbol.iterator]();!(r=(o=s.next()).done)&&(n.push(o.value),!t||n.length!==t);r=!0);}catch(e){i=!0,a=e}finally{try{r||null==s.return||s.return()}finally{if(i)throw a}}return n}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}var ae=w(function(e){var t=e.header,n=e.members,i=e.className;return r.createElement("div",{className:i},r.createElement("h4",null,t),r.createElement("ul",null,n.map(function(e){var t=re.members[e];return r.createElement("li",{key:e},r.createElement("a",{href:t&&t.url||"#",target:"_blank"},e))})))},{target:"ebj7umv0"})('h4{color:#000d45;font-size:28px;font-weight:bold;line-height:34px;:after{display:block;content:"";margin-top:12px;height:1px;width:33px;border-bottom:5px solid #0734ff;}margin-bottom:27px;}ul{list-style:none;padding:0;margin:0;}a{text-decoration:none;color:#0734ff;font-size:20px;line-height:24px;:hover{color:#000d45;}}margin-bottom:67px;'),oe=function(e){var t=e.categories;return r.createElement("div",{className:Object(s.css)("flex:50%;")},t.map(function(e){var t=ie(e,2),n=t[0],i=t[1];return r.createElement(ae,{header:n,members:i})}))},se=w("div",{target:"ebj7umv1"})("display:flex;",j.medium(Object(s.css)("flex-direction:column;")),";"),ce=w(function(e){var t=e.className,n=Object.entries(re.categories).sort(function(e,t){return e An Open Community of Decentralized Finance Platforms We saw an overlap in the problems that decentralized finance protocols were trying to solve and thought there would be no better way to tackle them then by forming an open community of like-minded projects. Members of DeFi take interoperability into account when building their projects. This helps strengthen the compounding effects of all our projects as a whole. Open sourcing helps us reach this goal by allowing us to collectively understand how all of our products can be woven together on a technical level. We strive to create a financial system that is accessible to anyone with an internet connection. We believe in a world where value flows freely, regardless of one’s geographic location. We believe that financial services should not be built in opaque silos, but rather that market-level information should be transparent to all participants while still preserving individual privacy. An Open Community of Decentralized Finance Platforms We saw an overlap in the problems that decentralized finance protocols were trying to solve and thought there would be no better way to tackle them then by forming an open community of like-minded projects. Members of DeFi take interoperability into account when building their projects. This helps strengthen the compounding effects of all our projects as a whole. Open sourcing helps us reach this goal by allowing us to collectively understand how all of our products can be woven together on a technical level. We strive to create a financial system that is accessible to anyone with an internet connection. We believe in a world where value flows freely, regardless of one’s geographic location. We believe that financial services should not be built in opaque silos, but rather that market-level information should be transparent to all participants while still preserving individual privacy.s.charCodeAt(0)&&(s=s.trim()),s=[s],0t&&(t=8),S=tDeFi
Join the Telegram
DeFi is a Movement
Our Core Principles
Interoperability and Open Source
Accessibility and Financial Inclusion
Financial Transparency
DeFi
Join the Telegram
DeFi is a Movement
Our Core Principles
Interoperability and Open Source
Accessibility and Financial Inclusion
Financial Transparency