Skip to content
This repository has been archived by the owner on May 20, 2024. It is now read-only.

Commit

Permalink
Update README.md (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
allisonle committed Oct 20, 2022
1 parent 2fc4bf8 commit 9294709
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,32 @@

This is a community-sourced token list used to power the [Verse DEX](https://verse.bitcoin.com/).

If you wish to add an SEP-20 or ERC-20 token / liquidity pool to the Verse DEX, follow the instructions below:

# How to add your token / liquidity pool to [verse.bitcoin.com](https://verse.bitcoin.com)
1. Open a pull request on this repo ([example](https://github.com/bitcoin-portal/verse-dex-tokens/pull/2)) containing the following:
- Add your token config to [tokens.json](https://github.com/bitcoin-portal/verse-dex-tokens/blob/trunk/config/tokens.json). Include any liquidity pairs you'd like to list under `pairs` e.g. :
```javascript
{
"abbr": "FLEX", // token symbol
"value": "FLEX", // same as abbr
"abbr": "JOY", // token symbol
"value": "JOY", // same as abbr
"protocol": "SEP20_PROTOCOL",
"blockchain": "BCH",
"label": "FLEX", // token display name
"ticker": "flex",
"label": "JOY", // token display name
"ticker": "joy",
"explorer": "https://www.smartscan.cash/tx/",
"token": "0x98Dd7eC28FB43b3C4c770AE532417015fa939Dd3", // token contract address
"token": "0x6732E55Ac3ECa734F54C26Bd8DF4eED52Fb79a6E", // token contract address
"decimals": 18,
"pairs": ["BCH", "flexUSD"] // this will add FLEX/BCH and FLEX/flexUSD to the list of liquidity pools
"pairs": ["BCH", "TANGO"] // this will add JOY/BCH and JOY/TANGO to the list of liquidity pools
}
```
- A 64x64 png of the token icon to the /icons directory
- A wallet address from which you will provide the initial liquidity for the pool

2. Our team will review your PR and merge it. You will then be able to view and add initial liquidity to the new pools on the Verse DEX using your provided wallet address.

## Syntax for token pairs ##
- Bitcoin Cash: "BCH"
- flexUSD: "flexUSD"
- Flex: "FLEX"
- Joystick: "JOY"
- TANGO: "TANGO"
- LAW: "LAW"
Expand Down

1 comment on commit 9294709

@walker112171
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

    "decimals": 18,
    "pairs": ["BCH"]
},
{
    "abbr": "MIST",
    "value": "MIST",
    "protocol": "SEP20_PROTOCOL",
    "blockchain": "BCH",
    "label": "MIST",
    "ticker": "mist",
    "explorer": "https://www.smartscan.cash/tx/",
    "token": "0x5fA664f69c2A4A3ec94FaC3cBf7049BD9CA73129",
    "decimals": 18,
    "pairs": ["BCH"]
},
{

Please sign in to comment.