├── .github ├── ISSUE_TEMPLATE │ └── research-issue.md ├── labels.yml └── workflows │ ├── add-issue-to-project.yml │ └── sync-labels.yml ├── .gitignore ├── .gitmodules ├── .pyspelling.yml ├── .remarkrc ├── .textlintrc ├── README.md ├── archetypes └── default.md ├── ci ├── Dockerfile └── Jenkinsfile ├── config.toml ├── content ├── _index.md ├── docs │ └── rfcs │ │ ├── 1 │ │ └── README.md │ │ ├── 2 │ │ └── README.md │ │ ├── 3 │ │ └── README.md │ │ ├── 4 │ │ └── README.md │ │ ├── 5 │ │ └── README.md │ │ ├── 6 │ │ └── README.md │ │ ├── 7 │ │ └── README.md │ │ ├── 8 │ │ └── README.md │ │ ├── 9 │ │ └── README.md │ │ ├── 10 │ │ └── README.md │ │ ├── 11 │ │ └── README.md │ │ ├── 12 │ │ ├── README.md │ │ └── previous-versions │ │ │ └── 00 │ │ │ └── README.md │ │ ├── 13 │ │ └── README.md │ │ ├── 14 │ │ └── README.md │ │ ├── 15 │ │ └── README.md │ │ ├── 16 │ │ └── README.md │ │ ├── 17 │ │ └── README.md │ │ ├── 18 │ │ └── README.md │ │ ├── 19 │ │ └── README.md │ │ ├── 20 │ │ └── README.md │ │ ├── 21 │ │ └── README.md │ │ ├── 22 │ │ └── README.md │ │ ├── 23 │ │ └── README.md │ │ ├── 24 │ │ └── README.md │ │ ├── 25 │ │ └── README.md │ │ ├── 26 │ │ └── README.md │ │ ├── 27 │ │ └── README.md │ │ ├── 28 │ │ └── README.md │ │ ├── 29 │ │ └── README.md │ │ ├── 30 │ │ └── README.md │ │ ├── 31 │ │ └── README.md │ │ ├── 32 │ │ └── README.md │ │ ├── 33 │ │ └── README.md │ │ ├── 34 │ │ └── README.md │ │ ├── 35 │ │ └── README.md │ │ ├── 36 │ │ └── README.md │ │ ├── 37 │ │ ├── N11M.png │ │ ├── NM.png │ │ └── README.md │ │ ├── 38 │ │ └── README.md │ │ ├── 43 │ │ └── README.md │ │ ├── 44 │ │ └── README.md │ │ ├── 45 │ │ └── README.md │ │ ├── 46 │ │ └── README.md │ │ ├── 47 │ │ └── README.md │ │ ├── 48 │ │ └── README.md │ │ ├── 51 │ │ └── README.md │ │ ├── 52 │ │ └── README.md │ │ ├── 53 │ │ └── README.md │ │ ├── 54 │ │ └── README.md │ │ ├── 55 │ │ └── README.md │ │ ├── 56 │ │ └── README.md │ │ ├── 57 │ │ └── README.md │ │ ├── 58 │ │ └── README.md │ │ ├── 61 │ │ └── README.md │ │ ├── 62 │ │ └── README.md │ │ ├── 63 │ │ └── README.md │ │ ├── 64 │ │ └── README.md │ │ ├── 65 │ │ └── README.md │ │ ├── 66 │ │ └── README.md │ │ ├── 67 │ │ └── README.md │ │ ├── 70 │ │ └── README.md │ │ ├── 71 │ │ └── README.MD │ │ ├── 73 │ │ └── README.md │ │ └── template │ │ └── README.md └── menu │ └── index.md ├── example-content ├── README.md ├── _index.md ├── docs │ ├── example │ │ ├── _index.md │ │ ├── collapsed │ │ │ ├── 3rd-level │ │ │ │ ├── 4th-level.md │ │ │ │ └── _index.md │ │ │ └── _index.md │ │ ├── hidden.md │ │ └── table-of-contents │ │ │ ├── _index.md │ │ │ ├── with-toc.md │ │ │ └── without-toc.md │ └── shortcodes │ │ ├── _index.md │ │ ├── buttons.md │ │ ├── columns.md │ │ ├── details.md │ │ ├── expand.md │ │ ├── hints.md │ │ ├── katex.md │ │ ├── mermaid.md │ │ ├── section │ │ ├── _index.md │ │ ├── page1.md │ │ └── page2.md │ │ └── tabs.md ├── menu │ └── index.md └── posts │ ├── _index.md │ ├── creating-a-new-theme.md │ ├── goisforlovers.md │ ├── hugoisforlovers.md │ └── migrate-from-jekyll.md ├── layouts └── docs │ └── single.html ├── resources └── _gen │ └── assets │ └── scss │ ├── book.scss_50fc8c04e12a2f59027287995557ceff.content │ └── book.scss_50fc8c04e12a2f59027287995557ceff.json └── static ├── CNAME ├── rfcs ├── 1 │ └── lifecycle.png ├── 2 │ ├── batch.msc │ ├── batch.png │ ├── interactive.msc │ └── interactive.png ├── 3 │ ├── remote-log.msc │ └── remote-log.png ├── 10 │ ├── overview.msc │ └── overview.png ├── 17 │ ├── rln-message-verification.msc │ ├── rln-message-verification.png │ ├── rln-relay-reg-with-tree-on-chain.msc │ ├── rln-relay.msc │ └── rln-relay.png ├── 30 │ ├── adaptive_network_topology_protocols.jpg │ ├── adaptive_node_continuum.jpg │ ├── adaptive_node_continuum2.png │ ├── adaptive_node_cross_section.jpg │ ├── adaptive_node_cross_section2.png │ ├── adaptive_node_network_topology_protocols2.png │ ├── adaptive_node_network_topology_protocols_legend.png │ ├── adaptive_node_protocol_selection2.png │ └── adaptive_protocol_selection.jpg ├── 34 │ └── protocol.svg ├── 37 │ ├── N11M.png │ └── NM.png └── 71 │ ├── notification.png │ └── registration.png └── vac.jpg /.github/ISSUE_TEMPLATE/research-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/.github/ISSUE_TEMPLATE/research-issue.md -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/workflows/add-issue-to-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/.github/workflows/add-issue-to-project.yml -------------------------------------------------------------------------------- /.github/workflows/sync-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/.github/workflows/sync-labels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pyspelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/.pyspelling.yml -------------------------------------------------------------------------------- /.remarkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/.remarkrc -------------------------------------------------------------------------------- /.textlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/.textlintrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/README.md -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/archetypes/default.md -------------------------------------------------------------------------------- /ci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/ci/Dockerfile -------------------------------------------------------------------------------- /ci/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/ci/Jenkinsfile -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/config.toml -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/_index.md -------------------------------------------------------------------------------- /content/docs/rfcs/1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/1/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/10/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/11/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/12/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/12/previous-versions/00/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/12/previous-versions/00/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/13/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/14/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/15/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/15/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/16/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/17/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/17/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/18/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/18/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/19/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/19/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/2/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/20/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/21/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/21/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/22/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/22/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/23/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/23/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/24/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/24/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/25/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/25/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/26/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/26/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/27/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/27/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/28/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/28/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/29/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/29/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/3/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/30/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/30/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/31/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/31/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/32/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/33/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/33/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/34/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/34/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/35/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/35/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/36/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/36/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/37/N11M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/37/N11M.png -------------------------------------------------------------------------------- /content/docs/rfcs/37/NM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/37/NM.png -------------------------------------------------------------------------------- /content/docs/rfcs/37/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/37/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/38/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/38/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/4/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/43/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/43/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/44/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/44/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/45/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/45/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/46/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/46/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/47/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/47/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/48/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/48/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/5/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/51/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/51/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/52/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/52/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/53/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/53/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/54/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/54/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/55/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/55/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/56/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/56/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/57/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/57/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/58/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/58/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/6/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/61/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/61/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/62/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/62/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/63/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/63/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/64/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/65/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/65/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/66/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/66/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/67/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/67/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/7/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/70/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/70/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/71/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/71/README.MD -------------------------------------------------------------------------------- /content/docs/rfcs/73/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/73/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/8/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/9/README.md -------------------------------------------------------------------------------- /content/docs/rfcs/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/docs/rfcs/template/README.md -------------------------------------------------------------------------------- /content/menu/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/content/menu/index.md -------------------------------------------------------------------------------- /example-content/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/README.md -------------------------------------------------------------------------------- /example-content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/_index.md -------------------------------------------------------------------------------- /example-content/docs/example/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/docs/example/_index.md -------------------------------------------------------------------------------- /example-content/docs/example/collapsed/3rd-level/4th-level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/docs/example/collapsed/3rd-level/4th-level.md -------------------------------------------------------------------------------- /example-content/docs/example/collapsed/3rd-level/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/docs/example/collapsed/3rd-level/_index.md -------------------------------------------------------------------------------- /example-content/docs/example/collapsed/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | bookCollapseSection: true 3 | weight: 20 4 | --- 5 | -------------------------------------------------------------------------------- /example-content/docs/example/hidden.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/docs/example/hidden.md -------------------------------------------------------------------------------- /example-content/docs/example/table-of-contents/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/docs/example/table-of-contents/_index.md -------------------------------------------------------------------------------- /example-content/docs/example/table-of-contents/with-toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/docs/example/table-of-contents/with-toc.md -------------------------------------------------------------------------------- /example-content/docs/example/table-of-contents/without-toc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/docs/example/table-of-contents/without-toc.md -------------------------------------------------------------------------------- /example-content/docs/shortcodes/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | bookFlatSection: true 3 | --- 4 | -------------------------------------------------------------------------------- /example-content/docs/shortcodes/buttons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/docs/shortcodes/buttons.md -------------------------------------------------------------------------------- /example-content/docs/shortcodes/columns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/docs/shortcodes/columns.md -------------------------------------------------------------------------------- /example-content/docs/shortcodes/details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/docs/shortcodes/details.md -------------------------------------------------------------------------------- /example-content/docs/shortcodes/expand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/docs/shortcodes/expand.md -------------------------------------------------------------------------------- /example-content/docs/shortcodes/hints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/docs/shortcodes/hints.md -------------------------------------------------------------------------------- /example-content/docs/shortcodes/katex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/docs/shortcodes/katex.md -------------------------------------------------------------------------------- /example-content/docs/shortcodes/mermaid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/docs/shortcodes/mermaid.md -------------------------------------------------------------------------------- /example-content/docs/shortcodes/section/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/docs/shortcodes/section/_index.md -------------------------------------------------------------------------------- /example-content/docs/shortcodes/section/page1.md: -------------------------------------------------------------------------------- 1 | # Page 1 2 | -------------------------------------------------------------------------------- /example-content/docs/shortcodes/section/page2.md: -------------------------------------------------------------------------------- 1 | # Page 2 2 | -------------------------------------------------------------------------------- /example-content/docs/shortcodes/tabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/docs/shortcodes/tabs.md -------------------------------------------------------------------------------- /example-content/menu/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/menu/index.md -------------------------------------------------------------------------------- /example-content/posts/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/posts/_index.md -------------------------------------------------------------------------------- /example-content/posts/creating-a-new-theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/posts/creating-a-new-theme.md -------------------------------------------------------------------------------- /example-content/posts/goisforlovers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/posts/goisforlovers.md -------------------------------------------------------------------------------- /example-content/posts/hugoisforlovers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/posts/hugoisforlovers.md -------------------------------------------------------------------------------- /example-content/posts/migrate-from-jekyll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/example-content/posts/migrate-from-jekyll.md -------------------------------------------------------------------------------- /layouts/docs/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/layouts/docs/single.html -------------------------------------------------------------------------------- /resources/_gen/assets/scss/book.scss_50fc8c04e12a2f59027287995557ceff.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/resources/_gen/assets/scss/book.scss_50fc8c04e12a2f59027287995557ceff.content -------------------------------------------------------------------------------- /resources/_gen/assets/scss/book.scss_50fc8c04e12a2f59027287995557ceff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/resources/_gen/assets/scss/book.scss_50fc8c04e12a2f59027287995557ceff.json -------------------------------------------------------------------------------- /static/CNAME: -------------------------------------------------------------------------------- 1 | rfc.vac.dev 2 | -------------------------------------------------------------------------------- /static/rfcs/1/lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/1/lifecycle.png -------------------------------------------------------------------------------- /static/rfcs/10/overview.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/10/overview.msc -------------------------------------------------------------------------------- /static/rfcs/10/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/10/overview.png -------------------------------------------------------------------------------- /static/rfcs/17/rln-message-verification.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/17/rln-message-verification.msc -------------------------------------------------------------------------------- /static/rfcs/17/rln-message-verification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/17/rln-message-verification.png -------------------------------------------------------------------------------- /static/rfcs/17/rln-relay-reg-with-tree-on-chain.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/17/rln-relay-reg-with-tree-on-chain.msc -------------------------------------------------------------------------------- /static/rfcs/17/rln-relay.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/17/rln-relay.msc -------------------------------------------------------------------------------- /static/rfcs/17/rln-relay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/17/rln-relay.png -------------------------------------------------------------------------------- /static/rfcs/2/batch.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/2/batch.msc -------------------------------------------------------------------------------- /static/rfcs/2/batch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/2/batch.png -------------------------------------------------------------------------------- /static/rfcs/2/interactive.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/2/interactive.msc -------------------------------------------------------------------------------- /static/rfcs/2/interactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/2/interactive.png -------------------------------------------------------------------------------- /static/rfcs/3/remote-log.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/3/remote-log.msc -------------------------------------------------------------------------------- /static/rfcs/3/remote-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/3/remote-log.png -------------------------------------------------------------------------------- /static/rfcs/30/adaptive_network_topology_protocols.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/30/adaptive_network_topology_protocols.jpg -------------------------------------------------------------------------------- /static/rfcs/30/adaptive_node_continuum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/30/adaptive_node_continuum.jpg -------------------------------------------------------------------------------- /static/rfcs/30/adaptive_node_continuum2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/30/adaptive_node_continuum2.png -------------------------------------------------------------------------------- /static/rfcs/30/adaptive_node_cross_section.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/30/adaptive_node_cross_section.jpg -------------------------------------------------------------------------------- /static/rfcs/30/adaptive_node_cross_section2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/30/adaptive_node_cross_section2.png -------------------------------------------------------------------------------- /static/rfcs/30/adaptive_node_network_topology_protocols2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/30/adaptive_node_network_topology_protocols2.png -------------------------------------------------------------------------------- /static/rfcs/30/adaptive_node_network_topology_protocols_legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/30/adaptive_node_network_topology_protocols_legend.png -------------------------------------------------------------------------------- /static/rfcs/30/adaptive_node_protocol_selection2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/30/adaptive_node_protocol_selection2.png -------------------------------------------------------------------------------- /static/rfcs/30/adaptive_protocol_selection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/30/adaptive_protocol_selection.jpg -------------------------------------------------------------------------------- /static/rfcs/34/protocol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/34/protocol.svg -------------------------------------------------------------------------------- /static/rfcs/37/N11M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/37/N11M.png -------------------------------------------------------------------------------- /static/rfcs/37/NM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/37/NM.png -------------------------------------------------------------------------------- /static/rfcs/71/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/71/notification.png -------------------------------------------------------------------------------- /static/rfcs/71/registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/rfcs/71/registration.png -------------------------------------------------------------------------------- /static/vac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vacp2p/rfc/HEAD/static/vac.jpg --------------------------------------------------------------------------------