From a185e9d963bdec06481908e5e77c7d860ce47ac4 Mon Sep 17 00:00:00 2001
From: njazuli-deriv <78890281+njazuli-deriv@users.noreply.github.com>
Date: Mon, 31 May 2021 14:22:40 +0800
Subject: [PATCH 1/7] updated payment list based on design.Waiting for missing
reference pdf
---
.../svg/payment-methods/payment-trustly.svg | 26 ++
.../payment-methods/payment-visa-electron.svg | 18 +
src/pages/payment-methods/_expanded-list.js | 15 +-
src/pages/payment-methods/_payment-data.js | 378 +++++++++++-------
4 files changed, 283 insertions(+), 154 deletions(-)
create mode 100644 src/images/svg/payment-methods/payment-trustly.svg
create mode 100644 src/images/svg/payment-methods/payment-visa-electron.svg
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..662207a9d2d
--- /dev/null
+++ b/src/images/svg/payment-methods/payment-trustly.svg
@@ -0,0 +1,26 @@
+
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..817439f47a2
--- /dev/null
+++ b/src/images/svg/payment-methods/payment-visa-electron.svg
@@ -0,0 +1,18 @@
+
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..1fa43653f39 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,60 +34,62 @@ 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: (
-
+
),
name: 'paytrust88',
},
{
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,500 ',
+ 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: Mir,
+ currencies: 'RUB',
+ min_max_deposit: '10 - 10,000',
+ min_max_withdrawal: '10 - 10,000',
+ deposit_time: ,
+ withdrawal_time: ,
+ description: (
+
+ ),
+ },
{
- method: ,
+ 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,12 +277,12 @@ 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: (
-
+
),
url: 'https://perfectmoney.is/',
name: 'perfect money',
@@ -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,30 @@ 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',
},
+ {
+ 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',
@@ -488,11 +569,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 +594,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 +631,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 +666,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 +692,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 +719,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: ,
+ currencies: 'USD EUR AUD GBP',
+ min_max_deposit: '50 - 5,000',
+ deposit_time: ,
description: (
),
@@ -652,29 +736,29 @@ const payment_data = [
},
{
method: ,
- currencies: 'USD EUR GBP AUD BTC LTC USDT USDC',
- min_max_deposit: '50-5,000',
- deposit_time: ,
+ currencies: 'USD EUR AUD GBP',
+ 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: 'USD EUR AUD GBP',
+ min_max_deposit: ,
+ deposit_time: ,
+ description: (
+
+ ),
+ name: 'Wyre',
+ },
{
method: ,
- currencies: 'USD EUR GBP AUD BTC ETH LTC USDT',
- min_max_deposit: ,
- deposit_time: ,
+ currencies: 'USD EUR AUD GBP',
+ min_max_deposit: ,
+ deposit_time: ,
description: (
),
From 8e8fe8759ef1142182c62fe8dba2255cbc6b6d43 Mon Sep 17 00:00:00 2001
From: njazuli-deriv <78890281+njazuli-deriv@users.noreply.github.com>
Date: Mon, 31 May 2021 14:25:04 +0800
Subject: [PATCH 2/7] compress svgs
---
.../svg/payment-methods/payment-trustly.svg | 27 +------------------
.../payment-methods/payment-visa-electron.svg | 19 +------------
2 files changed, 2 insertions(+), 44 deletions(-)
diff --git a/src/images/svg/payment-methods/payment-trustly.svg b/src/images/svg/payment-methods/payment-trustly.svg
index 662207a9d2d..0276646ef2e 100644
--- a/src/images/svg/payment-methods/payment-trustly.svg
+++ b/src/images/svg/payment-methods/payment-trustly.svg
@@ -1,26 +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
index 817439f47a2..fb21105fae3 100644
--- a/src/images/svg/payment-methods/payment-visa-electron.svg
+++ b/src/images/svg/payment-methods/payment-visa-electron.svg
@@ -1,18 +1 @@
-
+
\ No newline at end of file
From 89c98c8e23812b327b0d0ca7f9530adae182db98 Mon Sep 17 00:00:00 2001
From: njazuli-deriv <78890281+njazuli-deriv@users.noreply.github.com>
Date: Mon, 31 May 2021 14:57:21 +0800
Subject: [PATCH 3/7] hide online naira and visa electron reference for now
---
src/pages/payment-methods/_payment-data.js | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/pages/payment-methods/_payment-data.js b/src/pages/payment-methods/_payment-data.js
index 1fa43653f39..5e42c94b0a6 100644
--- a/src/pages/payment-methods/_payment-data.js
+++ b/src/pages/payment-methods/_payment-data.js
@@ -183,7 +183,7 @@ const payment_data = [
),
name: 'VisaElectron',
- reference: 'visa-payment-method.pdf',
+ // reference: 'visa-payment-method.pdf',
},
{
method: ,
@@ -455,6 +455,7 @@ const payment_data = [
),
url: 'https://www.onlinenaira.com/',
name: 'onlinenaira',
+ // reference: 'paylivre-payment-method.pdf',
},
{
method: ,
From 4cf0110edc09e0aea5257d37012cd3e5db683de9 Mon Sep 17 00:00:00 2001
From: njazuli-deriv <78890281+njazuli-deriv@users.noreply.github.com>
Date: Mon, 31 May 2021 16:33:45 +0800
Subject: [PATCH 4/7] remove whitespace
---
src/pages/payment-methods/_payment-data.js | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/pages/payment-methods/_payment-data.js b/src/pages/payment-methods/_payment-data.js
index 5e42c94b0a6..14a1d020322 100644
--- a/src/pages/payment-methods/_payment-data.js
+++ b/src/pages/payment-methods/_payment-data.js
@@ -82,14 +82,14 @@ const payment_data = [
deposit_time: ,
withdrawal_time: ,
description: (
-
+
),
name: 'paytrust88',
},
{
method: ,
currencies: 'USD',
- min_max_deposit: '10 - 10,000 ',
+ min_max_deposit: '10 - 10,000',
min_max_withdrawal: ,
deposit_time: ,
withdrawal_time: ,
@@ -129,7 +129,7 @@ const payment_data = [
{
method: ,
currencies: 'USD',
- min_max_deposit: '11 - 10,500 ',
+ min_max_deposit: '11 - 10,500',
min_max_withdrawal: 'Not applicable',
deposit_time: ,
withdrawal_time: ,
@@ -252,7 +252,7 @@ const payment_data = [
deposit_time: ,
withdrawal_time: ,
description: (
-
+
),
},
],
@@ -425,7 +425,7 @@ const payment_data = [
deposit_time: ,
withdrawal_time: ,
description: (
-
+
),
name: 'boleto-bancário',
},
@@ -465,7 +465,7 @@ const payment_data = [
deposit_time: ,
withdrawal_time: ,
description: (
-
+
),
url: 'https://www.trustly.net/',
name: 'trustly',
@@ -504,7 +504,7 @@ const payment_data = [
// deposit_time: ,
// withdrawal_time: ,
// description: (
- //
+ //
// ),
// url:'https://www.airtel.in/',
// name: 'airtel',
@@ -517,7 +517,7 @@ const payment_data = [
// deposit_time: ,
// withdrawal_time: ,
// description: (
- //
+ //
// ),
// name: 'vodafone',
// },
@@ -542,7 +542,7 @@ const payment_data = [
// deposit_time: ,
// withdrawal_time: ,
// description: (
- //
+ //
// ),
// url:'https://www.trustly.net/',
// name: 'trustly',
From a1bbe510fc04665de2287136aef47dfd6f3e5dae Mon Sep 17 00:00:00 2001
From: njazuli-deriv <78890281+njazuli-deriv@users.noreply.github.com>
Date: Tue, 8 Jun 2021 09:49:07 +0800
Subject: [PATCH 5/7] nchanges on help2pay and perfectmoney desc
---
src/pages/payment-methods/_payment-data.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/pages/payment-methods/_payment-data.js b/src/pages/payment-methods/_payment-data.js
index 14a1d020322..b61d6a54de0 100644
--- a/src/pages/payment-methods/_payment-data.js
+++ b/src/pages/payment-methods/_payment-data.js
@@ -129,7 +129,7 @@ const payment_data = [
{
method: ,
currencies: 'USD',
- min_max_deposit: '11 - 10,500',
+ min_max_deposit: '11 - 10,000',
min_max_withdrawal: 'Not applicable',
deposit_time: ,
withdrawal_time: ,
@@ -282,7 +282,7 @@ const payment_data = [
deposit_time: ,
withdrawal_time: ,
description: (
-
+
),
url: 'https://perfectmoney.is/',
name: 'perfect money',
From 12315deef89a2442340df70fe15c2f9921807cf8 Mon Sep 17 00:00:00 2001
From: njazuli-deriv <78890281+njazuli-deriv@users.noreply.github.com>
Date: Tue, 8 Jun 2021 16:42:47 +0800
Subject: [PATCH 6/7] change Online Banking to Online banking
---
src/pages/payment-methods/_payment-data.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pages/payment-methods/_payment-data.js b/src/pages/payment-methods/_payment-data.js
index b61d6a54de0..f3e73dc9915 100644
--- a/src/pages/payment-methods/_payment-data.js
+++ b/src/pages/payment-methods/_payment-data.js
@@ -60,7 +60,7 @@ const NoIconText = styled.div`
const payment_data = [
{
- name: ,
+ name: ,
data: [
{
method: ,
From 00baa8b2f372a740ca2394c7c31465ffc728cbe2 Mon Sep 17 00:00:00 2001
From: njazuli-deriv <78890281+njazuli-deriv@users.noreply.github.com>
Date: Wed, 9 Jun 2021 16:51:44 +0800
Subject: [PATCH 7/7] fixed latest subtask card
---
src/pages/payment-methods/_payment-data.js | 23 ++++++++++++++++++----
1 file changed, 19 insertions(+), 4 deletions(-)
diff --git a/src/pages/payment-methods/_payment-data.js b/src/pages/payment-methods/_payment-data.js
index f3e73dc9915..87d8d80f3bd 100644
--- a/src/pages/payment-methods/_payment-data.js
+++ b/src/pages/payment-methods/_payment-data.js
@@ -726,7 +726,7 @@ const payment_data = [
data: [
{
method: ,
- currencies: 'USD EUR AUD GBP',
+ currencies: 'USD EUR GBP BTC',
min_max_deposit: '50 - 5,000',
deposit_time: ,
description: (
@@ -737,7 +737,12 @@ const payment_data = [
},
{
method: ,
- currencies: 'USD EUR AUD GBP',
+ currencies: (
+ ]}
+ />
+ ),
min_max_deposit: '50 - 5,000',
deposit_time: ,
description: (
@@ -747,7 +752,12 @@ const payment_data = [
},
{
method: ,
- currencies: 'USD EUR AUD GBP',
+ currencies: (
+ ]}
+ />
+ ),
min_max_deposit: ,
deposit_time: ,
description: (
@@ -757,7 +767,12 @@ const payment_data = [
},
{
method: ,
- currencies: 'USD EUR AUD GBP',
+ currencies: (
+ ]}
+ />
+ ),
min_max_deposit: ,
deposit_time: ,
description: (