All Projects → firoorg → Firo

firoorg / Firo

Licence: mit
The privacy-focused cryptocurrency

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Firo

Monero
Monero: the secure, private, untraceable cryptocurrency
Stars: ✭ 6,503 (+1131.63%)
Mutual labels:  blockchain, cryptocurrency, p2p, cryptography, privacy
Particl Desktop
The GUI application for Particl Markeplace and PART coin wallet. A decentralized peer to peer marketplace –free, secure, private, untraceable.
Stars: ✭ 131 (-75.19%)
Mutual labels:  blockchain, cryptocurrency, p2p, privacy
Conceal Core
Conceal Core - Daemon & Wallets (CLI)
Stars: ✭ 72 (-86.36%)
Mutual labels:  blockchain, cryptocurrency, p2p, privacy
Awesome Privacy On Blockchains
A curated list of privacy on blockchains resources
Stars: ✭ 86 (-83.71%)
Mutual labels:  blockchain, cryptocurrency, p2p, privacy
Unstoppable Wallet Android
A secure and decentralized Bitcoin and other cryptocurrency wallet for Android phones. Supports Bitcoin, Ethereum, EOS, Binance Chain, Bitcoin Cash, DASH, ...
Stars: ✭ 165 (-68.75%)
Mutual labels:  blockchain, cryptocurrency, p2p
Decentralized Internet
A SDK/library for decentralized web and distributing computing projects
Stars: ✭ 406 (-23.11%)
Mutual labels:  blockchain, p2p, cryptography
Tendermint
⟁ Tendermint Core (BFT Consensus) in Go
Stars: ✭ 4,491 (+750.57%)
Mutual labels:  blockchain, cryptocurrency, cryptography
Iotex Core
Official implementation of IoTeX blockchain protocol in Go.
Stars: ✭ 505 (-4.36%)
Mutual labels:  blockchain, cryptography, privacy
Library
Collection of papers in the field of distributed systems, game theory, cryptography, cryptoeconomics, zero knowledge
Stars: ✭ 100 (-81.06%)
Mutual labels:  blockchain, cryptography, privacy
Gun
An open source cybersecurity protocol for syncing decentralized graph data.
Stars: ✭ 15,172 (+2773.48%)
Mutual labels:  blockchain, p2p, cryptography
Wavelet
Write once, run forever. Deploy robust, scalable, decentralized WebAssembly applications on Wavelet.
Stars: ✭ 224 (-57.58%)
Mutual labels:  blockchain, cryptocurrency, p2p
Cryptokernel
A SDK for implementing blockchain-based digital currencies
Stars: ✭ 146 (-72.35%)
Mutual labels:  blockchain, cryptocurrency, cryptography
Awesome Blockchain Rust
Collect libraries and packages about blockchain/cryptography in Rust
Stars: ✭ 251 (-52.46%)
Mutual labels:  blockchain, p2p, cryptography
Unstoppable Wallet Ios
A secure and decentralized Bitcoin and other cryptocurrency wallet for iPhone. Supports Bitcoin, Ethereum, EOS, Binance Chain, Bitcoin Cash, DASH, ...
Stars: ✭ 180 (-65.91%)
Mutual labels:  blockchain, cryptocurrency, p2p
Multi Party Schnorr
Rust implementation of multi-party Schnorr signatures over elliptic curves.
Stars: ✭ 115 (-78.22%)
Mutual labels:  blockchain, cryptocurrency, cryptography
Iavl
Merkleized IAVL+ Tree implementation in Go
Stars: ✭ 197 (-62.69%)
Mutual labels:  blockchain, merkle-tree, cryptography
Go Seele
Seele is an open source blockchain project which consists of advanced sharding technology and our innovative anti-asic MPoW consensus algorithm. The ONLY official website is
Stars: ✭ 234 (-55.68%)
Mutual labels:  blockchain, cryptocurrency, p2p
Go Vite
Official Go implementation of the Vite protocol
Stars: ✭ 257 (-51.33%)
Mutual labels:  blockchain, cryptocurrency, p2p
Lightning Rfc
Lightning Network Specifications
Stars: ✭ 1,224 (+131.82%)
Mutual labels:  blockchain, cryptocurrency, cryptography
Multi Party Ecdsa
Rust implementation of {t,n}-threshold ECDSA (elliptic curve digital signature algorithm).
Stars: ✭ 339 (-35.8%)
Mutual labels:  blockchain, cryptocurrency, cryptography

Firo

Financial Contributors on Open Collective latest-release GitHub last-release GitHub downloads GitHub commits-since-last-version GitHub commits-per-month GitHub last-commit Total alerts Language grade: C/C++

What is Firo?

Firo formerly known as Zcoin, is a privacy focused cryptocurrency that utilizes zero-knowledge proofs which allows users to destroy coins and then redeem them later for brand new ones with no transaction history.

Our research created the Lelantus privacy protocol which supports high anonymity sets without requiring trusted setup and relying only on standard cryptographic assumptions. The Lelantus cryptographic library was audited by Trail of Bits and funded by Firo's CCS. Lelantus' cryptography was also audited by ABDK Consulting.

Firo also utilises Dandelion++ to obscure the originating IP of transactions without relying on any external services such as Tor/i2P.

Firo developed and utilizes Merkle Tree Proofs (MTP) as its Proof-of-Work algorithm which aims to be memory hard with fast verification to encourage mining using commodity hardware.

How Firo’s Privacy Technology Compares to the Competition

A comparison chart of Firo’s solutions with other leading privacy technologies can be found below read more https://firo.org/guide/privacy-technology-comparison.html

Running with Docker

If you are already familiar with Docker, then running Firo with Docker might be the the easier method for you. To run Firo using this method, first install Docker. After this you may continue with the following instructions.

Please note that we currently don't support the GUI when running with Docker. Therefore, you can only use RPC (via HTTP or the firo-cli utility) to interact with Firo via this method.

Pull our latest official Docker image:

docker pull firoorg/firod

Start Firo daemon:

docker run --detach --name firod firoorg/firod

View current block count (this might take a while since the daemon needs to find other nodes and download blocks first):

docker exec firod firo-cli getblockcount

View connected nodes:

docker exec firod firo-cli getpeerinfo

Stop daemon:

docker stop firod

Backup wallet:

docker cp firod:/home/firod/.firo/wallet.dat .

Start daemon again:

docker start firod

Linux Build Instructions and Notes

Dependencies

  1. Update packages

    sudo apt-get update
    
  2. Install required packages

    sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils libboost-all-dev libgmp-dev cmake
    
  3. Install Berkeley DB 4.8

    sudo apt-get install software-properties-common
    sudo add-apt-repository ppa:bitcoin/bitcoin
    sudo apt-get update
    sudo apt-get install libdb4.8-dev libdb4.8++-dev
    
  4. Install QT 5

    sudo apt-get install libminiupnpc-dev libzmq3-dev
    sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler libqrencode-dev
    

Build

  1. Clone the source:

    git clone https://github.com/firoorg/firo
    
  2. Build Firo-core:

    Configure and build the headless Firo binaries as well as the GUI (if Qt is found).

    You can disable the GUI build by passing --without-gui to configure.

    ./autogen.sh
    ./configure
    make
    
  3. It is recommended to build and run the unit tests:

    make check
    

macOS Build Instructions and Notes

See (doc/build-macos.md) for instructions on building on macOS.

Windows (64/32 bit) Build Instructions and Notes

See (doc/build-windows.md) for instructions on building on Windows 64/32 bit.

Contributors

Code Contributors

This project exists thanks to all the people who contribute. [Contribute].

Financial Contributors

Become a financial contributor and help us sustain our community. [Contribute]

Individuals

Organizations

Support this project with your organization. Your logo will show up here with a link to your website. [Contribute]

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].