Struct everscale_types::models::block::ValueFlow
source · pub struct ValueFlow<C: CellFamily> {
pub from_prev_block: CurrencyCollection<C>,
pub to_next_block: CurrencyCollection<C>,
pub imported: CurrencyCollection<C>,
pub exported: CurrencyCollection<C>,
pub fees_collected: CurrencyCollection<C>,
pub fees_imported: CurrencyCollection<C>,
pub recovered: CurrencyCollection<C>,
pub created: CurrencyCollection<C>,
pub minted: CurrencyCollection<C>,
pub copyleft_rewards: Dict<C, CellHash, Tokens>,
}Expand description
Tokens flow info.
Fields§
§from_prev_block: CurrencyCollection<C>Total amount transferred from the previous block.
to_next_block: CurrencyCollection<C>Total amount transferred to the next block.
imported: CurrencyCollection<C>Sum of all imported amounts from messages.
exported: CurrencyCollection<C>Sum of all exported amounts of messages.
fees_collected: CurrencyCollection<C>Total fees collected in this block.
fees_imported: CurrencyCollection<C>Shard fees imported to this block.
recovered: CurrencyCollection<C>Fee recovery (?)
created: CurrencyCollection<C>Block creation fees.
minted: CurrencyCollection<C>Minted extra currencies.
copyleft_rewards: Dict<C, CellHash, Tokens>Optional copyleft rewards.
Trait Implementations§
source§impl<C: CellFamily> Clone for ValueFlow<C>
impl<C: CellFamily> Clone for ValueFlow<C>
source§impl<C: CellFamily> Debug for ValueFlow<C>
impl<C: CellFamily> Debug for ValueFlow<C>
source§impl<'a, C: CellFamily> Load<'a, C> for ValueFlow<C>
impl<'a, C: CellFamily> Load<'a, C> for ValueFlow<C>
source§impl<C: CellFamily> PartialEq<ValueFlow<C>> for ValueFlow<C>
impl<C: CellFamily> PartialEq<ValueFlow<C>> for ValueFlow<C>
source§impl<C: CellFamily> Store<C> for ValueFlow<C>
impl<C: CellFamily> Store<C> for ValueFlow<C>
source§fn store_into(
&self,
builder: &mut CellBuilder<C>,
finalizer: &mut dyn Finalizer<C>
) -> bool
fn store_into( &self, builder: &mut CellBuilder<C>, finalizer: &mut dyn Finalizer<C> ) -> bool
Tries to store itself into the cell builder.