2个版本

0.1.1 2024年6月20日
0.1.0 2024年4月15日

12#anchor

Download history 2278/week @ 2024-05-03 2447/week @ 2024-05-10 3061/week @ 2024-05-17 3369/week @ 2024-05-24 3131/week @ 2024-05-31 2877/week @ 2024-06-07 3152/week @ 2024-06-14 3254/week @ 2024-06-21 2970/week @ 2024-06-28 3065/week @ 2024-07-05 3048/week @ 2024-07-12 2862/week @ 2024-07-19 2880/week @ 2024-07-26 3641/week @ 2024-08-02 3953/week @ 2024-08-09 3736/week @ 2024-08-16

14,786 每月下载量
用于 141 个crate (5直接使用)

Apache-2.0

47KB
1K SLoC

Anchor

Solana Sealevel框架

Build Status Tutorials Discord Chat License

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

  • Rust嵌入式领域特定语言(eDSL)用于编写Solana程序
  • IDL规范
  • 用于从IDL生成客户端的TypeScript包
  • 用于开发完整应用的命令行界面(CLI)和工作区管理

如果你熟悉在以太坊的SolidityTruffleweb3.js中进行开发,那么这个体验将会很熟悉。虽然领域特定语言(DSL)的语法和语义针对的是Solana,但是编写RPC请求处理器、发出IDL和从IDL生成客户端的高级流程是相同的。

入门指南

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

软件包

软件包 描述 版本 文档
anchor-lang 在Solana上编写程序的Rust原语 Crates.io Docs.rs
anchor-spl 在Solana上SPL程序的CPI客户端 crates Docs.rs
anchor-client Anchor程序的Rust客户端 crates Docs.rs
@coral-xyz/anchor Anchor程序的TypeScript客户端 npm Docs
@coral-xyz/anchor-cli 用于支持构建和管理Anchor工作区的命令行界面 npm Docs

注意

  • Anchor正在积极开发中,因此所有API都可能发生变化。
  • 此代码未经过审计。请自行承担风险。

示例

这是一个计数器程序,只有指定的authority可以增加计数。

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,
}

有关更多信息,请参阅示例测试目录。

许可证

Anchor遵循Apache 2.0许可证。

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

贡献

感谢您对为Anchor做出贡献的兴趣!请参阅CONTRIBUTING.md了解详情。

谢谢 ❤️


lib.rs:

Anchor IDL。

依赖项

~0.8–2.4MB
~49K SLoC