├── .github └── workflows │ ├── assign.yml │ └── deploy.yml ├── .gitignore ├── HIP-0000.md ├── HIP-0001.md ├── HIP-0002.md ├── HIP-0004.md ├── HIP-0005.md ├── HIP-0006.md ├── HIP-0007.md ├── HIP-0008.md ├── HIP-0009.md ├── HIP-0011.md ├── HIP-0014.md ├── HIP-0015.md ├── HIP-0016.md ├── HIP-0017.md ├── HIP-XXXX-update-chains.md ├── README.md ├── docs ├── config.toml ├── content │ └── proposals │ │ └── _index.md ├── layouts │ ├── _default │ │ ├── baseof.html │ │ ├── list.html │ │ └── single.html │ ├── index.html │ ├── partials │ │ ├── footer.html │ │ ├── head.html │ │ ├── header.html │ │ ├── right-sidebar.html │ │ └── sidebar.html │ └── proposals │ │ └── single.html ├── parse.js └── static │ └── css │ └── style.css ├── hip-0005 └── hip5-resolver.png └── hip-0016 └── DrawingHands.jpg /.github/workflows/assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/.github/workflows/assign.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/.gitignore -------------------------------------------------------------------------------- /HIP-0000.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/HIP-0000.md -------------------------------------------------------------------------------- /HIP-0001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/HIP-0001.md -------------------------------------------------------------------------------- /HIP-0002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/HIP-0002.md -------------------------------------------------------------------------------- /HIP-0004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/HIP-0004.md -------------------------------------------------------------------------------- /HIP-0005.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/HIP-0005.md -------------------------------------------------------------------------------- /HIP-0006.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/HIP-0006.md -------------------------------------------------------------------------------- /HIP-0007.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/HIP-0007.md -------------------------------------------------------------------------------- /HIP-0008.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/HIP-0008.md -------------------------------------------------------------------------------- /HIP-0009.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/HIP-0009.md -------------------------------------------------------------------------------- /HIP-0011.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/HIP-0011.md -------------------------------------------------------------------------------- /HIP-0014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/HIP-0014.md -------------------------------------------------------------------------------- /HIP-0015.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/HIP-0015.md -------------------------------------------------------------------------------- /HIP-0016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/HIP-0016.md -------------------------------------------------------------------------------- /HIP-0017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/HIP-0017.md -------------------------------------------------------------------------------- /HIP-XXXX-update-chains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/HIP-XXXX-update-chains.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/README.md -------------------------------------------------------------------------------- /docs/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/docs/config.toml -------------------------------------------------------------------------------- /docs/content/proposals/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Improvement Proposals 3 | --- 4 | -------------------------------------------------------------------------------- /docs/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/docs/layouts/_default/baseof.html -------------------------------------------------------------------------------- /docs/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/docs/layouts/_default/list.html -------------------------------------------------------------------------------- /docs/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/docs/layouts/_default/single.html -------------------------------------------------------------------------------- /docs/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/docs/layouts/index.html -------------------------------------------------------------------------------- /docs/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/docs/layouts/partials/footer.html -------------------------------------------------------------------------------- /docs/layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/docs/layouts/partials/head.html -------------------------------------------------------------------------------- /docs/layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/docs/layouts/partials/header.html -------------------------------------------------------------------------------- /docs/layouts/partials/right-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/docs/layouts/partials/right-sidebar.html -------------------------------------------------------------------------------- /docs/layouts/partials/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/docs/layouts/partials/sidebar.html -------------------------------------------------------------------------------- /docs/layouts/proposals/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/docs/layouts/proposals/single.html -------------------------------------------------------------------------------- /docs/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/docs/parse.js -------------------------------------------------------------------------------- /docs/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/docs/static/css/style.css -------------------------------------------------------------------------------- /hip-0005/hip5-resolver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/hip-0005/hip5-resolver.png -------------------------------------------------------------------------------- /hip-0016/DrawingHands.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/HIPs/HEAD/hip-0016/DrawingHands.jpg --------------------------------------------------------------------------------