Keyboard shortcuts

Press or to navigate between chapters

Press ? to show this help

Press Esc to hide this help

ITimelockDispatcherTrait

Fully qualified path: openzeppelin_interfaces::governance::timelock::ITimelockDispatcherTrait

Part of the group: dispatchers

pub trait ITimelockDispatcherTrait<T>

Trait functions

is_operation

Fully qualified path: openzeppelin_interfaces::governance::timelock::ITimelockDispatcherTrait::is_operation

fn is_operation(self: T, id: felt252) -> bool

is_operation_pending

Fully qualified path: openzeppelin_interfaces::governance::timelock::ITimelockDispatcherTrait::is_operation_pending

fn is_operation_pending(self: T, id: felt252) -> bool

is_operation_ready

Fully qualified path: openzeppelin_interfaces::governance::timelock::ITimelockDispatcherTrait::is_operation_ready

fn is_operation_ready(self: T, id: felt252) -> bool

is_operation_done

Fully qualified path: openzeppelin_interfaces::governance::timelock::ITimelockDispatcherTrait::is_operation_done

fn is_operation_done(self: T, id: felt252) -> bool

get_timestamp

Fully qualified path: openzeppelin_interfaces::governance::timelock::ITimelockDispatcherTrait::get_timestamp

fn get_timestamp(self: T, id: felt252) -> u64

get_operation_state

Fully qualified path: openzeppelin_interfaces::governance::timelock::ITimelockDispatcherTrait::get_operation_state

fn get_operation_state(self: T, id: felt252) -> OperationState

get_min_delay

Fully qualified path: openzeppelin_interfaces::governance::timelock::ITimelockDispatcherTrait::get_min_delay

fn get_min_delay(self: T) -> u64

hash_operation

Fully qualified path: openzeppelin_interfaces::governance::timelock::ITimelockDispatcherTrait::hash_operation

fn hash_operation(self: T, call: Call, predecessor: felt252, salt: felt252) -> felt252

hash_operation_batch

Fully qualified path: openzeppelin_interfaces::governance::timelock::ITimelockDispatcherTrait::hash_operation_batch

fn hash_operation_batch(self: T, calls: Span<Call>, predecessor: felt252, salt: felt252) -> felt252

schedule

Fully qualified path: openzeppelin_interfaces::governance::timelock::ITimelockDispatcherTrait::schedule

fn schedule(self: T, call: Call, predecessor: felt252, salt: felt252, delay: u64)

schedule_batch

Fully qualified path: openzeppelin_interfaces::governance::timelock::ITimelockDispatcherTrait::schedule_batch

fn schedule_batch(self: T, calls: Span<Call>, predecessor: felt252, salt: felt252, delay: u64)

cancel

Fully qualified path: openzeppelin_interfaces::governance::timelock::ITimelockDispatcherTrait::cancel

fn cancel(self: T, id: felt252)

execute

Fully qualified path: openzeppelin_interfaces::governance::timelock::ITimelockDispatcherTrait::execute

fn execute(self: T, call: Call, predecessor: felt252, salt: felt252)

execute_batch

Fully qualified path: openzeppelin_interfaces::governance::timelock::ITimelockDispatcherTrait::execute_batch

fn execute_batch(self: T, calls: Span<Call>, predecessor: felt252, salt: felt252)

update_delay

Fully qualified path: openzeppelin_interfaces::governance::timelock::ITimelockDispatcherTrait::update_delay

fn update_delay(self: T, new_delay: u64)