#solana #switchboard #proc-macro #oracle

switchboard-solana-macros-temp

用于在 Solana 上创建 Switchboard 函数的 proc 宏

3 个版本

0.2.3 2023年11月14日
0.2.2 2023年11月14日
0.2.1 2023年11月14日

#33 in #switchboard

MIT 许可协议

38KB
507 代码行

Switchboard Logo

switchboard-solana-macros

用于在 Solana 上创建 Switchboard 函数的 proc 宏

Crates.io Badge

Discord Badge

Twitter Badge

Switchboard 文档:docs.switchboard.xyz

安装

在您的项目目录中运行以下 Cargo 命令

cargo add switchboard-solana-macros

或者将以下行添加到您的 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)
}

依赖项

~305–770KB
~18K SLoC