Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/fraccaman/refactor-governance' i…
Browse files Browse the repository at this point in the history
…nto draft

* origin/fraccaman/refactor-governance:
  wip: governance refactor
  wip: governance refactor
  wip: governance refactor
  wip: governance refactor
  wip: governance refactor
  wip: governance refactor
  wip: governance refactor
  wip: governance refactor
  • Loading branch information
Fraccaman committed Aug 11, 2023
2 parents d9a151f + 901efd3 commit 07749e6
Show file tree
Hide file tree
Showing 88 changed files with 4,516 additions and 3,270 deletions.
1 change: 0 additions & 1 deletion .github/workflows/scripts/e2e.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"e2e::ledger_tests::pos_init_validator": 40,
"e2e::ledger_tests::proposal_offline": 21,
"e2e::ledger_tests::pgf_governance_proposal": 100,
"e2e::ledger_tests::eth_governance_proposal": 100,
"e2e::ledger_tests::proposal_submission": 200,
"e2e::ledger_tests::run_ledger": 5,
"e2e::ledger_tests::run_ledger_load_state_and_reset": 23,
Expand Down
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

213 changes: 131 additions & 82 deletions apps/src/lib/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ pub mod cmds {
.subcommand(QueryProposal::def().display_order(4))
.subcommand(QueryProposalResult::def().display_order(4))
.subcommand(QueryProtocolParameters::def().display_order(4))
.subcommand(QueryPgf::def().display_order(4))
.subcommand(QueryValidatorState::def().display_order(4))
// Actions
.subcommand(SignTx::def().display_order(5))
Expand Down Expand Up @@ -297,6 +298,7 @@ pub mod cmds {
Self::parse_with_ctx(matches, QueryProposalResult);
let query_protocol_parameters =
Self::parse_with_ctx(matches, QueryProtocolParameters);
let query_pgf = Self::parse_with_ctx(matches, QueryPgf);
let query_validator_state =
Self::parse_with_ctx(matches, QueryValidatorState);
let add_to_eth_bridge_pool =
Expand Down Expand Up @@ -333,6 +335,7 @@ pub mod cmds {
.or(query_proposal)
.or(query_proposal_result)
.or(query_protocol_parameters)
.or(query_pgf)
.or(query_validator_state)
.or(query_account)
.or(sign_tx)
Expand Down Expand Up @@ -405,6 +408,7 @@ pub mod cmds {
QueryProposal(QueryProposal),
QueryProposalResult(QueryProposalResult),
QueryProtocolParameters(QueryProtocolParameters),
QueryPgf(QueryPgf),
QueryValidatorState(QueryValidatorState),
SignTx(SignTx),
}
Expand Down Expand Up @@ -1185,6 +1189,28 @@ pub mod cmds {
}
}

#[derive(Clone, Debug)]
pub struct QueryPgf(pub args::QueryPgf<args::CliTypes>);

impl SubCmd for QueryPgf {
const CMD: &'static str = "query-pgf";

fn parse(matches: &ArgMatches) -> Option<Self>
where
Self: Sized,
{
matches
.subcommand_matches(Self::CMD)
.map(|matches| QueryPgf(args::QueryPgf::parse(matches)))
}

fn def() -> App {
App::new(Self::CMD)
.about("Query pgf stewards and continous funding.")
.add_args::<args::QueryPgf<args::CliTypes>>()
}
}

#[derive(Clone, Debug)]
pub struct TxCustom(pub args::TxCustom<args::CliTypes>);

Expand Down Expand Up @@ -2496,6 +2522,9 @@ pub mod args {
"port-id",
DefaultFn(|| PortId::from_str("transfer").unwrap()),
);
pub const PROPOSAL_ETH: ArgFlag = flag("eth");
pub const PROPOSAL_PGF_STEWARD: ArgFlag = flag("pgf-stewards");
pub const PROPOSAL_PGF_FUNDING: ArgFlag = flag("pgf-funding");
pub const PROPOSAL_OFFLINE: ArgFlag = flag("offline");
pub const PROTOCOL_KEY: ArgOpt<WalletPublicKey> = arg_opt("protocol-key");
pub const PRE_GENESIS_PATH: ArgOpt<PathBuf> = arg_opt("pre-genesis-path");
Expand Down Expand Up @@ -3677,26 +3706,15 @@ pub mod args {
))
}
}
#[derive(Clone, Debug)]
pub struct InitProposal<C: NamadaTypes = SdkTypes> {
/// Common tx arguments
pub tx: Tx<C>,
/// The proposal file path
pub proposal_data: PathBuf,
/// Flag if proposal should be run offline
pub offline: bool,
/// Native token address
pub native_token: C::NativeAddress,
/// Path to the TX WASM code file
pub tx_code_path: PathBuf,
}

impl CliToSdk<InitProposal<SdkTypes>> for InitProposal<CliTypes> {
fn to_sdk(self, ctx: &mut Context) -> InitProposal<SdkTypes> {
InitProposal::<SdkTypes> {
tx: self.tx.to_sdk(ctx),
proposal_data: self.proposal_data,
offline: self.offline,
proposal_data: std::fs::read(self.proposal_data).expect(""),
is_offline: self.is_offline,
is_pgf_stewards: self.is_pgf_stewards,
is_pgf_funding: self.is_pgf_funding,
native_token: ctx.native_token.clone(),
tx_code_path: self.tx_code_path,
}
Expand All @@ -3707,15 +3725,19 @@ pub mod args {
fn parse(matches: &ArgMatches) -> Self {
let tx = Tx::parse(matches);
let proposal_data = DATA_PATH.parse(matches);
let offline = PROPOSAL_OFFLINE.parse(matches);
let is_offline = PROPOSAL_OFFLINE.parse(matches);
let is_pgf_stewards = PROPOSAL_PGF_STEWARD.parse(matches);
let is_pgf_funding = PROPOSAL_PGF_FUNDING.parse(matches);
let tx_code_path = PathBuf::from(TX_INIT_PROPOSAL);

Self {
tx,
proposal_data,
offline,
native_token: (),
tx_code_path,
is_offline,
is_pgf_stewards,
is_pgf_funding,
}
}

Expand All @@ -3727,45 +3749,66 @@ pub mod args {
.arg(
PROPOSAL_OFFLINE
.def()
.help("Flag if the proposal vote should run offline."),
.help(
"Flag if the proposal should be serialized \
offline (only for default types).",
)
.conflicts_with_all([
PROPOSAL_PGF_FUNDING.name,
PROPOSAL_PGF_STEWARD.name,
PROPOSAL_ETH.name,
]),
)
.arg(
PROPOSAL_ETH
.def()
.help("Flag if the proposal is of type eth.")
.conflicts_with_all([
PROPOSAL_PGF_FUNDING.name,
PROPOSAL_PGF_STEWARD.name,
]),
)
.arg(
PROPOSAL_PGF_STEWARD
.def()
.help(
"Flag if the proposal is of type pgf-stewards. \
Used to elect/remove stewards.",
)
.conflicts_with_all([
PROPOSAL_ETH.name,
PROPOSAL_PGF_FUNDING.name,
]),
)
.arg(
PROPOSAL_PGF_FUNDING
.def()
.help(
"Flag if the proposal is of type pgf-funding. \
Used to control continous/retro pgf fundings.",
)
.conflicts_with_all([
PROPOSAL_ETH.name,
PROPOSAL_PGF_STEWARD.name,
]),
)
}
}

#[derive(Clone, Debug)]
pub struct VoteProposal<C: NamadaTypes = SdkTypes> {
/// Common tx arguments
pub tx: Tx<C>,
/// Proposal id
pub proposal_id: Option<u64>,
/// The vote
pub vote: String,
/// The address of the voter
pub voter_address: C::Address,
/// PGF proposal
pub proposal_pgf: Option<String>,
/// ETH proposal
pub proposal_eth: Option<String>,
/// Flag if proposal vote should be run offline
pub offline: bool,
/// The proposal file path
pub proposal_data: Option<PathBuf>,
/// Path to the TX WASM code file
pub tx_code_path: PathBuf,
}

impl CliToSdk<VoteProposal<SdkTypes>> for VoteProposal<CliTypes> {
fn to_sdk(self, ctx: &mut Context) -> VoteProposal<SdkTypes> {
VoteProposal::<SdkTypes> {
tx: self.tx.to_sdk(ctx),
proposal_id: self.proposal_id,
vote: self.vote,
voter_address: ctx.get(&self.voter_address),
offline: self.offline,
proposal_data: self.proposal_data,
voter: ctx.get(&self.voter),
is_offline: self.is_offline,
proposal_data: self.proposal_data.map(|path| {
println!("Not able to read {}.", path.to_string_lossy());
std::fs::read(path)
.expect("Should be able to read the file.")
}),
tx_code_path: self.tx_code_path.to_path_buf(),
proposal_pgf: self.proposal_pgf,
proposal_eth: self.proposal_eth,
}
}
}
Expand All @@ -3774,22 +3817,18 @@ pub mod args {
fn parse(matches: &ArgMatches) -> Self {
let tx = Tx::parse(matches);
let proposal_id = PROPOSAL_ID_OPT.parse(matches);
let proposal_pgf = PROPOSAL_VOTE_PGF_OPT.parse(matches);
let proposal_eth = PROPOSAL_VOTE_ETH_OPT.parse(matches);
let vote = PROPOSAL_VOTE.parse(matches);
let voter_address = ADDRESS.parse(matches);
let offline = PROPOSAL_OFFLINE.parse(matches);
let voter = ADDRESS.parse(matches);
let is_offline = PROPOSAL_OFFLINE.parse(matches);
let proposal_data = DATA_PATH_OPT.parse(matches);
let tx_code_path = PathBuf::from(TX_VOTE_PROPOSAL);

Self {
tx,
proposal_id,
vote,
proposal_pgf,
proposal_eth,
offline,
voter_address,
is_offline,
voter,
proposal_data,
tx_code_path,
}
Expand All @@ -3809,29 +3848,7 @@ pub mod args {
.arg(
PROPOSAL_VOTE
.def()
.help("The vote for the proposal. Either yay or nay"),
)
.arg(
PROPOSAL_VOTE_PGF_OPT
.def()
.help(
"The list of proposed councils and spending \
caps:\n$council1 $cap1 $council2 $cap2 ... \
(council is bech32m encoded address, cap is \
expressed in microNAM",
)
.requires(PROPOSAL_ID.name)
.conflicts_with(PROPOSAL_VOTE_ETH_OPT.name),
)
.arg(
PROPOSAL_VOTE_ETH_OPT
.def()
.help(
"The signing key and message bytes (hex encoded) \
to be signed: $signing_key $message",
)
.requires(PROPOSAL_ID.name)
.conflicts_with(PROPOSAL_VOTE_PGF_OPT.name),
.help("The vote for the proposal. Either yay or nay."),
)
.arg(
PROPOSAL_OFFLINE
Expand All @@ -3846,6 +3863,7 @@ pub mod args {
"The data path file (json) that describes the \
proposal.",
)
.requires(PROPOSAL_OFFLINE.name)
.conflicts_with(PROPOSAL_ID.name),
)
.arg(ADDRESS.def().help("The address of the voter."))
Expand Down Expand Up @@ -3938,24 +3956,34 @@ pub mod args {

fn def(app: App) -> App {
app.add_args::<Query<CliTypes>>()
.arg(PROPOSAL_ID_OPT.def().help("The proposal identifier."))
.arg(
PROPOSAL_ID_OPT
.def()
.help("The proposal identifier.")
.conflicts_with_all([
PROPOSAL_OFFLINE.name,
DATA_PATH_OPT.name,
]),
)
.arg(
PROPOSAL_OFFLINE
.def()
.help(
"Flag if the proposal result should run on \
offline data.",
)
.conflicts_with(PROPOSAL_ID.name),
.conflicts_with(PROPOSAL_ID.name)
.requires(DATA_PATH_OPT.name),
)
.arg(
DATA_PATH_OPT
.def()
.help(
"The path to the folder containing the proposal \
json and votes",
and votes files in json format.",
)
.conflicts_with(PROPOSAL_ID.name),
.conflicts_with(PROPOSAL_ID.name)
.requires(PROPOSAL_OFFLINE.name),
)
}
}
Expand Down Expand Up @@ -3985,6 +4013,26 @@ pub mod args {
}
}

impl CliToSdk<QueryPgf<SdkTypes>> for QueryPgf<CliTypes> {
fn to_sdk(self, ctx: &mut Context) -> QueryPgf<SdkTypes> {
QueryPgf::<SdkTypes> {
query: self.query.to_sdk(ctx),
}
}
}

impl Args for QueryPgf<CliTypes> {
fn parse(matches: &ArgMatches) -> Self {
let query = Query::parse(matches);

Self { query }
}

fn def(app: App) -> App {
app.add_args::<Query<CliTypes>>()
}
}

impl CliToSdk<Withdraw<SdkTypes>> for Withdraw<CliTypes> {
fn to_sdk(self, ctx: &mut Context) -> Withdraw<SdkTypes> {
Withdraw::<SdkTypes> {
Expand Down Expand Up @@ -4076,9 +4124,10 @@ pub mod args {

fn def(app: App) -> App {
app.add_args::<Query<CliTypes>>().arg(
BALANCE_OWNER
OWNER
.def()
.help("The substorage space address to query."),
.help("The substorage space address to query.")
.required(true),
)
}
}
Expand Down
13 changes: 13 additions & 0 deletions apps/src/lib/cli/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -549,6 +549,19 @@ impl<IO> CliApi<IO> {
let args = args.to_sdk(&mut ctx);
rpc::query_protocol_parameters(&client, args).await;
}
Sub::QueryPgf(QueryPgf(mut args)) => {
let client = client.unwrap_or_else(|| {
C::from_tendermint_address(
&mut args.query.ledger_address,
)
});
client
.wait_until_node_is_synced()
.await
.proceed_or_else(error)?;
let args = args.to_sdk(&mut ctx);
rpc::query_pgf(&client, args).await;
}
Sub::QueryAccount(QueryAccount(mut args)) => {
let client = client.unwrap_or_else(|| {
C::from_tendermint_address(
Expand Down
Loading

0 comments on commit 07749e6

Please sign in to comment.