@ily-validator/solc 5.2.5 → 5.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -0
- package/dist/index.js +142 -142
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -84,6 +84,20 @@ solc m
|
|
|
84
84
|
|
|
85
85
|
※`solc monitor` does not work until the snapshot download is complete.
|
|
86
86
|
|
|
87
|
+
## Build agave-validator from source
|
|
88
|
+
|
|
89
|
+
If you need to compile the validator yourself, `solc build agave` will clone the
|
|
90
|
+
Agave repository, check out the desired tag, run `cargo build --release --bin agave-validator`,
|
|
91
|
+
and place the resulting binary under `~/.local/bin/agave-validator` (the output path is configurable via `-o`).
|
|
92
|
+
Example:
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
solc build agave --tag v3.0.10
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
You can also override the binary that `solc` uses at runtime by exporting
|
|
99
|
+
`SOLC_SOLANA_CLI=/full/path/to/solana-validator`.
|
|
100
|
+
|
|
87
101
|
## solc setup Options
|
|
88
102
|
|
|
89
103
|
solc setup command has the following options:
|