Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/revoxhere/duco-exchange
💱 Source of the easy to use static coin exchange service - DUCO Exchange
https://github.com/revoxhere/duco-exchange
coin coin-magi cryptocurrency duco duino duino-coin exchange web web-app webapp website xmg
Last synced: about 1 month ago
JSON representation
💱 Source of the easy to use static coin exchange service - DUCO Exchange
- Host: GitHub
- URL: https://github.com/revoxhere/duco-exchange
- Owner: revoxhere
- License: mit
- Created: 2019-09-01T10:55:26.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-11-21T17:50:16.000Z (about 1 month ago)
- Last Synced: 2024-11-21T18:34:34.627Z (about 1 month ago)
- Topics: coin, coin-magi, cryptocurrency, duco, duino, duino-coin, exchange, web, web-app, webapp, website, xmg
- Language: HTML
- Homepage: https://exchange.duinocoin.com
- Size: 5.98 MB
- Stars: 16
- Watchers: 2
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## DUCO Exchange source
This repository contains the code for the **fully static** DUCO Exchange located at [https://exchange.duinocoin.com](https://exchange.duinocoin.com).
## License
The DUCO Exchange is distributed under the MIT License. See the `LICENSE` file for more information.
## API Endpoints
- Exchange rates (per 1 DUCO)
`
- URL: `https://exchange.duinocoin.com/api/v1/rates`
- Example GET success response:
```json
{
"result": {
"bch": {
"sell": 0.0000007,
"buy": 0.00000125
},
"xmg": {
"sell": 0.1,
"buy": 0.1
},
"lke": {
"sell": 0.75,
"buy": 0.75
},
"bynd": {
"sell": 0,
"buy": 0.1
}
},
"success": true
}
```
- Exchange request
- URL: `https://server.duinocoin.com/exchange_request/?username=&password=&email=&type=&amount=&coin=&address=
- Example GET success response:
```json
{
"result": "Your exchange request has been successfully submited",
"success": true
}
```
Website Link: [https://wallet.duinocoin.com](https://wallet.duinocoin.com)