Skip to content
View muse0509's full-sized avatar

Block or report muse0509

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
muse0509/README.md

pub mod axis_core {
    use std::marker::PhantomData;

    #[derive(Debug)]
    pub struct Persona<T = Conservatory> { 
        pub id: &'static str, 
        pub genesis: u16, 
        pub location: Location,
        pub _roots: PhantomData<T>,
    }
    
    #[derive(Debug)]
    pub struct Axis {
        pub chain: Chain,
        pub mission: &'static str,
        pub state: State,
    }
    
    #[derive(Debug)]
    pub struct Conservatory;

    #[derive(Debug)]
    pub enum Location { Tokyo, Global }

    #[derive(Debug)]
    pub enum State {
        Building,
        Auditing,
        Live,
    }

    #[derive(Debug)]
    pub enum Chain {
        Solana(Network),
        Arbitrum,
    }

    #[derive(Debug)]
    pub enum Network {
        Mainnet,
        Devnet,
    }

    pub const ARCHITECT: Persona = Persona {
        id: "muse",
        genesis: 2005,
        location: Location::Tokyo,
        _roots: PhantomData,
    };

    pub const PROTOCOL: Axis = Axis {
        chain: Chain::Solana(Network::Mainnet),
        mission: "Democratize Quantitative Finance",
        state: State::Building,
    };
}

ARCHITECTURE OVERVIEW (YEAR 2025)

3D Contribution Graph



           _____                    _____                    _____                    _____
         /\    \                  /\    \                  /\    \                  /\    \
        /::\____\                /::\____\                /::\    \                /::\    \
       /::::|   |               /:::/    /               /::::\    \              /::::\    \
      /:::::|   |              /:::/    /               /::::::\    \            /::::::\    \
     /::::::|   |             /:::/    /               /:::/\:::\    \          /:::/\:::\    \
    /:::/|::|   |            /:::/    /               /:::/__\:::\    \        /:::/__\:::\    \
   /:::/ |::|   |           /:::/    /                \:::\   \:::\    \      /::::\   \:::\    \
  /:::/  |::|___|______    /:::/    /      _____    ___\:::\   \:::\    \    /::::::\   \:::\    \
 /:::/   |::::::::\    \  /:::/____/      /\    \  /\   \:::\   \:::\    \  /:::/\:::\   \:::\    \
/:::/    |:::::::::\____\|:::|    /      /::\____\/::\   \:::\   \:::\____\/:::/__\:::\   \:::\____\
\::/    / ~~~~~/:::/    /|:::|____\     /:::/    /\:::\   \:::\   \::/    /\:::\   \:::\   \::/    /
 \/____/      /:::/    /  \:::\    \   /:::/    /  \:::\   \:::\   \/____/  \:::\   \:::\   \/____/
             /:::/    /    \:::\    \ /:::/    /    \:::\   \:::\    \       \:::\   \:::\    \
            /:::/    /      \:::\    /:::/    /      \:::\   \:::\____\       \:::\   \:::\____\
           /:::/    /        \:::\__/:::/    /        \:::\  /:::/    /        \:::\   \::/    /
          /:::/    /          \::::::::/    /          \:::\/:::/    /          \:::\   \/____/
         /:::/    /            \::::::/    /            \::::::/    /            \:::\    \
        /:::/    /              \::::/    /              \::::/    /              \:::\____\
        \::/    /                \::/____/                \::/    /                \::/    /
         \/____/                  ~~                       \/____/                  \/____/

Pinned Loading

  1. a.k.a-waseda a.k.a-waseda Public

    TypeScript

  2. Fio Fio Public

    JavaScript

  3. portfolio_no.3 portfolio_no.3 Public

    JavaScript

  4. projectKAIKA projectKAIKA Public

    Forked from kaika-sol/project

    TypeScript