indexor 0.1.0

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

pub const SEED_INDEX: &[u8] = b"idx";

#[account]
pub struct Index {
    pub count: u128,
    pub owner: Pubkey,
    pub namespace: String,
    pub bump: u8,
}