Go to file
Richard Patel bea73d4542 gitignore: add Bazel 2022-10-29 20:18:45 +02:00
cmd radiance: add car dump command 2022-10-29 15:00:50 +02:00
fixtures
pkg cargen: add unit test 2022-10-29 14:35:09 +02:00
proto
python_client
queries
schema
third_party
web
.bazelversion bazel: add Bazel v5.3.2, rules_go v0.35.0 with Go v1.19.2, Gazelle v0.28.0 2022-10-29 15:56:41 +02:00
.gitattributes
.gitignore gitignore: add Bazel 2022-10-29 20:18:45 +02:00
.gitmodules
BUILD bazel: add initial Gazelle integration 2022-10-29 20:18:45 +02:00
LICENSE
README.md
WORKSPACE bazel: add initial Gazelle integration 2022-10-29 20:18:45 +02:00
buf.gen.yaml
generate.sh
go.mod go mod tidy 2022-10-29 20:18:45 +02:00
go.sum

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

  • radiance
    • blockstore: Solana validator RocksDB tool
      • dumpshreds: Dump raw shreds from RocksDB
      • verifydata: Check data integrity (parse every tx)
      • yaml: Dump shreds, entries, txs as YAML
    • car: IPLD Content Addressable Archives
      • create: Create replayable CAR archives from validator RocksDB
  • solrays, an RPC proxy that exports call latency of a Solana RPC node.

Building

Radiance commands can be built with standard Go tooling (Go >= 1.19 is required), for example:

go run go.firedancer.io/radiance/cmd/radiance

By default, commands that require extra dependencies (e.g. RocksDB) are disabled.

With RocksDB

Radiance tools that require direct access to the blockstore (such as blockstore and car) require a working C toolchain and extra compiler arguments to link against rocksdb.

You'll need a working C compiler toolchain as well as prerequisites listed by grocksdb and RocksDB itself.

For RHEL/Centos/Fedora:

dnf -y install "@Development Tools" gflags-devel snappy snappy-devel zlib zlib-devel bzip2 bzip2-devel lz4-devel libzstd-devel

First, check out the rocksdb submodule:

git submodule update --init

Then, build the rocksdb C library:

cd third_party/rocksdb
make -j $(nproc) static_lib
cd -

Finally, build the radiance command:

export CGO_CFLAGS="-I$(pwd)/third_party/rocksdb/include"
export CGO_LDFLAGS="-L$(pwd)/third_party/rocksdb"

go run -tags rocksdb go.firedancer.io/radiance/cmd/radiance