Type alias QueryMsg

QueryMsg: {
    admin: {};
} | {
    total_weight: {
        at_height?: number | null;
    };
} | {
    list_members: {
        limit?: number | null;
        start_after?: string | null;
    };
} | {
    member: {
        addr: string;
        at_height?: number | null;
    };
} | {
    hooks: {};
}

©2020 - 2023 Oraichain Foundation