Skip to content

Commit 832cf87

Browse files
s2 / chore: add dynamic configuration protocol to spec website (#202)
## PR Checklist - [ ] Linked issue added (e.g., `Fixes #123`) - [x] I have run `bun run format` to ensure code is properly formatted - [x] I have verified that `bun run lint` passes without errors - [ ] If blog post was added: - [ ] Ensure images have been optimised - [ ] Update dates to reflect the actual publishing date when merged (file names, folder names, and frontmatter) ## Summary <!-- What has been updated and why --> I've added the Dynamic Configuration Protocol to the website because it's not deprecated and other specs link to it. I think we just forgot to add it originally.
1 parent 4f25c87 commit 832cf87

3 files changed

Lines changed: 28 additions & 0 deletions

File tree

astro.config.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,10 @@ export default defineConfig({
109109
label: 'Bilateral Transfer Protocol',
110110
link: '/rfcs/bilateral-transfer-protocol'
111111
},
112+
{
113+
label: 'Dynamic Configuration Protocol',
114+
link: '/rfcs/dynamic-configuration-protocol'
115+
},
112116
{
113117
label: 'Hashed-Timelock Agreements',
114118
link: '/rfcs/hashed-timelock-agreements'
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: Dynamic Configuration Protocol
3+
---
4+
5+
import Rfc from '/src/components/Rfc.astro'
6+
7+
<Rfc source="https://raw.githubusercontent.com/interledger/rfcs/master/0031-dynamic-configuration-protocol/0031-dynamic-configuration-protocol.md">
8+
9+
## Prerequisites
10+
11+
## Terminology
12+
13+
## Overview
14+
15+
## Protocol Detail
16+
17+
</Rfc>

src/data/rfcs.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,13 @@ export const PUBLISHED_RFCS = [
7171
sourceRawUrl:
7272
'https://raw.githubusercontent.com/interledger/rfcs/master/0023-bilateral-transfer-protocol/0023-bilateral-transfer-protocol.md'
7373
},
74+
{
75+
id: 'dynamic-configuration-protocol',
76+
title: 'Dynamic Configuration Protocol',
77+
route: '/rfcs/dynamic-configuration-protocol',
78+
sourceRawUrl:
79+
'https://raw.githubusercontent.com/interledger/rfcs/master/0031-dynamic-configuration-protocol/0031-dynamic-configuration-protocol.md'
80+
},
7481
{
7582
id: 'hashed-timelock-agreements',
7683
title: 'Hashed-Timelock Agreements',

0 commit comments

Comments
 (0)