Skip to content

Commit

Permalink
Add missing litentry-cli commands for request-vc (#2394)
Browse files Browse the repository at this point in the history
* add LITStaking

* add  BRC20AmountHolder
  • Loading branch information
outofxxx committed Jan 9, 2024
1 parent eda1cf2 commit b5dc4f8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ pub enum Command {
#[clap(subcommand)]
EVMAmountHolding(EVMAmountHoldingCommand),
CryptoSummary,
LITStaking,
BRC20AmountHolder,
}

#[derive(Args, Debug)]
Expand Down Expand Up @@ -476,6 +478,8 @@ impl RequestVcCommand {
EVMAmountHoldingCommand::Trx => Assertion::EVMAmountHolding(EVMTokenType::Trx),
},
Command::CryptoSummary => Assertion::CryptoSummary,
Command::LITStaking => Assertion::LITStaking,
Command::BRC20AmountHolder => Assertion::BRC20AmountHolder,
};

let key = Self::random_aes_key();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,8 @@ impl RequestVcDirectCommand {
EVMAmountHoldingCommand::Trx => Assertion::EVMAmountHolding(EVMTokenType::Trx),
},
Command::CryptoSummary => Assertion::CryptoSummary,
Command::LITStaking => Assertion::LITStaking,
Command::BRC20AmountHolder => Assertion::BRC20AmountHolder,
};

let mut key: RequestAesKey = RequestAesKey::default();
Expand Down

0 comments on commit b5dc4f8

Please sign in to comment.