42 个版本 (25 个重大更改)
0.26.0 | 2022年12月15日 |
---|---|
0.25.0 | 2022年7月5日 |
0.24.2 | 2022年4月13日 |
0.23.0 | 2022年3月21日 |
0.3.0 | 2021年3月12日 |
#145 在 #counter
13,307 每月下载量
在 222 个crate中使用 (直接使用4个)
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。
包
注意
- 锚点处于积极开发中,因此所有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 了解详情。
谢谢 ❤️
依赖项
~1.7–2.6MB
~54K SLoC