sbv2-solana/examples/feeds/01_feed_client
gallynaut 7feef95406
chore: pull monorepo changes (#170)
* 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>
2023-11-28 10:43:30 -07:00
..
src restructure 2023-06-16 14:37:45 -06:00
tests add new examples 2023-06-19 11:26:21 -06:00
.gitignore restructure 2023-06-16 14:37:45 -06:00
Anchor.toml fixed examples 2023-06-28 15:04:39 -06:00
Cargo.lock chore: pull monorepo changes (#115) 2023-08-07 11:35:30 -06:00
Cargo.toml chore: pull monorepo changes (#116) 2023-08-11 09:53:19 -06:00
README.md restructure 2023-06-16 14:37:45 -06:00
Xargo.toml restructure 2023-06-16 14:37:45 -06:00
package.json chore: pull monorepo changes (#170) 2023-11-28 10:43:30 -07:00
tsconfig.json chore: pull monorepo changes (#115) 2023-08-07 11:35:30 -06:00

README.md

Switchboard Logo

switchboard-feed-client

An example program written in Anchor demonstrating how to deserialize and read a Switchboard VRF account on Solana.

Anchor Test Status

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