Go to file
Michael Vines 8f0e301aa2 Merge notifications 2020-06-12 22:21:28 -07:00
.buildkite Buildkite pipeline overhaul 2 (#10529) 2020-06-11 17:34:13 -07:00
.github
.travis Add commitlint support 2020-06-12 22:10:44 -07:00
accounts-bench
banking-bench Remove redundant BankForks parameter (#10537) 2020-06-12 11:04:17 -06:00
bench-exchange Expose last-valid-slot to BankClient and ThinClient users (#10478) 2020-06-09 17:07:32 -07:00
bench-streamer
bench-tps Expose last-valid-slot to BankClient and ThinClient users (#10478) 2020-06-09 17:07:32 -07:00
ci Prevent .travis changes from affecting buildkite builds 2020-06-12 16:49:55 -07:00
clap-utils
cli Add `merge-stake` subcommmand 2020-06-10 23:19:31 -07:00
cli-config
client Expose last-valid-slot to BankClient and ThinClient users (#10478) 2020-06-09 17:07:32 -07:00
core Split commitment module (#10541) 2020-06-12 17:16:10 -07:00
crate-features
docs Add Trust Wallet security info (#10516) 2020-06-11 17:59:41 -07:00
dos
download-utils
explorer [Security] Bump websocket-extensions from 0.1.3 to 0.1.4 in /explorer 2020-06-12 22:10:58 -07:00
faucet
genesis Bump serde_json from 1.0.53 to 1.0.54 2020-06-09 16:57:46 -07:00
genesis-programs
gossip
install
keygen
ledger Remove redundant BankForks parameter (#10537) 2020-06-12 11:04:17 -06:00
ledger-tool Bump serde_json from 1.0.53 to 1.0.54 2020-06-09 16:57:46 -07:00
local-cluster Adopt heaviest subtree fork choice rule (#10441) 2020-06-11 12:16:04 -07:00
log-analyzer Bump serde_json from 1.0.53 to 1.0.54 2020-06-09 16:57:46 -07:00
logger
measure
merkle-tree
metrics Add RPC Send Transaction Service graphs 2020-06-10 18:14:06 -07:00
multinode-demo
net
net-shaper Bump serde_json from 1.0.53 to 1.0.54 2020-06-09 16:57:46 -07:00
net-utils
notifier
perf
programs Add StakeInstruction::Merge (#10503) 2020-06-10 17:22:47 -07:00
ramp-tps Bump serde_json from 1.0.53 to 1.0.54 2020-06-09 16:57:46 -07:00
rayon-threadlimit
remote-wallet
runtime Optimize stale slot shrinking for previously cleaned roots (#10099) 2020-06-12 14:51:43 +09:00
scripts
sdk Document InvokeContext trait (#10514) 2020-06-11 15:31:13 -07:00
stake-accounts
stake-monitor Add StakeInstruction::Merge (#10503) 2020-06-10 17:22:47 -07:00
stake-o-matic Add stage 5 TdS Validators to list (#10508) 2020-06-10 18:57:18 -07:00
streamer
sys-tuner
system-test Factor out testnet automation SW version resolution 2020-06-10 09:55:39 -06:00
tokens More reliable way to detect expired transactions (#10482) 2020-06-10 17:00:13 -06:00
transaction-status
upload-perf Bump serde_json from 1.0.53 to 1.0.54 2020-06-09 16:57:46 -07:00
validator Bump serde_json from 1.0.53 to 1.0.54 2020-06-09 16:57:46 -07:00
version
vote-signer Bump serde_json from 1.0.53 to 1.0.54 2020-06-09 16:57:46 -07:00
watchtower
web3.js Add commitlint support 2020-06-12 22:10:44 -07:00
.clippy.toml
.codecov.yml
.gitbook.yaml
.gitignore
.mergify.yml
.travis.yml Merge notifications 2020-06-12 22:21:28 -07:00
CONTRIBUTING.md
Cargo.lock Bump serde_json from 1.0.53 to 1.0.54 2020-06-09 16:57:46 -07:00
Cargo.toml
LICENSE
README.md
RELEASE.md
fetch-perf-libs.sh
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.