Go to file
Justin Starry d78d9898f3 First commit 2020-06-12 16:32:05 -07:00
.buildkite Buildkite pipeline overhaul 2 (#10529) 2020-06-11 17:34:13 -07:00
.github
.travis Adjust ^ placement 2020-06-12 16:22:31 -07:00
accounts-bench
banking-bench Remove redundant BankForks parameter (#10537) 2020-06-12 11:04:17 -06:00
bench-exchange
bench-streamer
bench-tps
ci Add explorer/ carve out 2020-06-12 16:02:58 -07:00
clap-utils
cli Add `merge-stake` subcommmand 2020-06-10 23:19:31 -07:00
cli-config
client
core Remove redundant BankForks parameter (#10537) 2020-06-12 11:04:17 -06:00
crate-features
docs Add Trust Wallet security info (#10516) 2020-06-11 17:59:41 -07:00
dos
download-utils
explorer First commit 2020-06-12 16:32:05 -07:00
faucet
genesis
genesis-programs
gossip
install
keygen
ledger Remove redundant BankForks parameter (#10537) 2020-06-12 11:04:17 -06:00
ledger-tool
local-cluster Adopt heaviest subtree fork choice rule (#10441) 2020-06-11 12:16:04 -07:00
log-analyzer
logger
measure
merkle-tree
metrics Add RPC Send Transaction Service graphs 2020-06-10 18:14:06 -07:00
multinode-demo
net
net-shaper
net-utils
notifier
perf
programs Add StakeInstruction::Merge (#10503) 2020-06-10 17:22:47 -07:00
ramp-tps
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
tokens More reliable way to detect expired transactions (#10482) 2020-06-10 17:00:13 -06:00
transaction-status
upload-perf
validator
version
vote-signer
watchtower
.clippy.toml
.codecov.yml
.gitbook.yaml
.gitignore
.mergify.yml
.travis.yml Adjust ^ placement 2020-06-12 16:22:31 -07:00
CONTRIBUTING.md
Cargo.lock
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.