Go to file
Leo 8bbc0f1a75 Remove Git LFS 2022-09-19 16:21:37 +02:00
.github
cmd shred: improve DataShredsToEntries performance 2022-09-19 13:46:29 +02:00
fixtures Remove Git LFS 2022-09-19 16:21:37 +02:00
pkg shred: improve DataShredsToEntries performance 2022-09-19 13:46:29 +02:00
proto
python_client
queries
schema
third_party
web
.gitattributes Remove Git LFS 2022-09-19 16:21:37 +02:00
.gitignore gitignore: add missing newline to EOF 2022-09-15 09:45:53 -05:00
LICENSE
README.md Be a little more explicit about lack of warranties 2022-09-15 20:30:36 +02:00
buf.gen.yaml
generate.sh
go.mod shred: improve DataShredsToEntries performance 2022-09-19 13:46:29 +02:00
go.sum shred: improve DataShredsToEntries performance 2022-09-19 13:46:29 +02:00

README.md

radiance ☀️

Highly experimental Solana Go playground monorepo.

⚠️ No guarantees, no support, quite possibly no documentation either. Ignore this repo unless you're ready to read and understand the code. ⚠️

Available tooling

  • solrays, an RPC proxy that exports call latency of a Solana RPC node.

Building

In order to build the available tooling, the following is required:

  • Go 1.18+
  • Run
    ./generate.sh
    

Building all the tools should be as easy as:

:; go build -o _bin/ github.com/certusone/radiance/cmd/...

All binaries will be placed in _bin/ folder.

Or if you're just looking for a single tool, say solrays:

:; go build -o _bin/ github.com/certusone/radiance/cmd/solrays

NOTE: Mind yourself, some of the tools here tools may depend on C code (and CGO), and other shenanigans, so you may have to adapt accordingly.