47 releases (29 major breaking)

new 31.0.0 Apr 8, 2024
30.0.0 Mar 18, 2024
29.0.0 Feb 26, 2024
28.0.0 Feb 13, 2024
2.0.0-alpha.5 Mar 24, 2020

#1302 in Magic Beans

Download history 310/week @ 2023-12-18 96/week @ 2023-12-25 679/week @ 2024-01-01 719/week @ 2024-01-08 368/week @ 2024-01-15 586/week @ 2024-01-22 483/week @ 2024-01-29 631/week @ 2024-02-05 988/week @ 2024-02-12 1308/week @ 2024-02-19 1481/week @ 2024-02-26 793/week @ 2024-03-04 652/week @ 2024-03-11 1192/week @ 2024-03-18 1204/week @ 2024-03-25 1767/week @ 2024-04-01

4,880 downloads per month
Used in 19 crates (7 directly)

Apache-2.0

2.5MB
45K SLoC

I'm online Module

If the local node is a validator (i.e. contains an authority key), this module gossips a heartbeat transaction with each new session. The heartbeat functions as a simple mechanism to signal that the node is online in the current era.

Received heartbeats are tracked for one era and reset with each new era. The module exposes two public functions to query if a heartbeat has been received in the current era or session.

The heartbeat is a signed transaction, which was signed using the session key and includes the recent best block number of the local validators chain as well as the NetworkState. It is submitted as an Unsigned Transaction via off-chain workers.

Interface

Public Functions

  • is_online - True if the validator sent a heartbeat in the current session.

Usage

use pallet_im_online::{self as im_online};

#[frame_support::pallet]
pub mod pallet {
    use super::*;
    use frame_support::pallet_prelude::*;
    use frame_system::pallet_prelude::*;

    #[pallet::pallet]
    pub struct Pallet<T>(_);

    #[pallet::config]
    pub trait Config: frame_system::Config + im_online::Config {}

    #[pallet::call]
    impl<T: Config> Pallet<T> {
        #[pallet::weight(0)]
        pub fn is_online(origin: OriginFor<T>, authority_index: u32) -> DispatchResult {
            let _sender = ensure_signed(origin)?;
            let _is_online = <im_online::Pallet<T>>::is_online(authority_index);
            Ok(())
        }
    }
}

Dependencies

This module depends on the Session module.

License: Apache-2.0

Dependencies

~16–30MB
~496K SLoC