Skip to content
This repository has been archived by the owner on Feb 15, 2022. It is now read-only.

Commit

Permalink
GDAX: now supporting EUR/ETH EUR/LTC (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
DeviaVir authored Jun 3, 2017
1 parent 3a99e7a commit bc5875b
Showing 1 changed file with 41 additions and 32 deletions.
73 changes: 41 additions & 32 deletions extensions/gdax/products.json
Original file line number Diff line number Diff line change
@@ -1,65 +1,74 @@
[
{
"id": "BTC-GBP",
"asset": "BTC",
"currency": "GBP",
"min_size": 0.01,
"max_size": 10000,
"increment": 0.01,
"min_size": "0.01",
"max_size": "10000",
"increment": "0.01",
"label": "BTC/GBP"
},
{
"id": "BTC-USD",
"asset": "BTC",
"currency": "USD",
"min_size": 0.01,
"max_size": 10000,
"increment": 0.01,
"min_size": "0.01",
"max_size": "10000",
"increment": "0.01",
"label": "BTC/USD"
},
{
"id": "ETH-USD",
"asset": "ETH",
"currency": "USD",
"min_size": 0.01,
"max_size": 1000000,
"increment": 0.01,
"min_size": "0.01",
"max_size": "1000000",
"increment": "0.01",
"label": "ETH/USD"
},
{
"id": "LTC-USD",
"asset": "LTC",
"currency": "USD",
"min_size": 0.01,
"max_size": 1000000,
"increment": 0.01,
"min_size": "0.01",
"max_size": "1000000",
"increment": "0.01",
"label": "LTC/USD"
},
{
"id": "ETH-BTC",
"asset": "ETH",
"currency": "BTC",
"min_size": 0.01,
"max_size": 1000000,
"increment": 0.00001,
"label": "ETH/BTC"
"currency": "EUR",
"min_size": "0.01",
"max_size": "1000000",
"increment": "0.01",
"label": "ETH/EUR"
},
{
"id": "LTC-BTC",
"asset": "LTC",
"currency": "BTC",
"min_size": 0.01,
"max_size": 1000000,
"increment": 0.00001,
"label": "LTC/BTC"
"currency": "EUR",
"min_size": "0.01",
"max_size": "1000000",
"increment": "0.01",
"label": "LTC/EUR"
},
{
"id": "BTC-EUR",
"asset": "BTC",
"currency": "EUR",
"min_size": 0.01,
"max_size": 10000,
"increment": 0.01,
"min_size": "0.01",
"max_size": "10000",
"increment": "0.01",
"label": "BTC/EUR"
},
{
"asset": "ETH",
"currency": "BTC",
"min_size": "0.01",
"max_size": "1000000",
"increment": "0.00001",
"label": "ETH/BTC"
},
{
"asset": "LTC",
"currency": "BTC",
"min_size": "0.01",
"max_size": "1000000",
"increment": "0.00001",
"label": "LTC/BTC"
}
]

0 comments on commit bc5875b

Please sign in to comment.