Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
react-native-universal-payment-gateway
Advanced tools
A react native library developed to unify the tedious process of having diversity of packages for various payment providers, of this is our goal to solve
setup
to utilize simple install
npm install react-native-universal-payment-gateway react-native-webview
yarn add react-native-universal-payment-gateway react-native-webview
expo install react-native-universal-payment-gateway react-native-webview
Not Using Expo, no problem
ANDROID
if using RN > 0.6, then just re-build,
else, just upgrade ab🌝g
IOS
simple run
cd ios && pod install
then re-build
USAGE:
import package
import Gateway from 'react-native-universal-payment-gateway'
SAMPLE UTILIZATION
const App = () => {
const [showPaystack, setShowPaystack] = useState(false)
const [showFlutterwave, setShowFlutterwave] = useState(false)
const [showUniversal, setShowUniversal] = useState(false)
const [showWebView, setShowWebView] = useState(false)
return (
<SafeAreaView style={{ flex: 1 }}>
{/*
* key note
* always place the components from this library on your outtermost instance component
*/}
<Gateway.payStack
email='opadonuseyi01@gmail.com'
amount={'8000'}
currency={"NGN"}
paystackSecretKey={'sk_test_ac8971390ed43c9b29074c23f4bdaddccc24b865'}
channels={['card']}
callbackUrl={'https://www.sctidev.com/callback'}
show={showPaystack}
onCallback={async (e)=>{
console.log("data returns is ",e)
// to validate, returns {status: srring, data: {data} }
// status is success for success on paystack
await Gateway.validatePaystackPayment({
apiKey: 'sk_test_ac8971390ed43c9b29074c23f4bdaddccc24b865',
tnxRef: e.tnxref
})
}}
onShow={setShowPaystack} />
<Gateway.flutterWave
email='opadonuseyi01@gmail.com'
amount={'8000'}
currency={"NGN"}
flutterwaveSecretKey={'FLWSECK_TEST-4e2a106fa0b255596d20f29c9d41775f-X'}
channels={['card']}
callbackUrl={'https://www.sctidev.com/callback'}
show={showFlutterwave}
onCallback={async (e)=>{
console.log("data returns is ",e)
}}
onShow={setShowFlutterwave}
/>
<Gateway.webview
paymentUrl={'https://api.flutterwave.com/v3/payments'}
// callback uri from your init api request to create
callbackUrl={'https://www.sctidev.com/callback'}
show={showWebView}
onCallback={async (e)=>{
console.log("data returns is ",e)
}}
onShow={setShowWebView} />
<Gateway.universal
paymentGatewayUrlRequestUrlUrl={'https://api.flutterwave.com/v3/payments'}
tRefObject={
{
tx_ref: "TNXRE_F124243642"
}
}
headerContent={{
"Authorization" : "Bearer FLWSECK_TEST-4e2a106fa0b255596d20f29c9d41775f-X",
'Content-Type': "application/json"
}}
email='opadonuseyi01@gmail.com'
amount={'8000'}
currency={"NGN"}
universalSecretKey={'FLWSECK_TEST-4e2a106fa0b255596d20f29c9d41775f-X'}
channels={['card']}
callbackUrl={'https://www.sctidev.com/callback'}
show={showUniversal}
onCallback={async (e)=>{
console.log("data returns is ",e)
}}
onShow={setShowUniversal} />
<View style={{ justifyContent: 'center', alignItems: 'center', flex: 1 }}>
<Text style={[styles.title]}>
UNIVERSAL PAYMENT GATEWAY LIBRARY
</Text>
<TouchableOpacity onPress={()=> setShowPaystack(true)} style={[styles.btnContainer]}>
<Text style={[styles.button]}>click for paystack</Text>
</TouchableOpacity>
<TouchableOpacity onPress={()=> setShowFlutterwave(true)} style={[styles.btnContainer]}>
<Text style={[styles.button]}>click for flutterwave</Text>
</TouchableOpacity>
<TouchableOpacity onPress={()=> setShowWebView(true)} style={[styles.btnContainer]}>
<Text style={[styles.button]}>click to load logically payment webview </Text>
</TouchableOpacity>
<TouchableOpacity onPress={()=> setShowUniversal(true)} style={[styles.btnContainer]}>
<Text style={[styles.button]}>click to utilize universal </Text>
</TouchableOpacity>
<Text style={[styles.foot]}>
© seyicoded
</Text>
</View>
</SafeAreaView>
);
};
Feel free to reach out for any urgent feature or requirement as we currently plan on regularly maintaining this library.
FAQs
A react native library developed to unify the tedious process of having diversity of packages for various payment providers, of this is our goal to solve
The npm package react-native-universal-payment-gateway receives a total of 14 weekly downloads. As such, react-native-universal-payment-gateway popularity was classified as not popular.
We found that react-native-universal-payment-gateway demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.