Bumps [webpack-cli](https://github.com/webpack/webpack-cli) from 3.3.11 to 3.3.12. - [Release notes](https://github.com/webpack/webpack-cli/releases) - [Changelog](https://github.com/webpack/webpack-cli/blob/v3.3.12/CHANGELOG.md) - [Commits](https://github.com/webpack/webpack-cli/compare/v3.3.11...v3.3.12) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
---|---|---|
.github | ||
ci | ||
memo | ||
token | ||
token-swap | ||
.gitignore | ||
.mergify.yml | ||
.travis.yml | ||
LICENSE | ||
README.md | ||
bpf-sdk-install.sh | ||
do.sh | ||
package-lock.json |
README.md
Solana Program Library
The Solana Program Library (SPL) is a collection of on-chain programs targeting the Sealevel parallel runtime. These programs are tested against Solana's implementation of Sealevel, solana-runtime, and deployed to its mainnet. As others implement Sealevel, we will graciously accept patches to ensure the programs here are portable across all implementations.
Building
These programs cannot be built directly via cargo and instead require the build scripts located in Solana's BPF-SDK.
Download or update the BPF-SDK by running:
$ ./do.sh update
To build all programs, run:
$ ./do.sh build
Or choose a specific program:
$ ./do.sh build <program>
Testing
Unit tests contained within all projects can be built via:
$ ./do.sh test
Or:
$ ./do.sh test <program>
End-to-end testing may be performed via the per-project .js bindings. See the token program's js project for an example.
Clippy
Clippy is also supported via:
$ ./do.sh clippy
Or:
$ ./do.sh clippy <program>