Go to file
dependabot[bot] 46adc5e1d9
Bump prettier from 2.0.2 to 2.0.5 in /token/js (#98)
Bumps [prettier](https://github.com/prettier/prettier) from 2.0.2 to 2.0.5.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/master/CHANGELOG.md)
- [Commits](https://github.com/prettier/prettier/compare/2.0.2...2.0.5)

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

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-07-08 18:12:25 +08:00
.github Add dependabot.yml (#97) 2020-07-08 17:06:19 +08:00
ci Fix automation (#81) 2020-07-07 02:09:19 -07:00
memo Memo Cargo.lock 2020-07-01 12:02:11 -06:00
token Bump prettier from 2.0.2 to 2.0.5 in /token/js (#98) 2020-07-08 18:12:25 +08:00
token-swap Bump eslint-loader from 3.0.4 to 4.0.2 in /token-swap/js (#96) 2020-07-08 18:12:15 +08:00
.gitignore Consolidate .gitignore (#80) 2020-07-06 21:38:18 -07:00
.mergify.yml Remove strict from mergify rebase rule (#59) 2020-06-24 15:36:13 -07:00
.travis.yml Fix automation (#81) 2020-07-07 02:09:19 -07:00
LICENSE Update contributors (#42) 2020-06-17 14:12:46 -07:00
README.md Update README.md 2020-06-24 10:56:25 -07:00
bpf-sdk-install.sh Bump to Solana v1.2.3 and Solana-web3.js v0.60.0 (#46) 2020-06-18 11:02:42 -07:00
do.sh Nit: formatting (#61) 2020-06-26 09:05:29 -07:00
package-lock.json Add rustdocs (#39) 2020-06-17 11:25:19 -07:00

README.md

Build status

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>