# Get available currencies

## <mark style="color:$success;">\[GET]</mark> /api/v2/currencies

Returns supported currencies for deposit and payout with details and available pairs.

Response type:

{% code overflow="wrap" expandable="true" %}

```typescript
type Response = {
  currencyType: CurrencyType;
  currencyCode: string;
  paymentChannels: {
    type: PaymentChannel,
    transferTypes: TransferType[],
    isDepositAllowed: boolean,
    isPayoutAllowed: boolean,
    carriers?: { code: string; name: string; }[]
  }[];
  currencyDetails: OrderCurrencyDetails;
  pairs: CurrencyType[]; // available counter currency types
}[]
```

{% endcode %}

Response example:

{% code overflow="wrap" expandable="true" %}

```json
[
    {
        "currencyType": "fiat",
        "currencyCode": "NGN",
        "paymentChannels": [
            {
                "type": "bank",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            },
            {
                "type": "mobile_money",
                "transferTypes": [
                    "otp_stk_push"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true,
                "carriers": [
                    {
                        "code": "ng_glo",
                        "name": "Glo Mobile Nigeria"
                    },
                    {
                        "code": "ng_9mobile",
                        "name": "9Mobile Nigeria"
                    },
                    {
                        "code": "ng_airtel",
                        "name": "Airtel Nigeria"
                    },
                    {
                        "code": "ng_mtn",
                        "name": "MTN Nigeria"
                    }
                ]
            },
            {
                "type": "airtime",
                "transferTypes": [
                    "ussd"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true,
                "carriers": [
                    {
                        "code": "ng_glo",
                        "name": "Glo Mobile Nigeria"
                    },
                    {
                        "code": "ng_9mobile",
                        "name": "9Mobile Nigeria"
                    },
                    {
                        "code": "ng_airtel",
                        "name": "Airtel Nigeria"
                    },
                    {
                        "code": "ng_mtn",
                        "name": "MTN Nigeria"
                    }
                ]
            }
        ],
        "currencyDetails": {
            "countryIsoCode": "NG"
        },
        "pairs": [
            "crypto",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "fiat",
        "currencyCode": "KES",
        "paymentChannels": [
            {
                "type": "mobile_money",
                "transferTypes": [
                    "stk_push",
                    "otp_stk_push"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true,
                "carriers": [
                    {
                        "code": "ke_safaricom",
                        "name": "Safaricom Kenya"
                    }
                ]
            },
            {
                "type": "airtime",
                "transferTypes": [
                    "ussd"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true,
                "carriers": [
                    {
                        "code": "ke_safaricom",
                        "name": "Safaricom Kenya"
                    },
                    {
                        "code": "ke_telkom",
                        "name": "Telkom Kenya"
                    },
                    {
                        "code": "ke_airtel",
                        "name": "Airtel Kenya"
                    }
                ]
            }
        ],
        "currencyDetails": {
            "countryIsoCode": "KE"
        },
        "pairs": [
            "crypto",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "fiat",
        "currencyCode": "GHS",
        "paymentChannels": [
            {
                "type": "mobile_money",
                "transferTypes": [
                    "otp_stk_push",
                    "stk_push"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true,
                "carriers": [
                    {
                        "code": "gh_vodafone",
                        "name": "Vodafone Ghana"
                    },
                    {
                        "code": "gh_mtn",
                        "name": "MTN Ghana"
                    },
                    {
                        "code": "gh_airtel_tigo",
                        "name": "AirtelTigo Ghana"
                    }
                ]
            },
            {
                "type": "airtime",
                "transferTypes": [
                    "ussd"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true,
                "carriers": [
                    {
                        "code": "gh_vodafone",
                        "name": "Vodafone Ghana"
                    },
                    {
                        "code": "gh_mtn",
                        "name": "MTN Ghana"
                    },
                    {
                        "code": "gh_airtel_tigo",
                        "name": "AirtelTigo Ghana"
                    }
                ]
            }
        ],
        "currencyDetails": {
            "countryIsoCode": "GH"
        },
        "pairs": [
            "crypto",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "fiat",
        "currencyCode": "ZAR",
        "paymentChannels": [
            {
                "type": "bank",
                "transferTypes": [
                    "manual",
                    "redirect"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            },
            {
                "type": "airtime",
                "transferTypes": [],
                "isDepositAllowed": false,
                "isPayoutAllowed": false,
                "carriers": [
                    {
                        "code": "za_vodacom",
                        "name": "Vodacom South Africa"
                    }
                ]
            }
        ],
        "currencyDetails": {
            "countryIsoCode": "ZA"
        },
        "pairs": [
            "crypto",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "fiat",
        "currencyCode": "TZS",
        "paymentChannels": [
            {
                "type": "mobile_money",
                "transferTypes": [
                    "otp_stk_push",
                    "stk_push"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true,
                "carriers": [
                    {
                        "code": "tz_halotel",
                        "name": "Halotel Tanzania"
                    },
                    {
                        "code": "tz_airtel",
                        "name": "Airtel Tanzania"
                    },
                    {
                        "code": "tz_tigo",
                        "name": "Tigo Tanzania"
                    },
                    {
                        "code": "tz_vodacom",
                        "name": "Vodacom Tanzania"
                    }
                ]
            },
            {
                "type": "airtime",
                "transferTypes": [
                    "ussd"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true,
                "carriers": [
                    {
                        "code": "tz_halotel",
                        "name": "Halotel Tanzania"
                    },
                    {
                        "code": "tz_airtel",
                        "name": "Airtel Tanzania"
                    },
                    {
                        "code": "tz_tigo",
                        "name": "Tigo Tanzania"
                    },
                    {
                        "code": "tz_vodacom",
                        "name": "Vodacom Tanzania"
                    }
                ]
            }
        ],
        "currencyDetails": {
            "countryIsoCode": "TZ"
        },
        "pairs": [
            "crypto",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "fiat",
        "currencyCode": "UGX",
        "paymentChannels": [
            {
                "type": "mobile_money",
                "transferTypes": [
                    "otp_stk_push",
                    "stk_push"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true,
                "carriers": [
                    {
                        "code": "ug_mtn",
                        "name": "MTN Uganda"
                    },
                    {
                        "code": "ug_airtel",
                        "name": "Airtel Uganda"
                    }
                ]
            },
            {
                "type": "airtime",
                "transferTypes": [
                    "ussd"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true,
                "carriers": [
                    {
                        "code": "ug_mtn",
                        "name": "MTN Uganda"
                    },
                    {
                        "code": "ug_airtel",
                        "name": "Airtel Uganda"
                    }
                ]
            }
        ],
        "currencyDetails": {
            "countryIsoCode": "UG"
        },
        "pairs": [
            "crypto",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "fiat",
        "currencyCode": "MWK",
        "paymentChannels": [
            {
                "type": "airtime",
                "transferTypes": [],
                "isDepositAllowed": false,
                "isPayoutAllowed": false,
                "carriers": [
                    {
                        "code": "mw_airtel",
                        "name": "Airtel Malawi"
                    },
                    {
                        "code": "mw_tnm",
                        "name": "TNM Malawi"
                    }
                ]
            }
        ],
        "currencyDetails": {
            "countryIsoCode": "MW"
        },
        "pairs": [
            "crypto",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "fiat",
        "currencyCode": "XOF",
        "paymentChannels": [
            {
                "type": "mobile_money",
                "transferTypes": [
                    "otp_stk_push",
                    "stk_push"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true,
                "carriers": [
                    {
                        "code": "bf_onatel",
                        "name": "Onatel Burkina Faso"
                    },
                    {
                        "code": "bf_orange",
                        "name": "Orange Burkina Faso"
                    },
                    {
                        "code": "sn_free",
                        "name": "Free Senegal"
                    },
                    {
                        "code": "sn_orange",
                        "name": "Orange Senegal"
                    },
                    {
                        "code": "bj_moov",
                        "name": "Moov Benin"
                    },
                    {
                        "code": "bj_mtn",
                        "name": "BJ MTN Benin"
                    },
                    {
                        "code": "ci_mtn",
                        "name": "MTN Ivory Coast"
                    },
                    {
                        "code": "ci_orange",
                        "name": "Orange Ivory Coast"
                    },
                    {
                        "code": "cg_airtel",
                        "name": "CG Bharti Airtel"
                    },
                    {
                        "code": "cg_mtn",
                        "name": "MTN Republic of the Congo"
                    }
                ]
            },
            {
                "type": "airtime",
                "transferTypes": [
                    "ussd"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true,
                "carriers": [
                    {
                        "code": "bf_onatel",
                        "name": "Onatel Burkina Faso"
                    },
                    {
                        "code": "bf_orange",
                        "name": "Orange Burkina Faso"
                    },
                    {
                        "code": "bj_mtn",
                        "name": "BJ MTN Benin"
                    },
                    {
                        "code": "bj_moov",
                        "name": "Moov Benin"
                    },
                    {
                        "code": "cg_airtel",
                        "name": "CG Bharti Airtel"
                    },
                    {
                        "code": "cg_mtn",
                        "name": "MTN Republic of the Congo"
                    },
                    {
                        "code": "ci_mtn",
                        "name": "MTN Ivory Coast"
                    },
                    {
                        "code": "ci_orange",
                        "name": "Orange Ivory Coast"
                    },
                    {
                        "code": "sn_free",
                        "name": "Free Senegal"
                    },
                    {
                        "code": "sn_orange",
                        "name": "Orange Senegal"
                    }
                ]
            }
        ],
        "currencyDetails": {
            "countryIsoCode": "BF"
        },
        "pairs": [
            "crypto",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "fiat",
        "currencyCode": "BRL",
        "paymentChannels": [
            {
                "type": "bank",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "countryIsoCode": "BR"
        },
        "pairs": [
            "crypto",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "fiat",
        "currencyCode": "ZMW",
        "paymentChannels": [
            {
                "type": "mobile_money",
                "transferTypes": [
                    "otp_stk_push",
                    "stk_push"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true,
                "carriers": [
                    {
                        "code": "zm_mtn",
                        "name": "MTN Zambia"
                    },
                    {
                        "code": "zm_airtel",
                        "name": "Airtel Zambia"
                    },
                    {
                        "code": "zm_zamtel",
                        "name": "Zamtel Zambia"
                    }
                ]
            },
            {
                "type": "airtime",
                "transferTypes": [
                    "ussd"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true,
                "carriers": [
                    {
                        "code": "zm_mtn",
                        "name": "MTN Zambia"
                    },
                    {
                        "code": "zm_airtel",
                        "name": "Airtel Zambia"
                    },
                    {
                        "code": "zm_zamtel",
                        "name": "Zamtel Zambia"
                    }
                ]
            }
        ],
        "currencyDetails": {
            "countryIsoCode": "ZM"
        },
        "pairs": [
            "crypto",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "fiat",
        "currencyCode": "RWF",
        "paymentChannels": [
            {
                "type": "mobile_money",
                "transferTypes": [
                    "otp_stk_push",
                    "stk_push"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true,
                "carriers": [
                    {
                        "code": "rw_airtel",
                        "name": "Airtel Rwanda"
                    },
                    {
                        "code": "rw_mtn",
                        "name": "MTN Rwanda"
                    }
                ]
            },
            {
                "type": "airtime",
                "transferTypes": [
                    "ussd"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true,
                "carriers": [
                    {
                        "code": "rw_airtel",
                        "name": "Airtel Rwanda"
                    },
                    {
                        "code": "rw_mtn",
                        "name": "MTN Rwanda"
                    }
                ]
            }
        ],
        "currencyDetails": {
            "countryIsoCode": "RW"
        },
        "pairs": [
            "crypto",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "fiat",
        "currencyCode": "XAF",
        "paymentChannels": [
            {
                "type": "mobile_money",
                "transferTypes": [
                    "otp_stk_push",
                    "stk_push"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true,
                "carriers": [
                    {
                        "code": "cm_orange",
                        "name": "Orange Cameroon"
                    },
                    {
                        "code": "cm_mtn",
                        "name": "MTN Cameroon"
                    },
                    {
                        "code": "gb_airtel",
                        "name": "Airtel Gabon"
                    },
                    {
                        "code": "cg_airtel",
                        "name": "CG Bharti Airtel"
                    },
                    {
                        "code": "cg_mtn",
                        "name": "MTN Republic of the Congo"
                    }
                ]
            },
            {
                "type": "airtime",
                "transferTypes": [
                    "ussd"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true,
                "carriers": [
                    {
                        "code": "cm_orange",
                        "name": "Orange Cameroon"
                    },
                    {
                        "code": "cm_mtn",
                        "name": "MTN Cameroon"
                    },
                    {
                        "code": "gb_airtel",
                        "name": "Airtel Gabon"
                    }
                ]
            }
        ],
        "currencyDetails": {
            "countryIsoCode": "CM"
        },
        "pairs": [
            "crypto",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "merchant_balance",
        "currencyCode": "USD",
        "paymentChannels": [
            {
                "type": "merchant_balance",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "merchantName": "Fonbnk"
        },
        "pairs": [
            "fiat",
            "crypto"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "SOLANA_USDT",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": false,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "SOLANA",
            "asset": "USDT",
            "contractAddress": "4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "TON_USDT",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": false
            }
        ],
        "currencyDetails": {
            "network": "TON",
            "asset": "USDT",
            "contractAddress": "EQDbg2Pq90CYsmQunxbz3_LJSRTPegqiq4KPFnYoe-IqusAK"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "TON_USDE",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": false
            }
        ],
        "currencyDetails": {
            "network": "TON",
            "asset": "USDE",
            "contractAddress": "EQDbg2Pq90CYsmQunxbz3_LJSRTPegqiq4KPFnYoe-IqusAK"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "LISK_USDT",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "LISK",
            "asset": "USDT",
            "contractAddress": "0xee07a6d5574b1d24a4d9ca98ccf78dcbff8792cb"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "ARBITRUM_USDT",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "ARBITRUM",
            "asset": "USDT",
            "contractAddress": "0x281bb260a3c17f08742c762d73c4263f95574b4e"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "AVALANCHE_USDC",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "AVALANCHE",
            "asset": "USDC",
            "contractAddress": "0x8f59f57d59d6412b735072ee051f17f8ff85bb56"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "AVALANCHE_USDT",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "AVALANCHE",
            "asset": "USDT",
            "contractAddress": "0x8f59f57d59d6412b735072ee051f17f8ff85bb56"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "BASE_USDC",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "BASE",
            "asset": "USDC",
            "contractAddress": "0x52be646529e3ceebba8dc800f67c64a110799045"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "CELO_CUSD",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "CELO",
            "asset": "CUSD",
            "contractAddress": "0xd5cf8ab08295e32db2e2dce8478e5ce021340a57"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "CELO_NATIVE",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "CELO",
            "asset": "NATIVE",
            "contractAddress": null
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "CELO_USDC",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "CELO",
            "asset": "USDC",
            "contractAddress": "0xd5cf8ab08295e32db2e2dce8478e5ce021340a57"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "CELO_USDGLO",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": false,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "CELO",
            "asset": "USDGLO",
            "contractAddress": "0xd5cf8ab08295e32db2e2dce8478e5ce021340a57"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "CELO_USDT",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "CELO",
            "asset": "USDT",
            "contractAddress": "0xd5cf8ab08295e32db2e2dce8478e5ce021340a57"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "CELO_CKES",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "CELO",
            "asset": "CKES",
            "contractAddress": "0xd5cf8ab08295e32db2e2dce8478e5ce021340a57"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "CELO_CGHS",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "CELO",
            "asset": "CGHS",
            "contractAddress": "0xd5cf8ab08295e32db2e2dce8478e5ce021340a57"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "ETHEREUM_USDC",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "ETHEREUM",
            "asset": "USDC",
            "contractAddress": "0x251ae8ffa50fe1e586e4385242caeef8ed222e5b"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "ETHEREUM_USDT",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "ETHEREUM",
            "asset": "USDT",
            "contractAddress": "0x251ae8ffa50fe1e586e4385242caeef8ed222e5b"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "ETHEREUM_RLUSD",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "ETHEREUM",
            "asset": "RLUSD",
            "contractAddress": "0x251ae8ffa50fe1e586e4385242caeef8ed222e5b"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "POLYGON_USDC",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "POLYGON",
            "asset": "USDC",
            "contractAddress": "0x3b3a06b48119c035a2e86afdb69d9ad930643b3d"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "POLYGON_USDC_E",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": false,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "POLYGON",
            "asset": "USDC_E",
            "contractAddress": "0x3b3a06b48119c035a2e86afdb69d9ad930643b3d"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "POLYGON_USDGLO",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": false,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "POLYGON",
            "asset": "USDGLO",
            "contractAddress": "0x3b3a06b48119c035a2e86afdb69d9ad930643b3d"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "POLYGON_USDT",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "POLYGON",
            "asset": "USDT",
            "contractAddress": "0x3b3a06b48119c035a2e86afdb69d9ad930643b3d"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "SOLANA_USDC",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "SOLANA",
            "asset": "USDC",
            "contractAddress": "4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "ARBITRUM_USDC",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "ARBITRUM",
            "asset": "USDC",
            "contractAddress": "0x281bb260a3c17f08742c762d73c4263f95574b4e"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "OPTIMISM_USDC",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "OPTIMISM",
            "asset": "USDC",
            "contractAddress": "0x115473c4ad9c0f8f87f443a843b3c4c3a04d7760"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "OPTIMISM_USDT",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "OPTIMISM",
            "asset": "USDT",
            "contractAddress": "0x115473c4ad9c0f8f87f443a843b3c4c3a04d7760"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "BNB_USDC",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "BNB",
            "asset": "USDC",
            "contractAddress": "0x51be56f99e091920f6894356377ebf589dd18682"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "BNB_USDT",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "BNB",
            "asset": "USDT",
            "contractAddress": "0x51be56f99e091920f6894356377ebf589dd18682"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "TRON_USDT",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "TRON",
            "asset": "USDT",
            "contractAddress": "TF17BgPaZYbz8oxbjhriubPDsA7ArKoLX3"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "XRP_RLUSD",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "XRP",
            "asset": "RLUSD",
            "contractAddress": "524C555344000000000000000000000000000000"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "ETHEREUM_NATIVE",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "ETHEREUM",
            "asset": "NATIVE",
            "contractAddress": null
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "SOLANA_NATIVE",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "SOLANA",
            "asset": "NATIVE",
            "contractAddress": null
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "TON_NATIVE",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "TON",
            "asset": "NATIVE",
            "contractAddress": ""
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "TRON_NATIVE",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "TRON",
            "asset": "NATIVE",
            "contractAddress": ""
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    },
    {
        "currencyType": "crypto",
        "currencyCode": "XRP_NATIVE",
        "paymentChannels": [
            {
                "type": "crypto",
                "transferTypes": [
                    "manual"
                ],
                "isDepositAllowed": true,
                "isPayoutAllowed": true
            }
        ],
        "currencyDetails": {
            "network": "XRP",
            "asset": "NATIVE",
            "contractAddress": "GBBD47IF6LWK7P7MDEVSCWR7DPUWV3NY3DTQEVFL4NAT4AQH3ZLLFLA5"
        },
        "pairs": [
            "fiat",
            "merchant_balance"
        ]
    }
]
```

{% endcode %}
