https://github.com/solana-developers/verified-program
https://github.com/solana-developers/verified-program
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/solana-developers/verified-program
- Owner: solana-developers
- Created: 2024-11-14T11:37:25.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-15T20:43:42.000Z (over 1 year ago)
- Last Synced: 2025-06-12T06:08:17.026Z (about 1 year ago)
- Language: Rust
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This program is deployed and verified at: FWEYpBAf9WsemQiNbAewhyESfR38GBBHLrCaU3MpEKWv
Verify command:
```bash
solana-verify verify-from-repo https://github.com/solana-developers/verified-program --program-id FWEYpBAf9WsemQiNbAewhyESfR38GBBHLrCaU3MpEKWv --mount-path waffle
```
Notice how the program is in the `waffle` directory and the workspace in the root `Cargo.toml` has a member `waffle` that points to the program.
Also it's important that the library name in the Cargo.toml is `waffle` and the program name is `waffle.so`
The verify-from-repo command then uses the `--mount-path` flag to specify the directory where the program is located.
Find the program in the Solana Explorer here:
https://explorer.solana.com/address/FWEYpBAf9WsemQiNbAewhyESfR38GBBHLrCaU3MpEKWv?cluster=mainnet
Find the verify docs here:
https://solana.com/developers/guides/advanced/verified-builds
And the code here:
https://github.com/Ellipsis-Labs/solana-verifiable-build