48个版本 (30个破坏性更新)
0.30.1 | 2024年6月20日 |
---|---|
0.29.0 | 2023年10月16日 |
0.28.0 | 2023年6月9日 |
0.27.0 | 2023年3月8日 |
0.3.0 | 2021年3月12日 |
在 #访问控制 中排名第 73
每月下载量 51,885
用于 519 个 仓库(6个直接使用)
365KB
8K SLoC
Anchor是一个为Solana的Sealevel运行时提供的框架,它为编写智能合约提供了几个方便的开发工具。
- 用于编写索拉纳程序的Rust嵌入式领域特定语言(eDSL)
- IDL规范
- 从IDL生成客户端的TypeScript包
- CLI和工作区管理,以开发完整的应用程序
如果您熟悉在Ethereum的Solidity,Truffle,web3.js上开发,那么这种体验将会很熟悉。虽然DSL语法和语义针对的是Solana,但编写RPC请求处理器、发出IDL以及从IDL生成客户端的高级流程是相同的。
入门指南
有关快速入门指南和深入教程,请参阅anchor书和正在逐步淘汰的较旧文档。要直接进入示例,请点击此处。有关最新的Rust和TypeScript API文档,请参阅docs.rs和typedoc。
软件包
软件包 | 描述 | 版本 | 文档 |
---|---|---|---|
anchor-lang |
在索拉纳上编写程序的Rust基本功能 | ||
anchor-spl |
索拉纳上SPL程序的CPI客户端 | ||
anchor-client |
Anchor程序的Rust客户端 | ||
@coral-xyz/anchor |
Anchor程序的TypeScript客户端 | ||
@coral-xyz/anchor-cli |
CLI,用于构建和管理Anchor工作区 |
注意
- 锚点处于开发阶段,因此所有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 了解详情。
谢谢 ❤️
依赖
~2.7–3.5MB
~75K SLoC