48个版本 (30个重大变更)

0.30.1 2024年6月20日
0.29.0 2023年10月16日
0.28.0 2023年6月9日
0.27.0 2023年3月8日
0.3.0 2021年3月12日

19 in #authority

Download history 13548/week @ 2024-05-04 14495/week @ 2024-05-11 16687/week @ 2024-05-18 16305/week @ 2024-05-25 16601/week @ 2024-06-01 13298/week @ 2024-06-08 15766/week @ 2024-06-15 14254/week @ 2024-06-22 10179/week @ 2024-06-29 8845/week @ 2024-07-06 12463/week @ 2024-07-13 12713/week @ 2024-07-20 12835/week @ 2024-07-27 12396/week @ 2024-08-03 15023/week @ 2024-08-10 13130/week @ 2024-08-17

每月下载 55,576次
520个crate中使用 (直接使用7个)

Apache-2.0

395KB
8K SLoC

Anchor

Solana Sealevel框架

Build Status Tutorials Discord Chat License

Anchor是一个框架,用于Solana的Sealevel运行时,为编写智能合约提供了几个方便的开发工具。

  • Rust eDSL用于编写Solana程序
  • IDL规范
  • IDL生成客户端的类型Script包
  • CLI和开发环境管理以构建完整的应用程序

如果您熟悉在Ethereum的SolidityTruffleweb3.js上进行开发,那么这种体验将会很熟悉。尽管DSL语法和语义针对Solana,但编写RPC请求处理器、生成IDL以及从IDL生成客户端的高级流程是相同的。

入门指南

有关快速入门指南和深入教程,请参阅anchor书和正在逐步淘汰的旧版文档。要直接查看示例,请此处。有关最新的Rust和TypeScript API文档,请参阅docs.rstypedoc

描述 版本 文档
anchor-lang Rust在Solana上编写程序的原始代码 Crates.io Docs.rs
anchor-spl Solana SPL程序的用户程序接口客户端 crates Docs.rs
anchor-client Anchor程序的Rust客户端 crates Docs.rs
@coral-xyz/anchor Anchor程序的TypeScript客户端 npm Docs
@coral-xyz/anchor-cli CLI以支持构建和管理Anchor开发环境 npm Docs

注意

  • 锚点处于开发中,因此所有API都可能发生变化。
  • 此代码未经审核。请自行承担风险。

示例

以下是一个计数器程序,只有指定的 权限 可以增加计数。

use anchor_lang::prelude::*;

declare_id!("Fg6PaFpoGXkYsidMpWTK6W2BeZ7FEfcYkg476zPFsLnS");

#[program]
mod counter {
    use super::*;

    pub fn initialize(ctx: Context<Initialize>, start: u64) -> Result<()> {
        let counter = &mut ctx.accounts.counter;
        counter.authority = *ctx.accounts.authority.key;
        counter.count = start;
        Ok(())
    }

    pub fn increment(ctx: Context<Increment>) -> Result<()> {
        let counter = &mut ctx.accounts.counter;
        counter.count += 1;
        Ok(())
    }
}

#[derive(Accounts)]
pub struct Initialize<'info> {
    #[account(init, payer = authority, space = 48)]
    pub counter: Account<'info, Counter>,
    pub authority: Signer<'info>,
    pub system_program: Program<'info, System>,
}

#[derive(Accounts)]
pub struct Increment<'info> {
    #[account(mut, has_one = authority)]
    pub counter: Account<'info, Counter>,
    pub authority: Signer<'info>,
}

#[account]
pub struct Counter {
    pub authority: Pubkey,
    pub count: u64,
}

更多示例和测试请参阅 示例测试 目录。

许可协议

锚点基于 Apache 2.0 许可协议。

除非您明确说明,否则您提交给锚点的任何有意贡献,根据 Apache-2.0 许可协议定义,应按照上述方式许可,不附加任何额外的条款或条件。

贡献

感谢您对贡献锚点感兴趣!请参阅 CONTRIBUTING.md 了解如何操作。

谢谢 ❤️

依赖项

~2.7–3.5MB
~76K SLoC