|
1 |
| -import { validateStacksAddress } from '@stacks/transactions'; |
2 |
| -import { z } from 'zod'; |
3 |
| - |
4 |
| -import { ChainID, NetworkConfiguration } from '@leather.io/models'; |
5 |
| -import { isEmptyString, isUndefined } from '@leather.io/utils'; |
6 |
| - |
7 |
| -import { FormErrorMessages } from './common.validation'; |
8 |
| - |
9 |
| -export function validateAddressChain(address: string, currentNetwork: NetworkConfiguration) { |
10 |
| - const prefix = address.slice(0, 2); |
11 |
| - switch (currentNetwork.chain.stacks.chainId) { |
12 |
| - case ChainID.Mainnet: |
13 |
| - return prefix === 'SM' || prefix === 'SP'; |
14 |
| - case ChainID.Testnet: |
15 |
| - return prefix === 'SN' || prefix === 'ST'; |
16 |
| - default: |
17 |
| - return false; |
18 |
| - } |
19 |
| -} |
20 |
| - |
21 |
| -function notCurrentAddressValidatorFactory(currentAddress: string) { |
22 |
| - return (value?: string) => value !== currentAddress; |
23 |
| -} |
24 |
| - |
25 |
| -export function notCurrentAddressValidator(currentAddress: string) { |
26 |
| - return z.string().refine(notCurrentAddressValidatorFactory(currentAddress), { |
27 |
| - message: FormErrorMessages.SameAddress, |
28 |
| - }); |
29 |
| -} |
30 |
| - |
31 |
| -function stxAddressNetworkValidatorFactory(currentNetwork: NetworkConfiguration) { |
32 |
| - return (value?: string) => { |
33 |
| - if (isUndefined(value) || isEmptyString(value)) return true; |
34 |
| - return validateAddressChain(value, currentNetwork); |
35 |
| - }; |
36 |
| -} |
37 |
| - |
38 |
| -export function stxAddressNetworkValidator(currentNetwork: NetworkConfiguration) { |
39 |
| - return z.string().refine(stxAddressNetworkValidatorFactory(currentNetwork), { |
40 |
| - message: FormErrorMessages.IncorrectNetworkAddress, |
41 |
| - }); |
42 |
| -} |
43 |
| - |
44 |
| -export function stxAddressValidator(errorMsg: string) { |
45 |
| - return z.string().refine( |
46 |
| - value => { |
47 |
| - if (isUndefined(value) || isEmptyString(value)) return true; |
48 |
| - return validateStacksAddress(value); |
49 |
| - }, |
50 |
| - { |
51 |
| - message: errorMsg, |
52 |
| - } |
53 |
| - ); |
54 |
| -} |
| 1 | +// import { validateStacksAddress } from '@stacks/transactions'; |
| 2 | +// import { z } from 'zod'; |
| 3 | + |
| 4 | +// import { ChainID, NetworkConfiguration } from '@leather.io/models'; |
| 5 | +// import { isEmptyString, isUndefined } from '@leather.io/utils'; |
| 6 | + |
| 7 | +// import { FormErrorMessages } from './common.validation'; |
| 8 | + |
| 9 | +// export function validateAddressChain(address: string, currentNetwork: NetworkConfiguration) { |
| 10 | +// const prefix = address.slice(0, 2); |
| 11 | +// switch (currentNetwork.chain.stacks.chainId) { |
| 12 | +// case ChainID.Mainnet: |
| 13 | +// return prefix === 'SM' || prefix === 'SP'; |
| 14 | +// case ChainID.Testnet: |
| 15 | +// return prefix === 'SN' || prefix === 'ST'; |
| 16 | +// default: |
| 17 | +// return false; |
| 18 | +// } |
| 19 | +// } |
| 20 | + |
| 21 | +// function notCurrentAddressValidatorFactory(currentAddress: string) { |
| 22 | +// return (value?: string) => value !== currentAddress; |
| 23 | +// } |
| 24 | + |
| 25 | +// export function notCurrentAddressValidator(currentAddress: string) { |
| 26 | +// return z.string().refine(notCurrentAddressValidatorFactory(currentAddress), { |
| 27 | +// message: FormErrorMessages.SameAddress, |
| 28 | +// }); |
| 29 | +// } |
| 30 | + |
| 31 | +// function stxAddressNetworkValidatorFactory(currentNetwork: NetworkConfiguration) { |
| 32 | +// return (value?: string) => { |
| 33 | +// if (isUndefined(value) || isEmptyString(value)) return true; |
| 34 | +// return validateAddressChain(value, currentNetwork); |
| 35 | +// }; |
| 36 | +// } |
| 37 | + |
| 38 | +// export function stxAddressNetworkValidator(currentNetwork: NetworkConfiguration) { |
| 39 | +// return z.string().refine(stxAddressNetworkValidatorFactory(currentNetwork), { |
| 40 | +// message: FormErrorMessages.IncorrectNetworkAddress, |
| 41 | +// }); |
| 42 | +// } |
| 43 | + |
| 44 | +// export function stxAddressValidator(errorMsg: string) { |
| 45 | +// return z.string().refine( |
| 46 | +// value => { |
| 47 | +// if (isUndefined(value) || isEmptyString(value)) return true; |
| 48 | +// return validateStacksAddress(value); |
| 49 | +// }, |
| 50 | +// { |
| 51 | +// message: errorMsg, |
| 52 | +// } |
| 53 | +// ); |
| 54 | +// } |
| 55 | + |
| 56 | +// export function stxRecipientValidator( |
| 57 | +// currentAddress: string, |
| 58 | +// currentNetwork: NetworkConfiguration |
| 59 | +// ) { |
| 60 | +// return yup |
| 61 | +// .string() |
| 62 | +// .defined(FormErrorMessages.AddressRequired) |
| 63 | +// .concat(stxAddressValidator(FormErrorMessages.InvalidAddress)) |
| 64 | +// .concat(stxAddressNetworkValidator(currentNetwork)) |
| 65 | +// .concat(notCurrentAddressValidator(currentAddress)) |
| 66 | +// .concat( |
| 67 | +// complianceValidator( |
| 68 | +// stxAddressValidator(FormErrorMessages.InvalidAddress), |
| 69 | +// stacksChainIdToCoreNetworkMode(currentNetwork.chain.stacks.chainId) |
| 70 | +// ) |
| 71 | +// ); |
| 72 | +// } |
| 73 | + |
| 74 | +// export function complianceValidator( |
| 75 | +// shouldCheckCompliance: yup.StringSchema<string | undefined, yup.AnyObject>, |
| 76 | +// network: NetworkModes |
| 77 | +// ) { |
| 78 | +// return yup.string().test({ |
| 79 | +// message: 'Compliance check failed', |
| 80 | +// async test(value) { |
| 81 | +// if (network !== 'mainnet') return true; |
| 82 | +// if (!shouldCheckCompliance.isValidSync(value)) return true; |
| 83 | +// if (isUndefined(value) || isEmptyString(value)) return true; |
| 84 | + |
| 85 | +// try { |
| 86 | +// const resp = await checkEntityAddressIsCompliant(value); |
| 87 | +// return !resp.isOnSanctionsList; |
| 88 | +// } catch (e) { |
| 89 | +// return true; |
| 90 | +// } |
| 91 | +// }, |
| 92 | +// }); |
| 93 | +// } |
0 commit comments