Go to file
sakridge f98bfda6f9
Security changes (#9923)
* Move test-only functions to test modules

* Remove sigverify disable

* Remove chacha CTR code
2020-05-08 10:00:23 -07:00
.buildkite
.github
accounts-bench
archiver
archiver-lib
archiver-utils
banking-bench
bench-exchange
bench-streamer
bench-tps
chacha
chacha-cuda
chacha-sys Security changes (#9923) 2020-05-08 10:00:23 -07:00
ci
clap-utils
cli Add using OutputFormat enum to --sign-only transactions (#9650) 2020-05-06 22:21:48 -06:00
cli-config
client Rpc: add getLargestAccounts endpoint (#9869) 2020-05-04 16:46:10 -07:00
core Security changes (#9923) 2020-05-08 10:00:23 -07:00
crate-features
docs Correct method name 2020-05-06 11:27:55 -07:00
dos
download-utils
faucet
genesis
genesis-programs
gossip
install
keygen
ledger Bump serde_bytes from 0.11.3 to 0.11.4 (#9914) 2020-05-07 23:26:37 -07:00
ledger-tool Eliminate BankForksInfo (#9887) 2020-05-06 08:24:59 -07:00
local-cluster Repair alternate versions of dead slots (#9805) 2020-05-05 14:07:21 -07:00
log-analyzer
logger
measure
merkle-tree
metrics Add metrics for logging time taken in replaystage steps (#9933) 2020-05-08 03:46:29 -07:00
multinode-demo
net
net-shaper
net-utils
perf Re-enable gpu sigverify (#9870) 2020-05-06 15:44:55 -07:00
programs Bump libloading from 0.6.1 to 0.6.2 (#9895) 2020-05-06 08:19:39 -07:00
ramp-tps
rayon-threadlimit
remote-wallet
runtime Include account.owner into account hash (#9917) 2020-05-07 13:01:11 -07:00
scripts
sdk
sdk-c Bump cbindgen from 0.14.1 to 0.14.2 (#9900) 2020-05-06 09:07:57 -07:00
stake-accounts Speed up setting lockups (#9849) 2020-05-04 13:05:04 -06:00
stake-monitor
streamer
sys-tuner
system-test Limit performance testcases to 40k TPS client (#9906) 2020-05-06 21:36:13 -06:00
transaction-status
upload-perf
validator Security changes (#9923) 2020-05-08 10:00:23 -07:00
vote-signer
watchtower
.clippy.toml
.codecov.yml
.gitbook.yaml
.gitignore
.mergify.yml
.travis.yml
CONTRIBUTING.md
Cargo.lock Bump serde_bytes from 0.11.3 to 0.11.4 (#9914) 2020-05-07 23:26:37 -07:00
Cargo.toml
LICENSE
README.md
RELEASE.md
fetch-perf-libs.sh Re-enable gpu sigverify (#9870) 2020-05-06 15:44:55 -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.