Go to file
Tyera Eulberg dd78184f8f
Cli: Add solana supply command; hide total-supply (#9956)
* Add cli supply command; hide total-supply

* Use print-accounts arg instead of verbose
2020-05-10 12:05:14 -06:00
.buildkite
.github
accounts-bench
archiver
archiver-lib Remove RpcClient code duplication (#9952) 2020-05-10 08:51:53 -07:00
archiver-utils
banking-bench
bench-exchange
bench-streamer
bench-tps Reenable move (#9841) 2020-05-01 12:51:29 -07:00
chacha
chacha-cuda
chacha-sys Security changes (#9923) 2020-05-08 10:00:23 -07:00
ci Reenable move (#9841) 2020-05-01 12:51:29 -07:00
clap-utils Add clap.rs default for --commitment (#9859) 2020-05-02 13:06:35 -07:00
cli Cli: Add solana supply command; hide total-supply (#9956) 2020-05-10 12:05:14 -06:00
cli-config
client Cli: Add solana supply command; hide total-supply (#9956) 2020-05-10 12:05:14 -06:00
core Rpc: Add getCirculatingSupply endpoint, redux (#9953) 2020-05-09 12:05:29 -06:00
crate-features
docs Rpc: Add getCirculatingSupply endpoint, redux (#9953) 2020-05-09 12:05:29 -06:00
dos
download-utils
faucet
genesis Pass around --max-genesis-archive-unpacked-size (#9161) 2020-04-29 18:53:34 -07:00
genesis-programs
gossip
install send_and_confirm_transaction() no longer needs a keypair (#9950) 2020-05-09 09:06:32 -07:00
keygen
ledger Bump serde_bytes from 0.11.3 to 0.11.4 (#9914) 2020-05-07 23:26:37 -07:00
ledger-tool Maintain sysvar balances for consistent market cap. (#9936) 2020-05-09 02:42:32 +09:00
local-cluster Repair alternate versions of dead slots (#9805) 2020-05-05 14:07:21 -07:00
log-analyzer
logger Upgrade to Rust 1.43.0 (#9754) 2020-04-29 18:02:05 -07:00
measure
merkle-tree
metrics Add metrics for logging time taken in replaystage steps (#9933) 2020-05-08 03:46:29 -07:00
multinode-demo Pass around --max-genesis-archive-unpacked-size (#9161) 2020-04-29 18:53:34 -07:00
net Pass around --max-genesis-archive-unpacked-size (#9161) 2020-04-29 18:53:34 -07:00
net-shaper
net-utils
perf Re-enable gpu sigverify (#9870) 2020-05-06 15:44:55 -07:00
programs Pull in hardened BPF virtual machine (#9931) 2020-05-08 12:37:04 -07:00
ramp-tps send_and_confirm_transaction() no longer needs a keypair (#9950) 2020-05-09 09:06:32 -07:00
rayon-threadlimit
remote-wallet
runtime Rpc: Add getCirculatingSupply endpoint, redux (#9953) 2020-05-09 12:05:29 -06:00
scripts Reenable move lock files (#9844) 2020-05-01 17:12:51 -07:00
sdk Rpc: Add getCirculatingSupply endpoint, redux (#9953) 2020-05-09 12:05:29 -06:00
sdk-c Bump cbindgen from 0.14.1 to 0.14.2 (#9900) 2020-05-06 09:07:57 -07:00
stake-accounts send_and_confirm_transaction() no longer needs a keypair (#9950) 2020-05-09 09:06:32 -07:00
stake-monitor Add delay to keep RPC traffic down on error 2020-05-01 10:32:46 -07:00
streamer
sys-tuner
system-test Reduce stability testcase throughput to 40k TPS (#9959) 2020-05-10 08:34:47 -07:00
transaction-status
upload-perf
validator Security changes (#9923) 2020-05-08 10:00:23 -07:00
vote-signer
watchtower Watchtower can now emit a notifiation on all non-vote transactions (#9845) 2020-05-01 17:48:22 -07:00
.clippy.toml
.codecov.yml
.gitbook.yaml
.gitignore
.mergify.yml
.travis.yml
CONTRIBUTING.md
Cargo.lock Pull in hardened BPF virtual machine (#9931) 2020-05-08 12:37:04 -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.