lamassu-server/new-lamassu-admin/src/pages/Services/schemas/trongrid.js
2023-09-13 16:40:41 +01:00

25 lines
570 B
JavaScript

import * as Yup from 'yup'
import TextInputFormik from 'src/components/inputs/formik/TextInput'
export default {
code: 'trongrid',
name: 'Trongrid',
title: 'Trongrid (Wallet)',
elements: [
{
code: 'apiKey',
display: 'API Key',
component: TextInputFormik,
face: true,
long: true
}
],
getValidationSchema: account => {
return Yup.object().shape({
apiKey: Yup.string('The project ID must be a string')
.max(100, 'The project ID is too long')
.required('The project ID is required')
})
}
}