pub trait DaoCustomFn {
    fn is_member<'life0, 'async_trait>(
        &'life0 self,
        member: Principal
    ) -> Pin<Box<dyn Future<Output = Result<bool, String>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn handle_proposal<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<(), String>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }
Expand description

You need to use the basic methods implemented by the party

Required Methods

It is used to determine whether you are DAO member of Organization

Implement process completed proposals

Implementors