3 releases (stable)

2.0.0 Aug 3, 2023
1.0.0 Jul 18, 2023
0.2.0 Apr 3, 2023

#5 in #gum

Download history 3/week @ 2024-02-19 51/week @ 2024-02-26 25/week @ 2024-03-11 4/week @ 2024-03-25 77/week @ 2024-04-01

106 downloads per month
Used in 2 crates (via gpl-core)

GPL-3.0-or-later

11KB
167 lines

GPL Session

Manage sessions in your Solana Anchor Programs.

Installation

cargo add gpl-session --features no-entrypoint

If you're using anchor 0.26.0

cargo add gpl-session@0.2.0 --features no-entrypoint

Usage

  1. Import the dependencies
use gpl_session::{SessionError, SessionToken, session_auth_or, Session};
  1. Derive the Session trait on your instruction struct
#[derive(Accounts, Session)]
pub struct Instruction<'info> {
    .....
    pub user: Account<'info, User>,

    #[session(
        // The ephemeral keypair signing the transaction
        signer = signer,
        // The authority of the user account which must have created the session
        authority = user.authority.key()
    )]
    // Session Tokens are passed as optional accounts
    pub session_token: Option<Account<'info, SessionToken>>,

    #[account(mut)]
    pub signer: Signer<'info>,
    .....
}
  1. Add the session_auth_or macro to your instruction handler with fallback logic on who the instruction should validate the signer when sessions are not present and an appropirate ErrorCode. If you've used require*! macros in anchor_lang you already know how this works.
#[session_auth_or(
    ctx.accounts.user.authority.key() == ctx.accounts.authority.key(),
    ErrorCode
)]
pub fn ix_handler(ctx: Context<Instruction>,) -> Result<()> {
.....
}

Dependencies

~17–28MB
~430K SLoC