validator chill ability added
Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
This commit is contained in:
parent
3e22e933ab
commit
b1ff74c637
@ -57,6 +57,7 @@ pub enum Action {
|
|||||||
PayoutStakers([u8; 32], [u8; 32], u32),
|
PayoutStakers([u8; 32], [u8; 32], u32),
|
||||||
SetSessionKeys([u8; 32], String),
|
SetSessionKeys([u8; 32], String),
|
||||||
ValidateFrom([u8; 32], u32),
|
ValidateFrom([u8; 32], u32),
|
||||||
|
ChillFrom([u8; 32]),
|
||||||
EventLog(String, ActionLevel, ActionTarget),
|
EventLog(String, ActionLevel, ActionTarget),
|
||||||
|
|
||||||
NewBestBlock(u32),
|
NewBestBlock(u32),
|
||||||
|
112
src/components/validator/chill_popup.rs
Normal file
112
src/components/validator/chill_popup.rs
Normal file
@ -0,0 +1,112 @@
|
|||||||
|
use crossterm::event::{KeyCode, KeyEvent, KeyEventKind};
|
||||||
|
use color_eyre::Result;
|
||||||
|
use ratatui::{
|
||||||
|
layout::{Alignment, Constraint, Flex, Layout, Rect},
|
||||||
|
widgets::{Block, Clear, Paragraph},
|
||||||
|
Frame
|
||||||
|
};
|
||||||
|
use std::sync::mpsc::Sender;
|
||||||
|
|
||||||
|
use super::{Component, PartialComponent, CurrentTab};
|
||||||
|
use crate::{
|
||||||
|
action::Action,
|
||||||
|
config::Config,
|
||||||
|
palette::StylePalette,
|
||||||
|
};
|
||||||
|
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct ChillPopup {
|
||||||
|
is_active: bool,
|
||||||
|
network_tx: Option<Sender<Action>>,
|
||||||
|
secret_seed: [u8; 32],
|
||||||
|
palette: StylePalette
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for ChillPopup {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self::new()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl ChillPopup {
|
||||||
|
pub fn new() -> Self {
|
||||||
|
Self {
|
||||||
|
is_active: false,
|
||||||
|
secret_seed: [0u8; 32],
|
||||||
|
network_tx: None,
|
||||||
|
palette: StylePalette::default(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn submit_message(&mut self) {
|
||||||
|
if let Some(network_tx) = &self.network_tx {
|
||||||
|
let _ = network_tx.send(Action::ChillFrom(self.secret_seed));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl PartialComponent for ChillPopup {
|
||||||
|
fn set_active(&mut self, current_tab: CurrentTab) {
|
||||||
|
match current_tab {
|
||||||
|
CurrentTab::ChillPopup => self.is_active = true,
|
||||||
|
_ => self.is_active = false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Component for ChillPopup {
|
||||||
|
fn register_network_handler(&mut self, tx: Sender<Action>) -> Result<()> {
|
||||||
|
self.network_tx = Some(tx);
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn register_config_handler(&mut self, config: Config) -> Result<()> {
|
||||||
|
if let Some(style) = config.styles.get(&crate::app::Mode::Wallet) {
|
||||||
|
self.palette.with_normal_style(style.get("normal_style").copied());
|
||||||
|
self.palette.with_normal_border_style(style.get("normal_border_style").copied());
|
||||||
|
self.palette.with_normal_title_style(style.get("normal_title_style").copied());
|
||||||
|
self.palette.with_popup_style(style.get("popup_style").copied());
|
||||||
|
self.palette.with_popup_title_style(style.get("popup_title_style").copied());
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
fn handle_key_event(&mut self, key: KeyEvent) -> Result<Option<Action>> {
|
||||||
|
if self.is_active && key.kind == KeyEventKind::Press {
|
||||||
|
match key.code {
|
||||||
|
KeyCode::Enter => self.submit_message(),
|
||||||
|
KeyCode::Esc => self.is_active = false,
|
||||||
|
_ => {},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
Ok(None)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn update(&mut self, action: Action) -> Result<Option<Action>> {
|
||||||
|
match action {
|
||||||
|
Action::SetStashSecret(secret_seed) => self.secret_seed = secret_seed,
|
||||||
|
_ => {}
|
||||||
|
};
|
||||||
|
Ok(None)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn draw(&mut self, frame: &mut Frame, area: Rect) -> Result<()> {
|
||||||
|
if self.is_active {
|
||||||
|
let (border_style, border_type) = self.palette.create_popup_style();
|
||||||
|
let input = Paragraph::new(" Do you want to chill stash account and stop validation?")
|
||||||
|
.block(Block::bordered()
|
||||||
|
.border_style(border_style)
|
||||||
|
.border_type(border_type)
|
||||||
|
.title_style(self.palette.create_popup_title_style())
|
||||||
|
.title_alignment(Alignment::Right)
|
||||||
|
.title(format!("Chill stash")));
|
||||||
|
let v = Layout::vertical([Constraint::Max(3)]).flex(Flex::Center);
|
||||||
|
let h = Layout::horizontal([Constraint::Max(57)]).flex(Flex::Center);
|
||||||
|
let [area] = v.areas(area);
|
||||||
|
let [area] = h.areas(area);
|
||||||
|
|
||||||
|
frame.render_widget(Clear, area);
|
||||||
|
frame.render_widget(input, area);
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
@ -25,6 +25,7 @@ mod bond_popup;
|
|||||||
mod payout_popup;
|
mod payout_popup;
|
||||||
mod rotate_popup;
|
mod rotate_popup;
|
||||||
mod validate_popup;
|
mod validate_popup;
|
||||||
|
mod chill_popup;
|
||||||
|
|
||||||
use stash_details::StashDetails;
|
use stash_details::StashDetails;
|
||||||
use staking_details::StakingDetails;
|
use staking_details::StakingDetails;
|
||||||
@ -40,6 +41,7 @@ use bond_popup::BondPopup;
|
|||||||
use payout_popup::PayoutPopup;
|
use payout_popup::PayoutPopup;
|
||||||
use rotate_popup::RotatePopup;
|
use rotate_popup::RotatePopup;
|
||||||
use validate_popup::ValidatePopup;
|
use validate_popup::ValidatePopup;
|
||||||
|
use chill_popup::ChillPopup;
|
||||||
|
|
||||||
#[derive(Debug, Copy, Clone, PartialEq)]
|
#[derive(Debug, Copy, Clone, PartialEq)]
|
||||||
pub enum CurrentTab {
|
pub enum CurrentTab {
|
||||||
@ -55,6 +57,7 @@ pub enum CurrentTab {
|
|||||||
PayoutPopup,
|
PayoutPopup,
|
||||||
RotatePopup,
|
RotatePopup,
|
||||||
ValidatePopup,
|
ValidatePopup,
|
||||||
|
ChillPopup,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub trait PartialComponent: Component {
|
pub trait PartialComponent: Component {
|
||||||
@ -89,6 +92,7 @@ impl Default for Validator {
|
|||||||
Box::new(PayoutPopup::default()),
|
Box::new(PayoutPopup::default()),
|
||||||
Box::new(RotatePopup::default()),
|
Box::new(RotatePopup::default()),
|
||||||
Box::new(ValidatePopup::default()),
|
Box::new(ValidatePopup::default()),
|
||||||
|
Box::new(ChillPopup::default()),
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -150,6 +154,7 @@ impl Component for Validator {
|
|||||||
CurrentTab::BondPopup |
|
CurrentTab::BondPopup |
|
||||||
CurrentTab::RotatePopup |
|
CurrentTab::RotatePopup |
|
||||||
CurrentTab::ValidatePopup |
|
CurrentTab::ValidatePopup |
|
||||||
|
CurrentTab::ChillPopup |
|
||||||
CurrentTab::PayoutPopup => match key.code {
|
CurrentTab::PayoutPopup => match key.code {
|
||||||
KeyCode::Esc => {
|
KeyCode::Esc => {
|
||||||
self.current_tab = self.previous_tab;
|
self.current_tab = self.previous_tab;
|
||||||
@ -198,6 +203,13 @@ impl Component for Validator {
|
|||||||
component.set_active(self.current_tab.clone());
|
component.set_active(self.current_tab.clone());
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
KeyCode::Char('C') => {
|
||||||
|
self.previous_tab = self.current_tab;
|
||||||
|
self.current_tab = CurrentTab::ChillPopup;
|
||||||
|
for component in self.components.iter_mut() {
|
||||||
|
component.set_active(self.current_tab.clone());
|
||||||
|
}
|
||||||
|
},
|
||||||
KeyCode::Char('B') => {
|
KeyCode::Char('B') => {
|
||||||
self.previous_tab = self.current_tab;
|
self.previous_tab = self.current_tab;
|
||||||
self.current_tab = CurrentTab::BondPopup;
|
self.current_tab = CurrentTab::BondPopup;
|
||||||
|
@ -349,6 +349,23 @@ impl Network {
|
|||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
Action::ChillFrom(sender) => {
|
||||||
|
let sender_str = hex::encode(sender);
|
||||||
|
let maybe_nonce = self.senders.get_mut(&sender_str);
|
||||||
|
if let Ok(tx_progress) = predefined_txs::chill(
|
||||||
|
&self.action_tx,
|
||||||
|
&self.online_client_api,
|
||||||
|
&sender,
|
||||||
|
maybe_nonce,
|
||||||
|
).await {
|
||||||
|
self.transactions_to_watch.push(TxToWatch {
|
||||||
|
tx_progress,
|
||||||
|
sender: sender_str,
|
||||||
|
target: ActionTarget::ValidatorLog,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
_ => Ok(())
|
_ => Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -318,3 +318,47 @@ pub async fn validate(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub async fn chill(
|
||||||
|
action_tx: &UnboundedSender<Action>,
|
||||||
|
api: &OnlineClient<CasperConfig>,
|
||||||
|
sender: &[u8; 32],
|
||||||
|
mut maybe_nonce: Option<&mut u32>,
|
||||||
|
) -> Result<TxProgress<CasperConfig, OnlineClient<CasperConfig>>> {
|
||||||
|
let transfer_tx = casper_network::tx()
|
||||||
|
.staking()
|
||||||
|
.chill();
|
||||||
|
|
||||||
|
let tx_params = match maybe_nonce {
|
||||||
|
Some(ref mut nonce) => {
|
||||||
|
**nonce = nonce.saturating_add(1);
|
||||||
|
CasperExtrinsicParamsBuilder::new()
|
||||||
|
.nonce(nonce.saturating_sub(1) as u64)
|
||||||
|
.build()
|
||||||
|
},
|
||||||
|
None => CasperExtrinsicParamsBuilder::new().build(),
|
||||||
|
};
|
||||||
|
|
||||||
|
let pair = Pair::from_seed(sender);
|
||||||
|
let signer = PairSigner::<CasperConfig, Pair>::new(pair);
|
||||||
|
|
||||||
|
match api
|
||||||
|
.tx()
|
||||||
|
.sign_and_submit_then_watch(&transfer_tx, &signer, tx_params)
|
||||||
|
.await {
|
||||||
|
Ok(tx_progress) => {
|
||||||
|
action_tx.send(Action::EventLog(
|
||||||
|
format!("chill {} sent", tx_progress.extrinsic_hash()),
|
||||||
|
ActionLevel::Info,
|
||||||
|
ActionTarget::ValidatorLog))?;
|
||||||
|
Ok(tx_progress)
|
||||||
|
},
|
||||||
|
Err(err) => {
|
||||||
|
action_tx.send(Action::EventLog(
|
||||||
|
format!("error during chill: {err}"),
|
||||||
|
ActionLevel::Error,
|
||||||
|
ActionTarget::ValidatorLog))?;
|
||||||
|
Err(err.into())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user