├── .gitattributes ├── .gitignore ├── .travis-ci.sh ├── .travis.yml ├── 404.html ├── CNAME ├── EEPS ├── eep-1.md ├── eep-2.md ├── eep-4.md ├── eep-5.md └── eep-6.md ├── Gemfile ├── Gemfile.lock ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── RFC.html ├── _config.yml ├── _data └── statuses.yaml ├── _includes ├── authorlist.html ├── eepnums.html ├── eeptable.html └── social.html ├── _layouts └── eep.html ├── all.html ├── assets └── eip-1 │ └── process.png ├── core.html ├── eep-X.md ├── erc.html ├── index.html ├── interface.html ├── last-call.xml ├── meta.html └── networking.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | -------------------------------------------------------------------------------- /.travis-ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/.travis-ci.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/.travis.yml -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/404.html -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | eeps.io -------------------------------------------------------------------------------- /EEPS/eep-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/EEPS/eep-1.md -------------------------------------------------------------------------------- /EEPS/eep-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/EEPS/eep-2.md -------------------------------------------------------------------------------- /EEPS/eep-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/EEPS/eep-4.md -------------------------------------------------------------------------------- /EEPS/eep-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/EEPS/eep-5.md -------------------------------------------------------------------------------- /EEPS/eep-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/EEPS/eep-6.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/README.md -------------------------------------------------------------------------------- /RFC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/RFC.html -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/_config.yml -------------------------------------------------------------------------------- /_data/statuses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/_data/statuses.yaml -------------------------------------------------------------------------------- /_includes/authorlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/_includes/authorlist.html -------------------------------------------------------------------------------- /_includes/eepnums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/_includes/eepnums.html -------------------------------------------------------------------------------- /_includes/eeptable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/_includes/eeptable.html -------------------------------------------------------------------------------- /_includes/social.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/_includes/social.html -------------------------------------------------------------------------------- /_layouts/eep.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/_layouts/eep.html -------------------------------------------------------------------------------- /all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/all.html -------------------------------------------------------------------------------- /assets/eip-1/process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/assets/eip-1/process.png -------------------------------------------------------------------------------- /core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/core.html -------------------------------------------------------------------------------- /eep-X.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/eep-X.md -------------------------------------------------------------------------------- /erc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/erc.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/index.html -------------------------------------------------------------------------------- /interface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/interface.html -------------------------------------------------------------------------------- /last-call.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/last-call.xml -------------------------------------------------------------------------------- /meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/meta.html -------------------------------------------------------------------------------- /networking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eoscanada/EEPs/HEAD/networking.html --------------------------------------------------------------------------------