Go to file
Michael Vines da1b480bd3 Update CI to Rust 1.46.0 2020-09-02 15:24:38 -07:00
.buildkite Remove secrets not required by the main public CI 2020-08-31 11:05:28 -07:00
.github
.travis
account-decoder Bump spl-token version 2020-08-29 03:20:38 -06:00
accounts-bench Switch account hashing to blake3 (#11969) 2020-09-02 00:37:36 -07:00
banking-bench Update to rayon 1.4.0 (#11898) 2020-08-28 21:00:11 -07:00
banks-client Add a client for BankForks (#10728) 2020-08-07 08:45:17 -06:00
banks-interface Add a client for BankForks (#10728) 2020-08-07 08:45:17 -06:00
banks-server Add CommitmentSlots::new_from_slot() (#11600) 2020-08-13 03:51:15 +00:00
bench-exchange Update to rayon 1.4.0 (#11898) 2020-08-28 21:00:11 -07:00
bench-streamer
bench-tps Update to rayon 1.4.0 (#11898) 2020-08-28 21:00:11 -07:00
ci Update CI to Rust 1.46.0 2020-09-02 15:24:38 -07:00
clap-utils
cli Fix use-deprecated-loader arg (#11921) 2020-08-31 08:41:00 +00:00
cli-config Add a client for BankForks (#10728) 2020-08-07 08:45:17 -06:00
client Detect and notify when deserializable shreds are available (#11816) 2020-09-01 22:06:06 -07:00
core Detect and notify when deserializable shreds are available (#11816) 2020-09-01 22:06:06 -07:00
crate-features
docs Docs.rs version replacement (#11981) 2020-09-01 13:47:29 -06:00
dos Update to rayon 1.4.0 (#11898) 2020-08-28 21:00:11 -07:00
download-utils
explorer chore:(deps): bump @types/node from 14.6.0 to 14.6.2 in /explorer (#11995) 2020-09-02 08:16:26 +00:00
faucet Faucet: Add per-request cap (#11665) 2020-08-17 17:33:14 -06:00
genesis Switch programs activation to whole-set based gating (#11750) 2020-08-26 01:49:15 +09:00
genesis-programs Add tests for the Debug and activation Vecs (#11926) 2020-09-01 17:48:25 +09:00
gossip `solana-gossip spy` can now be given an identity keypair (`--identity` argument) 2020-08-22 17:00:50 -07:00
install
keygen
ledger Detect and notify when deserializable shreds are available (#11816) 2020-09-01 22:06:06 -07:00
ledger-tool Add bank-hash subcommand 2020-08-30 17:09:20 +00:00
local-cluster Detect and notify when deserializable shreds are available (#11816) 2020-09-01 22:06:06 -07:00
log-analyzer
logger
measure
merkle-tree
metrics Back out dashboard (#11791) 2020-08-21 21:48:37 -07:00
multinode-demo modify-genesis now writes elsewhere and produces a full genesis.tar.bz2 2020-08-28 19:58:55 -07:00
net Remove unused GEOLOCATION_API_KEY 2020-08-31 11:05:28 -07:00
net-shaper
net-utils
notifier
perf Update to rayon 1.4.0 (#11898) 2020-08-28 21:00:11 -07:00
poh-bench Update to rayon 1.4.0 (#11898) 2020-08-28 21:00:11 -07:00
programs Switch account hashing to blake3 (#11969) 2020-09-02 00:37:36 -07:00
ramp-tps
rayon-threadlimit
remote-wallet
runtime Switch account hashing to blake3 (#11969) 2020-09-02 00:37:36 -07:00
scripts
sdk Switch account hashing to blake3 (#11969) 2020-09-02 00:37:36 -07:00
stake-accounts
stake-monitor Allow the sendTransaction preflight commitment level to be configured 2020-08-22 08:19:50 -07:00
stake-o-matic Add missing testnet pubkeys and remove duplicates (#12000) 2020-09-02 20:19:09 +00:00
storage-bigtable Bigtable method to return a single row of data (#11999) 2020-09-02 13:41:25 -06:00
streamer
sys-tuner Sync FD limit and max maps to 500k 2020-08-19 16:36:03 +00:00
system-test
tokens Add lockups via solana-tokens (#11782) 2020-08-24 15:18:35 -06:00
transaction-status Bump spl-token version 2020-08-29 03:20:38 -06:00
upload-perf
validator Increase message_processor logging to error level (#11945) 2020-08-31 13:11:12 -07:00
version
vote-signer
watchtower Rename Binary64 to Base64. Establish Base58 encoding 2020-08-17 17:26:29 -07:00
web3.js fix: update Pubkey typescript bindings (#11971) 2020-09-01 11:14:41 -07:00
.clippy.toml
.codecov.yml
.gitignore
.mergify.yml
.travis.yml
CONTRIBUTING.md Fix link (#11742) 2020-08-20 18:02:36 +00:00
Cargo.lock Switch account hashing to blake3 (#11969) 2020-09-02 00:37:36 -07:00
Cargo.toml Add a client for BankForks (#10728) 2020-08-07 08:45:17 -06:00
LICENSE
README.md
RELEASE.md
fetch-perf-libs.sh Take v0.19.3 of perf libs which improves sigverify perf 2x (#11894) 2020-08-28 12:34:25 -07:00
fetch-spl.sh Update to spl-token 2 2020-08-29 09:25:17 -07:00
run.sh

README.md

Solana

Solana crate Solana documentation Build status codecov

Building

1. Install rustc, cargo and rustfmt.

$ curl https://sh.rustup.rs -sSf | sh
$ source $HOME/.cargo/env
$ rustup component add rustfmt

If your rustc version is lower than 1.39.0, please update it:

$ rustup update

On Linux systems you may need to install libssl-dev, pkg-config, zlib1g-dev, etc. On Ubuntu:

$ sudo apt-get update
$ sudo apt-get install libssl-dev libudev-dev pkg-config zlib1g-dev llvm clang

2. Download the source code.

$ git clone https://github.com/solana-labs/solana.git
$ cd solana

3. Build.

$ cargo build

4. Run a minimal local cluster.

$ ./run.sh

Testing

Run the test suite:

$ cargo test

Starting a local testnet

Start your own testnet locally, instructions are in the online docs.

Accessing the remote testnet

  • testnet - public stable testnet accessible via devnet.solana.com. Runs 24/7

Benchmarking

First install the nightly build of rustc. cargo bench requires use of the unstable features only available in the nightly build.

$ rustup install nightly

Run the benchmarks:

$ cargo +nightly bench

Release Process

The release process for this project is described here.

Code coverage

To generate code coverage statistics:

$ scripts/coverage.sh
$ open target/cov/lcov-local/index.html

Why coverage? While most see coverage as a code quality metric, we see it primarily as a developer productivity metric. When a developer makes a change to the codebase, presumably it's a solution to some problem. Our unit-test suite is how we encode the set of problems the codebase solves. Running the test suite should indicate that your change didn't infringe on anyone else's solutions. Adding a test protects your solution from future changes. Say you don't understand why a line of code exists, try deleting it and running the unit-tests. The nearest test failure should tell you what problem was solved by that code. If no test fails, go ahead and submit a Pull Request that asks, "what problem is solved by this code?" On the other hand, if a test does fail and you can think of a better way to solve the same problem, a Pull Request with your solution would most certainly be welcome! Likewise, if rewriting a test can better communicate what code it's protecting, please send us that patch!

Disclaimer

All claims, content, designs, algorithms, estimates, roadmaps, specifications, and performance measurements described in this project are done with the author's best effort. It is up to the reader to check and validate their accuracy and truthfulness. Furthermore nothing in this project constitutes a solicitation for investment.