Go to file
HaoranYi 389bedda5e
Refactor epoch reward 4 (#27261)
* refactor: extract store_stake_accounts fn

* refactor: extract store_vote_account fn

* refactor: extract reward history update fn

* remove avg point value from pay_valiator fn. not used

* clippy: slice

* clippy: slice

* remove abort() from test-validator (#27124)

* chore: bump bytes from 1.1.0 to 1.2.1 (#27172)

* chore: bump bytes from 1.1.0 to 1.2.1

Bumps [bytes](https://github.com/tokio-rs/bytes) from 1.1.0 to 1.2.1.
- [Release notes](https://github.com/tokio-rs/bytes/releases)
- [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md)
- [Commits](https://github.com/tokio-rs/bytes/compare/v1.1.0...v1.2.1)

---
updated-dependencies:
- dependency-name: bytes
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

* [auto-commit] Update all Cargo lock files

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com>

* Share Ancestors API get with contains_key (#27161)

consolidate similar fns

* Rename to `MAX_BLOCK_ACCOUNTS_DATA_SIZE_DELTA` (#27175)

* chore: bump libc from 0.2.129 to 0.2.131 (#27162)

* chore: bump libc from 0.2.129 to 0.2.131

Bumps [libc](https://github.com/rust-lang/libc) from 0.2.129 to 0.2.131.
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Commits](https://github.com/rust-lang/libc/compare/0.2.129...0.2.131)

---
updated-dependencies:
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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

* [auto-commit] Update all Cargo lock files

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com>

* reverts wide fanout in broadcast when the root node is down (#26359)

A change included in
https://github.com/solana-labs/solana/pull/20480
was that when the root node in turbine broadcast tree is down, the
leader will broadcast the shred to all nodes in the first layer.
The intention was to mitigate the impact of dead nodes on shreds
propagation, because if the root node is down, then the entire cluster
will miss out the shred.
On the other hand, if x% of stake is down, this will cause 200*x% + 1
packets/shreds ratio at the broadcast stage which might contribute to
line-rate saturation and packet drop.
To avoid this bandwidth saturation issue, this commit reverts that logic
and always broadcasts shreds from the leader only to the root node.
As before we rely on erasure codes to recover shreds lost due to staked
nodes being offline.

* add getTokenLargestAccounts rpc method to rust client (#26840)

* add get token largest accounts rpc call to client

* split to include with commitment

* Bump spl-token-2022 (#27181)

* Bump token-2022 to 0.4.3

* Allow cargo to bump stuff to v1.11.5

* VoteProgram.safeWithdraw function to safeguard against accidental vote account closures (#26586)

feat: safe withdraw function

Co-authored-by: aschonfeld <andrew@proofofalpha.io>

* chore: bump futures from 0.3.21 to 0.3.23 (#27182)

* chore: bump futures from 0.3.21 to 0.3.23

Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.21 to 0.3.23.
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.21...0.3.23)

---
updated-dependencies:
- dependency-name: futures
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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

* [auto-commit] Update all Cargo lock files

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com>

* chore: bump nix from 0.24.2 to 0.25.0 (#27179)

* chore: bump nix from 0.24.2 to 0.25.0

Bumps [nix](https://github.com/nix-rust/nix) from 0.24.2 to 0.25.0.
- [Release notes](https://github.com/nix-rust/nix/releases)
- [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nix-rust/nix/compare/v0.24.2...v0.25.0)

---
updated-dependencies:
- dependency-name: nix
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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

* [auto-commit] Update all Cargo lock files

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com>

* Parse ConfidentialTransaction instructions (#26825)

Parse ConfidentialTransfer instructions

* snapshots: serialize version file first (#27192)

serialize version file first

* serialize incremental_snapshot_hash (#26839)

* serialize incremental_snapshot_hash

* pr feedback

* derives Error trait for ClusterInfoError and core::result::Error (#27208)

* Add clean_accounts_for_tests() (#27200)

* Rust v1.63.0 (#27148)

* Upgrade to Rust v1.63.0

* Add nightly_clippy_allows

* Resolve some new clippy nightly lints

* Increase QUIC packets completion timeout

Co-authored-by: Michael Vines <mvines@gmail.com>

* docs: updated "transaction fees" page (#26861)

* docs: transaction fees, compute units, compute budget

* docs: added messages definition

* Revert "docs: added messages definition"

This reverts commit 3c56156dfaaf17158c5eafbc5877080a83607a06.

* docs: added messages definition

* Update docs/src/transaction_fees.md

Co-authored-by: Jacob Creech <82475023+jacobcreech@users.noreply.github.com>

* fix: updates from feedback

Co-authored-by: Jacob Creech <82475023+jacobcreech@users.noreply.github.com>

* sdk: Fix args after "--" in build-bpf and test-bpf (#27221)

* Flaky Unit Test test_rpc_subscriptions (#27214)

Increase unit test timeout from 5 seconds to 10 seconds

* chore: only buildkite pipelines use sccache in docker-run.sh (#27204)

chore: only buildkite ci use sccache

* clean feature: `prevent_calling_precompiles_as_programs` (#27100)

* clean feature: prevent_calling_precompiles_as_programs

* fix tests

* fix test

* remove comment

* fix test

* feedback

* Add get_account_with_commitment to BenchTpsClient (#27176)

* Fix a corner-case panic in get_entries_in_data_block() (#27195)

#### Problem
get_entries_in_data_block() panics when there's inconsistency between
slot_meta and data_shred.

However, as we don't lock on reads, reading across multiple column families is
not atomic (especially for older slots) and thus does not guarantee consistency
as the background cleanup service could purge the slot in the middle.  Such
panic was reported in #26980 when the validator serves a high load of RPC calls.

#### Summary of Changes
This PR makes get_entries_in_data_block() panic only when the inconsistency
between slot-meta and data-shred happens on a slot older than lowest_cleanup_slot.

* Verify snapshot slot deltas (#26666)

* store-tool: log lamports for each account (#27168)

log lamports for each account

* add an assert for a debug feature to avoid wasted time (#27210)

* remove redundant call that bumps age to future (#27215)

* Use from_secs api to create duration (#27222)

use from_secs api to create duration

* reorder slot # in debug hash data path (#27217)

* create helper fn for clarity (#27216)

* Verifying snapshot bank must always specify the snapshot slot (#27234)

* Remove `Bank::ensure_no_storage_rewards_pool()` (#26468)

* cli: Add subcommands for address lookup tables (#27123)

* cli: Add subcommand for creating address lookup tables

* cli: Add additional subcommands for address lookup tables

* short commands

* adds hash domain to ping-pong protocol (#27193)

In order to maintain backward compatibility, for now the responding node
will hash the token both with and without domain so that the other node
will accept the response regardless of its upgrade status.
Once the cluster has upgraded to the new code, we will remove the legacy
domain = false case.

* Revert "Rust v1.63.0 (#27148)" (#27245)

This reverts commit a2e7bdf50a.

* correct double negation (#27240)

* Enable QUIC client by default. Add arg to disable QUIC client. (Forward port #26927) (#27194)

Enable QUIC client by default. Add arg to disable QUIC client.

* Enable QUIC client by default. Add arg to disable QUIC client.
* Deprecate --disable-quic-servers arg
* Add #[ignore] annotation to failing tests

* slots_connected: check if the range is connected (>= ending_slot) (#27152)

* create-snapshot check if snapshot slot exists (#27153)

* Add Bank::clean_accounts_for_tests() (#27209)

* Call `AccountsDb::shrink_all_slots()` directly (#27235)

* add ed25519_program to built-in instruction cost list (#27199)

* add ed25519_program to built-in instruction cost list

* Remove unnecessary and stale comment

* simple refactorings to disk idx (#27238)

* add _inclusive for clarity (#27239)

* eliminate unnecessary ZERO_RAW_LAMPORTS_SENTINEL (#27218)

* make test code more clear (#27260)

* banking stage: actually aggregate tracer packet stats (#27118)

* aggregated_tracer_packet_stats_option was alwasys None

* Actually accumulate tracer packet stats

* Refactor epoch reward 1 (#27253)

* refactor: extract store_stake_accounts fn

* clippy: slice

Co-authored-by: haoran <haoran@mbook>

* recovers merkle shreds from erasure codes (#27136)

The commit
* Identifies Merkle shreds when recovering from erasure codes and
  dispatches specialized code to reconstruct shreds.
* Coding shred headers are added to recovered erasure shards.
* Merkle tree is reconstructed for the erasure batch and added to
  recovered shreds.
* The common signature (for the root of Merkle tree) is attached to all
  recovered shreds.

* Simplify `Bank::clean_accounts()` by removing params (#27254)

* Account files remove (#26910)

* Create a new function cleanup_accounts_paths, a trivial change

* Remove account files asynchronously

* Update and simplify the implementation after the validator test runs.

* Fixes after testing on the dev device

* Discard tokio.  Use thread instead

* Fix comments format

* Fix config type to pass the github test

* Fix failed tests.  Handle the case of non-existing path

* Final cleanup, addressing the review comments
Avoided OsString.
Made the function more generic with "impl AsRef<Path>"

Co-authored-by: Jeff Washington <jeff.washington@solana.com>

* Refactor: Flattens `TransactionContext::instruction_trace` (#27109)

* Flattens TransactionContext::instruction_trace.

* Stop the search at transaction level.

* Renames get_instruction_context_at => get_instruction_context_at_nesting_level.

* Removes TransactionContext::get_instruction_trace().
Adds TransactionContext::get_instruction_trace_length() and TransactionContext::get_instruction_context_at_index().

* Have TransactionContext::instruction_accounts_lamport_sum() accept an iterator instead of a slice.

* Removes instruction_trace from ExecutionRecord.

* make InstructionContext::new() private

* Parallel insertion of dirty store keys during clean (#27058)

parallelize dirty store key insertion

* Refactor epoch reward 2 (#27257)

* refactor: extract store_stake_accounts fn

* refactor: extract store_vote_account fn

* clippy: slice

* clippy: slice

* fix merge error

Co-authored-by: haoran <haoran@mbook>

* Standardize thread names

Tenets:
1. Limit thread names to 15 characters
2. Prefix all Solana-controlled threads with "sol"
3. Use Camel case. It's more character dense than Snake or Kebab case

* cleanup comment on filter_zero_lamport_clean_for_incremental_snapshots (#27273)

* remove inaccurate log (#27255)

* patches metrics for invalid cached vote/stake accounts (#27266)

patches invalid cached vote/stake accounts metrics

Invalid cached vote accounts is overcounting actual mismatches, and
invalid cached stake accounts is undercounting.

* Refactor epoch reward 3 (#27259)

* refactor: extract store_stake_accounts fn

* refactor: extract store_vote_account fn

* refactor: extract reward history update fn

* clippy: slice

* clippy: slice

Co-authored-by: haoran <haoran@mbook>

* fix merges

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: haoran <haoran@mbook>
Co-authored-by: Jeff Biseda <jbiseda@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com>
Co-authored-by: Brooks Prumo <brooks@solana.com>
Co-authored-by: behzad nouri <behzadnouri@gmail.com>
Co-authored-by: AJ Taylor <anthonjtaylor@gmail.com>
Co-authored-by: Tyera Eulberg <tyera@solana.com>
Co-authored-by: Andrew Schonfeld <andrew.schonfeld1@gmail.com>
Co-authored-by: aschonfeld <andrew@proofofalpha.io>
Co-authored-by: apfitzge <apfitzge@users.noreply.github.com>
Co-authored-by: Jeff Washington (jwash) <wash678@gmail.com>
Co-authored-by: Brennan Watt <brennan.watt@solana.com>
Co-authored-by: Michael Vines <mvines@gmail.com>
Co-authored-by: Nick Frostbutter <75431177+nickfrosty@users.noreply.github.com>
Co-authored-by: Jacob Creech <82475023+jacobcreech@users.noreply.github.com>
Co-authored-by: Jon Cinque <jon.cinque@gmail.com>
Co-authored-by: Yihau Chen <a122092487@gmail.com>
Co-authored-by: Justin Starry <justin@solana.com>
Co-authored-by: kirill lykov <kirill.lykov@solana.com>
Co-authored-by: Yueh-Hsuan Chiang <93241502+yhchiang-sol@users.noreply.github.com>
Co-authored-by: leonardkulms <42893075+leonardkulms@users.noreply.github.com>
Co-authored-by: Will Hickey <will.hickey@solana.com>
Co-authored-by: Tao Zhu <82401714+taozhu-chicago@users.noreply.github.com>
Co-authored-by: Xiang Zhu <xzhu70@gmail.com>
Co-authored-by: Jeff Washington <jeff.washington@solana.com>
Co-authored-by: Alexander Meißner <AlexanderMeissner@gmx.net>
2022-08-22 08:19:50 -05:00
.buildkite chore: upload test results to buildkite and datadog (#27139) 2022-08-16 13:20:29 +08:00
.github Fix windows release builds (#26986) 2022-08-08 09:42:12 -06:00
account-decoder Revert "Rust v1.63.0 (#27148)" (#27245) 2022-08-19 09:19:44 +01:00
accounts-bench Add clean_accounts_for_tests() (#27200) 2022-08-17 18:45:59 -04:00
accounts-cluster-bench Bump version to v1.12 (#26967) 2022-08-06 13:20:30 -05:00
banking-bench Enable QUIC client by default. Add arg to disable QUIC client. (Forward port #26927) (#27194) 2022-08-19 09:15:15 -05:00
banks-client Bump version to v1.12 (#26967) 2022-08-06 13:20:30 -05:00
banks-interface chore: bump serde from 1.0.138 to 1.0.143 (#27015) 2022-08-10 05:08:43 +00:00
banks-server Standardize thread names 2022-08-20 07:49:39 -07:00
bench-streamer Bump version to v1.12 (#26967) 2022-08-06 13:20:30 -05:00
bench-tps Enable QUIC client by default. Add arg to disable QUIC client. (Forward port #26927) (#27194) 2022-08-19 09:15:15 -05:00
bloom chore: bump serde from 1.0.138 to 1.0.143 (#27015) 2022-08-10 05:08:43 +00:00
bucket_map Bump version to v1.12 (#26967) 2022-08-06 13:20:30 -05:00
ci Revert "Rust v1.63.0 (#27148)" (#27245) 2022-08-19 09:19:44 +01:00
clap-utils Bump version to v1.12 (#26967) 2022-08-06 13:20:30 -05:00
clap-v3-utils Bump version to v1.12 (#26967) 2022-08-06 13:20:30 -05:00
cli Update `solana deploy` subcommand to warn non-upgradable (#27264) 2022-08-22 11:56:10 +01:00
cli-config chore: bump serde from 1.0.138 to 1.0.143 (#27015) 2022-08-10 05:08:43 +00:00
cli-output cli: Add subcommands for address lookup tables (#27123) 2022-08-18 22:12:53 +01:00
client Standardize thread names 2022-08-20 07:49:39 -07:00
client-test chore: bump serial_test from 0.8.0 to 0.9.0 (#27097) 2022-08-15 15:53:12 -06:00
core Standardize thread names 2022-08-20 07:49:39 -07:00
docs docs: updated "transaction fees" page (#26861) 2022-08-17 21:07:40 -05:00
dos Enable QUIC client by default. Add arg to disable QUIC client. (Forward port #26927) (#27194) 2022-08-19 09:15:15 -05:00
download-utils Bump version to v1.12 (#26967) 2022-08-06 13:20:30 -05:00
entry Standardize thread names 2022-08-20 07:49:39 -07:00
explorer chore:(deps): bump @testing-library/jest-dom from 5.16.1 to 5.16.5 in /explorer (#27131) 2022-08-14 17:13:19 +01:00
faucet chore: bump serde from 1.0.138 to 1.0.143 (#27015) 2022-08-10 05:08:43 +00:00
frozen-abi Revert "Rust v1.63.0 (#27148)" (#27245) 2022-08-19 09:19:44 +01:00
genesis chore: bump serde_json from 1.0.81 to 1.0.83 (#27036) 2022-08-10 09:45:42 -06:00
genesis-utils Bump version to v1.12 (#26967) 2022-08-06 13:20:30 -05:00
geyser-plugin-interface Bump version to v1.12 (#26967) 2022-08-06 13:20:30 -05:00
geyser-plugin-manager Standardize thread names 2022-08-20 07:49:39 -07:00
gossip Standardize thread names 2022-08-20 07:49:39 -07:00
install chore: bump nix from 0.24.2 to 0.25.0 (#27179) 2022-08-16 16:59:18 -06:00
keygen Bump version to v1.12 (#26967) 2022-08-06 13:20:30 -05:00
ledger Standardize thread names 2022-08-20 07:49:39 -07:00
ledger-tool create-snapshot check if snapshot slot exists (#27153) 2022-08-19 09:34:35 -05:00
local-cluster Enable QUIC client by default. Add arg to disable QUIC client. (Forward port #26927) (#27194) 2022-08-19 09:15:15 -05:00
log-analyzer chore: bump serde_json from 1.0.81 to 1.0.83 (#27036) 2022-08-10 09:45:42 -06:00
logger Bump version to v1.12 (#26967) 2022-08-06 13:20:30 -05:00
measure Bump version to v1.12 (#26967) 2022-08-06 13:20:30 -05:00
merkle-root-bench Bump version to v1.12 (#26967) 2022-08-06 13:20:30 -05:00
merkle-tree Bump version to v1.12 (#26967) 2022-08-06 13:20:30 -05:00
metrics Standardize thread names 2022-08-20 07:49:39 -07:00
multinode-demo Enable QUIC client by default. Add arg to disable QUIC client. (Forward port #26927) (#27194) 2022-08-19 09:15:15 -05:00
net Add profile option to net scripts (#25624) 2022-06-21 19:28:15 +02:00
net-shaper chore: bump serde_json from 1.0.81 to 1.0.83 (#27036) 2022-08-10 09:45:42 -06:00
net-utils Standardize thread names 2022-08-20 07:49:39 -07:00
notifier Bump version to v1.12 (#26967) 2022-08-06 13:20:30 -05:00
perf Standardize thread names 2022-08-20 07:49:39 -07:00
poh Standardize thread names 2022-08-20 07:49:39 -07:00
poh-bench Bump version to v1.12 (#26967) 2022-08-06 13:20:30 -05:00
program-runtime Refactor: Flattens `TransactionContext::instruction_trace` (#27109) 2022-08-20 11:20:47 +02:00
program-test Allow overriding the runtime transaction account lock limit (#26948) 2022-08-12 15:07:48 +01:00
programs Refactor: Flattens `TransactionContext::instruction_trace` (#27109) 2022-08-20 11:20:47 +02:00
rayon-threadlimit Bump version to v1.12 (#26967) 2022-08-06 13:20:30 -05:00
rbpf-cli Bumps solana_rbpf to v0.2.32 (#27059) 2022-08-15 16:04:48 +02:00
remote-wallet chore: bump dialoguer from 0.10.1 to 0.10.2 (#27054) 2022-08-10 12:18:19 -06:00
rpc Standardize thread names 2022-08-20 07:49:39 -07:00
rpc-test Flaky Unit Test test_rpc_subscriptions (#27214) 2022-08-17 19:56:57 -07:00
runtime Refactor epoch reward 4 (#27261) 2022-08-22 08:19:50 -05:00
scripts update `scripts/cargo-fmt.sh` to reflect changes in 9425478 2022-07-09 00:38:20 +00:00
sdk Refactor: Flattens `TransactionContext::instruction_trace` (#27109) 2022-08-20 11:20:47 +02:00
send-transaction-service Standardize thread names 2022-08-20 07:49:39 -07:00
stake-accounts Bump version to v1.12 (#26967) 2022-08-06 13:20:30 -05:00
storage-bigtable chore: bump futures from 0.3.21 to 0.3.23 (#27182) 2022-08-16 16:29:45 -06:00
storage-proto chore: bump serde from 1.0.138 to 1.0.143 (#27015) 2022-08-10 05:08:43 +00:00
streamer Standardize thread names 2022-08-20 07:49:39 -07:00
sys-tuner chore: bump nix from 0.24.2 to 0.25.0 (#27179) 2022-08-16 16:59:18 -06:00
system-test chore: update buildkite agents query rule (#26708) 2022-07-21 12:08:48 +08:00
test-validator remove abort() from test-validator (#27124) 2022-08-16 09:34:10 -07:00
tokens chore: bump pickledb from 0.4.1 to 0.5.1 (#25511) 2022-08-08 14:42:47 -06:00
transaction-dos Bump version to v1.12 (#26967) 2022-08-06 13:20:30 -05:00
transaction-status Parse ConfidentialTransaction instructions (#26825) 2022-08-16 20:52:11 -06:00
upload-perf chore: bump serde_json from 1.0.81 to 1.0.83 (#27036) 2022-08-10 09:45:42 -06:00
validator Standardize thread names 2022-08-20 07:49:39 -07:00
version chore: bump serde from 1.0.138 to 1.0.143 (#27015) 2022-08-10 05:08:43 +00:00
watchtower Bump version to v1.12 (#26967) 2022-08-06 13:20:30 -05:00
web3.js VoteProgram.safeWithdraw function to safeguard against accidental vote account closures (#26586) 2022-08-17 00:22:38 +02:00
zk-token-sdk Revert "Rust v1.63.0 (#27148)" (#27245) 2022-08-19 09:19:44 +01:00
.clippy.toml
.codecov.yml
.gitignore Add option to load accounts from file 2021-12-15 11:05:02 -08:00
.mergify.yml restore BackportAssignee definition 2022-08-04 21:28:53 -07:00
.travis.yml closed explorer travis.yml after giving workflow permisssion in github action 2022-01-31 13:39:20 +05:30
CONTRIBUTING.md [docs] Docs sidebar/navbar restructure (#27005) 2022-08-15 21:23:39 -05:00
Cargo.lock recovers merkle shreds from erasure codes (#27136) 2022-08-19 21:07:32 +00:00
Cargo.toml Patch crossbeam-epoch to avoid overhead (#26555) 2022-08-09 21:41:51 +09:00
LICENSE up year in license 2022-02-01 08:29:29 -08:00
README.md update build instruction in readme (#25424) 2022-05-20 21:13:00 +00:00
RELEASE.md Add minor version clean up tasks to release doc (#26954) 2022-08-05 12:27:48 -05:00
SECURITY.md Update SECURITY.md 2022-07-20 01:32:31 +09:00
cargo
cargo-build-bpf Add cargo bpf tools that invoke newer sbf tools and issue deprecation notice 2022-06-03 14:12:42 -07:00
cargo-build-sbf Add cargo bpf tools that invoke newer sbf tools and issue deprecation notice 2022-06-03 14:12:42 -07:00
cargo-test-bpf Add cargo bpf tools that invoke newer sbf tools and issue deprecation notice 2022-06-03 14:12:42 -07:00
cargo-test-sbf Add cargo bpf tools that invoke newer sbf tools and issue deprecation notice 2022-06-03 14:12:42 -07:00
fetch-perf-libs.sh
fetch-spl.sh spl: Bump token to 3.5.0 and ata to 1.1.0 (#26921) 2022-08-05 03:05:31 +02:00
run.sh add some guidance in place of `./run.sh` 2021-09-11 14:49:17 -06:00
rustfmt.toml Add rustfmt.toml and `cargo fmt` (#23238) 2022-02-19 13:32:29 +08:00
test-abi.sh
vercel.json removing the "autoJobCancelation": false 2021-10-07 20:49:58 +05:30

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

When building the master branch, please make sure you are using the latest stable rust version by running:

$ rustup update

When building a specific release branch, you should check the rust version in ci/rust-version.sh and if necessary, install that version by running:

$ rustup install VERSION

Note that if this is not the latest rust version on your machine, cargo commands may require an override in order to use the correct version.

On Linux systems you may need to install libssl-dev, pkg-config, zlib1g-dev, protobuf etc. On Ubuntu:

$ sudo apt-get update
$ sudo apt-get install libssl-dev libudev-dev pkg-config zlib1g-dev llvm clang cmake make libprotobuf-dev protobuf-compiler

2. Download the source code.

$ git clone https://github.com/solana-labs/solana.git
$ cd solana

3. Build.

$ cargo build

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 development cluster

  • devnet - stable public cluster for development accessible via devnet.solana.com. Runs 24/7. Learn more about the public clusters

Benchmarking

First, install the nightly build of rustc. cargo bench requires the 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 Solana Foundation's ("SF") good faith efforts. It is up to the reader to check and validate their accuracy and truthfulness. Furthermore, nothing in this project constitutes a solicitation for investment.

Any content produced by SF or developer resources that SF provides are for educational and inspirational purposes only. SF does not encourage, induce or sanction the deployment, integration or use of any such applications (including the code comprising the Solana blockchain protocol) in violation of applicable laws or regulations and hereby prohibits any such deployment, integration or use. This includes the use of any such applications by the reader (a) in violation of export control or sanctions laws of the United States or any other applicable jurisdiction, (b) if the reader is located in or ordinarily resident in a country or territory subject to comprehensive sanctions administered by the U.S. Office of Foreign Assets Control (OFAC), or (c) if the reader is or is working on behalf of a Specially Designated National (SDN) or a person subject to similar blocking or denied party prohibitions.

The reader should be aware that U.S. export control and sanctions laws prohibit U.S. persons (and other persons that are subject to such laws) from transacting with persons in certain countries and territories or that are on the SDN list. As a project-based primarily on open-source software, it is possible that such sanctioned persons may nevertheless bypass prohibitions, obtain the code comprising the Solana blockchain protocol (or other project code or applications) and deploy, integrate, or otherwise use it. Accordingly, there is a risk to individuals that other persons using the Solana blockchain protocol may be sanctioned persons and that transactions with such persons would be a violation of U.S. export controls and sanctions law. This risk applies to individuals, organizations, and other ecosystem participants that deploy, integrate, or use the Solana blockchain protocol code directly (e.g., as a node operator), and individuals that transact on the Solana blockchain through light clients, third party interfaces, and/or wallet software.