├── .gitignore ├── README.md ├── docs ├── CNAME ├── assets │ ├── css │ │ ├── app.css │ │ └── vendor.css │ ├── img │ │ ├── 0x.png │ │ ├── 0xcert.org.png │ │ ├── 721_cover.gif │ │ ├── NFT_01.png │ │ ├── NFT_02.png │ │ ├── NFT_03.png │ │ ├── auctionity.png │ │ ├── axiomzen.jpg │ │ ├── axiomzen.png │ │ ├── cipher.svg │ │ ├── cryptocelebrities-bw.png │ │ ├── cryptocelebrities.png │ │ ├── cryptokitties-bw.png │ │ ├── cryptokitties.png │ │ ├── cryptopunks-bw.png │ │ ├── cryptopunks.png │ │ ├── decentraland.png │ │ ├── dot-license.png │ │ ├── emoon.png │ │ ├── ethertulips-bw.png │ │ ├── ethertulips.png │ │ ├── fungible.png │ │ ├── ideo-colab.jpeg │ │ ├── ideo-colab.png │ │ ├── ideo.png │ │ ├── imtoken-logo.png │ │ ├── known-origin.png │ │ ├── mycollectibles-logo.png │ │ ├── nonfungible.com.png │ │ ├── open-sea.png │ │ ├── open-zeppelin.png │ │ ├── rarebits.png │ │ ├── rdr-0x.png │ │ ├── rr-branding.svg │ │ ├── smartz.png │ │ ├── status-logo.svg │ │ ├── su-squares.png │ │ ├── toshi-green-square.png │ │ ├── toshi-green.png │ │ ├── toshi-green.svg │ │ ├── toshi-white.svg │ │ └── trust-logo.png │ ├── js │ │ ├── app.js │ │ └── vendor.js │ ├── mycollectibles-logo.png │ └── webfonts │ │ ├── din │ │ ├── 356F97_0_0.eot │ │ ├── 356F97_0_0.ttf │ │ ├── 356F97_0_0.woff │ │ ├── 356F97_0_0.woff2 │ │ ├── 356F97_1_0.eot │ │ ├── 356F97_1_0.ttf │ │ ├── 356F97_1_0.woff │ │ └── 356F97_1_0.woff2 │ │ └── rolanti │ │ ├── 35CD78_0_0.eot │ │ ├── 35CD78_0_0.ttf │ │ ├── 35CD78_0_0.woff │ │ ├── 35CD78_0_0.woff2 │ │ ├── 35CD78_1_0.eot │ │ ├── 35CD78_1_0.ttf │ │ ├── 35CD78_1_0.woff │ │ ├── 35CD78_1_0.woff2 │ │ ├── 35CD78_2_0.eot │ │ ├── 35CD78_2_0.ttf │ │ ├── 35CD78_2_0.woff │ │ ├── 35CD78_2_0.woff2 │ │ ├── 35CD78_3_0.eot │ │ ├── 35CD78_3_0.ttf │ │ ├── 35CD78_3_0.woff │ │ ├── 35CD78_3_0.woff2 │ │ ├── 35CD78_4_0.eot │ │ ├── 35CD78_4_0.ttf │ │ ├── 35CD78_4_0.woff │ │ └── 35CD78_4_0.woff2 ├── favicon.ico └── index.html ├── gulpfile.js ├── package.json └── source ├── _ ├── img │ ├── .DS_Store │ ├── 0x.png │ ├── 0xcert.org.png │ ├── 721_cover.gif │ ├── NFT_01.png │ ├── NFT_02.png │ ├── NFT_03.png │ ├── auctionity.png │ ├── axiomzen.jpg │ ├── axiomzen.png │ ├── cipher.svg │ ├── cryptocelebrities-bw.png │ ├── cryptocelebrities.png │ ├── cryptokitties-bw.png │ ├── cryptokitties.png │ ├── cryptopunks-bw.png │ ├── cryptopunks.png │ ├── decentraland.png │ ├── dot-license.png │ ├── emoon.png │ ├── ethertulips-bw.png │ ├── ethertulips.png │ ├── fungible.png │ ├── ideo-colab.jpeg │ ├── ideo-colab.png │ ├── ideo.png │ ├── imtoken-logo.png │ ├── known-origin.png │ ├── mycollectibles-logo.png │ ├── nonfungible.com.png │ ├── open-sea.png │ ├── open-zeppelin.png │ ├── rarebits.png │ ├── rdr-0x.png │ ├── rr-branding.svg │ ├── smartz.png │ ├── status-logo.svg │ ├── su-squares.png │ ├── toshi-green-square.png │ ├── toshi-green.png │ ├── toshi-green.svg │ ├── toshi-white.svg │ └── trust-logo.png ├── js │ └── app.js └── sass │ ├── main.scss │ └── style.scss ├── assets └── webfonts │ ├── din │ ├── 356F97_0_0.eot │ ├── 356F97_0_0.ttf │ ├── 356F97_0_0.woff │ ├── 356F97_0_0.woff2 │ ├── 356F97_1_0.eot │ ├── 356F97_1_0.ttf │ ├── 356F97_1_0.woff │ └── 356F97_1_0.woff2 │ └── rolanti │ ├── 35CD78_0_0.eot │ ├── 35CD78_0_0.ttf │ ├── 35CD78_0_0.woff │ ├── 35CD78_0_0.woff2 │ ├── 35CD78_1_0.eot │ ├── 35CD78_1_0.ttf │ ├── 35CD78_1_0.woff │ ├── 35CD78_1_0.woff2 │ ├── 35CD78_2_0.eot │ ├── 35CD78_2_0.ttf │ ├── 35CD78_2_0.woff │ ├── 35CD78_2_0.woff2 │ ├── 35CD78_3_0.eot │ ├── 35CD78_3_0.ttf │ ├── 35CD78_3_0.woff │ ├── 35CD78_3_0.woff2 │ ├── 35CD78_4_0.eot │ ├── 35CD78_4_0.ttf │ ├── 35CD78_4_0.woff │ └── 35CD78_4_0.woff2 ├── favicon.ico └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | package-lock.json 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/README.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | erc721.org -------------------------------------------------------------------------------- /docs/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/css/app.css -------------------------------------------------------------------------------- /docs/assets/css/vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/css/vendor.css -------------------------------------------------------------------------------- /docs/assets/img/0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/0x.png -------------------------------------------------------------------------------- /docs/assets/img/0xcert.org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/0xcert.org.png -------------------------------------------------------------------------------- /docs/assets/img/721_cover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/721_cover.gif -------------------------------------------------------------------------------- /docs/assets/img/NFT_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/NFT_01.png -------------------------------------------------------------------------------- /docs/assets/img/NFT_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/NFT_02.png -------------------------------------------------------------------------------- /docs/assets/img/NFT_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/NFT_03.png -------------------------------------------------------------------------------- /docs/assets/img/auctionity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/auctionity.png -------------------------------------------------------------------------------- /docs/assets/img/axiomzen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/axiomzen.jpg -------------------------------------------------------------------------------- /docs/assets/img/axiomzen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/axiomzen.png -------------------------------------------------------------------------------- /docs/assets/img/cipher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/cipher.svg -------------------------------------------------------------------------------- /docs/assets/img/cryptocelebrities-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/cryptocelebrities-bw.png -------------------------------------------------------------------------------- /docs/assets/img/cryptocelebrities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/cryptocelebrities.png -------------------------------------------------------------------------------- /docs/assets/img/cryptokitties-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/cryptokitties-bw.png -------------------------------------------------------------------------------- /docs/assets/img/cryptokitties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/cryptokitties.png -------------------------------------------------------------------------------- /docs/assets/img/cryptopunks-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/cryptopunks-bw.png -------------------------------------------------------------------------------- /docs/assets/img/cryptopunks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/cryptopunks.png -------------------------------------------------------------------------------- /docs/assets/img/decentraland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/decentraland.png -------------------------------------------------------------------------------- /docs/assets/img/dot-license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/dot-license.png -------------------------------------------------------------------------------- /docs/assets/img/emoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/emoon.png -------------------------------------------------------------------------------- /docs/assets/img/ethertulips-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/ethertulips-bw.png -------------------------------------------------------------------------------- /docs/assets/img/ethertulips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/ethertulips.png -------------------------------------------------------------------------------- /docs/assets/img/fungible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/fungible.png -------------------------------------------------------------------------------- /docs/assets/img/ideo-colab.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/ideo-colab.jpeg -------------------------------------------------------------------------------- /docs/assets/img/ideo-colab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/ideo-colab.png -------------------------------------------------------------------------------- /docs/assets/img/ideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/ideo.png -------------------------------------------------------------------------------- /docs/assets/img/imtoken-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/imtoken-logo.png -------------------------------------------------------------------------------- /docs/assets/img/known-origin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/known-origin.png -------------------------------------------------------------------------------- /docs/assets/img/mycollectibles-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/mycollectibles-logo.png -------------------------------------------------------------------------------- /docs/assets/img/nonfungible.com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/nonfungible.com.png -------------------------------------------------------------------------------- /docs/assets/img/open-sea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/open-sea.png -------------------------------------------------------------------------------- /docs/assets/img/open-zeppelin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/open-zeppelin.png -------------------------------------------------------------------------------- /docs/assets/img/rarebits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/rarebits.png -------------------------------------------------------------------------------- /docs/assets/img/rdr-0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/rdr-0x.png -------------------------------------------------------------------------------- /docs/assets/img/rr-branding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/rr-branding.svg -------------------------------------------------------------------------------- /docs/assets/img/smartz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/smartz.png -------------------------------------------------------------------------------- /docs/assets/img/status-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/status-logo.svg -------------------------------------------------------------------------------- /docs/assets/img/su-squares.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/su-squares.png -------------------------------------------------------------------------------- /docs/assets/img/toshi-green-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/toshi-green-square.png -------------------------------------------------------------------------------- /docs/assets/img/toshi-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/toshi-green.png -------------------------------------------------------------------------------- /docs/assets/img/toshi-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/toshi-green.svg -------------------------------------------------------------------------------- /docs/assets/img/toshi-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/toshi-white.svg -------------------------------------------------------------------------------- /docs/assets/img/trust-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/img/trust-logo.png -------------------------------------------------------------------------------- /docs/assets/js/app.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/assets/js/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/js/vendor.js -------------------------------------------------------------------------------- /docs/assets/mycollectibles-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/mycollectibles-logo.png -------------------------------------------------------------------------------- /docs/assets/webfonts/din/356F97_0_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/din/356F97_0_0.eot -------------------------------------------------------------------------------- /docs/assets/webfonts/din/356F97_0_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/din/356F97_0_0.ttf -------------------------------------------------------------------------------- /docs/assets/webfonts/din/356F97_0_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/din/356F97_0_0.woff -------------------------------------------------------------------------------- /docs/assets/webfonts/din/356F97_0_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/din/356F97_0_0.woff2 -------------------------------------------------------------------------------- /docs/assets/webfonts/din/356F97_1_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/din/356F97_1_0.eot -------------------------------------------------------------------------------- /docs/assets/webfonts/din/356F97_1_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/din/356F97_1_0.ttf -------------------------------------------------------------------------------- /docs/assets/webfonts/din/356F97_1_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/din/356F97_1_0.woff -------------------------------------------------------------------------------- /docs/assets/webfonts/din/356F97_1_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/din/356F97_1_0.woff2 -------------------------------------------------------------------------------- /docs/assets/webfonts/rolanti/35CD78_0_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/rolanti/35CD78_0_0.eot -------------------------------------------------------------------------------- /docs/assets/webfonts/rolanti/35CD78_0_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/rolanti/35CD78_0_0.ttf -------------------------------------------------------------------------------- /docs/assets/webfonts/rolanti/35CD78_0_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/rolanti/35CD78_0_0.woff -------------------------------------------------------------------------------- /docs/assets/webfonts/rolanti/35CD78_0_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/rolanti/35CD78_0_0.woff2 -------------------------------------------------------------------------------- /docs/assets/webfonts/rolanti/35CD78_1_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/rolanti/35CD78_1_0.eot -------------------------------------------------------------------------------- /docs/assets/webfonts/rolanti/35CD78_1_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/rolanti/35CD78_1_0.ttf -------------------------------------------------------------------------------- /docs/assets/webfonts/rolanti/35CD78_1_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/rolanti/35CD78_1_0.woff -------------------------------------------------------------------------------- /docs/assets/webfonts/rolanti/35CD78_1_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/rolanti/35CD78_1_0.woff2 -------------------------------------------------------------------------------- /docs/assets/webfonts/rolanti/35CD78_2_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/rolanti/35CD78_2_0.eot -------------------------------------------------------------------------------- /docs/assets/webfonts/rolanti/35CD78_2_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/rolanti/35CD78_2_0.ttf -------------------------------------------------------------------------------- /docs/assets/webfonts/rolanti/35CD78_2_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/rolanti/35CD78_2_0.woff -------------------------------------------------------------------------------- /docs/assets/webfonts/rolanti/35CD78_2_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/rolanti/35CD78_2_0.woff2 -------------------------------------------------------------------------------- /docs/assets/webfonts/rolanti/35CD78_3_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/rolanti/35CD78_3_0.eot -------------------------------------------------------------------------------- /docs/assets/webfonts/rolanti/35CD78_3_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/rolanti/35CD78_3_0.ttf -------------------------------------------------------------------------------- /docs/assets/webfonts/rolanti/35CD78_3_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/rolanti/35CD78_3_0.woff -------------------------------------------------------------------------------- /docs/assets/webfonts/rolanti/35CD78_3_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/rolanti/35CD78_3_0.woff2 -------------------------------------------------------------------------------- /docs/assets/webfonts/rolanti/35CD78_4_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/rolanti/35CD78_4_0.eot -------------------------------------------------------------------------------- /docs/assets/webfonts/rolanti/35CD78_4_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/rolanti/35CD78_4_0.ttf -------------------------------------------------------------------------------- /docs/assets/webfonts/rolanti/35CD78_4_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/rolanti/35CD78_4_0.woff -------------------------------------------------------------------------------- /docs/assets/webfonts/rolanti/35CD78_4_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/assets/webfonts/rolanti/35CD78_4_0.woff2 -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/docs/index.html -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/package.json -------------------------------------------------------------------------------- /source/_/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/.DS_Store -------------------------------------------------------------------------------- /source/_/img/0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/0x.png -------------------------------------------------------------------------------- /source/_/img/0xcert.org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/0xcert.org.png -------------------------------------------------------------------------------- /source/_/img/721_cover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/721_cover.gif -------------------------------------------------------------------------------- /source/_/img/NFT_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/NFT_01.png -------------------------------------------------------------------------------- /source/_/img/NFT_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/NFT_02.png -------------------------------------------------------------------------------- /source/_/img/NFT_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/NFT_03.png -------------------------------------------------------------------------------- /source/_/img/auctionity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/auctionity.png -------------------------------------------------------------------------------- /source/_/img/axiomzen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/axiomzen.jpg -------------------------------------------------------------------------------- /source/_/img/axiomzen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/axiomzen.png -------------------------------------------------------------------------------- /source/_/img/cipher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/cipher.svg -------------------------------------------------------------------------------- /source/_/img/cryptocelebrities-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/cryptocelebrities-bw.png -------------------------------------------------------------------------------- /source/_/img/cryptocelebrities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/cryptocelebrities.png -------------------------------------------------------------------------------- /source/_/img/cryptokitties-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/cryptokitties-bw.png -------------------------------------------------------------------------------- /source/_/img/cryptokitties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/cryptokitties.png -------------------------------------------------------------------------------- /source/_/img/cryptopunks-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/cryptopunks-bw.png -------------------------------------------------------------------------------- /source/_/img/cryptopunks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/cryptopunks.png -------------------------------------------------------------------------------- /source/_/img/decentraland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/decentraland.png -------------------------------------------------------------------------------- /source/_/img/dot-license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/dot-license.png -------------------------------------------------------------------------------- /source/_/img/emoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/emoon.png -------------------------------------------------------------------------------- /source/_/img/ethertulips-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/ethertulips-bw.png -------------------------------------------------------------------------------- /source/_/img/ethertulips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/ethertulips.png -------------------------------------------------------------------------------- /source/_/img/fungible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/fungible.png -------------------------------------------------------------------------------- /source/_/img/ideo-colab.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/ideo-colab.jpeg -------------------------------------------------------------------------------- /source/_/img/ideo-colab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/ideo-colab.png -------------------------------------------------------------------------------- /source/_/img/ideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/ideo.png -------------------------------------------------------------------------------- /source/_/img/imtoken-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/imtoken-logo.png -------------------------------------------------------------------------------- /source/_/img/known-origin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/known-origin.png -------------------------------------------------------------------------------- /source/_/img/mycollectibles-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/mycollectibles-logo.png -------------------------------------------------------------------------------- /source/_/img/nonfungible.com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/nonfungible.com.png -------------------------------------------------------------------------------- /source/_/img/open-sea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/open-sea.png -------------------------------------------------------------------------------- /source/_/img/open-zeppelin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/open-zeppelin.png -------------------------------------------------------------------------------- /source/_/img/rarebits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/rarebits.png -------------------------------------------------------------------------------- /source/_/img/rdr-0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/rdr-0x.png -------------------------------------------------------------------------------- /source/_/img/rr-branding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/rr-branding.svg -------------------------------------------------------------------------------- /source/_/img/smartz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/smartz.png -------------------------------------------------------------------------------- /source/_/img/status-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/status-logo.svg -------------------------------------------------------------------------------- /source/_/img/su-squares.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/su-squares.png -------------------------------------------------------------------------------- /source/_/img/toshi-green-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/toshi-green-square.png -------------------------------------------------------------------------------- /source/_/img/toshi-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/toshi-green.png -------------------------------------------------------------------------------- /source/_/img/toshi-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/toshi-green.svg -------------------------------------------------------------------------------- /source/_/img/toshi-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/toshi-white.svg -------------------------------------------------------------------------------- /source/_/img/trust-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/img/trust-logo.png -------------------------------------------------------------------------------- /source/_/js/app.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/_/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/sass/main.scss -------------------------------------------------------------------------------- /source/_/sass/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/_/sass/style.scss -------------------------------------------------------------------------------- /source/assets/webfonts/din/356F97_0_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/din/356F97_0_0.eot -------------------------------------------------------------------------------- /source/assets/webfonts/din/356F97_0_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/din/356F97_0_0.ttf -------------------------------------------------------------------------------- /source/assets/webfonts/din/356F97_0_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/din/356F97_0_0.woff -------------------------------------------------------------------------------- /source/assets/webfonts/din/356F97_0_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/din/356F97_0_0.woff2 -------------------------------------------------------------------------------- /source/assets/webfonts/din/356F97_1_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/din/356F97_1_0.eot -------------------------------------------------------------------------------- /source/assets/webfonts/din/356F97_1_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/din/356F97_1_0.ttf -------------------------------------------------------------------------------- /source/assets/webfonts/din/356F97_1_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/din/356F97_1_0.woff -------------------------------------------------------------------------------- /source/assets/webfonts/din/356F97_1_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/din/356F97_1_0.woff2 -------------------------------------------------------------------------------- /source/assets/webfonts/rolanti/35CD78_0_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/rolanti/35CD78_0_0.eot -------------------------------------------------------------------------------- /source/assets/webfonts/rolanti/35CD78_0_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/rolanti/35CD78_0_0.ttf -------------------------------------------------------------------------------- /source/assets/webfonts/rolanti/35CD78_0_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/rolanti/35CD78_0_0.woff -------------------------------------------------------------------------------- /source/assets/webfonts/rolanti/35CD78_0_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/rolanti/35CD78_0_0.woff2 -------------------------------------------------------------------------------- /source/assets/webfonts/rolanti/35CD78_1_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/rolanti/35CD78_1_0.eot -------------------------------------------------------------------------------- /source/assets/webfonts/rolanti/35CD78_1_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/rolanti/35CD78_1_0.ttf -------------------------------------------------------------------------------- /source/assets/webfonts/rolanti/35CD78_1_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/rolanti/35CD78_1_0.woff -------------------------------------------------------------------------------- /source/assets/webfonts/rolanti/35CD78_1_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/rolanti/35CD78_1_0.woff2 -------------------------------------------------------------------------------- /source/assets/webfonts/rolanti/35CD78_2_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/rolanti/35CD78_2_0.eot -------------------------------------------------------------------------------- /source/assets/webfonts/rolanti/35CD78_2_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/rolanti/35CD78_2_0.ttf -------------------------------------------------------------------------------- /source/assets/webfonts/rolanti/35CD78_2_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/rolanti/35CD78_2_0.woff -------------------------------------------------------------------------------- /source/assets/webfonts/rolanti/35CD78_2_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/rolanti/35CD78_2_0.woff2 -------------------------------------------------------------------------------- /source/assets/webfonts/rolanti/35CD78_3_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/rolanti/35CD78_3_0.eot -------------------------------------------------------------------------------- /source/assets/webfonts/rolanti/35CD78_3_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/rolanti/35CD78_3_0.ttf -------------------------------------------------------------------------------- /source/assets/webfonts/rolanti/35CD78_3_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/rolanti/35CD78_3_0.woff -------------------------------------------------------------------------------- /source/assets/webfonts/rolanti/35CD78_3_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/rolanti/35CD78_3_0.woff2 -------------------------------------------------------------------------------- /source/assets/webfonts/rolanti/35CD78_4_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/rolanti/35CD78_4_0.eot -------------------------------------------------------------------------------- /source/assets/webfonts/rolanti/35CD78_4_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/rolanti/35CD78_4_0.ttf -------------------------------------------------------------------------------- /source/assets/webfonts/rolanti/35CD78_4_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/rolanti/35CD78_4_0.woff -------------------------------------------------------------------------------- /source/assets/webfonts/rolanti/35CD78_4_0.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/assets/webfonts/rolanti/35CD78_4_0.woff2 -------------------------------------------------------------------------------- /source/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/favicon.ico -------------------------------------------------------------------------------- /source/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomhschmidt/erc721-website/HEAD/source/index.html --------------------------------------------------------------------------------