A community-curated list of sites/merchants that accept Bitcoin Cash, a peer-to-peer electronic cash system suitable for the digital age, and the future of online commerce.
Add a site that's not listed, or provide any updates/corrections by submitting a pull request, or creating an issue. Learn how to do either by reading our contribution guidelines.
The goal is to build a website (https://spec.consortium.cash) with a comprehensive list of sites that accept or support Bitcoin Cash, as well as Bitcoin (Legacy).
Our hope is to connect consumers and merchants, while spreading awareness and promoting global adoption of Bitcoin Cash.
The site maintainers do not endorse nor confirm the legitimacy of any of the listings linked to on this site. This is an open source project which accepts submissions from the general community. While we try our best to verify the information submitted, it's possible that we may miss something.
If you'd like to contribute to the list, please read the entire guidelines here in CONTRIBUTING.md.
spec.consortium.cash is built upon Jekyll, using the github-pages gem.
In order to run the site locally, it is necessary to install bundler, install all dependencies, and then use Jekyll to serve
the site. If the gem
command is not available to you, it is necessary to install Ruby with RubyGems.
Once Ruby and RubyGems are installed and available from the command line, spec.consortium.cash can be setup using the following commands.
gem install bundler
cd ~/spec.consortium.cash
bundle install
bundle exec jekyll serve
The spec.consortium.cash website should then be accessible from http://localhost:4000
.
spec.consortium.cash also includes a Docker image for easy deployment. You can build and run the Docker image using the following commands.
cd ~/spec.consortium.cash
gem install bundler
bundle install
bundle exec jekyll build
docker build -t spec.consortium.cash .
docker run -p 4000:80 spec.consortium.cash
If you are doing development, and want to launch a jekyll server which can track your changes. Then you can use the following commands.
cd ~/spec.consortium.cash
docker run --rm --label=jekyll --volume=$(pwd):/srv/jekyll:z \
-it -p 127.0.0.1:4000:4000 jekyll/jekyll:latest jekyll s
The spec.consortium.cash website should then be accessible from http://localhost:4000
.
This code is distributed under the MIT license. For more info, read the LICENSE file distributed with the source code.