All Projects → SnaxFoundation → Snax

SnaxFoundation / Snax

Licence: mit
Decentralized Social Media Overlay

Projects that are alternatives of or similar to Snax

Celo Monorepo
Official repository for core projects comprising the Celo platform
Stars: ✭ 269 (+1394.44%)
Mutual labels:  blockchain, cryptocurrency, smart-contracts, dapp
Wavelet
Write once, run forever. Deploy robust, scalable, decentralized WebAssembly applications on Wavelet.
Stars: ✭ 224 (+1144.44%)
Mutual labels:  blockchain, cryptocurrency, smart-contracts
Blockchain Stuff
Blockchain and Crytocurrency Resources
Stars: ✭ 2,549 (+14061.11%)
Mutual labels:  blockchain, cryptocurrency, smart-contracts
Embark
Framework for serverless Decentralized Applications using Ethereum, IPFS and other platforms
Stars: ✭ 3,478 (+19222.22%)
Mutual labels:  blockchain, smart-contracts, dapp
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 (+900%)
Mutual labels:  blockchain, cryptocurrency, dapp
Golden Wallet React Native
Golden - Best Wallet Ever
Stars: ✭ 201 (+1016.67%)
Mutual labels:  blockchain, cryptocurrency, dapp
Go Vite
Official Go implementation of the Vite protocol
Stars: ✭ 257 (+1327.78%)
Mutual labels:  blockchain, cryptocurrency, smart-contracts
Peatiocryptoexchange
An open-source Crypto-Currency exchange. Peatio v3.0 Coming Soon !
Stars: ✭ 141 (+683.33%)
Mutual labels:  blockchain, cryptocurrency, smart-contracts
Buidl
A browser-based IDE for creating, deploying, and sharing blockchain apps (DApps, or decentralized apps). Publish your first blockchain DApps in 5 minutes! Here is how: https://docs.secondstate.io/buidl-developer-tool/getting-started
Stars: ✭ 376 (+1988.89%)
Mutual labels:  blockchain, smart-contracts, dapp
Eth Crypto
Cryptographic javascript-functions for ethereum and tutorials to use them with web3js and solidity
Stars: ✭ 420 (+2233.33%)
Mutual labels:  blockchain, smart-contracts, dapp
Asch
Asch is an efficient, flexible, safe and decentralized application platform, which was initially designed to lower the barrier to entry for developers.The services provided by the Asch platform include a public chain and a set of application SDKs.
Stars: ✭ 484 (+2588.89%)
Mutual labels:  blockchain, cryptocurrency, dapp
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 (+816.67%)
Mutual labels:  blockchain, cryptocurrency, dapp
Ebtc
eBitcoin (eBTC) is an ERC20 token. Its primary utility is to provide an easy & fast payment solution. Its edge over other tokens is that it is capable of sending up to 255 payments in a single transaction.
Stars: ✭ 149 (+727.78%)
Mutual labels:  blockchain, cryptocurrency, smart-contracts
Blockchain Reading List
Blockchain Manchester Meetups, Talks and Reading List
Stars: ✭ 17 (-5.56%)
Mutual labels:  blockchain, cryptocurrency, dapp
Cryptokernel
A SDK for implementing blockchain-based digital currencies
Stars: ✭ 146 (+711.11%)
Mutual labels:  blockchain, cryptocurrency, smart-contracts
Skycoin
Skycoin Core and Wallet
Stars: ✭ 549 (+2950%)
Mutual labels:  blockchain, cryptocurrency, smart-contracts
Eth95
🛠️ A smart contract UI for your Ethereum dapp project
Stars: ✭ 139 (+672.22%)
Mutual labels:  blockchain, smart-contracts, dapp
Blockchainbooks.github.io
Blockchain Books
Stars: ✭ 139 (+672.22%)
Mutual labels:  blockchain, cryptocurrency, smart-contracts
Love Ethereum
区块链学习
Stars: ✭ 323 (+1694.44%)
Mutual labels:  blockchain, smart-contracts, dapp
Go Iost
Official Go implementation of the IOST blockchain
Stars: ✭ 523 (+2805.56%)
Mutual labels:  blockchain, smart-contracts, dapp

Snax - Decentralized Social Media Overlay

Some of the key features of Snax

  1. Free rate limited transactions
  2. Free account registration
  3. Social Transactions over the most popular social platforms (e.g. Twitter, Reddit)
  4. Token supply based on Regular Publisher Rewards system for content creators on public social media
  5. Low latency block confirmation (0.5 seconds)
  6. Low-overhead Byzantine Fault Tolerant Finality
  7. Smart contract platform powered by Web Assembly
  8. Designed for sparse header light client validation
  9. Hierarchical role based permissions
  10. Support for biometric hardware secured keys
  11. Designed for parallel execution of context free validation logic

Disclaimer

Snax is released under the open source MIT license and is offered “AS IS” without warranty of any kind, express or implied. Any security provided by the Snax software depends in part on how it is used, configured, and deployed. Snax is built upon many third-party libraries such as Binaryen (Apache License) and WAVM (BSD 3-clause) which are also provided “AS IS” without warranty of any kind. Without limiting the generality of the foregoing, Snax Foundation makes no representation or guarantee that Snax or any third-party libraries will perform as intended or will be free of errors, bugs or faulty code. Both may fail in large or small ways that could completely or partially limit functionality or compromise computer systems. If you use or implement Snax, you do so at your own risk. In no event will Snax Foundation be liable to any party for any damages whatsoever, even if it had been advised of the possibility of damage.

Requirements

libssl >= 1.0.0
GLIBCXX >= 3.4.20

Supported OS

Snax currently supports only Linux x64 and macOS.

Run as Block Producer

1. Minimal hardware configuration

  • 4 cores
  • 32 GB RAM
  • 512 GB SSD
  • 100 mbit\s Internet speed

2. Create wallet and account in Snax

  1. Download Snax extension for Chrome browser (or use cli if you want)
  2. Create Snax wallet with it
  3. Create Snax account (or ask Snax team for testnet account in Discord)

3. Run Snax node with Docker

  1. Install Docker
  2. Create directory for node data
mkdir $HOME/producer
  1. Open p2p port on your firewall
iptables -I INPUT -p tcp --dport 9876 -j ACCEPT
  1. Run your node with Docker
docker run -d --restart=always --network=host --name producer \
           -v $HOME/producer:/opt/snax/data snaxfoundation/snax:1.0.1 \
           snaxnoded.sh --signature-provider put_your_public_key_here=KEY:put_your_private_key_here \
           --plugin=snax::producer_plugin \
           --producer-name=put_your_snax_account_name_here \
           --max-clients=20 \
           --http-validate-host=false \
           --p2p-server-address=YOU.PUBLIC.IP:9876 \
           --agent-name="YOU_PRODUCER_NAME" \
           --network-version-match=1 \
           --p2p-peer-address=92.53.79.187:9876 \
           --p2p-peer-address=92.53.79.190:9876 \
           --p2p-peer-address=80.66.90.29:9876 \
           --p2p-peer-address=92.53.79.187:9877 \
           --p2p-peer-address=92.53.79.187:9878 \
           --p2p-peer-address=92.53.79.187:9879 \
           --p2p-peer-address=92.53.79.187:9880 \
           --p2p-peer-address=92.53.79.190:9877 \
           --p2p-peer-address=80.66.90.29:9877 \
           --p2p-peer-address=snax.eossweden.eu:9022 \
           --p2p-peer-address=snax-mainnet-p2p.eosarabia.one:7883 \
           --p2p-peer-address=snax-peer1.eoskh.com:8977 \
           --p2p-peer-address=snax-peer3.eoskh.com:8947 \
           --p2p-peer-address=213.133.102.220:9876 \
           --p2p-peer-address=95.216.224.96:9876 \
           --p2p-peer-address=snaxp2p.eclipse24.io:9877 \
           --p2p-peer-address=snax.eosnairobi.io:7276 \
           --p2p-peer-address=95.216.245.221:5032 \
           --p2p-peer-address=sxn1.eosviet.io:8948 \
           --p2p-peer-address=sxn3.eosviet.io:8978 \
           --p2p-peer-address=p1-snax.eosph.io:8949 \
           --p2p-peer-address=p3-snax.eosph.io:8979 \
           --p2p-peer-address=speer1.nodeone.io:8976 \
           --p2p-peer-address=speer3.nodeone.io:8946 \
           --p2p-peer-address=p2p.snax.telosunlimited.io:9876 \
           --p2p-peer-address=snaxbp.germaneos.de:7777 \
           --p2p-peer-address=peer.snax-mainnet.eosblocksmith.io:9876 \
           --p2p-peer-address=144.76.155.18:9876

4. Run kxd keystore with Docker

  1. Create directory for keystore
mkdir $HOME/snax-wallet
  1. Run kxd keystore with Docker
docker run  --name=snax-wallet -d -v $HOME/snax-wallet:/root/snax-wallet \
            --restart=always -p 127.0.0.1:8900:8900 snaxfoundation/snax:1.0.1 kxd.sh \
            --http-server-address=0.0.0.0:8900 \
            --access-control-allow-origin=* \
            --access-control-allow-headers=* \
            --http-validate-host=0 \
            --http-alias=snax_kxd:8900

5. Register yourself as a BP candidate

  1. Download the latest release from https://github.com/SnaxFoundation/snax/releases
  2. Unpack binaries
tar xvf bin.tar.gz
  1. Create your wallet
clisnax --wallet-url http://127.0.0.1:8900 wallet create --to-console
  1. Import your private key
clisnax --wallet-url http://127.0.0.1:8900 wallet import --private-key put_your_private_key_here
  1. Unlock your wallet
clisnax --wallet-url http://127.0.0.1:8900 wallet unlock
  1. Register yourself as a BP candidate
clisnax --url https://cdn.snax.one \
        --wallet-url http://127.0.0.1:8900 system regproducer put_your_snax_account_name_here put_your_public_key_here

7. LOCK YOUR WALLET!

clisnax --wallet-url http://127.0.0.1:8900 wallet lock

If you want to build manually

git clone https://github.com/SnaxFoundation/snax.git
cd snax
bash ./snax_build.sh
sudo bash ./snax_install.sh

Resources

  1. Website
  2. Blog
  3. Discord
  4. Twitter
  5. White Paper
  6. Roadmap
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].