Struct Bid

Source
pub struct Bid { /* private fields */ }
Expand description

An entry in the validator map.

Implementations§

Source§

impl Bid

Source

pub fn from_non_unified( validator_bid: ValidatorBid, delegators: BTreeMap<DelegatorKind, DelegatorBid>, ) -> Self

Source

pub fn locked( validator_public_key: PublicKey, bonding_purse: URef, staked_amount: U512, delegation_rate: DelegationRate, release_timestamp_millis: u64, ) -> Self

Creates new instance of a bid with locked funds.

Source

pub fn unlocked( validator_public_key: PublicKey, bonding_purse: URef, staked_amount: U512, delegation_rate: DelegationRate, ) -> Self

Creates new instance of a bid with unlocked funds.

Source

pub fn empty(validator_public_key: PublicKey, bonding_purse: URef) -> Self

Creates a new inactive instance of a bid with 0 staked amount.

Source

pub fn validator_public_key(&self) -> &PublicKey

Gets the validator public key of the provided bid

Source

pub fn bonding_purse(&self) -> &URef

Gets the bonding purse of the provided bid

Source

pub fn is_locked(&self, timestamp_millis: u64) -> bool

Checks if a bid is still locked under a vesting schedule.

Returns true if a timestamp falls below the initial lockup period + 91 days release schedule, otherwise false.

Source

pub fn is_locked_with_vesting_schedule( &self, timestamp_millis: u64, vesting_schedule_period_millis: u64, ) -> bool

Checks if a bid is still locked under a vesting schedule.

Returns true if a timestamp falls below the initial lockup period + 91 days release schedule, otherwise false.

Source

pub fn staked_amount(&self) -> &U512

Gets the staked amount of the provided bid

Source

pub fn staked_amount_mut(&mut self) -> &mut U512

Gets the staked amount of the provided bid

Source

pub fn delegation_rate(&self) -> &DelegationRate

Gets the delegation rate of the provided bid

Source

pub fn vesting_schedule(&self) -> Option<&VestingSchedule>

Returns a reference to the vesting schedule of the provided bid. None if a non-genesis validator.

Source

pub fn vesting_schedule_mut(&mut self) -> Option<&mut VestingSchedule>

Returns a mutable reference to the vesting schedule of the provided bid. None if a non-genesis validator.

Source

pub fn delegators(&self) -> &BTreeMap<PublicKey, Delegator>

Returns a reference to the delegators of the provided bid

Source

pub fn delegators_mut(&mut self) -> &mut BTreeMap<PublicKey, Delegator>

Returns a mutable reference to the delegators of the provided bid

Source

pub fn inactive(&self) -> bool

Returns true if validator is inactive

Source

pub fn decrease_stake( &mut self, amount: U512, era_end_timestamp_millis: u64, ) -> Result<U512, Error>

Decreases the stake of the provided bid

Source

pub fn increase_stake(&mut self, amount: U512) -> Result<U512, Error>

Increases the stake of the provided bid

Source

pub fn with_delegation_rate( &mut self, delegation_rate: DelegationRate, ) -> &mut Self

Updates the delegation rate of the provided bid

Source

pub fn process(&mut self, timestamp_millis: u64) -> bool

Initializes the vesting schedule of provided bid if the provided timestamp is greater than or equal to the bid’s initial release timestamp and the bid is owned by a genesis validator. This method initializes with default 14 week vesting schedule.

Returns true if the provided bid’s vesting schedule was initialized.

Source

pub fn process_with_vesting_schedule( &mut self, timestamp_millis: u64, vesting_schedule_period_millis: u64, ) -> bool

Initializes the vesting schedule of provided bid if the provided timestamp is greater than or equal to the bid’s initial release timestamp and the bid is owned by a genesis validator.

Returns true if the provided bid’s vesting schedule was initialized.

Source

pub fn activate(&mut self) -> bool

Sets given bid’s inactive field to false

Source

pub fn deactivate(&mut self) -> bool

Sets given bid’s inactive field to true

Source

pub fn total_staked_amount(&self) -> Result<U512, Error>

Returns the total staked amount of validator + all delegators

Trait Implementations§

Source§

impl CLTyped for Bid

Source§

fn cl_type() -> CLType

The CLType of Self.
Source§

impl Clone for Bid

Source§

fn clone(&self) -> Bid

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl DataSize for Bid

Source§

const IS_DYNAMIC: bool = true

If true, the type has a heap size that can vary at runtime, depending on the actual value.
Source§

const STATIC_HEAP_SIZE: usize = 0usize

The amount of space a value of the type always occupies. If IS_DYNAMIC is false, this is the total amount of heap memory occupied by the value. Otherwise this is a lower bound.
Source§

fn estimate_heap_size(&self) -> usize

Estimates the size of heap memory taken up by this value. Read more
Source§

impl Debug for Bid

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Bid

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for Bid

Source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<&Bid> for SeigniorageRecipientV1

Source§

fn from(bid: &Bid) -> Self

Converts to this type from the input type.
Source§

impl From<&Bid> for SeigniorageRecipientV2

Source§

fn from(bid: &Bid) -> Self

Converts to this type from the input type.
Source§

impl From<Bid> for StoredValue

Source§

fn from(bid: Bid) -> StoredValue

Converts to this type from the input type.
Source§

impl From<Bid> for ValidatorBid

Source§

fn from(bid: Bid) -> Self

Converts to this type from the input type.
Source§

impl FromBytes for Bid

Source§

fn from_bytes(bytes: &[u8]) -> Result<(Self, &[u8]), Error>

Deserializes the slice into Self.
Source§

fn from_vec(bytes: Vec<u8>) -> Result<(Self, Vec<u8>), Error>

Deserializes the Vec<u8> into Self.
Source§

impl JsonSchema for Bid

Source§

fn schema_name() -> String

The name of the generated JSON Schema. Read more
Source§

fn schema_id() -> Cow<'static, str>

Returns a string that uniquely identifies the schema produced by this type. Read more
Source§

fn json_schema(generator: &mut SchemaGenerator) -> Schema

Generates a JSON Schema for this type. Read more
Source§

fn is_referenceable() -> bool

Whether JSON Schemas generated for this type should be re-used where possible using the $ref keyword. Read more
Source§

impl PartialEq for Bid

Source§

fn eq(&self, other: &Bid) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for Bid

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl ToBytes for Bid

Source§

fn to_bytes(&self) -> Result<Vec<u8>, Error>

Serializes &self to a Vec<u8>.
Source§

fn serialized_length(&self) -> usize

Returns the length of the Vec<u8> which would be returned from a successful call to to_bytes() or into_bytes(). The data is not actually serialized, so this call is relatively cheap.
Source§

fn write_bytes(&self, writer: &mut Vec<u8>) -> Result<(), Error>

Writes &self into a mutable writer.
Source§

fn into_bytes(self) -> Result<Vec<u8>, Error>
where Self: Sized,

Consumes self and serializes to a Vec<u8>.
Source§

impl TryFrom<StoredValue> for Bid

Source§

type Error = TypeMismatch

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

fn try_from(value: StoredValue) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl Eq for Bid

Source§

impl StructuralPartialEq for Bid

Auto Trait Implementations§

§

impl Freeze for Bid

§

impl RefUnwindSafe for Bid

§

impl Send for Bid

§

impl Sync for Bid

§

impl Unpin for Bid

§

impl UnwindSafe for Bid

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> 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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
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

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,