36 lines
926 B
JavaScript
36 lines
926 B
JavaScript
import * as Yup from 'yup'
|
|
|
|
import SecretInputFormik from 'src/components/inputs/formik/SecretInput'
|
|
import TextInputFormik from 'src/components/inputs/formik/TextInput'
|
|
|
|
import { secretTest } from './helper'
|
|
|
|
export default {
|
|
code: 'ftx',
|
|
name: 'Ftx',
|
|
title: 'Ftx (Exchange)',
|
|
elements: [
|
|
{
|
|
code: 'apiKey',
|
|
display: 'API Key',
|
|
component: TextInputFormik,
|
|
face: true,
|
|
long: true
|
|
},
|
|
{
|
|
code: 'privateKey',
|
|
display: 'Private Key',
|
|
component: SecretInputFormik
|
|
}
|
|
],
|
|
getValidationSchema: account => {
|
|
return Yup.object().shape({
|
|
apiKey: Yup.string('The API key must be a string')
|
|
.max(100, 'The API key is too long')
|
|
.required('The API key is required'),
|
|
privateKey: Yup.string('The private key must be a string')
|
|
.max(100, 'The private key is too long')
|
|
.test(secretTest(account?.privateKey))
|
|
})
|
|
}
|
|
}
|