Convert Figma logo to code with AI

status-im logostatus-mobile

a free (libre) open source, mobile OS for Ethereum

3,883
984
3,883
665

Top Related Projects

Go implementation of the Ethereum protocol

78,260

Bitcoin Core integration/staging tree

14,419

very currency

8,857

Monero: the secure, private, untraceable cryptocurrency

Litecoin source tree

4,931

Zcash - Internet Money

Quick Overview

Status-im/status-mobile is an open-source, Ethereum-based messaging platform and mobile app. It combines secure messaging, cryptocurrency transactions, and decentralized applications (dApps) into a single interface, aiming to provide a gateway to the decentralized web.

Pros

  • Integrates messaging, crypto wallet, and dApp browser in one app
  • Focuses on privacy and security with end-to-end encryption
  • Open-source, allowing for community contributions and audits
  • Built on Ethereum, leveraging its decentralized network and smart contracts

Cons

  • May have a steeper learning curve for users unfamiliar with blockchain technology
  • Limited adoption compared to mainstream messaging apps
  • Dependent on Ethereum network performance and gas fees
  • Potential scalability challenges as the user base grows

Getting Started

To get started with Status-im/status-mobile:

  1. Visit the official website: https://status.im/
  2. Download the Status app from your device's app store (iOS or Android)
  3. Create a new account or import an existing one
  4. Set up your profile and start exploring the features:
    • Secure messaging
    • Ethereum wallet
    • dApp browser
  5. Join public channels or create private chats
  6. Explore available dApps within the Status browser

For developers interested in contributing:

  1. Fork the repository on GitHub
  2. Clone your fork: git clone https://github.com/your-username/status-mobile.git
  3. Install dependencies and set up the development environment (refer to the project's README for detailed instructions)
  4. Make your changes and submit a pull request

Note: As this is a mobile app project and not a code library, code examples are not applicable in this context.

Competitor Comparisons

Go implementation of the Ethereum protocol

Pros of go-ethereum

  • More established and widely adopted Ethereum implementation
  • Extensive documentation and community support
  • Higher performance and scalability for full node operations

Cons of go-ethereum

  • Focused solely on Ethereum protocol, lacking mobile-specific features
  • Steeper learning curve for mobile app developers
  • Larger codebase and resource requirements

Code Comparison

status-mobile (React Native):

const web3 = new Web3(new Web3.providers.HttpProvider(rpcUrl));
const balance = await web3.eth.getBalance(address);

go-ethereum (Go):

client, err := ethclient.Dial(rpcUrl)
balance, err := client.BalanceAt(context.Background(), common.HexToAddress(address), nil)

Summary

status-mobile is a mobile-focused Ethereum client with a user-friendly interface, while go-ethereum is a comprehensive Ethereum implementation for full node operations. status-mobile is better suited for mobile app development, whereas go-ethereum excels in performance and scalability for blockchain infrastructure. The code comparison shows the difference in language and approach, with status-mobile using JavaScript and React Native, while go-ethereum utilizes Go for lower-level interactions with the Ethereum network.

78,260

Bitcoin Core integration/staging tree

Pros of Bitcoin

  • Larger and more established project with a longer history
  • More contributors and a larger community
  • Higher level of scrutiny and security audits

Cons of Bitcoin

  • More complex codebase due to its age and legacy components
  • Slower development cycle and more conservative approach to changes
  • Limited focus on user interface and mobile experience

Code Comparison

Bitcoin (C++):

CAmount GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams)
{
    int halvings = nHeight / consensusParams.nSubsidyHalvingInterval;
    if (halvings >= 64)
        return 0;

    CAmount nSubsidy = 50 * COIN;
    nSubsidy >>= halvings;
    return nSubsidy;
}

Status Mobile (ClojureScript):

(defn get-balance [db account-id]
  (get-in db [:accounts account-id :balance]))

(defn update-balance [db account-id new-balance]
  (assoc-in db [:accounts account-id :balance] new-balance))

The Bitcoin code snippet shows the block subsidy calculation, demonstrating its focus on core cryptocurrency functionality. The Status Mobile code deals with account balances, highlighting its emphasis on user-facing features and mobile wallet functionality.

14,419

very currency

Pros of Dogecoin

  • Longer development history and larger community, with over 2,000 forks
  • More focused scope as a cryptocurrency, potentially easier to contribute to
  • Higher visibility and adoption in the crypto space

Cons of Dogecoin

  • Less frequent updates and commits compared to Status Mobile
  • Primarily written in C++, which may have a steeper learning curve for some developers
  • Narrower application scope as a cryptocurrency, compared to Status Mobile's broader messaging and dApp platform

Code Comparison

Status Mobile (React Native):

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: colors.background,
  },
  content: {
    padding: 16,
  },
});

Dogecoin (C++):

int64_t GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams)
{
    int64_t nSubsidy = 10000 * COIN;
    return nSubsidy;
}

Both repositories have distinct purposes and technologies. Status Mobile focuses on a mobile app for secure messaging and dApp interactions, while Dogecoin is a cryptocurrency implementation. The code snippets reflect their different languages and concerns, with Status Mobile dealing with UI styling and Dogecoin handling block rewards.

8,857

Monero: the secure, private, untraceable cryptocurrency

Pros of Monero

  • More established project with a longer history and larger community
  • Focuses on privacy and anonymity as core features
  • Implements advanced cryptographic techniques like ring signatures and stealth addresses

Cons of Monero

  • More complex codebase due to privacy features, potentially harder to maintain
  • Slower transaction processing times compared to some other cryptocurrencies
  • Faces regulatory challenges in some jurisdictions due to its privacy features

Code Comparison

Monero (C++):

crypto::public_key tx_pub_key = get_tx_pub_key_from_extra(tx);
crypto::key_derivation derivation;
if (!generate_key_derivation(tx_pub_key, prv_view_key, derivation))
  return false;

Status-mobile (ClojureScript):

(defn generate-keypair []
  (let [private-key (random-bytes 32)
        public-key (ed25519/get-public private-key)]
    {:private private-key :public public-key}))

Both projects use cryptographic functions, but Monero's code is more complex due to its focus on privacy features. Status-mobile's code is simpler, reflecting its broader focus on messaging and cryptocurrency functionality.

Litecoin source tree

Pros of Litecoin

  • Longer development history and established codebase
  • Larger community and more widespread adoption
  • More comprehensive documentation and resources

Cons of Litecoin

  • Less focus on mobile and user-friendly interfaces
  • Narrower scope, primarily focused on cryptocurrency functionality
  • Slower development cycle and less frequent updates

Code Comparison

Litecoin (C++):

int64_t GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams)
{
    int64_t nSubsidy = 50 * COIN;
    int halvings = nHeight / consensusParams.nSubsidyHalvingInterval;
    if (halvings >= 64)
        return 0;
    nSubsidy >>= halvings;
    return nSubsidy;
}

Status-mobile (ClojureScript):

(defn get-balance [db account-id]
  (let [accounts (get-in db [:accounts])
        account (get accounts account-id)]
    (:balance account)))

The Litecoin code snippet shows the block subsidy calculation, which is core to the cryptocurrency's economic model. The Status-mobile code demonstrates a balance retrieval function, highlighting its focus on user account management and mobile wallet functionality.

4,931

Zcash - Internet Money

Pros of Zcash

  • More established project with a longer history and larger community
  • Focuses on privacy-centric cryptocurrency, offering advanced cryptographic features
  • Written in C++, potentially offering better performance for cryptographic operations

Cons of Zcash

  • More complex codebase due to its focus on advanced cryptography
  • Narrower scope, primarily focused on cryptocurrency functionality
  • Slower development cycle due to the need for rigorous security audits

Code Comparison

Zcash (C++):

CAmount GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams)
{
    CAmount nSubsidy = 50 * COIN;
    int halvings = nHeight / consensusParams.nSubsidyHalvingInterval;
    // Force block reward to zero when right shift is undefined.
    if (halvings >= 64)
        return 0;

Status Mobile (ClojureScript):

(defn get-block-reward [height]
  (let [base-reward 5e18
        halving-interval 210000
        halvings (quot height halving-interval)]
    (if (>= halvings 64)
      0
      (quot base-reward (bit-shift-left 1 halvings)))))

Both snippets show block reward calculation, but Zcash's implementation is in C++ while Status Mobile uses ClojureScript. The logic is similar, demonstrating the common blockchain concept across different projects and languages.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

Status - a Mobile Ethereum Operating System

Get it on Google Play Get it on F-Droid

Get it on Github

Join us in creating a browser, messenger, and gateway to a decentralized world. Status is a free (libre) open source mobile client targeting Android & iOS built entirely on Ethereum technologies. That's right, no middlemen and go-ethereum running directly on your device.

Getting started with Status

Why?

We believe in a medium of pure free trade, economies with fair, permission-less access and a world without intermediaries. We want to create policies that can exist between friends or scale globally, we want to communicate securely and be uninhibited by legacy systems.

We want to take responsibility for our data, and the way we conduct ourselves privately and promote this way of life to a mass audience.

We want deep insights into our own economies so we can make informed, data-driven decisions on how to make our lives better. The Ethereum blockchain, Smart Contracts, Swarm and Whisper provide us with a path forward.

If this interests you, help us make Status a reality - anyone can contribute and we need everyone at any skill level to participate.

How to Contribute?

Go straight to the docs and choose what interests you:

  • Developer Developers are the heart of software and to keep Status beating we need all the help we can get! If you're looking to code in ClojureScript or Golang then Status is the project for you! We use React Native and there is even some Java/Objective-C too! Want to learn more about it? Start by reading our Developer Introduction which guides you through the technology stack and start browsing beginner issues. Then you can read how to Build Status, which talks about managing project dependencies, coding guidelines and testing procedures. Check out our coding guidelines.

  • Community Management Metcalfe's law states that the value of a network is proportional to the square of the number of connected users of the system - without community Status is meaningless. We're looking to create a positive, fun environment to explore new ideas, experiment and grow the Status community. Building a community takes a lot of work but the people you'll meet and the long-lasting relationships you form will be well worth it, check out our Mission and Community Principles

  • Specification / Documentation John Dewey once said, "Education is not preparation for life; education is life itself ". Developers and Designers need guidance and it all starts from documentation and specifications. Our software is only as good as its documentation, check out our docs and see how you can improve what we have.

  • Blog Writing Content is King, keeping our blog up to date and informing the community of news helps keep everyone on the same page.

  • Testers It's bug-hunting season! Status is currently under active development and there is sure to be a bunch of learning, build status from scratch or if an android user checks out our nightly builds. You can shake your phone to submit bug reports, or start browsing our Github Issues. Every bug you find brings Status closer to stable, usable software for everyone to enjoy!

  • Security Status is a visual interface to make permanent changes on the Blockchain, it handles crypto-tokens that have real value and allows 3rd party code execution. Security is paramount to its success. You are given permission to break Status as hard as you can, as long as you share your findings with the community!

  • Evangelism Help us spread the word! Tell a friend right now, in fact, tell everyone - yell from a mountain if you have to, every person counts! If you've got a great story to tell or have some interesting way you've spread the word about Status let us know about it in our chat

Give me Binaries!

You can get our Beta builds for both Android and iOS on our website, through our nightly builds, or by building it yourself.

Core Contributors

Core Team Members

Special thanks to @adrian-tiberius. Without the dedication of these outstanding individuals, Status would not exist.

Contact us

Feel free to email us at support@status.im.

License

Licensed under the Mozilla Public License v2.0