pub trait Block0ConfigurationExtension {
    // Required methods
    fn vote_plans(&self) -> Vec<VotePlan>;
    fn settings(&self) -> SettingsDto;
    fn utxos(&self) -> Vec<UTxOInfo>;
    fn utxo_for_address(&self, address: &Address) -> UTxOInfo;
    fn to_block_hash(&self) -> Hash;
}

Required Methods§

Implementations on Foreign Types§

source§

impl Block0ConfigurationExtension for Block0Configuration

Implementors§