diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..bde819b --- /dev/null +++ b/css/style.css @@ -0,0 +1,168 @@ +/* global */ + +a { + color:#55a4ff; +} + +h1 { + font-size: 68px; + font-family: 'Source Sans Pro', sans-serif; +} + +h2 { + font-size: 24px; + font-weight: 600; + font-style: normal; + font-stretch: normal; + line-height: normal; + letter-spacing: normal; + color: #000000; + border-left: 2px solid #55a4ff; + text-indent: 16px; + left:-16px; + position:relative; + margin-top: 50px; + line-height: 24px; + font-family: 'Source Sans Pro', sans-serif; +} + +h3 { + font-size:14px; + line-height: 22px; + font-weight: 600; +} + +p { + font-size:14px; + font-family: 'Source Sans Pro', sans-serif; +} + +/* reusable sections */ +.white { + margin-bottom: 40px; +} +.grey { + background-color:#f3f4f6; + padding-bottom: 40px; + border-bottom: 1px solid #dddddd; +} + +/* sections */ +#header { + height: 596px; + color:#ffffff; + font-size: 18px; + + background: #55a4ff; + background-image: linear-gradient(131deg, #55a4ff, #6e67ff); /* fallback */ + background-image: url("../img/blocks.png"), linear-gradient(131deg, #55a4ff, #6e67ff); /* W3C */ + background-repeat: no-repeat; + background-position: right; +} + +#block { + position: absolute; + top: 502px; + right:26px; +} + +#header h1 { + font-weight: 700; + margin-bottom: 30px; +} +.logo { + margin-top:57px; + margin-bottom: 57px; +} + +#about .icon { + margin-top: 54px; + margin-bottom: 29px; +} + +.developer { + height:90px; +} +.developer .headshot { + width: 60px; + height: 60px; +} +.developer .headshot img { + border-radius: 30px; + height: 100%; + width: 100%; + margin-right: 20px; +} +.developer p { + margin-left: 20px; + margin-top:8px; +} +.developer a { + font-weight:600; + color:#000; + display: block; +} + +#projects { + padding: 1px; /* not sure why I need this */ + padding-bottom: 40px; +} + +#projects .logo { + margin-bottom: 20px; +} + +.news { + padding:40px 40px 40px 0px; +} +.news a { + color:#000; +} + +#footer { + background-image: linear-gradient(to bottom, #454545, #000000); + padding-top: 40px; + padding-bottom:60px; +} +#footer h1 { + font-size: 20px; + color:#ffffff; + margin-bottom: 20px; + margin-top:20px; +} +#footer img { + margin-top: 10px; + margin-bottom:10px; +} +#footer a { + font-size: 14px; + margin-right: 20px; + padding:10px; +} + +/* media queries */ + +/* Large devices (desktops, less than 1200px) */ +@media (max-width: 1199.98px) { +} + +/* Medium devices (tablets, less than 992px) */ +@media (max-width: 991.98px) { + h1 { + font-size: 54px; + } +} + +/* Small devices (landscape phones, less than 768px) */ +@media (max-width: 767.98px) { + h1 { + font-size: 44px; + } +} + +/* Extra small devices (portrait phones, less than 576px) */ +@media (max-width: 575.98px) { + h1 { + font-size: 34px; + } +} diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000..4032fd5 Binary files /dev/null and b/favicon.ico differ diff --git a/img/block.png b/img/block.png new file mode 100644 index 0000000..1d73ef2 Binary files /dev/null and b/img/block.png differ diff --git a/img/block@2x.png b/img/block@2x.png new file mode 100644 index 0000000..e59c850 Binary files /dev/null and b/img/block@2x.png differ diff --git a/img/block@3x.png b/img/block@3x.png new file mode 100644 index 0000000..5c63388 Binary files /dev/null and b/img/block@3x.png differ diff --git a/img/blocks.png b/img/blocks.png new file mode 100644 index 0000000..ab298af Binary files /dev/null and b/img/blocks.png differ diff --git a/img/blocks@2x.png b/img/blocks@2x.png new file mode 100644 index 0000000..6c7a186 Binary files /dev/null and b/img/blocks@2x.png differ diff --git a/img/blocks@3x.png b/img/blocks@3x.png new file mode 100644 index 0000000..9e459a3 Binary files /dev/null and b/img/blocks@3x.png differ diff --git a/img/icon-email.png b/img/icon-email.png new file mode 100644 index 0000000..6a82a95 Binary files /dev/null and b/img/icon-email.png differ diff --git a/img/icon-email@2x.png b/img/icon-email@2x.png new file mode 100644 index 0000000..21532c9 Binary files /dev/null and b/img/icon-email@2x.png differ diff --git a/img/icon-email@3x.png b/img/icon-email@3x.png new file mode 100644 index 0000000..da6fa09 Binary files /dev/null and b/img/icon-email@3x.png differ diff --git a/img/icon-github.png b/img/icon-github.png new file mode 100644 index 0000000..f3c2acf Binary files /dev/null and b/img/icon-github.png differ diff --git a/img/icon-github@2x.png b/img/icon-github@2x.png new file mode 100644 index 0000000..80929d1 Binary files /dev/null and b/img/icon-github@2x.png differ diff --git a/img/icon-github@3x.png b/img/icon-github@3x.png new file mode 100644 index 0000000..285306c Binary files /dev/null and b/img/icon-github@3x.png differ diff --git a/img/icon-origin.png b/img/icon-origin.png new file mode 100644 index 0000000..9dcddd6 Binary files /dev/null and b/img/icon-origin.png differ diff --git a/img/icon-origin@2x.png b/img/icon-origin@2x.png new file mode 100644 index 0000000..386ef78 Binary files /dev/null and b/img/icon-origin@2x.png differ diff --git a/img/icon-origin@3x.png b/img/icon-origin@3x.png new file mode 100644 index 0000000..025a840 Binary files /dev/null and b/img/icon-origin@3x.png differ diff --git a/img/icon-telegram.png b/img/icon-telegram.png new file mode 100644 index 0000000..98e556d Binary files /dev/null and b/img/icon-telegram.png differ diff --git a/img/icon-telegram@2x.png b/img/icon-telegram@2x.png new file mode 100644 index 0000000..c361b51 Binary files /dev/null and b/img/icon-telegram@2x.png differ diff --git a/img/icon-telegram@3x.png b/img/icon-telegram@3x.png new file mode 100644 index 0000000..86506fc Binary files /dev/null and b/img/icon-telegram@3x.png differ diff --git a/img/logo-cleargraph.png b/img/logo-cleargraph.png new file mode 100644 index 0000000..d512362 Binary files /dev/null and b/img/logo-cleargraph.png differ diff --git a/img/logo-cleargraph@2x.png b/img/logo-cleargraph@2x.png new file mode 100644 index 0000000..e5a4497 Binary files /dev/null and b/img/logo-cleargraph@2x.png differ diff --git a/img/logo-cleargraph@3x.png b/img/logo-cleargraph@3x.png new file mode 100644 index 0000000..f6fca9f Binary files /dev/null and b/img/logo-cleargraph@3x.png differ diff --git a/img/logo-cryptokabn.png b/img/logo-cryptokabn.png new file mode 100644 index 0000000..fbc1c45 Binary files /dev/null and b/img/logo-cryptokabn.png differ diff --git a/img/logo-cryptokabn@2x.png b/img/logo-cryptokabn@2x.png new file mode 100644 index 0000000..8af1eb0 Binary files /dev/null and b/img/logo-cryptokabn@2x.png differ diff --git a/img/logo-cryptokabn@3x.png b/img/logo-cryptokabn@3x.png new file mode 100644 index 0000000..0bfc9d2 Binary files /dev/null and b/img/logo-cryptokabn@3x.png differ diff --git a/img/logo-dock.png b/img/logo-dock.png new file mode 100644 index 0000000..4b07027 Binary files /dev/null and b/img/logo-dock.png differ diff --git a/img/logo-dock@2x.png b/img/logo-dock@2x.png new file mode 100644 index 0000000..7f00a0f Binary files /dev/null and b/img/logo-dock@2x.png differ diff --git a/img/logo-dock@3x.png b/img/logo-dock@3x.png new file mode 100644 index 0000000..61b3ec3 Binary files /dev/null and b/img/logo-dock@3x.png differ diff --git a/img/logo-dream.png b/img/logo-dream.png new file mode 100644 index 0000000..a02efa0 Binary files /dev/null and b/img/logo-dream.png differ diff --git a/img/logo-dream@2x.png b/img/logo-dream@2x.png new file mode 100644 index 0000000..c5d64e2 Binary files /dev/null and b/img/logo-dream@2x.png differ diff --git a/img/logo-dream@3x.png b/img/logo-dream@3x.png new file mode 100644 index 0000000..fd4f1fe Binary files /dev/null and b/img/logo-dream@3x.png differ diff --git a/img/logo-fractal.png b/img/logo-fractal.png new file mode 100644 index 0000000..447e64f Binary files /dev/null and b/img/logo-fractal.png differ diff --git a/img/logo-fractal@2x.png b/img/logo-fractal@2x.png new file mode 100644 index 0000000..6d1013a Binary files /dev/null and b/img/logo-fractal@2x.png differ diff --git a/img/logo-fractal@3x.png b/img/logo-fractal@3x.png new file mode 100644 index 0000000..7140703 Binary files /dev/null and b/img/logo-fractal@3x.png differ diff --git a/img/logo-gnosis.png b/img/logo-gnosis.png new file mode 100644 index 0000000..d357f73 Binary files /dev/null and b/img/logo-gnosis.png differ diff --git a/img/logo-gnosis@2x.png b/img/logo-gnosis@2x.png new file mode 100644 index 0000000..507ec5b Binary files /dev/null and b/img/logo-gnosis@2x.png differ diff --git a/img/logo-gnosis@3x.png b/img/logo-gnosis@3x.png new file mode 100644 index 0000000..48a8f65 Binary files /dev/null and b/img/logo-gnosis@3x.png differ diff --git a/img/logo-kord.png b/img/logo-kord.png new file mode 100644 index 0000000..e7b7b43 Binary files /dev/null and b/img/logo-kord.png differ diff --git a/img/logo-kord@2x.png b/img/logo-kord@2x.png new file mode 100644 index 0000000..e0e500e Binary files /dev/null and b/img/logo-kord@2x.png differ diff --git a/img/logo-kord@3x.png b/img/logo-kord@3x.png new file mode 100644 index 0000000..8854a54 Binary files /dev/null and b/img/logo-kord@3x.png differ diff --git a/img/logo-origin.png b/img/logo-origin.png new file mode 100644 index 0000000..26931aa Binary files /dev/null and b/img/logo-origin.png differ diff --git a/img/logo-origin@2x.png b/img/logo-origin@2x.png new file mode 100644 index 0000000..3ce0319 Binary files /dev/null and b/img/logo-origin@2x.png differ diff --git a/img/logo-origin@3x.png b/img/logo-origin@3x.png new file mode 100644 index 0000000..f041f4a Binary files /dev/null and b/img/logo-origin@3x.png differ diff --git a/img/logo-polymath.png b/img/logo-polymath.png new file mode 100644 index 0000000..144e709 Binary files /dev/null and b/img/logo-polymath.png differ diff --git a/img/logo-polymath@2x.png b/img/logo-polymath@2x.png new file mode 100644 index 0000000..f2376f9 Binary files /dev/null and b/img/logo-polymath@2x.png differ diff --git a/img/logo-polymath@3x.png b/img/logo-polymath@3x.png new file mode 100644 index 0000000..cb290e6 Binary files /dev/null and b/img/logo-polymath@3x.png differ diff --git a/img/logo-propy.png b/img/logo-propy.png new file mode 100644 index 0000000..31832f0 Binary files /dev/null and b/img/logo-propy.png differ diff --git a/img/logo-propy@2x.png b/img/logo-propy@2x.png new file mode 100644 index 0000000..b76ef36 Binary files /dev/null and b/img/logo-propy@2x.png differ diff --git a/img/logo-propy@3x.png b/img/logo-propy@3x.png new file mode 100644 index 0000000..f7438be Binary files /dev/null and b/img/logo-propy@3x.png differ diff --git a/img/logo-public-market.png b/img/logo-public-market.png new file mode 100644 index 0000000..3813e74 Binary files /dev/null and b/img/logo-public-market.png differ diff --git a/img/logo-public-market@2x.png b/img/logo-public-market@2x.png new file mode 100644 index 0000000..1b2583c Binary files /dev/null and b/img/logo-public-market@2x.png differ diff --git a/img/logo-public-market@3x.png b/img/logo-public-market@3x.png new file mode 100644 index 0000000..b48f5cb Binary files /dev/null and b/img/logo-public-market@3x.png differ diff --git a/img/logo-status.png b/img/logo-status.png new file mode 100644 index 0000000..f08cc60 Binary files /dev/null and b/img/logo-status.png differ diff --git a/img/logo-status@2x.png b/img/logo-status@2x.png new file mode 100644 index 0000000..3dda276 Binary files /dev/null and b/img/logo-status@2x.png differ diff --git a/img/logo-status@3x.png b/img/logo-status@3x.png new file mode 100644 index 0000000..8a83213 Binary files /dev/null and b/img/logo-status@3x.png differ diff --git a/img/logo-verity.png b/img/logo-verity.png new file mode 100644 index 0000000..86352fc Binary files /dev/null and b/img/logo-verity.png differ diff --git a/img/logo-verity@2x.png b/img/logo-verity@2x.png new file mode 100644 index 0000000..ac3cd83 Binary files /dev/null and b/img/logo-verity@2x.png differ diff --git a/img/logo-verity@3x.png b/img/logo-verity@3x.png new file mode 100644 index 0000000..4691272 Binary files /dev/null and b/img/logo-verity@3x.png differ diff --git a/img/logo.png b/img/logo.png new file mode 100644 index 0000000..d4c0565 Binary files /dev/null and b/img/logo.png differ diff --git a/img/logo@2x.png b/img/logo@2x.png new file mode 100644 index 0000000..934b8e4 Binary files /dev/null and b/img/logo@2x.png differ diff --git a/img/logo@3x.png b/img/logo@3x.png new file mode 100644 index 0000000..b0215aa Binary files /dev/null and b/img/logo@3x.png differ diff --git a/img/what-icon.png b/img/what-icon.png new file mode 100644 index 0000000..0ecd8d8 Binary files /dev/null and b/img/what-icon.png differ diff --git a/img/what-icon@2x.png b/img/what-icon@2x.png new file mode 100644 index 0000000..97dd979 Binary files /dev/null and b/img/what-icon@2x.png differ diff --git a/img/what-icon@3x.png b/img/what-icon@3x.png new file mode 100644 index 0000000..77599c5 Binary files /dev/null and b/img/what-icon@3x.png differ diff --git a/img/why-icon.png b/img/why-icon.png new file mode 100644 index 0000000..26ca387 Binary files /dev/null and b/img/why-icon.png differ diff --git a/img/why-icon@2x.png b/img/why-icon@2x.png new file mode 100644 index 0000000..5452abf Binary files /dev/null and b/img/why-icon@2x.png differ diff --git a/img/why-icon@3x.png b/img/why-icon@3x.png new file mode 100644 index 0000000..c871b9b Binary files /dev/null and b/img/why-icon@3x.png differ diff --git a/index.html b/index.html index 92e9f40..48dfe21 100644 --- a/index.html +++ b/index.html @@ -1,10 +1,349 @@ - -

What is ERC 725?

-

ERC 725 is a proposed standard for blockchain-based identity authored by Fabian Vogelsteller, creator of ERC 20 and Web3.js. ERC 725 describes proxy smart contracts that can be controlled by multiple keys and other smart contracts. ERC 735 is an associated standard to add and remove claims to an ERC 725 identity smart contract. These identity smart contracts can describe humans, groups, objects, and machines. ERC 725 lives on the Ethereum blockchain.

+ + ERC725 Alliance + + + + + + + + + + + + +
+
+
+
+ +
+
+

What is ERC 725?

+

ERC 725 is a proposed standard for blockchain-based identity authored by Fabian Vogelsteller, creator of ERC 20 and Web3.js. ERC 725 describes proxy smart contracts that can be controlled by multiple keys and other smart contracts. ERC 735 is an associated standard to add claims to an ERC 725 identity smart contract. These identity smart contracts can describe humans, groups, objects, and machines. ERC 725 lives on the Ethereum blockchain.

+
+
+ +
+
+ +
+
+

Why ERC 725?

+

ERC 725 allows for self-sovereign identity. Users should be able to own and manage their identity instead of ceding ownership of identity to centralized organizations. We have seen the negative effects of having centralized identity with damaging leaks and unfair selling of user data and identity. An open, portable standard for identities will enable decentralized reputation, governance, and more. Users will be able to take their identity across different Dapps and platforms that support this standard.

+
+
+
+
+ +
+
+

Developers


+
+
+
+ +
+
+

+ Fabian Vogelsteller + Author of ERC 725 +

+
+
+
+
+ +
+
+

+ Nick Poulden + Engineer at Origin Protocol +

+
+
+
+
+ +
+
+

+ Josh Fraser + Cofounder Origin Protocol +

+
+
+
+
+ +
+
+

+ Mircea Pasoi + Engineer at Coinbase +

+
+
+
+
+ +
+
+

+ Adam Dossa + Engineer at Polymath +

+
+
+
+
+ +
+
+

+ Pablo Ruiz + Engineer at Polymath +

+
+
+
+
+ +
+
+

+ Stan James + Engineer at Origin Protocol +

+
+
+
+
+ +
+
+

+ Tyler Yasaka + Engineer at Origin Protocol +

+
+
+
+
+ +
+
+

+ Doug King + CTO at Verity +

+
+
+
+
+ +
+
+

+ Júlio Santos + CTO at Fractal +

+
+
+
+
+ +
+
+

+ Marek Kirejczyk + Engineer at EthWorks +

+
+
+
+
+ +
+
+

+ Fausto Vanin + Partner at OnePercent.io +

+
+
+ +
+
+
+ +
+
+ +

Projects

+ +
+ + + + + + + + + + + + + +
+ +
+
+ +
+
+

News

+
+
+
+

First impressions with ERC 725 and ERC 735 — identity and claims

+

"Fabian Vogelsteller, the creator of the Mist Browser and web3.js, is working on a new identity standard for Ethereum, ERC 725."

+ Read more » +
+
+
+
+

Q&A with DREAM Advisor, Fabian Vogelsteller, Author of ERC20 & ERC725

+

"To have an identity that people use and trusts, it needs to be on a trustless layer like Ethereum, or another public blockchain."

+ Read more » +
+
+
+
+

ERC725: A Self-Sovereign Identity Standard For Ethereum

+

"If you are who you say you are, then why must you prove it over and over again? One day, a blockchain-based standard could make the monotony of identity verification a relic of the past."

+ Read more » +
+
+
+
+

Origin DApp gets ERC 725 Identity, Transaction Steps, Escrow, and Reviews

+

"You can think of ERC 725-enabled identity a bit like Facebook Connect, but without the Facebook."

+ Read more » +
+
+
+
+

Managing Identity with a UI for ERC 725

+

"Although ERC 725 is still at an early stage, we believe it has great potential and our intention is to use it as the basis for managing identity and trust at Origin." +

+ Read more » +
+
+
+
+
+ + -

Why ERC 725?

-

ERC 725 allows for self-sovereign identity. Users should be able to own and manage their identity instead of ceding ownership of identity to centralized organizations. We have seen the negative effects of having centralized identity with damaging leaks and unfair selling of user data and identity. An open, portable standard for identities will enable decentralized reputation, governance, and more. Users will be able to take their identity across different Dapps and platforms that support this standard.

- + \ No newline at end of file