npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@ramper/native-core

v1.0.0

Published

Ramper's React Native SDK helps developers and provide access to the Blockchain through SSO for non-native crypto users.

Readme

@ramper/native-core

Ramper's React Native SDK — Blockchain access via SSO for non-crypto-native users. Provides pre-built authentication UI, wallet management, and transaction signing on EVM-compatible chains.

Minimum platform requirements: iOS 14+ · Android API 21+ · React Native 0.70+


Table of Contents

  1. Installation
  2. Peer Dependencies
  3. iOS Setup
  4. Android Setup
  5. Deep Link Configuration
  6. Provider Setup
  7. Authentication
  8. Wallet UI
  9. Transactions
  10. Supported Chains
  11. API Reference
  12. Build & Publish

Installation

npm install @ramper/native-core
# or
yarn add @ramper/native-core

Peer Dependencies

All SDK dependencies install automatically. You only need to manually install two true peer deps — React Native requires a single shared instance of these across your whole app:

yarn add react-native-safe-area-context react-native-screens

Then run pod install on iOS (see iOS Setup).


iOS Setup

1. Install CocoaPods

cd ios && pod install

2. Enable Swift bridging (if your project is Obj-C)

If your AppDelegate is in Objective-C, you must add a Swift bridging header so that native modules like Keychain work correctly.

3. AppDelegate — deep link forwarding

Swift (AppDelegate.swift):

import React

// Add inside AppDelegate class:
func application(
  _ app: UIApplication,
  open url: URL,
  options: [UIApplication.OpenURLOptionsKey: Any] = [:]
) -> Bool {
  return RCTLinkingManager.application(app, open: url, options: options)
}

Objective-C (AppDelegate.m):

#import <React/RCTLinkingManager.h>

- (BOOL)application:(UIApplication *)application
            openURL:(NSURL *)url
            options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options
{
  return [RCTLinkingManager application:application openURL:url options:options];
}

4. Reanimated — Babel plugin

Make sure react-native-reanimated/plugin is listed in your app's babel.config.js:

module.exports = {
  presets: ['module:@react-native/babel-preset'],
  plugins: ['react-native-reanimated/plugin'],
};

Android Setup

1. Reanimated — Hermes / ProGuard

Follow the official react-native-reanimated Android setup.

2. Permissions

Add to android/app/src/main/AndroidManifest.xml inside <manifest>:

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" />

Deep Link Configuration

The SDK uses deep links to receive authentication and transaction callbacks from the Ramper auth server. You must configure a custom URI scheme matching your appId.

Get an appId by registering at the Ramper Developer Dashboard.

iOS — URL Scheme

  1. Open your project in Xcode.
  2. Select your target → Info tab → URL Types+.
  3. Set Identifier to your Bundle ID (e.g. com.yourcompany.yourapp).
  4. Set URL Schemes to ramper<appId> — e.g. if your appId is suyklxmori, the scheme is rampersuyklxmori.

iOS deep link screenshot 1 iOS deep link screenshot 2

Android — Intent Filter

Add inside the <activity> tag in android/app/src/main/AndroidManifest.xml:

<intent-filter>
  <!-- Replace <appId> with your actual appId, no angle brackets -->
  <data android:scheme="ramper<appId>" />
  <action android:name="android.intent.action.VIEW" />
  <category android:name="android.intent.category.DEFAULT" />
  <category android:name="android.intent.category.BROWSABLE" />
</intent-filter>

Provider Setup

Wrap your root component with RamperProvider. This is the only configuration step needed in your app code.

import React from 'react';
import { RamperProvider, ChainNameEnum, AUTH_URL_DEFAULT } from '@ramper/native-core';
import App from './App';

export default function Root() {
  return (
    <RamperProvider
      appId="YOUR_APP_ID"           // Required — from developer dashboard
      chain={ChainNameEnum.tomo}    // Default active chain
      locale="en"                   // 'en' | 'kr'
      theme="light"                 // 'light' | 'dark'
      authUrl={AUTH_URL_DEFAULT}    // Ramper auth server URL
      providers={['google', 'apple', 'twitter', 'facebook', 'email', 'telegram']}
      // logo={require('./assets/logo.png')} // Optional custom logo
    >
      <App />
    </RamperProvider>
  );
}

RamperProvider props

| Prop | Type | Required | Default | Description | |------|------|----------|---------|-------------| | appId | string | ✅ | — | Your Ramper application ID | | chain | ChainNameEnum | — | tomo | Default active chain | | locale | 'en' \| 'kr' | — | 'en' | UI language | | theme | 'light' \| 'dark' | — | 'light' | UI colour theme | | authUrl | string | — | Ramper default | Custom auth server URL | | providers | ProviderType \| ProviderType[] | — | all | Enabled SSO providers | | logo | ImageSourcePropType | — | Ramper logo | Your app logo shown in the login screen |


Authentication

Use the useRamperService hook anywhere inside RamperProvider to interact with the SDK.

import React from 'react';
import { Button, Text, View } from 'react-native';
import { useRamperService } from '@ramper/native-core';

export default function HomeScreen() {
  const { userWallet, onOpenWallet, onLogout } = useRamperService();

  return (
    <View>
      {userWallet.email ? (
        <>
          <Text>Logged in as: {userWallet.email}</Text>
          <Text>Wallet: {userWallet.wallets[0]?.address}</Text>
          <Button title="Open Wallet" onPress={() => onOpenWallet()} />
          <Button title="Logout" onPress={onLogout} />
        </>
      ) : (
        <Button title="Sign In" onPress={() => onOpenWallet()} />
      )}
    </View>
  );
}

When onOpenWallet() is called for a user who is not logged in, the SDK automatically shows the login screen with all configured SSO providers. After a successful login, the same wallet UI screen slides up.


Wallet UI

const { onOpenWallet, onCloseWallet } = useRamperService();

// Open the wallet / login bottom sheet
onOpenWallet();

// Open and indicate the user should be returned after action (e.g. post-tx)
onOpenWallet(true);

// Programmatically close
onCloseWallet();

Transactions

All transaction methods return Promises and require the user to be authenticated.

Send Native / ERC-20 Token

import { useRamperService } from '@ramper/native-core';

const { sendTransaction } = useRamperService();

const txHash = await sendTransaction({
  contractAddress: '0xTokenContractAddress', // leave empty for native token
  toAddress: '0xRecipientAddress',
  amount: '0.01',                            // human-readable amount
  decimal: 18,                               // token decimals
  tokenSymbol: 'USDT',                       // shown in the confirm UI
});

Approve ERC-20 Allowance

const { approve } = useRamperService();

const result = await approve({
  contractAddress: '0xTokenContractAddress',
  spenderAddress: '0xSpenderAddress',
  amount: '1000',
  decimal: 18,
});

Sign a Raw Message

const { signMessage } = useRamperService();

const signature = await signMessage('Hello, Ramper!');

Sign Typed Data (EIP-712)

const { signTypedData } = useRamperService();

const signature = await signTypedData(
  JSON.stringify(typedDataObject),
  'eth_signTypedData_v4'   // 'eth_signTypedData' | 'eth_signTypedData_v3' | 'eth_signTypedData_v4'
);

Sign a Raw Transaction

const { signTransaction } = useRamperService();

const result = await signTransaction(rawTxObject);

Supported Chains

| Chain | ChainNameEnum value | |-------|-----------------------| | Viction (TomoChain) | ChainNameEnum.tomo | | Viction Testnet | ChainNameEnum.victionTestnet | | Ethereum | ChainNameEnum.ether | | BNB Smart Chain | ChainNameEnum.binanceSmart | | Polygon | ChainNameEnum.matic | | zkSync Era | ChainNameEnum.zkSyncEra | | Chiliz | ChainNameEnum.Chiliz | | Sei EVM Mainnet | ChainNameEnum.seiEvmMainnet |


API Reference

useRamperService() return values

| Property | Type | Description | |----------|------|-------------| | userWallet | UserWallet | Authenticated user info and wallet addresses | | network | Chain | Currently active chain object | | networks | Chain[] | All supported chain objects | | onOpenWallet | (isReturn?: boolean) => void | Open wallet / login sheet | | onCloseWallet | () => void | Close the sheet | | onLogout | () => void | Sign out (keeps encrypted key in device) | | onClearData | () => void | Sign out and wipe all local data | | signMessage | (message: string) => Promise<string \| error> | Sign a plain message | | signTypedData | (tx: string, type: string) => Promise<string \| error> | Sign EIP-712 typed data | | signTransaction | (data: any) => Promise<TTransactionResult> | Sign a raw transaction | | sendTransaction | (data: SendTransaction) => Promise<string \| error> | Send a token transfer | | approve | (data: ApproveTransaction) => Promise<TTransactionResult> | Set ERC-20 allowance | | convertBalanceToWei | (value: string, decimals?) => string | Convert human amount to wei |

UserWallet

interface UserWallet {
  email: string;
  provider: 'google' | 'email' | 'facebook' | 'twitter' | 'apple' | 'telegram';
  wallets: { chain: string; address: string }[];
}

SendTransaction

interface SendTransaction {
  contractAddress?: string; // ERC-20 token contract; omit for native token
  toAddress: string;
  amount: string;           // human-readable (e.g. "1.5")
  decimal?: number;         // token decimals, defaults to 18
  tokenSymbol?: string;
}

Available SSO Providers (ProviderEnum)

enum ProviderEnum {
  google      = 'google',
  facebook    = 'facebook',
  twitter     = 'twitter',
  telegram    = 'telegram',
  apple       = 'apple',
  emailDirect = 'emailDirect',
  email       = 'email',
}

Build & Publish

Build

From the repository root (monorepo):

yarn workspace @ramper/native-core build

Or from the packages/core directory:

cd packages/core
yarn build

This runs react-native-builder-bob and outputs three targets to lib/:

| Format | Path | Description | |--------|------|-------------| | CommonJS | lib/commonjs/ | Node / Metro bundler | | ES Module | lib/module/ | Tree-shakeable bundler | | TypeScript | lib/typescript/ | .d.ts declaration files |

Publish to npm

# 1. Bump version (semver)
cd packages/core
npm version patch   # or minor / major

# 2. Build
yarn build

# 3. Verify what will be published (dry run)
npm pack --dry-run

# 4. Publish
npm publish --access public

Make sure you are logged in (npm login) and the package name @ramper/native-core is available under your npm organisation.

Automated releases (release-it)

A release-it configuration is already included. To cut a release with automatic changelog generation:

cd packages/core
yarn release

Note: This SDK is supported on iOS 14 and above.

Installation

npm

$ npm install @ramper/react-native-core

yarn

$ yarn add @ramper/react-native-core

Installing peer dependencies

$ yarn add query-string react-native-keychain react-native-inappbrowser-reborn @react-native-community/clipboard @react-navigation/bottom-tabs @react-navigation/native @react-navigation/stack accordion-collapse-react-native date-fns react-native-raw-bottom-sheet react-query react-native-gesture-handler react-native-safe-area-context react-native-screens react-native-device-info

Note: follow the further installation steps of react-native-inappbrowser-reborn & react-navigation

Step 1

$ cd ios && pod install

Step 2

Secondly, our SDK uses deep links to communicate back with your application. In order to Configure Deep Links, you will need to get an app id by signing up at deleveroper dashboard and apply the following steps:

iOS

Add the below code in your AppDelegate.m file

// Add the header at the top of the file:
#import <React/RCTLinkingManager.h>

// Add this above `@end`:
- (BOOL)application:(UIApplication *)application
   openURL:(NSURL *)url
   options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options
{
  return [RCTLinkingManager application:application openURL:url options:options];
}

Copy your bundle id as shown in the below screenshot: Alt text

Paste your bundle id in identifier section and add ramper<appId> in the URI Scheme section: Make sure to not include the brackets <> in the URLScheme Alt text

Android

Add the following in your project/adnroid/app/src/main/AndroidManifest.xml file under Activity Tag

      <intent-filter>
      <!--  Make sure to not include the brackets <> in the scheme -->
        <data android:scheme="ramper<appId>" />
        <action android:name="android.intent.action.VIEW"/>
        <category android:name="android.intent.category.DEFAULT"/>
        <category android:name="android.intent.category.BROWSABLE"/>
      </intent-filter>

      <uses-permission android:name="android.permission.INTERNET" />
      <uses-permission android:name="android.permission.VIBRATE" />

Run your app

iOS

$ npx react-native run-ios

Android

$ npx react-native run-android

Usage

In your starting file import Ramper as below

import {RamperProvider} from '@ramper/native-core';

call configure passing your appId (required), locale (default: en), theme (default: light), chain (default: tomo), authUrl (required)

<RamperProvider
  locale="en"
  theme="light"
  appId="suyklxmori"
  chain="tomo"
  authUrl={AUTH_URL_DEFAULT}
>
  {children}
</RamperProvider>;

Authentication

Show Wallet Screen

We have a pre-built screen that you can use to display all the sign in options for the customer:

import {useRamperService} from '@ramper/native-core';
<RamperScreen
  providers={[
    {
      name: 'google' | 'facebook' | 'twitter' | 'apple',
    },
  ]}
  theme="light | dark"
  onSuccess={(user) => {
    //handle user
  }}
  onFailure={(error) => {
    // handle error
  }}
  onClose={() => {}}
  logo={require('mylogo') | { uri: 'mylogourl' }}
  browserProps // optional
/>

Check supported browser props for iOS and Android

Signing In Directly

If you want to create a custom Sign In page and only allow the user to sign in with a specific provider, you can invoke the signin method directly instead.

import { Auth } from '@ramper/react-native-core';

Auth.signin accecpts two parameters Provider (google | facebook | twitter | apple), browserProps (optional): check supported browser props for iOS and Android

try {
  let response = await Auth.signin(
    'google' | 'facebook' | 'twitter' | 'apple',
    browserProps //optional,
  );
  // handle response
} catch (error) {
  // handle error
}

Get User

After a user logs in or on app relaunch, you can call the getUser method to get the currently logged-in user's information.

try {
  let user = await Auth.getUser();
  // handle user
} catch (error) {
  // handle error
}

Wallet View

We also provide a Wallet View that allows your user to see their Ethereum wallet balance and conduct common actions.

Step 1

$ yarn add @ramper/react-native-evm

Note: follow the further installation instruction of @ramper/react-native-evm

Step 2

import { WalletView } from '@ramper/react-native-core';
import { EthDataProvider } from '@ramper/react-native-evm';

Step 3

Use the wallet view component like this

<WalletView
  dataProviders={[{ name: 'ethereum', dataProvider: EthDataProvider }]}
  onCLose={() => {}} // will be called when the user clicks on the close button of wallet view
/>

Note: before using this component please make sure that the user is logged in by calling getUser method mentioned above.

Transactions

Please refer to @ramper/react-native-evm for transaction instructions.

Sign Out

import { Auth } from '@ramper/react-native-core';

try {
  const signout = await Auth.signOut(
    browserProps //optional
  );
  // handle signout
} catch (error) {
  // handle error
}