Solana Anchor는 AccountInfo를 Account<'info,T>로 변환합니다.
이 짧은 기사에서는
AccountInfo
또는 UncheckedAccount
를 Account
로 변환하는 방법을 보여 드리겠습니다. 주어진 계정이 PDA라고 가정합니다.주어진 구조체에 대해:
pub struct User {
pub account: Pubkey,
}
그리고 우리 지침에는 다음이 있습니다.
#[derive(Accounts)]
#[instruction()]
pub struct UserInstruction<'info> {
#[account()]
/// CHECK:
pub user: AccountInfo<'info>,
pub fn get_user(ctx: Context<UserInstruction>) -> Result<()> {
let user: Account<User> = Account::try_from(&ctx.accounts.user)?;
// do something here
Ok(())
}
Reference
이 문제에 관하여(Solana Anchor는 AccountInfo를 Account<'info,T>로 변환합니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/lazar955/solana-anchor-convert-accountinfo-to-accountinfot-1387텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)