Go to file
dependabot[bot] 649dcac2ec
chore:(deps): bump @solana/web3.js from 0.71.11 to 0.71.14 in /explorer (#12088)
Bumps [@solana/web3.js](https://github.com/solana-labs/solana-web3.js) from 0.71.11 to 0.71.14.
- [Release notes](https://github.com/solana-labs/solana-web3.js/releases)
- [Commits](https://github.com/solana-labs/solana-web3.js/compare/v0.71.11...v0.71.14)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-09-07 08:07:27 +00: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 Switch account hashing to blake3 (#11969) 2020-09-02 00:37:36 -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 Update CI to Rust 1.46.0 2020-09-02 15:24:38 -07:00
clap-utils
cli Add block command 2020-09-06 12:45:32 -07:00
cli-config
client Add first-available-block command 2020-09-06 12:45:32 -07:00
core Fix signaure subscription panic (#12077) 2020-09-06 14:33:12 +08:00
crate-features
docs Correct minor typo in turbine-block-propagation.md (#12073) 2020-09-05 18:03:53 -06:00
dos Update to rayon 1.4.0 (#11898) 2020-08-28 21:00:11 -07:00
download-utils
explorer chore:(deps): bump @solana/web3.js from 0.71.11 to 0.71.14 in /explorer (#12088) 2020-09-07 08:07:27 +00: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
install
keygen
ledger Remove dead code 2020-09-04 16:01:49 -07:00
ledger-tool Add exit flag for bigtable upload operations 2020-09-04 16:01:49 -07:00
local-cluster Revert signature-notification format change (#12032) 2020-09-03 18:14:45 -06: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 Switch account hashing to blake3 (#11969) 2020-09-02 00:37:36 -07:00
ramp-tps
rayon-threadlimit
remote-wallet Don't query modern Ledger wallet app version with deprecated payload size 2020-09-03 20:51:33 +00:00
runtime Compress snapshot archive within the validator to reduce system dependencies 2020-09-06 22:48:12 -07:00
scripts
sdk Clarify comments and names in inflation code (#11977) 2020-09-03 14:15:12 +09:00
stake-accounts
stake-monitor
stake-o-matic Add missing testnet pubkeys and remove duplicates (#12000) 2020-09-02 20:19:09 +00:00
storage-bigtable Bigtable bug fixes (#12058) 2020-09-04 20:29:11 -06:00
streamer
sys-tuner
system-test
tokens Add lockups via solana-tokens (#11782) 2020-08-24 15:18:35 -06:00
transaction-status Update token amounts in parsed instructions to retain full precision (#12020) 2020-09-03 11:34:52 -06:00
upload-perf
validator Default snapshot compression to zstd instead of bzip2 for quicker snapshot generation 2020-09-06 22:48:12 -07:00
version
vote-signer
watchtower
web3.js fix: use heartbeat to keep ws connection alive (#12079) 2020-09-07 10:24:16 +08:00
.clippy.toml
.codecov.yml
.gitignore
.mergify.yml
.travis.yml
CONTRIBUTING.md
Cargo.lock Cargo.lock 2020-09-04 16:01:49 -07:00
Cargo.toml
LICENSE
README.md
RELEASE.md
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.