feat: add protocol events (#11)

This commit is contained in:
Zak Angelle 2021-01-15 15:35:10 -06:00 committed by GitHub
parent 2f74d6f882
commit 95ff011a04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with 39 additions and 0 deletions

View File

@ -92,6 +92,31 @@ Raise a new PR by following the steps below:
2. Add the call agenda and relevant meeting notes in the markdown file. The contents of the file will be displayed in the respective page. 2. Add the call agenda and relevant meeting notes in the markdown file. The contents of the file will be displayed in the respective page.
3. Raise a PR with the changes. 3. Raise a PR with the changes.
### New Events
1. Add one or more new events to the `events.json` file of the protocol using the following format:
- **title**: The title of the event - this will be shown in the month and day view.
- **url**: A URL to link to when an event is clicked.
- **date**: The UTC date of the event in ISO 8601 format
```json
[
{
"title": "This is an example event.",
"url": "https://example.com",
"date": "2021-01-08T00:00:00.000Z"
},
{
"title": "This is another example event.",
"url": "https://example.com",
"date": "2021-01-10T00:00:00.000Z"
}
]
```
2. Raise a PR with the changes.
### New Project ### New Project
Please keep in mind that the Boardroom team will need to add your project before it displays on the portal. Raise a new PR by following the steps below: Please keep in mind that the Boardroom team will need to add your project before it displays on the portal. Raise a new PR by following the steps below:

1
aave/events.json Normal file
View File

@ -0,0 +1 @@
[]

1
balancer/events.json Normal file
View File

@ -0,0 +1 @@
[]

1
compound/events.json Normal file
View File

@ -0,0 +1 @@
[]

1
defidollar/events.json Normal file
View File

@ -0,0 +1 @@
[]

1
gnosis/events.json Normal file
View File

@ -0,0 +1 @@
[]

1
indexCoop/events.json Normal file
View File

@ -0,0 +1 @@
[]

1
pooltogether/events.json Normal file
View File

@ -0,0 +1 @@
[]

1
powerpool/events.json Normal file
View File

@ -0,0 +1 @@
[]

1
rarible/events.json Normal file
View File

@ -0,0 +1 @@
[]

1
siren/events.json Normal file
View File

@ -0,0 +1 @@
[]

1
synthetix/events.json Normal file
View File

@ -0,0 +1 @@
[]

1
uniswap/events.json Normal file
View File

@ -0,0 +1 @@
[]

1
yamv2/events.json Normal file
View File

@ -0,0 +1 @@
[]

1
yearn/events.json Normal file
View File

@ -0,0 +1 @@
[]