Crates.io | switchboard-solana-macros-temp |
lib.rs | switchboard-solana-macros-temp |
version | 0.2.3 |
source | src |
created_at | 2023-11-14 12:48:28.115248 |
updated_at | 2023-11-14 13:44:36.918711 |
description | Proc macros for creating Switchboard Functions on Solana |
homepage | https://switchboard.xyz |
repository | https://github.com/switchboard-xyz/solana-sdk/tree/main/rust/switchboard-solana-macros |
max_upload_size | |
id | 1034709 |
size | 156,700 |
Proc macros for creating Switchboard Functions on Solana
Run the following Cargo command in your project directory:
cargo add switchboard-solana-macros
Or add the following line to your Cargo.toml:
[dependencies]
switchboard-solana-macros = "0.2.0"
use switchboard_solana_macros::switchboard_function;
#[switchboard_function]
pub async fn my_function_logic(
runner: FunctionRunner,
params: Vec<u8>
) -> Result<Vec<Instruction>, SbFunctionError> {
// Build an array of instructions targetted toward your program
let ixs = vec![Instruction {
program_id: Pubkey::default(),
accounts: vec![],
data: vec![],
}];
// Emit the instructions for the oracle to validate and relay on-chain
Ok(ixs)
}