1 个不稳定版本
0.29.1 | 2024 年 4 月 2 日 |
---|
#72 在 #access-control
370KB
8K SLoC
Anchor 是一个为 Solana 的 Sealevel 运行时提供多个方便的开发工具的框架,用于编写智能合约。
- Rust eDSL 编写 Solana 程序
- IDL 规范
- IDL 生成客户端的类型脚本包
- CLI 和工作空间管理,用于开发完整的应用程序
如果您熟悉 Ethereum 的 Solidity、Truffle、web3.js 开发,那么您将感到熟悉。尽管 DSL 语法和语义针对 Solana,但编写 RPC 请求处理程序、生成 IDL 以及从 IDL 生成客户端的高级流程是相同的。
入门指南
有关快速入门指南和深入教程,请参阅 anchor 书籍 和正在逐步淘汰的较旧的 文档。要直接查看示例,请访问 此处。有关最新的 Rust 和 TypeScript API 文档,请参阅 docs.rs 和 typedoc。
包
包 | 描述 | 版本 | 文档 |
---|---|---|---|
anchor-lang |
Solana 上编写程序的 Rust 原语 | ||
anchor-spl |
Solana 上 SPL 程序的 CPI 客户端 | ||
anchor-client |
Anchor 程序的 Rust 客户端 | ||
@coral-xyz/anchor |
Anchor 程序的类型脚本客户端 | ||
@coral-xyz/anchor-cli |
CLI 以支持构建和管理 Anchor 工作空间 |
注意
- 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,
}
许可证
锚点项目采用Apache 2.0协议授权。
除非您明确声明,否则根据Apache-2.0许可证定义,您有意提交给锚点的任何贡献都将按上述方式授权,不附加任何额外条款或条件。
贡献
感谢您对锚点项目的贡献兴趣!请参阅CONTRIBUTING.md了解详情。
谢谢 ❤️
依赖项
约2.7-3.5MB
约75K SLoC