Skip to content

rabby mobile application(iOS & Android), for web3 users

Notifications You must be signed in to change notification settings

RabbyHub/rabby-mobile

Folders and files

NameName
Last commit message
Last commit date
Dec 26, 2024
May 15, 2024
Jan 17, 2025
Feb 18, 2025
Feb 18, 2025
Oct 23, 2024
Jan 24, 2025
Dec 8, 2023
Dec 8, 2023
Dec 8, 2023
Dec 8, 2023
Jul 8, 2024
Dec 8, 2023
Feb 8, 2024
Jan 4, 2024
Dec 8, 2023
Dec 8, 2023
Dec 18, 2023
Dec 20, 2023
Dec 8, 2023
Dec 8, 2023
Feb 18, 2025
Dec 8, 2023
Jan 15, 2024
Jun 5, 2024
Jun 5, 2024
Dec 8, 2023
Dec 8, 2023
Feb 18, 2025

Repository files navigation

Core Monorepo

This monorepo is a collection of packages used across multiple RabbyHub clients (e.g. Rabby, rabby-mobile).

Modules

This repository contains the following packages 1:

Or, in graph form 1:

Loading
%%{ init: { 'flowchart': { 'curve': 'bumpX' } } }%%
graph LR;
linkStyle default opacity:0.5
  rabby_mobile(["rabby-mobile"]);
  base_utils(["@rabby-wallet/base-utils"]);
  eth_keyring_watch(["@rabby-wallet/eth-keyring-watch"]);
  keyring_utils(["@rabby-wallet/keyring-utils"]);
  persist_store(["@rabby-wallet/persist-store"]);
  service_address(["@rabby-wallet/service-address"]);
  service_dapp(["@rabby-wallet/service-dapp"]);
  service_keyring(["@rabby-wallet/service-keyring"]);
  rabby_mobile --> eth_keyring_watch;
  rabby_mobile --> persist_store;
  rabby_mobile --> service_address;
  rabby_mobile --> service_dapp;
  rabby_mobile --> service_keyring;
  eth_keyring_watch --> keyring_utils;
  persist_store --> base_utils;
  service_address --> persist_store;
  service_dapp --> persist_store;
  service_keyring --> base_utils;
  service_keyring --> eth_keyring_watch;

Refer to individual packages for usage instructions.

Learn more

For instructions on performing common development-related tasks, see contributing to the monorepo.

Footnotes

  1. The package list and dependency graph should be programmatically generated by running yarn update-readme-content. 2