Struct soroban_sdk::ledger::Ledger
source · pub struct Ledger(_);
Expand description
Ledger retrieves information about the current ledger.
Examples
use soroban_sdk::Env;
let ledger = env.ledger();
let protocol_version = ledger.protocol_version();
let sequence = ledger.sequence();
let timestamp = ledger.timestamp();
let network_passphrase = ledger.network_passphrase();
Implementations
sourceimpl Ledger
impl Ledger
sourcepub fn protocol_version(&self) -> u32
pub fn protocol_version(&self) -> u32
Returns the version of the protocol that the ledger created with.
sourcepub fn sequence(&self) -> u32
pub fn sequence(&self) -> u32
Returns the sequence number of the ledger.
The sequence number is a unique number for each ledger that is sequential, incremented by one for each new ledger.
sourcepub fn timestamp(&self) -> u64
pub fn timestamp(&self) -> u64
Returns a unix timestamp for when the ledger was closed.
The timestamp is the number of seconds, excluding leap seconds, that have elapsed since unix epoch. Unix epoch is January 1st, 1970, at 00:00:00 UTC.
sourcepub fn network_passphrase(&self) -> Bytes
pub fn network_passphrase(&self) -> Bytes
Returns the network passphrase.
Returns for the Public Network:
Public Global Stellar Network ; September 2015
Returns for the Test Network:
Test SDF Network ; September 2015
Trait Implementations
sourceimpl Ledger for Ledger
Available on crate feature testutils
only.
impl Ledger for Ledger
Available on crate feature
testutils
only.sourcefn set(&self, li: LedgerInfo)
fn set(&self, li: LedgerInfo)
Set ledger info.
sourcefn with_mut<F>(&self, f: F)where
F: FnMut(&mut LedgerInfo),
fn with_mut<F>(&self, f: F)where
F: FnMut(&mut LedgerInfo),
Modify the ledger info.
Auto Trait Implementations
impl !RefUnwindSafe for Ledger
impl !Send for Ledger
impl !Sync for Ledger
impl Unpin for Ledger
impl !UnwindSafe for Ledger
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read morefn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read morefn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read morefn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more