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

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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:

%%{ 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;
Loading

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