2 个不稳定版本
0.27.0 | 2023 年 5 月 15 日 |
---|---|
0.26.1 | 2023 年 12 月 17 日 |
#44 在 #anchor
685KB
16K SLoC
Anchor 是一个为 Solana 的 Sealevel 运行时提供的框架,它为编写智能合约提供了几个便捷的开发者工具。
- Rust eDSL 用于编写 Solana 程序
- IDL 规范
- IDL 生成客户端的 TypeScript 包
- CLI 和工作空间管理以开发完整的应用程序
如果您熟悉在 Ethereum 的 Solidity、Truffle、web3.js 中开发,那么这种体验将很熟悉。尽管 DSL 语法和语义是针对 Solana 的,但编写 RPC 请求处理器、发出 IDL 和从 IDL 生成客户端的高级流程是相同的。
入门
有关快速入门指南和深入教程,请参阅 Anchor 书籍 和正在逐步淘汰的旧版 文档。要直接跳到示例,请访问 此处。有关最新的 Rust 和 TypeScript API 文档,请参阅 docs.rs 和 typedoc。
包
注意
- 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了解如何进行。
谢谢 ❤️
依赖关系
~77MB
~1.5M SLoC