Initial commit
This commit is contained in:
113
mocks/api/v2/finex/public/markets/GET.mock
Normal file
113
mocks/api/v2/finex/public/markets/GET.mock
Normal file
@@ -0,0 +1,113 @@
|
||||
HTTP/2 200
|
||||
Content-Type: application/json; charset=utf-8
|
||||
Access-Control-Allow-Origin: *
|
||||
Access-Control-Allow-Methods: GET, POST, DELETE, PUT, PATCH, OPTIONS, HEAD
|
||||
Access-Control-Max-Age: 3600
|
||||
Access-Control-Allow-Credentials: true
|
||||
|
||||
[
|
||||
{
|
||||
"id":"dashbtc",
|
||||
"name":"DASH/BTC",
|
||||
"base_unit":"dash",
|
||||
"quote_unit":"btc",
|
||||
"state":"enabled",
|
||||
"amount_precision":3,
|
||||
"price_precision":6,
|
||||
"min_price":"0.000001",
|
||||
"max_price":"0",
|
||||
"min_amount":"0.001",
|
||||
"filters": [
|
||||
{
|
||||
"digits":5,
|
||||
"type":"significant_digits"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id":"ethbtc",
|
||||
"name":"ETH/BTC",
|
||||
"base_unit":"eth",
|
||||
"quote_unit":"btc",
|
||||
"state":"enabled",
|
||||
"amount_precision":5,
|
||||
"price_precision":7,
|
||||
"min_price":"0.0000001",
|
||||
"max_price":"0",
|
||||
"min_amount":"0.00001",
|
||||
"filters": [
|
||||
{
|
||||
"type":"significant_digits",
|
||||
"digits":5
|
||||
},
|
||||
{
|
||||
"type":"custom_price_steps",
|
||||
"rules": [
|
||||
{
|
||||
"limit":"10",
|
||||
"step":"0.01"
|
||||
},
|
||||
{
|
||||
"limit":"100",
|
||||
"step":"0.1"
|
||||
},
|
||||
{
|
||||
"limit":"1000",
|
||||
"step":"1"
|
||||
},
|
||||
{
|
||||
"limit":"10000",
|
||||
"step":"5"
|
||||
},
|
||||
{
|
||||
"limit":"100000",
|
||||
"step":"10"
|
||||
},
|
||||
{
|
||||
"limit":"0",
|
||||
"step":"1000"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id":"btcusd",
|
||||
"name":"BTC/USD",
|
||||
"base_unit":"btc",
|
||||
"quote_unit":"usd",
|
||||
"state":"enabled",
|
||||
"amount_precision":7,
|
||||
"price_precision":2,
|
||||
"min_price":"0.01",
|
||||
"max_price":"0",
|
||||
"min_amount":"0.0000001",
|
||||
"filters": [
|
||||
{
|
||||
"rules": [
|
||||
{
|
||||
"limit":"1",
|
||||
"step":"0.01"
|
||||
},
|
||||
{
|
||||
"limit":"10",
|
||||
"step":"0.1"
|
||||
},
|
||||
{
|
||||
"limit":"100",
|
||||
"step":"1"
|
||||
},
|
||||
{
|
||||
"limit":"1000",
|
||||
"step":"10"
|
||||
},
|
||||
{
|
||||
"limit":"0",
|
||||
"step":"100"
|
||||
}
|
||||
],
|
||||
"type":"custom_price_steps"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
6
mocks/api/v2/finex/public/markets/OPTIONS.mock
Normal file
6
mocks/api/v2/finex/public/markets/OPTIONS.mock
Normal file
@@ -0,0 +1,6 @@
|
||||
HTTP/2 200
|
||||
Access-Control-Allow-Origin: *
|
||||
Access-Control-Allow-Methods: GET, POST, DELETE, PUT, PATCH, OPTIONS, HEAD
|
||||
Access-Control-Max-Age: 3600
|
||||
Access-Control-Allow-Credentials: true
|
||||
Access-Control-Allow-Headers: *
|
||||
Reference in New Issue
Block a user