Go to file
carllin 1c1a3f979d
Detect and notify when deserializable shreds are available (#11816)
* Add logic to check for complete data ranges

* Add RPC signature notification

Co-authored-by: Carl <carl@solana.com>
2020-09-01 22:06:06 -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 Detect and notify when deserializable shreds are available (#11816) 2020-09-01 22:06:06 -07:00
banking-bench Update to rayon 1.4.0 (#11898) 2020-08-28 21:00:11 -07:00
banks-client
banks-interface
banks-server
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 fix program test stubs (#11956) 2020-08-31 21:48:16 -07:00
clap-utils
cli Fix use-deprecated-loader arg (#11921) 2020-08-31 08:41:00 +00:00
cli-config
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 explorer: 11938 display owner in token distribution table (#11953) 2020-09-01 09:21:47 -07:00
faucet
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
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 Add BPF test program instruction monitoring (#11984) 2020-09-01 17:25:55 -07:00
ramp-tps
rayon-threadlimit
remote-wallet
runtime Ensure that the spl-token 2 native mint account is owned by the spl-token 2 program. 2020-09-01 17:09:36 +00:00
scripts
sdk fix program test stubs (#11956) 2020-08-31 21:48:16 -07:00
stake-accounts
stake-monitor
stake-o-matic Update validator_list.rs 2020-09-01 18:37:20 -06:00
storage-bigtable Get index (#11694) 2020-08-18 17:24:25 +00:00
streamer
sys-tuner
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
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
Cargo.lock Bump spl-token version 2020-08-29 03:20:38 -06:00
Cargo.toml
LICENSE
README.md
RELEASE.md Remove release documentation documentation (#11090) 2020-07-15 20:55:02 -06:00
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.