Socket
Book a DemoInstallSign in
Socket

@solana-mobile/mobile-wallet-adapter-expo-bottom-sheet

Package Overview
Dependencies
Maintainers
0
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@solana-mobile/mobile-wallet-adapter-expo-bottom-sheet

Config plugin to add a Mobile Wallet Adapter bottom sheet Activity to an Expo app

0.2.1
latest
Source
npmnpm
Version published
Maintainers
0
Created
Source

Mobile Wallet Adapter Bottom Sheet

What is it?

An Expo Config Plugin for by Expo Solana wallets to inject a bottom sheet themed Android Activity to handle Mobile Wallet Adapter requests. Wallets can designate a React component to render as UI for the injected activity.

Usage

Install the plugin

npm install <TODO: Publish npm package>

Configure the plugin

Configure the plugin in your app.json.

Optionally, specify a walletUriBase to register your wallet's custom mwa scheme to handle intents.

{
  "expo": {
    "name": "myApp",
    "plugins": [
      [
        "mwa-bottom-sheet-expo-plugin",
        {
          "walletUriBase": "my-custom-mwa-scheme"
        }
      ]
    ]
  }
}

Register the bottom sheet activity

The config plugin injects an Android activity into your expo build, but you'll need to register the injected Activity on the Javascript side.

Create a custom app entrypoint

Copy over node_modules/expo/AppEntry.js to a new file (CustomAppEntry.js) and just add the AppRegistry.registerComponent call.

// CustomAppEntry.js
import registerRootComponent from "expo/build/launch/registerRootComponent";
import { AppRegistry } from "react-native";

import App from "./App";
import YourMWABottomSheetComponent from "./YourMWABottomSheetComponent";

// Add this to associate the activity -> React Component
AppRegistry.registerComponent(
  "MobileWalletAdapterEntrypoint",
  () => YourMWABottomSheetComponent
);

registerRootComponent(App);

Reroute main entrypoint to CustomAppEntry.js

In package.json, redirect "main" to point at the custom entrypoint file.

{
  "name": "your-expo-app",
  "main": "./CustomAppEntry.js",
}

Prebuild

Now the config plugin is configured and will be included in the expo prebuild step of eas build!

Keywords

react-native

FAQs

Package last updated on 26 Mar 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.