
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@riskified/react-native-riskified-sdk
Advanced tools
Riskified's react native wrapper for mobile SDK's
npm install @riskified/react-native-riskified-sdk
import RiskifiedSdk from '@riskified/react-native-riskified-sdk';
// On main page load
RiskifiedSdk.startBeacon(
shopDomain: string,
token: string,
debug: boolean
): Promise<void>;
// On significant events and page visits
RiskifiedSdk.logRequest(
requestUrl: string
): Promise<void>;
// If session ID updates for the user
RiskifiedSdk.updateSessionToken(
newToken: string
): Promise<void>;
// To render OTP widget
RiskifiedSdk.renderOtpWidget(
widgetToken: string,
environment: 'sandbox' | 'staging' | 'production',
debug: boolean
): Promise<string>;
// example for rendering the OTP widget
RiskifiedSdk.renderOtpWidget('token123', 'sandbox', true)
.then((challengeAccessToken : string) => {
// handle success verification
})
.catch((error) => {
if (error.code === 'timeout') {
// handle timeout
} else if (error.code === 'widget_closed') {
// handle close
} else {
// handle other errors
}
});
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library
FAQs
React Native SDK
The npm package @riskified/react-native-riskified-sdk receives a total of 3,673 weekly downloads. As such, @riskified/react-native-riskified-sdk popularity was classified as popular.
We found that @riskified/react-native-riskified-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.

Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.

Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.