diff --git a/config/v3/website_config/receive.json b/config/v3/website_config/receive.json index 51156c29..c794b844 100644 --- a/config/v3/website_config/receive.json +++ b/config/v3/website_config/receive.json @@ -68,6 +68,25 @@ "description": "Name of the currency.", "type": "string" }, + "platform": { + "description": "List of cashier platforms supported for this currency. It is categorized by cashier and ramp (on-ramp, off-ramp) platforms.", + "type": "object", + "additionalProperties": false, + "required": [ + "cashier", + "ramp" + ], + "properties": { + "cashier": { + "description": "Supported platforms for the cashier, this is passed to provider attribute of `cashier` call", + "type": "array" + }, + "ramp": { + "description": "Supported platforms for the ramp (on-ramp, off-ramp)", + "type": "array" + } + } + }, "stake_default": { "description": "Default stake value for the currency.", "type": "number", diff --git a/config/v3/website_status/receive.json b/config/v3/website_status/receive.json index f74d4523..69270f19 100644 --- a/config/v3/website_status/receive.json +++ b/config/v3/website_status/receive.json @@ -185,6 +185,25 @@ "description": "Name of the currency.", "type": "string" }, + "platform": { + "description": "List of cashier platforms supported for this currency. It is categorized by cashier and ramp (on-ramp, off-ramp) platforms.", + "type": "object", + "additionalProperties": false, + "required": [ + "cashier", + "ramp" + ], + "properties": { + "cashier": { + "description": "Supported platforms for the cashier, this is passed to provider attribute of `cashier` call", + "type": "array" + }, + "ramp": { + "description": "Supported platforms for the ramp (on-ramp, off-ramp)", + "type": "array" + } + } + }, "stake_default": { "description": "Default stake value for the currency.", "type": "number",