* Project import generated by Copybara. GitOrigin-RevId: a54f824c1816bcedee95284afd276aaa37a98d80 * fix * chore: Update pnpm lockfile --------- Co-authored-by: Copybara <copybara@example.com> Co-authored-by: gallynaut <gallynaut@users.noreply.github.com> |
||
---|---|---|
.. | ||
src | ||
tests | ||
.gitignore | ||
Anchor.toml | ||
Cargo.lock | ||
Cargo.toml | ||
README.md | ||
Xargo.toml | ||
package.json | ||
tsconfig.json |
README.md
switchboard-feed-client
An example program written in Anchor demonstrating how to deserialize and read a Switchboard VRF account on Solana.
Usage
Build the example program
anchor build
Get your program ID and update Anchor.toml
and src/lib.rs
with your pubkey
export ANCHOR_VRF_PARSER_PUBKEY=$(solana-keygen pubkey target/deploy/anchor_vrf_parser-keypair.json)
sed -i '' s/4hfkS97f5P6zauWeJF5dcZDFaJwYwbMPvKrANVAuKN4p/"$ANCHOR_VRF_PARSER_PUBKEY"/g Anchor.toml
sed -i '' s/4hfkS97f5P6zauWeJF5dcZDFaJwYwbMPvKrANVAuKN4p/"$ANCHOR_VRF_PARSER_PUBKEY"/g src/lib.rs
Then run Anchor test
anchor test