Struct cosmwasm_std::BlockInfo[][src]

pub struct BlockInfo {
    pub height: u64,
    pub time: Timestamp,
    pub chain_id: String,
}

Fields

height: u64

The height of a block is the number of blocks preceding it in the blockchain.

time: Timestamp

Absolute time of the block creation in seconds since the UNIX epoch (00:00:00 on 1970-01-01 UTC).

The source of this is the BFT Time in Tendermint, which has the same nanosecond precision as the Timestamp type.

Examples

Using chrono:

use chrono::NaiveDateTime;
let seconds = env.block.time.seconds();
let nsecs = env.block.time.subsec_nanos();
let dt = NaiveDateTime::from_timestamp(seconds as i64, nsecs as u32);

Creating a simple millisecond-precision timestamp (as used in JavaScript):

let millis = env.block.time.nanos() / 1_000_000;
chain_id: String

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.