ckb_dao

Struct DaoCalculator

Source
pub struct DaoCalculator<'a, DL> { /* private fields */ }
Expand description

Dao field calculator DaoCalculator is a facade to calculate the dao field.

Implementations§

Source§

impl<'a, DL: CellDataProvider + EpochProvider + HeaderProvider> DaoCalculator<'a, DL>

Source

pub fn new(consensus: &'a Consensus, data_loader: &'a DL) -> Self

Creates a new DaoCalculator.

Source

pub fn primary_block_reward( &self, target: &HeaderView, ) -> Result<Capacity, DaoError>

Returns the primary block reward for target block.

Source

pub fn secondary_block_reward( &self, target: &HeaderView, ) -> Result<Capacity, DaoError>

Returns the secondary block reward for target block.

Source

pub fn dao_field_with_current_epoch( &self, rtxs: impl Iterator<Item = &'a ResolvedTransaction> + Clone, parent: &HeaderView, current_block_epoch: &EpochExt, ) -> Result<Byte32, DaoError>

Calculates the new dao field with specified EpochExt.

Source

pub fn dao_field( &self, rtxs: impl Iterator<Item = &'a ResolvedTransaction> + Clone, parent: &HeaderView, ) -> Result<Byte32, DaoError>

Calculates the new dao field after packaging these transactions. It returns the dao field in Byte32 format. Please see extract_dao_data if you intend to see the detailed content.

Source

pub fn transaction_fee( &self, rtx: &ResolvedTransaction, ) -> Result<Capacity, DaoError>

Returns the total transactions fee of rtx.

Source

pub fn calculate_maximum_withdraw( &self, output: &CellOutput, output_data_capacity: Capacity, deposit_header_hash: &Byte32, withdrawing_header_hash: &Byte32, ) -> Result<Capacity, DaoError>

Calculate maximum withdraw capacity of a deposited dao output

Auto Trait Implementations§

§

impl<'a, DL> Freeze for DaoCalculator<'a, DL>

§

impl<'a, DL> RefUnwindSafe for DaoCalculator<'a, DL>
where DL: RefUnwindSafe,

§

impl<'a, DL> Send for DaoCalculator<'a, DL>
where DL: Sync,

§

impl<'a, DL> Sync for DaoCalculator<'a, DL>
where DL: Sync,

§

impl<'a, DL> Unpin for DaoCalculator<'a, DL>

§

impl<'a, DL> UnwindSafe for DaoCalculator<'a, DL>
where DL: RefUnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> AsAny for T
where T: Any,

Source§

fn as_any(&self) -> &(dyn Any + 'static)

Cast to trait Any
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V