diff --git a/src/images/svg/payment-methods/payment-trustly.svg b/src/images/svg/payment-methods/payment-trustly.svg
new file mode 100644
index 00000000000..0276646ef2e
--- /dev/null
+++ b/src/images/svg/payment-methods/payment-trustly.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/images/svg/payment-methods/payment-visa-electron.svg b/src/images/svg/payment-methods/payment-visa-electron.svg
new file mode 100644
index 00000000000..fb21105fae3
--- /dev/null
+++ b/src/images/svg/payment-methods/payment-visa-electron.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/pages/payment-methods/_expanded-list.js b/src/pages/payment-methods/_expanded-list.js
index c9aef08c761..719bfcfc3d6 100644
--- a/src/pages/payment-methods/_expanded-list.js
+++ b/src/pages/payment-methods/_expanded-list.js
@@ -4,7 +4,7 @@ import styled, { css } from 'styled-components'
import { Button } from 'components/form/'
import { Text } from 'components/elements'
import { localize } from 'components/localization'
-import { getCryptoDecimals } from 'common/utility'
+// import { getCryptoDecimals } from 'common/utility'
// SVG
import Chevron from 'images/svg/chevron-thick.svg'
import PDF from 'images/svg/pdf-icon-black.svg'
@@ -103,14 +103,14 @@ const Withdrawal = styled(Td)`
}
`
-const ExpandList = ({ data, config, is_crypto, is_fiat_onramp, locale }) => {
+const ExpandList = ({ data, /*config,*/ is_crypto, is_fiat_onramp, locale }) => {
const [is_expanded, setIsExpanded] = React.useState(false)
const toggleExpand = () => {
setIsExpanded(!is_expanded)
}
- const getCryptoConfig = (name) => {
- return config == undefined ? null : getCryptoDecimals(config[name].minimum_withdrawal)
- }
+ // const getCryptoConfig = (name) => {
+ // return config == undefined ? null : getCryptoDecimals(config[name].minimum_withdrawal)
+ // }
return (
<>
@@ -133,7 +133,8 @@ const ExpandList = ({ data, config, is_crypto, is_fiat_onramp, locale }) => {
{md}
))
) : is_crypto ? (
- {getCryptoConfig(data.name)}
+ // {getCryptoConfig(data.name)}
+ {data.min_max_withdrawal}
) : (
{data.min_max_withdrawal}
)}
@@ -188,7 +189,7 @@ const ExpandList = ({ data, config, is_crypto, is_fiat_onramp, locale }) => {
}
ExpandList.propTypes = {
- config: PropTypes.oneOfType([PropTypes.bool, PropTypes.object]),
+ // config: PropTypes.oneOfType([PropTypes.bool, PropTypes.object]),
data: PropTypes.object,
is_crypto: PropTypes.bool,
is_fiat_onramp: PropTypes.bool,
diff --git a/src/pages/payment-methods/_payment-data.js b/src/pages/payment-methods/_payment-data.js
index 018cace8e99..87d8d80f3bd 100644
--- a/src/pages/payment-methods/_payment-data.js
+++ b/src/pages/payment-methods/_payment-data.js
@@ -5,6 +5,7 @@ import { Localize } from 'components/localization'
import BankTransfer from 'images/svg/payment-methods/payment-bank-transfer.svg'
import Paytrust from 'images/svg/payment-methods/payment-paytrust.svg'
import Visa from 'images/svg/payment-methods/payment-visa.svg'
+import VisaElectron from 'images/svg/payment-methods/payment-visa-electron.svg'
import MasterCard from 'images/svg/payment-methods/payment-mastercard.svg'
import Maestro from 'images/svg/payment-methods/payment-maestro.svg'
import Fasapay from 'images/svg/payment-methods/payment-fasapay.svg'
@@ -33,50 +34,52 @@ import Diners from 'images/svg/payment-methods/payment-diners.svg'
// import Idk from 'images/svg/payment-methods/payment-idk.svg'
// import Paxos from 'images/svg/payment-methods/payment-paxos-standard.svg'
// import True from 'images/svg/payment-methods/payment-true-usd.svg'
-import UsdCoin from 'images/svg/payment-methods/payment-usd-coin.svg'
+// import UsdCoin from 'images/svg/payment-methods/payment-usd-coin.svg'
// import Usdk from 'images/svg/payment-methods/payment-usdk.svg'
import Changelly from 'images/svg/payment-methods/payment-changelly.svg'
-// import Wyre from 'images/svg/payment-methods/payment-wyre.svg'
+import Wyre from 'images/svg/payment-methods/payment-wyre.svg'
import Xanpool from 'images/svg/payment-methods/payment-xanpool.svg'
import Banxa from 'images/svg/payment-methods/payment-banxa.svg'
import Paylivre from 'images/svg/payment-methods/payment-paylivre.svg'
-import Discover from 'images/svg/payment-methods/payment-discover.svg'
+// import Discover from 'images/svg/payment-methods/payment-discover.svg'
import OnlineNaira from 'images/svg/payment-methods/payment-onlinenaira.svg'
// import Tigo from 'images/svg/payment-methods/payment-tigo.svg'
// import Airtel from 'images/svg/payment-methods/payment-airtel.svg'
+import Trustly from 'images/svg/payment-methods/payment-trustly.svg'
const StyledIcon = styled.img`
width: 72px;
height: 72px;
`
-// const NoIconText = styled.div`
-// color:var(--color-red);
-// font-size:1.5rem;
-// `
+const NoIconText = styled.div`
+ color: var(--color-red);
+ font-size: 16px;
+ font-weight: bold;
+`
const payment_data = [
{
- name: ,
+ name: ,
data: [
{
method: ,
- currencies: 'USD GBP EUR AUD',
- min_max_deposit: '500-100,000',
- min_max_withdrawal: '500-100,000',
+ currencies: 'USD',
+ min_max_deposit: '5 - 50,000',
+ min_max_withdrawal: '5 - 50,000',
deposit_time: ,
withdrawal_time: ,
description: (
-
+
),
name: 'bank transfer',
},
{
method: ,
currencies: 'USD',
- min_max_deposit: '10-17,000',
+ min_max_deposit: '10 - 17,000',
min_max_withdrawal: ,
- deposit_time: ,
+ deposit_time: ,
withdrawal_time: ,
description: (
@@ -85,8 +88,8 @@ const payment_data = [
},
{
method: ,
- currencies: 'USD EUR GBP AUD',
- min_max_deposit: '10-10,000',
+ currencies: 'USD',
+ min_max_deposit: '10 - 10,000',
min_max_withdrawal: ,
deposit_time: ,
withdrawal_time: ,
@@ -96,11 +99,25 @@ const payment_data = [
name: 'DragonPhoenix',
reference: 'dragonphoenix-payment-method.pdf',
},
+ {
+ method: ,
+ currencies: 'USD',
+ min_max_deposit: '10 - 2,500',
+ min_max_withdrawal: '10 - 2,500',
+ deposit_time: ,
+ withdrawal_time: ,
+ description: (
+
+ ),
+ name: 'NganLuong',
+ reference: 'nganluong-payment-method.pdf',
+ locales: ['vi'],
+ },
{
method: ,
- currencies: 'USD GBP EUR AUD',
- min_max_deposit: '10-500',
- min_max_withdrawal: '10-1,500',
+ currencies: 'USD EUR AUD GBP',
+ min_max_deposit: '10 - 500',
+ min_max_withdrawal: '10 - 1,500',
deposit_time: ,
withdrawal_time: ,
description: (
@@ -109,6 +126,18 @@ const payment_data = [
name: 'ZingPay',
reference: 'zingpay-payment-method.pdf',
},
+ {
+ method: ,
+ currencies: 'USD',
+ min_max_deposit: '11 - 10,000',
+ min_max_withdrawal: 'Not applicable',
+ deposit_time: ,
+ withdrawal_time: ,
+ description: (
+
+ ),
+ name: 'Help2Pay',
+ },
// {
// method: ,
// currencies: 'USD',
@@ -122,33 +151,19 @@ const payment_data = [
// name: 'DragonPay',
// reference: 'dragonpay-payment-method.pdf',
// },
- {
- method: ,
- currencies: 'USD',
- min_max_deposit: '10-4,000',
- min_max_withdrawal: '10-4,000',
- deposit_time: ,
- withdrawal_time: ,
- description: (
-
- ),
- name: 'NganLuong',
- reference: 'nganluong-payment-method.pdf',
- locales: ['vi'],
- },
],
},
{
name: ,
note: (
-
+
),
data: [
{
method: ,
- currencies: 'USD GBP EUR AUD',
- min_max_deposit: '10-10,000',
- min_max_withdrawal: '10-10,000',
+ currencies: 'USD EUR AUD GBP',
+ min_max_deposit: '10 - 10,000',
+ min_max_withdrawal: '10 - 10,000',
deposit_time: ,
withdrawal_time: ,
description: (
@@ -157,11 +172,24 @@ const payment_data = [
name: 'visa',
reference: 'visa-payment-method.pdf',
},
+ {
+ method: ,
+ currencies: 'USD EUR AUD GBP',
+ min_max_deposit: '10 - 10,000',
+ min_max_withdrawal: '10 - 10,000',
+ deposit_time: ,
+ withdrawal_time: ,
+ description: (
+
+ ),
+ name: 'VisaElectron',
+ // reference: 'visa-payment-method.pdf',
+ },
{
method: ,
- currencies: 'USD GBP EUR AUD',
- min_max_deposit: '10-10,000',
- min_max_withdrawal: '10-10,000',
+ currencies: 'USD EUR AUD GBP',
+ min_max_deposit: '10 - 10,000',
+ min_max_withdrawal: '10 - 10,000',
deposit_time: ,
withdrawal_time: ,
description: (
@@ -172,9 +200,9 @@ const payment_data = [
},
{
method: ,
- currencies: 'USD GBP EUR AUD',
- min_max_deposit: '10-10,000',
- min_max_withdrawal: '10-10,000',
+ currencies: 'USD EUR AUD GBP',
+ min_max_deposit: '10 - 10,000',
+ min_max_withdrawal: '10 - 10,000',
deposit_time: ,
withdrawal_time: ,
description: (
@@ -185,25 +213,47 @@ const payment_data = [
},
{
method: ,
- currencies: 'USD GBP EUR AUD',
- min_max_deposit: '10-10,000',
- min_max_withdrawal: '10-10,000',
+ currencies: 'USD EUR AUD GBP',
+ min_max_deposit: '10 - 10,000',
+ min_max_withdrawal: '10 - 10,000',
deposit_time: ,
withdrawal_time: ,
description: (
-
+
),
name: 'diners',
reference: 'diners-club-payment-method.pdf',
},
+ // {
+ // method: ,
+ // currencies: 'USD',
+ // min_max_deposit: '10-10,000',
+ // min_max_withdrawal: 'Not applicable',
+ // deposit_time: ,
+ // withdrawal_time: ,
+ // description: ,
+ // },
{
- method: ,
+ method: Mir,
+ currencies: 'RUB',
+ min_max_deposit: '10 - 10,000',
+ min_max_withdrawal: '10 - 10,000',
+ deposit_time: ,
+ withdrawal_time: ,
+ description: (
+
+ ),
+ },
+ {
+ method: JCB,
currencies: 'USD',
- min_max_deposit: '10-10,000',
- min_max_withdrawal: 'Not applicable',
+ min_max_deposit: '10 - 10,000',
+ min_max_withdrawal: '10 - 10,000',
deposit_time: ,
- withdrawal_time: ,
- description: ,
+ withdrawal_time: ,
+ description: (
+
+ ),
},
],
},
@@ -213,8 +263,8 @@ const payment_data = [
{
method: ,
currencies: 'USD',
- min_max_deposit: '5-10,000',
- min_max_withdrawal: '5-10,000',
+ min_max_deposit: '5 - 10,000',
+ min_max_withdrawal: '5 - 10,000',
deposit_time: ,
withdrawal_time: ,
description: (
@@ -227,8 +277,8 @@ const payment_data = [
{
method: ,
currencies: 'USD EUR',
- min_max_deposit: '5-10,000',
- min_max_withdrawal: '5-10,000',
+ min_max_deposit: '5 - 10,000',
+ min_max_withdrawal: '5 - 10,000',
deposit_time: ,
withdrawal_time: ,
description: (
@@ -240,9 +290,9 @@ const payment_data = [
},
{
method: ,
- currencies: 'USD GBP EUR AUD',
- min_max_deposit: '10-10,000',
- min_max_withdrawal: '5-10,000',
+ currencies: 'USD EUR AUD GBP',
+ min_max_deposit: '10 - 10,000',
+ min_max_withdrawal: '10 - 10,000',
deposit_time: ,
withdrawal_time: ,
description: (
@@ -254,13 +304,13 @@ const payment_data = [
},
{
method: ,
- currencies: 'USD GBP EUR AUD',
- min_max_deposit: '5-10,000',
- min_max_withdrawal: '5-10,000',
+ currencies: 'USD EUR AUD GBP',
+ min_max_deposit: '10 - 10,000',
+ min_max_withdrawal: '5 - 10,000',
deposit_time: ,
withdrawal_time: ,
description: (
-
+
),
url: 'https://www.neteller.com/',
name: 'neteller',
@@ -269,12 +319,12 @@ const payment_data = [
{
method: ,
currencies: 'USD EUR',
- min_max_deposit: '5-10,000',
- min_max_withdrawal: '5-10,000',
+ min_max_deposit: '5 - 20,000',
+ min_max_withdrawal: '5 - 10,000',
deposit_time: ,
withdrawal_time: ,
description: (
-
+
),
url: 'https://www.wmtransfer.com/',
name: 'webmoney',
@@ -295,9 +345,14 @@ const payment_data = [
// },
{
method: ,
- currencies: 'USD GBP EUR AUD',
- min_max_deposit: '5-1,000',
- min_max_withdrawal: '5-750',
+ currencies: 'USD AUD GBP EUR',
+ min_max_deposit: (
+ ]}
+ />
+ ),
+ min_max_withdrawal: '5 - 750',
deposit_time: ,
withdrawal_time: ,
description: (
@@ -308,9 +363,9 @@ const payment_data = [
},
{
method: ,
- currencies: 'USD EUR',
- min_max_deposit: '5-10,000',
- min_max_withdrawal: '5-10,000',
+ currencies: 'USD EUR AUD GBP',
+ min_max_deposit: '5 - 1,000',
+ min_max_withdrawal: '5 - 1,000',
deposit_time: ,
withdrawal_time: ,
description: (
@@ -323,9 +378,9 @@ const payment_data = [
{
method: ,
- currencies: 'USD GBP EUR',
- min_max_deposit: '5-10,000',
- min_max_withdrawal: '5-10,000',
+ currencies: 'USD EUR GBP',
+ min_max_deposit: '5 - 10,000',
+ min_max_withdrawal: '5 - 1,000',
deposit_time: ,
withdrawal_time: ,
description: (
@@ -338,39 +393,51 @@ const payment_data = [
{
method: ,
currencies: 'USD',
- min_max_deposit: '5-2,500',
- min_max_withdrawal: '5-2,500',
+ min_max_deposit: '5 - 2,500',
+ min_max_withdrawal: '5 - 2,500',
deposit_time: ,
withdrawal_time: ,
description: (
-
+
),
url: 'https://www.airtm.io/#/',
name: 'airtm',
reference: 'airtm-payment-method.pdf',
},
+ // {
+ // method: ,
+ // currencies: 'USD',
+ // min_max_deposit: '5-10,000',
+ // min_max_withdrawal: ,
+ // deposit_time: ,
+ // withdrawal_time: ,
+ // description: (
+ //
+ // ),
+ // name: 'Help2Pay',
+ // reference: 'help2pay-payment-method.pdf',
+ // },
{
- method: ,
+ method: Boleto Bancário,
currencies: 'USD',
- min_max_deposit: '5-10,000',
- min_max_withdrawal: ,
- deposit_time: ,
- withdrawal_time: ,
+ min_max_deposit: '10 - 500',
+ min_max_withdrawal: 'Not applicable',
+ deposit_time: ,
+ withdrawal_time: ,
description: (
-
+
),
- name: 'Help2Pay',
- reference: 'help2pay-payment-method.pdf',
+ name: 'boleto-bancário',
},
{
method: ,
currencies: 'USD',
- min_max_deposit: '5-500',
- min_max_withdrawal: '5-2,000',
+ min_max_deposit: '5 - 4,000',
+ min_max_withdrawal: '5 - 10,000',
deposit_time: ,
- withdrawal_time: ,
+ withdrawal_time: ,
description: (
-
+
),
url: 'https://paylivre.com/',
name: 'paylivre',
@@ -379,16 +446,31 @@ const payment_data = [
{
method: ,
currencies: 'USD',
- min_max_deposit: '10-500',
- min_max_withdrawal: '10-2,000',
+ min_max_deposit: '10 - 500',
+ min_max_withdrawal: '10 - 2,000',
deposit_time: ,
- withdrawal_time: ,
+ withdrawal_time: ,
description: (
),
url: 'https://www.onlinenaira.com/',
name: 'onlinenaira',
+ // reference: 'paylivre-payment-method.pdf',
},
+ {
+ method: ,
+ currencies: 'EUR',
+ min_max_deposit: '10 - 100',
+ min_max_withdrawal: 'Will be available soon',
+ deposit_time: ,
+ withdrawal_time: ,
+ description: (
+
+ ),
+ url: 'https://www.trustly.net/',
+ name: 'trustly',
+ },
+
// {
// method: MTN Mobile Money,
// currencies: 'GHS UGX',
@@ -422,7 +504,7 @@ const payment_data = [
// deposit_time: ,
// withdrawal_time: ,
// description: (
- //
+ //
// ),
// url:'https://www.airtel.in/',
// name: 'airtel',
@@ -435,7 +517,7 @@ const payment_data = [
// deposit_time: ,
// withdrawal_time: ,
// description: (
- //
+ //
// ),
// name: 'vodafone',
// },
@@ -460,7 +542,7 @@ const payment_data = [
// deposit_time: ,
// withdrawal_time: ,
// description: (
- //
+ //
// ),
// url:'https://www.trustly.net/',
// name: 'trustly',
@@ -488,11 +570,11 @@ const payment_data = [
// },
{
method: ,
- currencies: 'BTC',
- min_max_deposit: ,
- min_max_withdrawal: undefined,
- deposit_time: ,
- withdrawal_time: ,
+ currencies: 'USD EUR AUD GBP',
+ min_max_deposit: '5 - 10,000',
+ min_max_withdrawal: '5 - 10,000',
+ deposit_time: ,
+ withdrawal_time: ,
description: (
),
@@ -513,11 +595,11 @@ const payment_data = [
// },
{
method: ,
- currencies: 'ETH',
- min_max_deposit: ,
- min_max_withdrawal: undefined,
- deposit_time: ,
- withdrawal_time: ,
+ currencies: 'USD EUR AUD GBP',
+ min_max_deposit: '5 - 10,000',
+ min_max_withdrawal: '5 - 10,000',
+ deposit_time: ,
+ withdrawal_time: ,
description: (
),
@@ -550,11 +632,11 @@ const payment_data = [
// },
{
method: ,
- currencies: 'LTC',
- min_max_deposit: ,
- min_max_withdrawal: undefined,
- deposit_time: ,
- withdrawal_time: ,
+ currencies: 'USD EUR AUD GBP',
+ min_max_deposit: '5 - 10,000',
+ min_max_withdrawal: '5 - 10,000',
+ deposit_time: ,
+ withdrawal_time: ,
description: (
),
@@ -585,18 +667,18 @@ const payment_data = [
// ),
// name: 'TUSD',
// },
- {
- method: ,
- currencies: 'USDC',
- min_max_deposit: ,
- min_max_withdrawal: undefined,
- deposit_time: ,
- withdrawal_time: ,
- description: (
-
- ),
- name: 'USDC',
- },
+ // {
+ // method: ,
+ // currencies: 'USDC',
+ // min_max_deposit: ,
+ // min_max_withdrawal: undefined,
+ // deposit_time: ,
+ // withdrawal_time: ,
+ // description: (
+ //
+ // ),
+ // name: 'USDC',
+ // },
// {
// method: ,
// currencies: 'USDK',
@@ -611,13 +693,13 @@ const payment_data = [
// },
{
method: ,
- currencies: 'USDT',
- min_max_deposit: ,
- min_max_withdrawal: undefined,
- deposit_time: ,
- withdrawal_time: ,
+ currencies: 'USD EUR AUD GBP',
+ min_max_deposit: '5 - 10,000',
+ min_max_withdrawal: '5 - 10,000',
+ deposit_time: ,
+ withdrawal_time: ,
description: (
-
+
),
name: 'UST',
},
@@ -638,12 +720,15 @@ const payment_data = [
{
name: ,
is_fiat_onramp: true,
+ note: (
+
+ ),
data: [
{
method: ,
currencies: 'USD EUR GBP BTC',
- min_max_deposit: '50-5,000',
- deposit_time: ,
+ min_max_deposit: '50 - 5,000',
+ deposit_time: ,
description: (
),
@@ -652,29 +737,44 @@ const payment_data = [
},
{
method: ,
- currencies: 'USD EUR GBP AUD BTC LTC USDT USDC',
- min_max_deposit: '50-5,000',
- deposit_time: ,
+ currencies: (
+ ]}
+ />
+ ),
+ min_max_deposit: '50 - 5,000',
+ deposit_time: ,
description: (
),
name: 'Banxa',
},
- // {
- // method: ,
- // currencies: 'USD EUR GBP AUD MXN BTC ETH WETH DAI',
- // min_max_deposit: ,
- // deposit_time: ,
- // description: (
- //
- // ),
- // name: 'Wyre',
- // },
+ {
+ method: ,
+ currencies: (
+ ]}
+ />
+ ),
+ min_max_deposit: ,
+ deposit_time: ,
+ description: (
+
+ ),
+ name: 'Wyre',
+ },
{
method: ,
- currencies: 'USD EUR GBP AUD BTC ETH LTC USDT',
- min_max_deposit: ,
- deposit_time: ,
+ currencies: (
+ ]}
+ />
+ ),
+ min_max_deposit: ,
+ deposit_time: ,
description: (
),