|
||
---|---|---|
.. | ||
src | ||
tests | ||
.gitignore | ||
Anchor.toml | ||
Cargo.toml | ||
README.md | ||
Xargo.toml | ||
package.json | ||
tsconfig.json |
README.md
anchor-buffer-parser
An example program written in Anchor demonstrating how to deserialize and read a Switchboard buffer relayer 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_BUFFER_PARSER_PUBKEY=$(solana-keygen pubkey target/deploy/anchor_buffer_parser-keypair.json)
sed -i '' s/96punQGZDShZGkzsBa3SsfTxfUnwu4XGpzXbhF7NTgcP/"$ANCHOR_BUFFER_PARSER_PUBKEY"/g Anchor.toml
sed -i '' s/96punQGZDShZGkzsBa3SsfTxfUnwu4XGpzXbhF7NTgcP/"$ANCHOR_BUFFER_PARSER_PUBKEY"/g src/lib.rs
Then run Anchor test
anchor test