
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.
@solana-mobile/mobile-wallet-adapter-expo-bottom-sheet
Advanced tools
Config plugin to add a Mobile Wallet Adapter bottom sheet Activity to an Expo app
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.
npm install <TODO: Publish npm package>
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"
}
]
]
}
}
The config plugin injects an Android activity into your expo build, but you'll need to register the injected Activity on the Javascript side.
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);
In package.json
, redirect "main"
to point at the custom entrypoint file.
{
"name": "your-expo-app",
"main": "./CustomAppEntry.js",
}
Now the config plugin is configured and will be included in the expo prebuild step of eas build
!
FAQs
Config plugin to add a Mobile Wallet Adapter bottom sheet Activity to an Expo app
The npm package @solana-mobile/mobile-wallet-adapter-expo-bottom-sheet receives a total of 17 weekly downloads. As such, @solana-mobile/mobile-wallet-adapter-expo-bottom-sheet popularity was classified as not popular.
We found that @solana-mobile/mobile-wallet-adapter-expo-bottom-sheet demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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.