indexor 0.1.0

An on-chain indexing solution for Solana accounts
Documentation
1
2
3
4
5
6
7
8
9
10
use anchor_lang::prelude::*;

pub const SEED_REFERENCE: &[u8] = b"ref";

#[account]
pub struct Reference {
    pub id: u128,
    pub account: Pubkey,
    pub bump: u8,
}