Skip to content

Commit

Permalink
feat(fee): add FromStr, Display impls for FeeTier
Browse files Browse the repository at this point in the history
We recently enabled fees on Testnet 77 (#4306), and in the process
broke a few things, such as Galileo. While working on adding FeeTier
support to Galileo, Galileo's clap setup wanted Display and FromStr.
Added those to satisfy the build, and then circled back to pcli to reuse
the same impls, which allowed us to snip out some duplicative code.

(cherry picked from commit 8035e29)
  • Loading branch information
conorsch committed Jun 4, 2024
1 parent 465b24c commit 4a271b9
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 57 deletions.
53 changes: 9 additions & 44 deletions crates/bin/pcli/src/command/tx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ use regex::Regex;
use liquidity_position::PositionCmd;
use penumbra_asset::{asset, asset::Metadata, Value, STAKING_TOKEN_ASSET_ID};
use penumbra_dex::{lp::position, swap_claim::SwapClaimPlan};
use penumbra_fee::FeeTier;
use penumbra_governance::{proposal::ProposalToml, proposal_state::State as ProposalState, Vote};
use penumbra_keys::{keys::AddressIndex, Address};
use penumbra_num::Amount;
Expand Down Expand Up @@ -88,7 +89,7 @@ pub enum TxCmd {
#[clap(long)]
memo: Option<String>,
/// The selected fee tier to multiply the fee amount by.
#[clap(short, long, value_enum, default_value_t)]
#[clap(short, long, default_value_t)]
fee_tier: FeeTier,
},
/// Deposit stake into a validator's delegation pool.
Expand All @@ -103,7 +104,7 @@ pub enum TxCmd {
#[clap(long, default_value = "0", display_order = 300)]
source: u32,
/// The selected fee tier to multiply the fee amount by.
#[clap(short, long, value_enum, default_value_t)]
#[clap(short, long, default_value_t)]
fee_tier: FeeTier,
},
/// Withdraw stake from a validator's delegation pool.
Expand All @@ -115,14 +116,14 @@ pub enum TxCmd {
#[clap(long, default_value = "0", display_order = 300)]
source: u32,
/// The selected fee tier to multiply the fee amount by.
#[clap(short, long, value_enum, default_value_t)]
#[clap(short, long, default_value_t)]
fee_tier: FeeTier,
},
/// Claim any undelegations that have finished unbonding.
#[clap(display_order = 200)]
UndelegateClaim {
/// The selected fee tier to multiply the fee amount by.
#[clap(short, long, value_enum, default_value_t)]
#[clap(short, long, default_value_t)]
fee_tier: FeeTier,
},
/// Swap tokens of one denomination for another using the DEX.
Expand All @@ -144,7 +145,7 @@ pub enum TxCmd {
#[clap(long, default_value = "0", display_order = 300)]
source: u32,
/// The selected fee tier to multiply the fee amount by.
#[clap(short, long, value_enum, default_value_t)]
#[clap(short, long, default_value_t)]
fee_tier: FeeTier,
},
/// Vote on a governance proposal in your role as a delegator (see also: `pcli validator vote`).
Expand All @@ -157,7 +158,7 @@ pub enum TxCmd {
#[clap(subcommand)]
vote: VoteCmd,
/// The selected fee tier to multiply the fee amount by.
#[clap(short, long, value_enum, default_value_t)]
#[clap(short, long, default_value_t)]
fee_tier: FeeTier,
},
/// Submit or withdraw a governance proposal.
Expand All @@ -172,7 +173,7 @@ pub enum TxCmd {
#[clap(long, default_value = "0", display_order = 300)]
source: u32,
/// The selected fee tier to multiply the fee amount by.
#[clap(short, long, value_enum, default_value_t)]
#[clap(short, long, default_value_t)]
fee_tier: FeeTier,
},
/// Manage liquidity positions.
Expand Down Expand Up @@ -223,47 +224,11 @@ pub enum TxCmd {
#[clap(long, default_value = "0", display_order = 200)]
source: u32,
/// The selected fee tier to multiply the fee amount by.
#[clap(short, long, value_enum, default_value_t)]
#[clap(short, long, default_value_t)]
fee_tier: FeeTier,
},
}

// A fee tier enum suitable for use with clap.
#[derive(Copy, Clone, clap::ValueEnum, Debug)]
pub enum FeeTier {
Low,
Medium,
High,
}

impl Default for FeeTier {
fn default() -> Self {
Self::Low
}
}

// Convert from the internal fee tier enum to the clap-compatible enum.
impl From<penumbra_fee::FeeTier> for FeeTier {
fn from(tier: penumbra_fee::FeeTier) -> Self {
match tier {
penumbra_fee::FeeTier::Low => Self::Low,
penumbra_fee::FeeTier::Medium => Self::Medium,
penumbra_fee::FeeTier::High => Self::High,
}
}
}

// Convert from the the clap-compatible fee tier enum to the internal fee tier enum.
impl From<FeeTier> for penumbra_fee::FeeTier {
fn from(tier: FeeTier) -> Self {
match tier {
FeeTier::Low => Self::Low,
FeeTier::Medium => Self::Medium,
FeeTier::High => Self::High,
}
}
}

/// Vote on a governance proposal.
#[derive(Debug, Clone, Copy, clap::Subcommand)]
pub enum VoteCmd {
Expand Down
8 changes: 4 additions & 4 deletions crates/bin/pcli/src/command/tx/auction/dutch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ pub enum DutchCmd {
#[clap(long, display_order = 700)]
yes: bool,
/// The selected fee tier to multiply the fee amount by.
#[clap(short, long, value_enum, default_value_t, display_order = 1000)]
#[clap(short, long, default_value_t, display_order = 1000)]
fee_tier: FeeTier,
#[clap(long, hide = true)]
// Use to produce a debug file for numerical analysis.
Expand Down Expand Up @@ -92,7 +92,7 @@ pub enum DutchCmd {
#[clap(long, display_order = 800)]
step_count: u64,
/// The selected fee tier to multiply the fee amount by.
#[clap(short, long, value_enum, default_value_t, display_order = 1000)]
#[clap(short, long, default_value_t, display_order = 1000)]
fee_tier: FeeTier,
},
/// Terminate a Dutch auction.
Expand All @@ -108,7 +108,7 @@ pub enum DutchCmd {
#[clap(display_order = 200)]
auction_id: Option<String>,
/// The selected fee tier to multiply the fee amount by.
#[clap(short, long, value_enum, default_value_t, display_order = 300)]
#[clap(short, long, default_value_t, display_order = 300)]
fee_tier: FeeTier,
},
/// Withdraw a Dutch auction, and claim its reserves.
Expand All @@ -124,7 +124,7 @@ pub enum DutchCmd {
#[clap(display_order = 200)]
auction_id: Option<String>,
/// The selected fee tier to multiply the fee amount by.
#[clap(short, long, value_enum, default_value_t, display_order = 600)]
#[clap(short, long, default_value_t, display_order = 600)]
fee_tier: FeeTier,
},
}
Expand Down
12 changes: 6 additions & 6 deletions crates/bin/pcli/src/command/tx/liquidity_position.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub enum PositionCmd {
#[clap(long)]
trading_pair: Option<TradingPair>,
/// The selected fee tier to multiply the fee amount by.
#[clap(short, long, value_enum, default_value_t)]
#[clap(short, long, default_value_t)]
fee_tier: FeeTier,
},
/// Debits opened position NFTs and credits closed position NFTs.
Expand All @@ -37,7 +37,7 @@ pub enum PositionCmd {
/// The list of [`position::Id`] of the positions to close.
position_ids: Vec<position::Id>,
/// The selected fee tier to multiply the fee amount by.
#[clap(short, long, value_enum, default_value_t)]
#[clap(short, long, default_value_t)]
fee_tier: FeeTier,
},
/// Debits all closed position NFTs associated with a specific account and credits withdrawn position NFTs and the final reserves.
Expand All @@ -49,7 +49,7 @@ pub enum PositionCmd {
#[clap(long)]
trading_pair: Option<TradingPair>,
/// The selected fee tier to multiply the fee amount by.
#[clap(short, long, value_enum, default_value_t)]
#[clap(short, long, default_value_t)]
fee_tier: FeeTier,
},
/// Debits closed position NFTs and credits withdrawn position NFTs and the final reserves.
Expand All @@ -60,7 +60,7 @@ pub enum PositionCmd {
/// The list of [`position::Id`] of the positions to withdraw.
position_ids: Vec<position::Id>,
/// The selected fee tier to multiply the fee amount by.
#[clap(short, long, value_enum, default_value_t)]
#[clap(short, long, default_value_t)]
fee_tier: FeeTier,
},

Expand Down Expand Up @@ -102,7 +102,7 @@ pub enum OrderCmd {
#[clap(long)]
auto_close: bool,
/// The selected fee tier to multiply the fee amount by.
#[clap(short, long, value_enum, default_value_t)]
#[clap(short, long, default_value_t)]
fee_tier: FeeTier,
},
Sell {
Expand All @@ -119,7 +119,7 @@ pub enum OrderCmd {
#[clap(long)]
auto_close: bool,
/// The selected fee tier to multiply the fee amount by.
#[clap(short, long, value_enum, default_value_t)]
#[clap(short, long, default_value_t)]
fee_tier: FeeTier,
},
}
Expand Down
6 changes: 3 additions & 3 deletions crates/bin/pcli/src/command/tx/proposal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pub enum ProposalCmd {
#[clap(long, default_value = "")]
deposit_amount: String,
/// The selected fee tier to multiply the fee amount by.
#[clap(short, long, value_enum, default_value_t)]
#[clap(short, long, default_value_t)]
fee_tier: FeeTier,
},
/// Withdraw a governance proposal that you previously submitted.
Expand All @@ -45,7 +45,7 @@ pub enum ProposalCmd {
#[clap(long, default_value = "0")]
source: u32,
/// The selected fee tier to multiply the fee amount by.
#[clap(short, long, value_enum, default_value_t)]
#[clap(short, long, default_value_t)]
fee_tier: FeeTier,
},
/// Claim a governance proposal deposit for a proposal you submitted that has finished voting.
Expand All @@ -60,7 +60,7 @@ pub enum ProposalCmd {
#[clap(long, default_value = "0")]
source: u32,
/// The selected fee tier to multiply the fee amount by.
#[clap(short, long, value_enum, default_value_t)]
#[clap(short, long, default_value_t)]
fee_tier: FeeTier,
},
}
Expand Down
25 changes: 25 additions & 0 deletions crates/core/component/fee/src/fee.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
use anyhow::Context;
use penumbra_proto::{penumbra::core::component::fee::v1 as pb, DomainType};
use std::fmt;
use std::str::FromStr;

use decaf377::Fr;
use penumbra_asset::{asset, balance, Balance, Value, STAKING_TOKEN_ASSET_ID};
Expand Down Expand Up @@ -146,6 +148,29 @@ impl Default for FeeTier {
}
}

impl fmt::Display for FeeTier {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let s = match self {
FeeTier::Low => "low".to_owned(),
FeeTier::Medium => "medium".to_owned(),
FeeTier::High => "high".to_owned(),
};
write!(f, "{}", s)
}
}

impl FromStr for FeeTier {
type Err = anyhow::Error;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"low" => Ok(FeeTier::Low),
"medium" => Ok(FeeTier::Medium),
"high" => Ok(FeeTier::High),
_ => anyhow::bail!(format!("cannot parse '{}' as FeeTier", s)),
}
}
}

impl DomainType for FeeTier {
type Proto = pb::FeeTier;
}
Expand Down

0 comments on commit 4a271b9

Please sign in to comment.