
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@waxio/sdk-react-native
Advanced tools
Wax Mobile SDK enables developers to easily connect their dapps with the WaxCloudWallet Mobile.
Install the SDK package.
npm install @waxio/sdk-react-native
or
yarn add @waxio/sdk-react-native
We recommend using React Native v0.71.4 or higher to avoid performance issues on Android.
See the React Native Example and read the documentation for using the SDK with React Native for more information.
First, set up your application to work with deep links across different platforms. Read the document.
Then Add mycloudwallet to LSApplicationQueriesSchemes in your Info.plist and AndroidManifest.xml.
// ...
<key>LSApplicationQueriesSchemes</key>
<array>
<string>mycloudwallet</string>
</array>
//...
<queries>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="mycloudwallet" android:host="*" />
</intent>
</queries>
Wrap your application in the provider
import { WaxDeeplinkProvider } from '@waxio/sdk-react-native';
export default function RootLayout() {
return (
//...
<WaxDeeplinkProvider
opts={{ pollingInterval: 2000 }}
metadata={{
name: 'DappExample',
origin: 'dappexample',
description: 'This is test dapp example',
scheme: 'dappexample',
icon: 'https://example.com/200/300',
}}
activationEndpoint="..."
relayEndpoint="..."
relayRegion="..."
>
...
</WaxDeeplinkProvider>
);
}
Use the SDK in your components:
import { useWaxSDK } from '@waxio/sdk-react-native';
// ...
const { connect, disconnect, transact, user } = useWaxSDK();
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
FAQs
somthing
We found that @waxio/sdk-react-native demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.