Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
0xMyrddin authored Dec 28, 2023
2 parents 2c0e95c + 0924c55 commit c0b957a
Show file tree
Hide file tree
Showing 17 changed files with 3,362 additions and 26 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
name: Unit Tests
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: 14
- run: yarn install --frozen-lockfile
- run: yarn test
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.idea
node_modules/
build
build
.DS_Store
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
16.20
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# camelot-roundtable-list
# Camelot DEX - RoundTable protocols list

This GitHub repo contains the protocols list of Round Table members.

Expand All @@ -8,9 +8,13 @@ To add your protocol to the Round Table list, you should create your entry and s

**1. Fork this repo**

**2. Add your protocol in the relevant "blockchain".json file in src/protocols/.**
**2. (Optional) Add your assets in src/assets/your_protocol/.**

**3. Provide the following required information for your protocol.**
*The URI logo path in "blockchain".json will need to be set as BASE_URL/assets/your_protocol/your_asset.svg (cf example-chain.json)*

**3. Add your protocol in the relevant "blockchain".json file in src/protocols/.**

**4. Provide the following required information for your protocol.**

- chainId (number)
- id (string): must be unique, will be used as a slug on https://app.camelot.exchange/protocols/id
Expand All @@ -22,7 +26,7 @@ To add your protocol to the Round Table list, you should create your entry and s
- tokens (array): list of the addresses of all your token contracts. The first one will be considered as your "main" asset
- website (string): link to your app

**4. Provide the following optional links for your protocol.**
**5. Provide the following optional links for your protocol.**

- twitter (string)
- discord (string)
Expand Down
1 change: 1 addition & 0 deletions env.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
BASE_URL=https://roundtable-list.camelot.exchange
Loading

0 comments on commit c0b957a

Please sign in to comment.