1 个不稳定版本

0.22.0 2022年2月28日

#26#权威


用于 safe-anchor-spl

Apache-2.0

140KB
2.5K SLoC

Anchor

Solana Sealevel 框架

Build Status Tutorials Discord Chat License

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

  • Rust eDSL 用于编写 Solana 程序
  • IDL 规范
  • 用于从 IDL 生成客户端的 TypeScript 包
  • 用于开发完整应用的 CLI 和工作区管理

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

入门

有关快速入门指南和深入教程,请参阅 anchor book 以及正在逐步淘汰的较旧 文档。要直接跳到示例,请访问 此处。有关最新的 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 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许可证。

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

贡献

感谢您对贡献Anchor感兴趣!请参阅CONTRIBUTING.md以了解如何进行。

谢谢 ❤️

依赖项

~16–25MB
~407K SLoC