1// Copy HashCode generated by below code from console it can be used for both dev && prod
2
3import RNOtpVerify from 'react-native-otp-verify';
4
5const getHash = () =>
6 RNOtpVerify.getHash()
7 .then(console.log)
8 .catch(console.log);
9
10getHash()