An open API service indexing awesome lists of open source software.

https://github.com/solana-developers/verified-program


https://github.com/solana-developers/verified-program

Last synced: 2 months ago
JSON representation

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