Splinter v0.7 Downloads
Splinter repository
Clone the core GitHub repository to view the Splinter source code, demo applications, and example Docker compose files for starting up a Splinter network. Learn how to build Splinter and more by browsing the Splinter documentation.
See Repositories for the other Splinter repositories in this project.
Rust crates
Use the following crates in your Rust project:
Docker images
Splinter provides the following prebuilt Docker images for running and interacting with a Splinter node:
- splintercommunity/splinterd The Splinter daemon, an out-of-the-box implementation of a Splinter node
- splintercommunity/splinter-cli Splinter’s command line interface for managing and interacting with a Splinter node
- splintercommunity/scabbard-cli The scabbard service’s command line interface
Apt repository
Splinter is installable on Ubuntu Focal via the official apt repositories.
Release versions:
$ sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys --recv-keys B1DF8C00ACEB5855
$ sudo add-apt-repository "deb [arch=amd64] http://repo.splinter.dev/ubuntu/extraball focal stable"
$ sudo apt install splinter-cli splinter-daemon
Nightly builds and builds with experimental features are also available. Nightly and experimental builds may contain features that are incomplete or non-functional. These are provided for testing purposes only and should not be used in any non-development environment.
Nightly builds:
$ sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys --recv-keys A5CB08A81FD29ED9
$ sudo add-apt-repository "deb [arch=amd64] http://repo.splinter.dev/ubuntu/extraball/nightly focal main"
$ sudo apt install splinter-cli splinter-daemon
Experimental builds:
$ sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys --recv-keys A5CB08A81FD29ED9
$ sudo add-apt-repository "deb [arch=amd64] http://repo.splinter.dev/ubuntu/extraball/nightly focal experimental"
$ sudo apt install splinter-cli splinter-daemon