├── .github └── workflows │ └── awesome_bot.yml ├── CONTRIBUTING.md ├── README.md ├── code-of-conduct.md └── logo.svg /.github/workflows/awesome_bot.yml: -------------------------------------------------------------------------------- 1 | # This is the workflow to check URLs in README 2 | 3 | name: Check URLs with awesome_bot 4 | 5 | # Controls when the action will run. 6 | on: [push, pull_request, workflow_dispatch] 7 | 8 | # A workflow run is made up of one or more jobs that can run sequentially or in parallel 9 | jobs: 10 | # This workflow contains a single job called "run" 11 | run: 12 | # The type of runner that the job will run on 13 | runs-on: ubuntu-latest 14 | 15 | # Steps represent a sequence of tasks that will be executed as part of the job 16 | steps: 17 | # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it 18 | - uses: actions/checkout@v2 19 | 20 | - name: Setup Ruby, JRuby and TruffleRuby 21 | # You may pin to the exact commit or the version. 22 | # uses: ruby/setup-ruby@e27aee156d42e38ff8a4c2fc97b125c4087cbcc7 23 | uses: ruby/setup-ruby@v1.52.0 24 | with: 25 | # Engine and version to use, see the syntax in the README. Reads from .ruby-version or .tool-versions if unset. 26 | ruby-version: head # optional, default is default 27 | 28 | # The version of Bundler to install. Either 'none', 1, 2, 'latest' or 'Gemfile.lock'. 29 | # For 'Gemfile.lock', the version is determined based on the BUNDLED WITH section from the file Gemfile.lock, $BUNDLE_GEMFILE.lock or gems.locked. 30 | # Defaults to 'Gemfile.lock' if the file exists and 'latest' otherwise. 31 | bundler: none # optional, default is default 32 | 33 | # Run "bundle install", and cache the result automatically. Either true or false. 34 | bundler-cache: false # optional, default is false 35 | # The working directory to use for resolving paths for .ruby-version, .tool-versions and Gemfile.lock. 36 | working-directory: . # optional, default is . 37 | 38 | # Install the awesome_bot gem 39 | - name: Install the awesome_bot gem 40 | run: gem install awesome_bot 41 | 42 | # Run awesome_bot 43 | - name: Run awesome_bot 44 | run: awesome_bot README.md --allow-redirect --allow-dupe 45 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | # Preparations 4 | 5 | Please read the [awesome manifest](https://github.com/sindresorhus/awesome/blob/master/awesome.md) 6 | 7 | # Pull Requests 8 | 9 | Please ensure your pull request adheres to the following guidelines: 10 | 11 | - Make an individual pull request for each suggestion. 12 | - Use the following format: `[RESOURCE](LINK) - DESCRIPTION`. 13 | - Check your spelling and grammar. 14 | - Remove any trailing white-space. 15 | - Send a Pull Request with the reason why the library is awesome. 16 | 17 | # Quality Standard 18 | 19 | To be on the list, project repositories should adhere to these quality standards: 20 | 21 | ## Software 22 | - Code functions as documented and expected 23 | - Actively maintained 24 | - Regular, recent commits 25 | - Or, for finished projects, issues and pull requests are responded to 26 | - Thoroughly documented 27 | - Tests, where practical 28 | 29 | ## Businesses utilizing the BitShares Blockchain 30 | - Commonly known 31 | - Active Users 32 | - Confirmed non fraudulent 33 | - Makes direct use of the BitShares Blockchain (e.g. builds on top of it) 34 | 35 | ## Endorsements 36 | - Please do not add endorsements of any kind, stick with the facts 37 | 38 | ## Sorting 39 | We here use alphanumeric sorting withing categories. 40 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Awesome BitShares Blockchain [![Awesome](https://awesome.re/badge.svg)](https://awesome.re) 2 | 3 | [![GitHub forks](https://img.shields.io/github/forks/bitshares/awesome-bitshares.svg?style=social&label=Fork)](https://github.com/bitshares/awesome-bitshares) 4 | [![GitHub stars](https://img.shields.io/github/stars/bitshares/awesome-bitshares.svg?style=social&label=Star)](https://github.com/bitshares/awesome-bitshares) 5 | [![GitHub watchers](https://img.shields.io/github/watchers/bitshares/awesome-bitshares.svg?style=social&label=Watch)](https://github.com/bitshares/awesome-bitshares) 6 | 7 | > A curated list of awesome BitShares resources for users and developers. 8 | 9 | BitShares Blockchain 10 |

11 | The BitShares Blockchain is an industrial-grade decentralized platform 12 | built for high-performance financial smart contracts. It represents the 13 | first decentralized autonomous community that lets its core token 14 | holder decide on its future direction and products. 15 | In contrast to other smart contracting platform, its strict focus on 16 | security and reliabilty has allowed the BitShares Blockchain to become the 17 | largest host of decentralized exchanges. 18 |

19 | 20 |

Contributions welcome. Add links through pull requests or create an issue to start a discussion.

21 | 22 | ## Contents 23 | 24 | - [Awesome BitShares Blockchain](#awesome-bitshares-blockchain) 25 | - [Websites](#websites) 26 | - [Documentation](#documentation) 27 | - [Community](#community) 28 | - [News](#news) 29 | - [Conferences](#conferences) 30 | - [Utilities](#utilities) 31 | - [Downloads](#downloads) 32 | - [Blockchain API](#blockchain-api) 33 | - [Extended APIs](#extended-apis) 34 | - [Kibana and ElasticSearch Endpoints](#kibana-and-elasticsearch-endpoints) 35 | - [Opensource Wallets](#opensource-wallets) 36 | - [Hosted Wallets](#hosted-wallets) 37 | - [Hardware Wallets](#hardware-wallets) 38 | - [Blockchain Explorers](#blockchain-explorers) 39 | - [Libraries](#libraries) 40 | - [C++ Libraries](#c-libraries) 41 | - [Go Libraries](#go-libraries) 42 | - [Java Libraries](#java-libraries) 43 | - [JavaScript Libraries](#javascript-libraries) 44 | - [Python Libraries](#python-libraries) 45 | - [Tools and Scripts](#tools-and-scripts) 46 | - [Projects Using the BitShares Blockchain](#projects-using-the-bitshares-blockchain) 47 | - [Exchanges](#exchanges) 48 | - [Bridges](#bridges) 49 | - [Games](#games) 50 | - [NFT](#nft) 51 | - [Services](#services) 52 | - [Other Blockchains in the BitShares Family](#other-blockchains-in-the-bitshares-family) 53 | 54 | ## Awesome BitShares Blockchain 55 | 56 | A curated list of resources around the BitShares Blockchain and its 57 | ecosystem. 58 | 59 | Want to contribute to the list? Read the [contributors guide](CONTRIBUTING.md)! 60 | 61 | ### Websites 62 | 63 | * [Bitshares.github.io](https://bitshares.github.io/) - Main website. 64 | * [BitShares.build](https://bitshares.build) - Main website backup. 65 | * [BitSharesGroup.org](https://bitsharesgroup.org) - BitShares Group is an independent organization acting in the best interests of the BitShares Blockchain. 66 | 67 | ### Documentation 68 | 69 | * [Docs.BitShares.EU](https://docs.bitshares.eu) - The primary documentation, maintained by the community, hosted by github. [Docs.bitshares.org](https://docs.bitshares.org) now redirects to this. 70 | * [Docs.BitShares.dev](https://docs.bitshares.dev) - The BitShares Developers Documentation Portal. 71 | * [Deepwiki](https://deepwiki.org/bitshares) - Interactive AI BitShares Github Documentation. 72 | * [BitShares Build Docs](https://docs.bitshares.build) - Light prompt help pages. 73 | * [BitShares.Github.io/docs](https://bitshares.github.io/docs) - New documentation site, work in progress. 74 | * [BitShares-Core Wiki](https://github.com/bitshares/bitshares-core/wiki) - Documentation about the core software development and integration. 75 | * [BitShares-Core Doxygen Documentation](https://bitshares.github.io/doxygen) - Documentation generated from BitShares-Core code base. 76 | * [BitShares-UI Wiki](https://github.com/bitshares/bitshares-ui/wiki) - Guidelines about how to integrate or contribute to the reference wallet project. 77 | * [BitShares-UI Help](https://wallet.bitshares.org/#/help) - Guidelines about how to use the reference wallet software. 78 | * [BitShares NFT Specification](https://github.com/Bit20-Creative-Group/BitShares-NFT-Specification) - NFT documentation 79 | * [Older docs.bitshares.org](https://github.com/bitshares/docs.bitshares.org) - The older, worker funded documentation. 80 | * [中文文档](https://github.com/abitmore/bts-cn-docs) - Documentation in Chinese, maintained by the Chinese community. 81 | 82 | ### Community 83 | 84 | * [BitSharesTalk Forum](https://bitsharestalk.org) - The original board of discussion for BitShares (ever since 2013). 85 | * [Hive#bitshares](https://hive.blog/created/bitshares) - #bitshares tagged posts on the Hive blockchain. 86 | * [Hive: Bitshares community](https://peakd.com/c/hive-120117/created) - Community dedicated for Bitshares on the Hive blockchain. 87 | * [Twitter@BitSharesGroup](https://twitter.com/bitsharesgroup) - Content managed by BitSharesGroup.org owner. 88 | * [Twitter@artcasa_fine](https://twitter.com/artcasa_fine) - Twitter account for the Bitshares Artcasa NFT Gallery. 89 | * [Twitter@nftea_gallery](https://twitter.com/nftea_gallery) - Twitter account for the Bitshares NFTEA NFT Gallery. 90 | * [Twitter#BitShares](https://twitter.com/search?q=%23BitShares) - #BitShares tagged on Twitter. 91 | * [Twitter#bitshares](https://twitter.com/search?q=%23bitshares) - #bitshares tagged on Twitter. 92 | * [YouTube@BitSharesBlockchain](https://www.youtube.com/@BitSharesBlockchain) 93 | * [Reddit#bitshares](https://reddit.com/r/bitshares) - Reddit sub-reddit for BitShares. 94 | * [Whaleshares#bitshares](https://whaleshares.io/created/bitshares) - #bitshares tagged posts on the WHALESHARES blockchain. 95 | * Telegram: 96 | * [BitShares Group](https://t.me/BitSharesGroup) - Group for general discussions. 97 | * [BitShares DAC](https://t.me/BitSharesDAC) - Another group for general discussions. 98 | * [BitShares 比特股中文社区](https://t.me/BitSharesDEXcn) - Group for Chinese speaking people. 99 | * [BitShares Development](https://t.me/BitSharesDEV) - For developers. 100 | * [BitShares Wallet](https://t.me/BitSharesWallet) - Focus on BitShares reference wallet. 101 | * [BitShares Wallet Help](https://t.me/btsWalletHelp) - Web-based wallet & desktop wallet support. 102 | * [BitShares Mobile](https://t.me/btsplusplus) - Focus on BitShares mobile app. 103 | * [BitShares News](https://t.me/BitSharesNews) - BitShares News channel. 104 | * [BitShares Investors](https://t.me/BitSharesInvestors) - For developers. 105 | * [BitShares Traders](https://t.me/Bitshares_Traders) - Focus on Trading. 106 | * [BitShares Node Admins](https://t.me/BTS_Node_Admins) - Provides server admins & interested parties with tech support. 107 | * [BitShares NFTs](https://t.me/BitSharesNFTs) - NFT (Non-fungible tokens) discussions. 108 | * [BitShares Liquidity Pools](https://t.me/bitshares_amm) - Liquidity Pools and Automated-market making on BitShares blockchain. 109 | * [PyBitShares](https://t.me/pybitshares) - Focus on python-bitshares development. 110 | * [PoolTool](https://t.me/pooltool_community_edition) - Dicussions about PoolTool. 111 | * [BeetApp](https://t.me/beetapp) - Focus on beetapp development. 112 | * [DEXBot](https://t.me/DEXBOTbts) - Focus on DEXBot development. 113 | * Committee - (invite only) For committee members. 114 | * Witnesses - (invite only) For block producers. 115 | * [Discord - BitShares](https://discord.gg/6V2RdsJXX3) 116 | * WeChat Groups - Please ask for invitations in the Chinese Telegram group https://t.me/BitSharesDEXcn 117 | 118 | ### News 119 | 120 | * [Bitshares hive community feed](https://peakd.com/c/hive-120117/created) 121 | 122 | ### Conferences 123 | 124 | * [Web3 Berlin 2023](https://berlinweb3.com/speaker/alexander-gerl) - June 10-11, 2023 in Berlin, Germany. 125 | * [Decentralized 2019 - BitShares as Event Partner](https://decentralized.com) - In Athens, Greece. 126 | * [Bitfest 2018](https://hive.blog/@bitfest) - in Amsterdam, Netherlands. 127 | * [Graphene DevCon 2018](https://hive.blog/graphene/@jademont/global-graphene-blockchain-devcon-is-successfully-concluded) - in Shanghai, China. 128 | 129 | ## Utilities 130 | 131 | ### Downloads 132 | 133 | * [BitShares-Core](https://github.com/bitshares/bitshares-core/releases) - full node and command line tools 134 | * [BitShares-UI](https://github.com/bitshares/bitshares-ui/releases) - desktop light wallet 135 | * [BitShares Mobile App](https://app.btspp.io) - iOS and Android 136 | * [Media Kit](https://github.com/bitshares/marketing/tree/master/media-kit) - Logos, banners and etc 137 | 138 | ### Blockchain API 139 | 140 | Given that many businesses and community members operate their own API 141 | endpoints, duplicating that list here would be unecessary efforts. Hence, 142 | we here link to the list of nodes as used in the reference wallet on 143 | wallet.bitshares.org. 144 | 145 | * [List of Blockchain API endpoints](https://github.com/bitshares/bitshares-ui/blob/develop/app/api/apiConfig.js#L128) 146 | 147 | ### Extended APIs 148 | 149 | There are some extended APIs provided by the community. 150 | 151 | * https://api.bitshares.ws/docs 152 | * https://api.bitshares.build/api-docs 153 | * https://market-api-v2.xbts.io 154 | * https://market-api-v1.xbts.io 155 | * https://api.testnet.bitshares.ws/docs - for the public testnet 156 | 157 | ### Kibana and ElasticSearch Endpoints 158 | 159 | Kibana and ElasticSearch endpoints can be used to query blockchain data and perform visualizations. 160 | 161 | * kibana.bitshares.eu Down for maintenance. 162 | * [kibana.bts.mobi](https://kibana.bts.mobi) (and [es.bts.mobi](https://es.bts.mobi/bitshares-*/_count?pretty=true) for raw data). 163 | 164 | ### Opensource Wallets 165 | 166 | * [BitShares-UI (Reference Wallet)](https://github.com/bitshares/bitshares-ui) - reference web wallet (ReactJS). 167 | * [BitShares Mobile (BTS++)](https://github.com/bitshares/bitshares-mobile-app) - native Android/iOS app. 168 | * [BiTSy](https://git.agorise.net/agorise/bitsy-wallet) - native Android wallet with Merchants/Tellers map, in 104 languages. 169 | * [Bitshares Beet](https://github.com/bitshares/beet) - A fully implemented multi-crypto wallet coded in vue3. 170 | * [BeetEOS](https://github.com/beetapp/beeteos) - A Beet wallet fork with additional chains and experimental features. 171 | * [Citadel Desktop Wallet](https://github.com/jhtitor/citadel) - desktop wallet written in Python 172 | * [EVRAZ Wallet](https://github.com/evraz-org/EVRAZ-smartphone-application) - Android app 173 | * [Ledger App](https://github.com/bitshares/ledger-app-bitshares) - Bitshares Wallet App for Ledger Nano S 174 | * [Oases](https://github.com/huskcasaca/bitshares-oases-android) - Android app. 175 | * [Community UI](https://github.com/bitshares/bitshares-community-ui) - A partially implemented Bitshares web wallet coded with Vue2. 176 | * [Bitshares DEX Astro UI](https://github.com/BTS-CM/astro-ui) - A Bitshares DEX user interface implemented in React and Astro. 177 | 178 | ### Hosted Wallets 179 | 180 | **Warning**: Since these are hosted wallets, they may have access to your 181 | private account credentials and thus, your funds may be at risk. Please do 182 | your own research before using them. 183 | 184 | #### Hosted Mainnet Wallets 185 | 186 | * [wallet.bitshares.org](https://wallet.bitshares.org) - BitShares.org hosted reference wallet, lastest release. 187 | * [staging.bitshares.org](https://staging.bitshares.org) - BitShares.org hosted reference wallet, latest release candidate. 188 | * [develop.bitshares.org](https://develop.bitshares.org) - BitShares.org hosted reference wallet, latest in-development version. 189 | * [bts.exchange](https://bts.exchange) - BitSharesGroup.org hosted reference wallet. 190 | * [dev.bts.mobi](https://dev.bts.mobi) and [pr.bts.mobi](https://pr.bts.mobi) - Random in-development versions of bitshares-ui, publicly hosted on Github Pages ([dev](https://github.com/abitmore/dev.bts.mobi), [pr](https://github.com/abitmore/pr.bts.mobi)), published by Github Actions from [a fork of bitshares-ui](https://github.com/abitmore/bitshares-ui) 191 | * [m.magicw.net](https://m.magicw.net) - Web version of the MagicWallet Android/iOS app. 192 | * [app.xbts.io](https://app.xbts.io) - New DeFi wallet with AMM liquidity pools 193 | * [SwapBTS.com](https://swapbts.com) - Lightweight web wallet with many features, for mobile use 194 | * [BTWTY.com](https://wallet.btwty.com/) - New reference wallet hosted by the Bit20 group. 195 | * [BEOS BTS Wallet](https://bitshareswallet.beos.world/) 196 | * Check the [Exchanges](#exchanges) running on the BitShares blockchain too. 197 | 198 | #### Hosted Testnet Wallets 199 | 200 | * [test.xbts.io](https://test.xbts.io) 201 | * [wallet.bitshares.org](https://wallet.bitshares.org/#/settings/access) - To use with Testnet, connect to a testnet API node in settings 202 | * testnet.bitshares.org - down for maintenance. 203 | 204 | ### Hardware Wallets 205 | 206 | * [Ledger Nano S](https://github.com/bitshares/ledger-app-bitshares) 207 | * [Keybox](https://keybox.magicw.net) 208 | 209 | ### Blockchain Explorers 210 | 211 | * [built-in explorer](https://wallet.bitshares.org/#/explorer/) - open source reference wallet built-in explorer. 212 | * [blocksights.info](https://blocksights.info) - supports both Mainnet and the public testnet. The back end is closed source, the front end is [open source](https://github.com/blocksights/blocksights-open-explorer). It is an improved version of the open-source BitShares blockchain explorer [open-explorer](https://github.com/bitshares/open-explorer). 213 | * [bitshareschain.com](https://www.bitshareschain.com/) - BitShares Blockchain explorer. 214 | * [bitshares.network](https://bitshares.network) - BitShares network information. 215 | 216 | ## Libraries 217 | 218 | Libraries capable of communicating with the BitShares blockchain. 219 | 220 | ### C++ Libraries 221 | 222 | * [bitshares-core](https://github.com/bitshares/bitshares-core) - reference code base that operates the blockchain. 223 | 224 | ### Go Libraries 225 | 226 | * [bitshares-go](https://github.com/scorum/bitshares-go) - BitShares golang client 227 | * [go-bitshares](https://github.com/denkhaus/go-bitshares) - API for BitShares - supports websocket RPC & Wallet functions 228 | 229 | ### Java Libraries 230 | 231 | * [graphenej](https://git.agorise.net/agorise/graphenej) - Graphene Java lib for mobile app Developers. 232 | * bitshares-kit `https:``//github.com/huskcasaca/bitshares-kit` - A Kotlin/JVM based library for BitShares blockchain. Code is being refactored. An older forked version is [here](https://github.com/abitmore/bitshares-kit). 233 | 234 | ### JavaScript Libraries 235 | 236 | * [bitsharesjs](https://github.com/bitshares/bitsharesjs) - used by reference wallet. 237 | * [bitsharesjs-ws](https://github.com/bitshares/bitsharesjs-ws) - used by reference wallet. 238 | * [btsdex](https://github.com/scientistnik/btsdex) - alternative javascript library. 239 | * [vuex-bitshares](https://github.com/TrustyFund/vuex-bitshares) - used by Trusty/Community UI. 240 | * [BTS Buntime](https://github.com/BTS-CM/bts-buntime) - A fork of bitsharesjs for BunJS 241 | 242 | ### Python Libraries 243 | 244 | * [python-bitshares](https://github.com/bitshares/python-bitshares) - full featured python library. 245 | * [Uptick](http://docs.uptick.rocks) - command line tool. 246 | * [bitshares-p2p](https://github.com/HarukaMa/bitshares-p2p) - Pocking around p2p protocol of BitShares network. 247 | * [BitShares Explorer REST API](https://github.com/bitshares/bitshares-explorer-api) - API for the open-source BitShares blockchain explorer [open-explorer](https://github.com/bitshares/open-explorer) 248 | * [BitShares HUG REST API](https://github.com/BTS-CM/Bitshares-HUG-REST-API) - A HUG REST API for the BitShares network 249 | 250 | ### PHP Libraries 251 | 252 | * [bitshares-php](https://github.com/Codaone/bitshares-php) - A php library, for reading bitshares blockchain 253 | 254 | ### Tools and Scripts 255 | 256 | * [DEXBot](https://github.com/Codaone/DEXBot) - Market Maker bot 257 | * [extinction-event](https://github.com/litepresence/extinction-event) - bitsharesQUANT Distributed Exchange Algo Trading Framework 258 | * [bitshares-scripts](https://github.com/bitfag/bitshares-scripts) - a set of python scripts. 259 | * [bitshares-tradehistory-analyzer](https://github.com/bitfag/bitshares-tradehistory-analyzer) - a set of scripts for exporting and analyzing trading history. 260 | * [StakeMachine](https://github.com/xeroc/stakemachine) - Trading Bot Infrastructure for the BitShares Decentralized Exchange (DEX). 261 | * [Telegram notifier](https://github.com/Codaone/BitShares-Telegram-notifier) - a simple bitshares telegram notifier 262 | * [bts-notifier](https://github.com/scientistnik/bts-notifier) - Telegram bot for sending BitShares account notifications 263 | * [PoolTool](https://github.com/iamredbar/PoolTool) - A simple GUI tool to help anyone use Liquidity Pools on the BitShares blockchain. 264 | * [Bitshares_NFT_Issuance_Tool](https://github.com/BTS-CM/Bitshares_NFT_Issuance_Tool) - An open source GUI to help users issue new NFTs on the Bitshares blockchain. 265 | * [NFT_Viewer](https://github.com/BTS-CM/NFT_Viewer) - An open source GUI to view NFTs on the Bitshares blockchain. 266 | * [Airdrop tool](https://github.com/bts-cm/airdrop_tool) - An open source GUI for fetching tickets, analyzing ticket leaderboards, calculating airdrop vectors and performing airdrops. 267 | * [BTS-QRCodes](https://github.com/BTS-CM/BTS-QRCodes) - QR code generation scripts for Bitshares blockchain operations. 268 | * [BEET-JS](https://github.com/bitshares/beet-js) - A JS library for 3rd party apps to interact with the Bitshares BEET multiwallet. 269 | * [BEET-Deeplinks](https://github.com/BTS-CM/beet-deeplinks) - A module for constructing Bitshares BEET deeplinks. 270 | * [Bitshares Next.JS NFT Gallery](https://github.com/BTS-CM/NFT.next.js) - open source code for new galleries. 271 | * [Bit20s NFT Creator Tool](https://github.com/Bit20-Creative-Group/BitShares-NFT-Creator) - open source python NFT creation tool. 272 | * [Bit20s Pool Tool](https://github.com/Bit20-Creative-Group/PoolTool) - open source python based Bitshares liquidity pool tool. 273 | * [Beet API](https://github.com/BTS-CM/beet_api) - An ElysiaJS API used by the Bitshares DEX Astro UI. 274 | 275 | ## Projects Using the BitShares Blockchain 276 | 277 | **Warning**: Being listed here is **not endorsement** nor does it provide any 278 | credibility to these projects. Even though the authors of this list have high 279 | quality standards, limited resources prevent them from keeping this list 280 | up-to-date with respect to their credibility. Use this list at your own risk and 281 | do your own research! 282 | 283 | ### Exchanges 284 | 285 | * [XBTS](https://xbts.io) 286 | * [ioBanker](https://iobanker.com) 287 | * [BTWTY GATEWAY](https://btwty.com/) - Bit20 community ran 288 | * [DelionDEX](https://dex.delion.online) 289 | * [EVRAZ](https://evrazdex.org) 290 | * [PirateCash](https://piratecash.net/) - [PirateCash DEX](https://wallet.piratecash.net/) 291 | * GDEX (no dedicated website, [deposits and withdrawals are processed manually](https://bitsharestalk.org/index.php?topic=33861.0)) 292 | * Citadel `https``://citadel.li` outdated 293 | 294 | ### Bridges 295 | 296 | * [Exolix](https://exolix.com) 297 | * [GoDex](https://godex.io) 298 | * [SimpleSwap](https://simpleswap.io) 299 | * [StealthEx](https://stealthex.io) 300 | * [SwapSpace](https://swapspace.co) 301 | * [ioxbank](https://ioxbank.com) 302 | * [SecureShift](https://secureshift.io) 303 | 304 | ### Games 305 | 306 | * [SmartHoldem](https://dexgames.net) 307 | 308 | ### NFT 309 | 310 | * [BitShares NFT Specification](https://github.com/Bit20-Creative-Group/BitShares-NFT-Specification) - NFT documentation 311 | * [ArtCASA Gallery](https://artcasa.gallery) 312 | * [NFTEA Gallery](https://nftea.gallery) 313 | * [Alguien's NFT gallery](https://shamelesslyai.github.io/alguienAlli.github.io/) 314 | 315 | ### Services 316 | 317 | * [PalmPay](https://PalmPay.io) - A chain-agnostic Point Of Sale system, using Bitshares DEx, in 104 languages. 318 | * [EVRAZ](https://www.evrazcoin.org) - Global System of Electronic Payments on BitShares 319 | * [CryptoNinjaPay](https://cryptoninjapay.com/) ([Android](https://play.google.com/store/apps/details?id=ninja.cybertron.cryptoninja)/[iOS](https://apps.apple.com/us/app/crypto-ninja/id1517748402)) 320 | * [Quintric](https://quintric.com) 321 | * [Apptrade](https://www.apptrade.io) - A profit sharing marketplace, described as “the stock market for apps”, that runs on the BitShares blockchain. 322 | * [Compumatrix](https://compumatrix.com) - Business process outsourcing and home-based employment. 323 | * [Moneda Par](https://monedapar.com.ar) - A non-profit based in Argentina that allows the exchange of goods and services through mutual loans. 324 | 325 | ## Other Blockchains in the BitShares Family 326 | 327 | BitShares being the first that is build on the Graphene or graphene-like base 328 | system, other blockchains have been deployed that make use of the very same 329 | foundations: 330 | 331 | * [EOS](https://eos.io) 332 | * [Hive](https://hive.io) 333 | * [Peerplays](https://www.peerplays.com) 334 | * [BEOS](https://beos.world/) 335 | * [Crypviser](https://crypviser.network) 336 | * [Steem](https://steempeak.com) 337 | * [Whaleshares](https://whaleshares.io) 338 | * [Yoyow](https://yoyow.org/index_en.html) 339 | * [TUSC](https://tusc.network) 340 | * [CWD.GLOBAL](https://cwd.global) ([codebase](https://github.com/crowdwiz-biz)) 341 | * [Cybex](https://dex.cybex.io) 342 | * [Revolution-Populi](https://revolutionpopuli.com) ([codebase](https://github.com/Revolution-Populi)) 343 | * [Scorum](https://scorumcoins.com/en-us) 344 | * [Serey](https://serey.io) 345 | * [VIT](https://vicetoken.com) 346 | 347 | # License 348 | 349 | [![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/) 350 | 351 | 352 | To the extent possible under law, [Dr.-Ing. Fabian 353 | Schuh](https://github.com/xeroc) has waived all copyright and related or 354 | neighboring rights to this work. 355 | -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, gender identity and expression, level of experience, 9 | nationality, personal appearance, race, religion, or sexual identity and 10 | orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at sindresorhus@gmail.com. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at [http://contributor-covenant.org/version/1/4][version] 72 | 73 | [homepage]: http://contributor-covenant.org 74 | [version]: http://contributor-covenant.org/version/1/4/ 75 | -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Logo DarkBlue + BitShares Blue - 2 color 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | --------------------------------------------------------------------------------