Added hostname field to on-ramp object
This commit is contained in:
parent
2b9a6928bf
commit
ef933a82fb
|
@ -17,7 +17,8 @@ JSON example:
|
|||
"fees": "from 2.9%",
|
||||
"region": "US & Europe",
|
||||
"logoUrl":"https://www.sendwyre.com/favicon.ico",
|
||||
"siteUrl": "https://pay.sendwyre.com/purchase"
|
||||
"siteUrl": "https://pay.sendwyre.com/purchase",
|
||||
"hostname": "sendwyre.com"
|
||||
}
|
||||
```
|
||||
|
||||
|
@ -28,4 +29,5 @@ JSON example:
|
|||
|`fees`|string|The rate or rates that users are charged for the currency exchange service|
|
||||
|`region`|string|The geo-political jurisdiction that the service operates in|
|
||||
|`logoUrl`|string|A url to the on-ramp service's logo|
|
||||
|`siteUrl`|string|A url to redirect a user to the on-ramp service's exchange service|
|
||||
|`siteUrl`|string|A url to redirect a user to the on-ramp service's exchange service|
|
||||
|`hostname`|string|The hostname of the `siteUrl` consisting of the domain name and tld|
|
15
ramps.json
15
ramps.json
|
@ -5,7 +5,8 @@
|
|||
"fees": "from 2.9%",
|
||||
"region": "US & Europe",
|
||||
"logoUrl":"https://www.sendwyre.com/favicon.ico",
|
||||
"siteUrl": "https://pay.sendwyre.com/purchase"
|
||||
"siteUrl": "https://pay.sendwyre.com/purchase",
|
||||
"hostname": "sendwyre.com"
|
||||
},
|
||||
{
|
||||
"name": "MoonPay",
|
||||
|
@ -13,7 +14,8 @@
|
|||
"fees": "1%-4.5%",
|
||||
"region": "US & Europe",
|
||||
"logoUrl":"https://buy.moonpay.com/favicon-32x32.png",
|
||||
"siteUrl": "https://buy.moonpay.com"
|
||||
"siteUrl": "https://buy.moonpay.com",
|
||||
"hostname": "moonpay.com"
|
||||
},
|
||||
{
|
||||
"name": "Transak",
|
||||
|
@ -21,7 +23,8 @@
|
|||
"fees": "1%-4.5%",
|
||||
"region": "Global",
|
||||
"logoUrl":"https://global.transak.com/favicon.png",
|
||||
"siteUrl": "https://global.transak.com"
|
||||
"siteUrl": "https://global.transak.com",
|
||||
"hostname": "transak.com"
|
||||
},
|
||||
{
|
||||
"name": "Ramp",
|
||||
|
@ -29,7 +32,8 @@
|
|||
"fees": "1.5%",
|
||||
"region": "Global",
|
||||
"logoUrl":"https://ramp.network/assets/favicons/favicon-32x32.png",
|
||||
"siteUrl": "https://ramp.network/buy/"
|
||||
"siteUrl": "https://ramp.network/buy/",
|
||||
"hostname": "ramp.network"
|
||||
},
|
||||
{
|
||||
"name": "LocalCryptos",
|
||||
|
@ -37,6 +41,7 @@
|
|||
"fees": "1.5%",
|
||||
"region": "Global",
|
||||
"logoUrl":"https://localcryptos.com/images/favicon.png",
|
||||
"siteUrl": "https://localcryptos.com"
|
||||
"siteUrl": "https://localcryptos.com",
|
||||
"hostname": "localcryptos.com"
|
||||
}
|
||||
]
|
Loading…
Reference in New Issue