|
|
@@ -16,16 +16,242 @@
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
*/
|
|
|
|
|
|
-use darkfi_dao_contract::client::{
|
|
|
- DAO_TREES_COL_DAOS_TREE, DAO_TREES_COL_PROPOSALS_TREE, DAO_TREES_TABLE,
|
|
|
+use std::fmt;
|
|
|
+
|
|
|
+use rusqlite::types::Value;
|
|
|
+
|
|
|
+use darkfi::{tx::Transaction, util::parse::encode_base10, Error, Result};
|
|
|
+use darkfi_dao_contract::{
|
|
|
+ client::{
|
|
|
+ DaoVoteNote, DAO_DAOS_COL_CALL_INDEX, DAO_DAOS_COL_DAO_ID, DAO_DAOS_COL_LEAF_POSITION,
|
|
|
+ DAO_DAOS_COL_TX_HASH, DAO_DAOS_TABLE, DAO_PROPOSALS_COL_AMOUNT,
|
|
|
+ DAO_PROPOSALS_COL_BULLA_BLIND, DAO_PROPOSALS_COL_CALL_INDEX, DAO_PROPOSALS_COL_DAO_ID,
|
|
|
+ DAO_PROPOSALS_COL_LEAF_POSITION, DAO_PROPOSALS_COL_MONEY_SNAPSHOT_TREE,
|
|
|
+ DAO_PROPOSALS_COL_RECV_PUBLIC, DAO_PROPOSALS_COL_SENDCOIN_TOKEN_ID,
|
|
|
+ DAO_PROPOSALS_COL_TX_HASH, DAO_PROPOSALS_TABLE, DAO_TREES_COL_DAOS_TREE,
|
|
|
+ DAO_TREES_COL_PROPOSALS_TREE, DAO_TREES_TABLE, DAO_VOTES_COL_ALL_VOTE_BLIND,
|
|
|
+ DAO_VOTES_COL_ALL_VOTE_VALUE, DAO_VOTES_COL_CALL_INDEX, DAO_VOTES_COL_PROPOSAL_ID,
|
|
|
+ DAO_VOTES_COL_TX_HASH, DAO_VOTES_COL_VOTE_OPTION, DAO_VOTES_COL_YES_VOTE_BLIND,
|
|
|
+ DAO_VOTES_TABLE,
|
|
|
+ },
|
|
|
+ model::{DaoBulla, DaoMintParams, DaoProposeParams, DaoVoteParams},
|
|
|
+ DaoFunction,
|
|
|
+};
|
|
|
+use darkfi_sdk::{
|
|
|
+ bridgetree,
|
|
|
+ crypto::{
|
|
|
+ poseidon_hash, Keypair, MerkleNode, MerkleTree, PublicKey, SecretKey, TokenId,
|
|
|
+ DAO_CONTRACT_ID,
|
|
|
+ },
|
|
|
+ pasta::pallas,
|
|
|
+};
|
|
|
+use darkfi_serial::{async_trait, deserialize, serialize, SerialDecodable, SerialEncodable};
|
|
|
+
|
|
|
+use crate::{
|
|
|
+ convert_named_params,
|
|
|
+ error::{WalletDbError, WalletDbResult},
|
|
|
+ money::BALANCE_BASE10_DECIMALS,
|
|
|
+ Drk,
|
|
|
};
|
|
|
-use darkfi_sdk::crypto::MerkleTree;
|
|
|
-use darkfi_serial::serialize;
|
|
|
|
|
|
-use crate::{error::WalletDbResult, Drk};
|
|
|
+#[derive(SerialEncodable, SerialDecodable, Clone)]
|
|
|
+pub struct DaoProposalInfo {
|
|
|
+ pub dest: PublicKey,
|
|
|
+ pub amount: u64,
|
|
|
+ pub token_id: TokenId,
|
|
|
+ pub blind: pallas::Base,
|
|
|
+}
|
|
|
+
|
|
|
+#[derive(SerialEncodable, SerialDecodable)]
|
|
|
+pub struct DaoProposeNote {
|
|
|
+ pub proposal: DaoProposalInfo,
|
|
|
+}
|
|
|
+
|
|
|
+#[derive(Debug, Clone)]
|
|
|
+/// Parameters representing an intialized DAO, optionally deployed on-chain
|
|
|
+pub struct Dao {
|
|
|
+ /// Numeric identifier for the DAO
|
|
|
+ pub id: u64,
|
|
|
+ /// Named identifier for the DAO
|
|
|
+ pub name: String,
|
|
|
+ /// The minimum amount of governance tokens needed to open a proposal
|
|
|
+ pub proposer_limit: u64,
|
|
|
+ /// Minimal threshold of participating total tokens needed for a proposal to pass
|
|
|
+ pub quorum: u64,
|
|
|
+ /// The ratio of winning/total votes needed for a proposal to pass
|
|
|
+ pub approval_ratio_base: u64,
|
|
|
+ pub approval_ratio_quot: u64,
|
|
|
+ /// DAO's governance token ID
|
|
|
+ pub gov_token_id: TokenId,
|
|
|
+ /// Secret key for the DAO
|
|
|
+ pub secret_key: SecretKey,
|
|
|
+ /// DAO bulla blind
|
|
|
+ pub bulla_blind: pallas::Base,
|
|
|
+ /// Leaf position of the DAO in the Merkle tree of DAOs
|
|
|
+ pub leaf_position: Option<bridgetree::Position>,
|
|
|
+ /// The transaction hash where the DAO was deployed
|
|
|
+ pub tx_hash: Option<blake3::Hash>,
|
|
|
+ /// The call index in the transaction where the DAO was deployed
|
|
|
+ pub call_index: Option<u32>,
|
|
|
+}
|
|
|
+
|
|
|
+impl Dao {
|
|
|
+ pub fn bulla(&self) -> DaoBulla {
|
|
|
+ let (x, y) = PublicKey::from_secret(self.secret_key).xy();
|
|
|
+
|
|
|
+ DaoBulla::from(poseidon_hash([
|
|
|
+ pallas::Base::from(self.proposer_limit),
|
|
|
+ pallas::Base::from(self.quorum),
|
|
|
+ pallas::Base::from(self.approval_ratio_quot),
|
|
|
+ pallas::Base::from(self.approval_ratio_base),
|
|
|
+ self.gov_token_id.inner(),
|
|
|
+ x,
|
|
|
+ y,
|
|
|
+ self.bulla_blind,
|
|
|
+ ]))
|
|
|
+ }
|
|
|
+
|
|
|
+ pub fn keypair(&self) -> Keypair {
|
|
|
+ let public = PublicKey::from_secret(self.secret_key);
|
|
|
+ Keypair { public, secret: self.secret_key }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+impl fmt::Display for Dao {
|
|
|
+ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
+ let s = format!(
|
|
|
+ "{}\n{}\n{}: {}\n{}: {}\n{}: {} ({})\n{}: {} ({})\n{}: {}\n{}: {}\n{}: {}\n{}: {}\n{}: {:?}\n{}: {:?}\n{}: {:?}\n{}: {:?}",
|
|
|
+ "DAO Parameters",
|
|
|
+ "==============",
|
|
|
+ "Name",
|
|
|
+ self.name,
|
|
|
+ "Bulla",
|
|
|
+ self.bulla(),
|
|
|
+ "Proposer limit",
|
|
|
+ encode_base10(self.proposer_limit, BALANCE_BASE10_DECIMALS),
|
|
|
+ self.proposer_limit,
|
|
|
+ "Quorum",
|
|
|
+ encode_base10(self.quorum, BALANCE_BASE10_DECIMALS),
|
|
|
+ self.quorum,
|
|
|
+ "Approval ratio",
|
|
|
+ self.approval_ratio_quot as f64 / self.approval_ratio_base as f64,
|
|
|
+ "Governance Token ID",
|
|
|
+ self.gov_token_id,
|
|
|
+ "Public key",
|
|
|
+ PublicKey::from_secret(self.secret_key),
|
|
|
+ "Secret key",
|
|
|
+ self.secret_key,
|
|
|
+ "Bulla blind",
|
|
|
+ self.bulla_blind,
|
|
|
+ "Leaf position",
|
|
|
+ self.leaf_position,
|
|
|
+ "Tx hash",
|
|
|
+ self.tx_hash,
|
|
|
+ "Call idx",
|
|
|
+ self.call_index,
|
|
|
+ );
|
|
|
+
|
|
|
+ write!(f, "{}", s)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+#[derive(Debug, Clone)]
|
|
|
+/// Parameters representing an initialized DAO proposal, optionally deployed on-chain
|
|
|
+pub struct DaoProposal {
|
|
|
+ /// Numeric identifier for the proposal
|
|
|
+ pub id: u64,
|
|
|
+ /// The DAO bulla related to this proposal
|
|
|
+ pub dao_bulla: DaoBulla,
|
|
|
+ /// Recipient of this proposal's funds
|
|
|
+ pub recipient: PublicKey,
|
|
|
+ /// Amount of this proposal
|
|
|
+ pub amount: u64,
|
|
|
+ /// Token ID to be sent
|
|
|
+ pub token_id: TokenId,
|
|
|
+ /// Proposal's bulla blind
|
|
|
+ pub bulla_blind: pallas::Base,
|
|
|
+ /// Leaf position of this proposal in the Merkle tree of proposals
|
|
|
+ pub leaf_position: Option<bridgetree::Position>,
|
|
|
+ /// Snapshotted Money Merkle tree
|
|
|
+ pub money_snapshot_tree: Option<MerkleTree>,
|
|
|
+ /// Transaction hash where this proposal was proposed
|
|
|
+ pub tx_hash: Option<blake3::Hash>,
|
|
|
+ /// call index in the transaction where this proposal was proposed
|
|
|
+ pub call_index: Option<u32>,
|
|
|
+ /// The vote ID we've voted on this proposal
|
|
|
+ pub vote_id: Option<pallas::Base>,
|
|
|
+}
|
|
|
+
|
|
|
+impl DaoProposal {
|
|
|
+ pub fn bulla(&self) -> pallas::Base {
|
|
|
+ let (dest_x, dest_y) = self.recipient.xy();
|
|
|
+
|
|
|
+ poseidon_hash([
|
|
|
+ dest_x,
|
|
|
+ dest_y,
|
|
|
+ pallas::Base::from(self.amount),
|
|
|
+ self.token_id.inner(),
|
|
|
+ self.dao_bulla.inner(),
|
|
|
+ self.bulla_blind,
|
|
|
+ ])
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+impl fmt::Display for DaoProposal {
|
|
|
+ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
+ let s = format!(
|
|
|
+ concat!(
|
|
|
+ "Proposal parameters\n",
|
|
|
+ "===================\n",
|
|
|
+ "DAO Bulla: {}\n",
|
|
|
+ "Recipient: {}\n",
|
|
|
+ "Proposal amount: {} ({})\n",
|
|
|
+ "Proposal Token ID: {:?}\n",
|
|
|
+ "Proposal bulla blind: {:?}\n",
|
|
|
+ "Proposal leaf position: {:?}\n",
|
|
|
+ "Proposal tx hash: {:?}\n",
|
|
|
+ "Proposal call index: {:?}\n",
|
|
|
+ "Proposal vote ID: {:?}",
|
|
|
+ ),
|
|
|
+ self.dao_bulla,
|
|
|
+ self.recipient,
|
|
|
+ encode_base10(self.amount, BALANCE_BASE10_DECIMALS),
|
|
|
+ self.amount,
|
|
|
+ self.token_id,
|
|
|
+ self.bulla_blind,
|
|
|
+ self.leaf_position,
|
|
|
+ self.tx_hash,
|
|
|
+ self.call_index,
|
|
|
+ self.vote_id,
|
|
|
+ );
|
|
|
+
|
|
|
+ write!(f, "{}", s)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+#[derive(Debug, Clone)]
|
|
|
+/// Parameters representing a vote we've made on a DAO proposal
|
|
|
+pub struct DaoVote {
|
|
|
+ /// Numeric identifier for the vote
|
|
|
+ pub id: u64,
|
|
|
+ /// Numeric identifier for the proposal related to this vote
|
|
|
+ pub proposal_id: u64,
|
|
|
+ /// The vote
|
|
|
+ pub vote_option: bool,
|
|
|
+ /// Blinding factor for the yes vote
|
|
|
+ pub yes_vote_blind: pallas::Scalar,
|
|
|
+ /// Value of all votes
|
|
|
+ pub all_vote_value: u64,
|
|
|
+ /// Blinding facfor of all votes
|
|
|
+ pub all_vote_blind: pallas::Scalar,
|
|
|
+ /// Transaction hash where this vote was casted
|
|
|
+ pub tx_hash: Option<blake3::Hash>,
|
|
|
+ /// call index in the transaction where this vote was casted
|
|
|
+ pub call_index: Option<u32>,
|
|
|
+}
|
|
|
|
|
|
impl Drk {
|
|
|
- /// Initialize wallet with tables for the DAO contract
|
|
|
+ /// Initialize wallet with tables for the DAO contract.
|
|
|
pub async fn initialize_dao(&self) -> WalletDbResult<()> {
|
|
|
// Initialize DAO wallet schema
|
|
|
let wallet_schema = include_str!("../../../src/contract/dao/wallet.sql");
|
|
|
@@ -66,4 +292,633 @@ impl Drk {
|
|
|
.exec_sql(&query, rusqlite::params![serialize(daos_tree), serialize(proposals_tree)])
|
|
|
.await
|
|
|
}
|
|
|
+
|
|
|
+ /// Fetch DAO Merkle trees from the wallet
|
|
|
+ pub async fn get_dao_trees(&self) -> Result<(MerkleTree, MerkleTree)> {
|
|
|
+ let row = match self.wallet.query_single(DAO_TREES_TABLE, &[], &[]).await {
|
|
|
+ Ok(r) => r,
|
|
|
+ Err(e) => {
|
|
|
+ return Err(Error::RusqliteError(format!(
|
|
|
+ "[get_dao_trees] Trees retrieval failed: {e:?}"
|
|
|
+ )))
|
|
|
+ }
|
|
|
+ };
|
|
|
+
|
|
|
+ let Value::Blob(ref daos_tree_bytes) = row[0] else {
|
|
|
+ return Err(Error::ParseFailed("[get_dao_trees] DAO tree bytes parsing failed"))
|
|
|
+ };
|
|
|
+ let daos_tree = deserialize(daos_tree_bytes)?;
|
|
|
+
|
|
|
+ let Value::Blob(ref proposals_tree_bytes) = row[1] else {
|
|
|
+ return Err(Error::ParseFailed("[get_dao_trees] Proposals tree bytes parsing failed"))
|
|
|
+ };
|
|
|
+ let proposals_tree = deserialize(proposals_tree_bytes)?;
|
|
|
+
|
|
|
+ Ok((daos_tree, proposals_tree))
|
|
|
+ }
|
|
|
+
|
|
|
+ /// Fetch all DAO secret keys from the wallet
|
|
|
+ pub async fn get_dao_secrets(&self) -> Result<Vec<SecretKey>> {
|
|
|
+ let daos = self.get_daos().await?;
|
|
|
+ let mut ret = Vec::with_capacity(daos.len());
|
|
|
+ for dao in daos {
|
|
|
+ ret.push(dao.secret_key);
|
|
|
+ }
|
|
|
+
|
|
|
+ Ok(ret)
|
|
|
+ }
|
|
|
+
|
|
|
+ /// Fetch all known DAOs from the wallet.
|
|
|
+ pub async fn get_daos(&self) -> Result<Vec<Dao>> {
|
|
|
+ let rows = match self.wallet.query_multiple(DAO_DAOS_TABLE, &[], &[]).await {
|
|
|
+ Ok(r) => r,
|
|
|
+ Err(e) => {
|
|
|
+ return Err(Error::RusqliteError(format!("[get_daos] DAOs retrieval failed: {e:?}")))
|
|
|
+ }
|
|
|
+ };
|
|
|
+
|
|
|
+ let mut daos = Vec::with_capacity(rows.len());
|
|
|
+ for row in rows {
|
|
|
+ let Value::Integer(id) = row[0] else {
|
|
|
+ return Err(Error::ParseFailed("[get_daos] ID parsing failed"))
|
|
|
+ };
|
|
|
+ let Ok(id) = u64::try_from(id) else {
|
|
|
+ return Err(Error::ParseFailed("[get_daos] ID parsing failed"))
|
|
|
+ };
|
|
|
+
|
|
|
+ let Value::Text(ref name) = row[1] else {
|
|
|
+ return Err(Error::ParseFailed("[get_daos] Name parsing failed"))
|
|
|
+ };
|
|
|
+ let name = name.clone();
|
|
|
+
|
|
|
+ let Value::Blob(ref proposer_limit_bytes) = row[2] else {
|
|
|
+ return Err(Error::ParseFailed("[get_daos] Proposer limit bytes parsing failed"))
|
|
|
+ };
|
|
|
+ let proposer_limit = deserialize(proposer_limit_bytes)?;
|
|
|
+
|
|
|
+ let Value::Blob(ref quorum_bytes) = row[3] else {
|
|
|
+ return Err(Error::ParseFailed("[get_daos] Quorum bytes parsing failed"))
|
|
|
+ };
|
|
|
+ let quorum = deserialize(quorum_bytes)?;
|
|
|
+
|
|
|
+ let Value::Integer(approval_ratio_base) = row[4] else {
|
|
|
+ return Err(Error::ParseFailed("[get_daos] Approval ratio base parsing failed"))
|
|
|
+ };
|
|
|
+ let Ok(approval_ratio_base) = u64::try_from(approval_ratio_base) else {
|
|
|
+ return Err(Error::ParseFailed("[get_daos] Approval ratio base parsing failed"))
|
|
|
+ };
|
|
|
+
|
|
|
+ let Value::Integer(approval_ratio_quot) = row[5] else {
|
|
|
+ return Err(Error::ParseFailed("[get_daos] Approval ratio quot parsing failed"))
|
|
|
+ };
|
|
|
+ let Ok(approval_ratio_quot) = u64::try_from(approval_ratio_quot) else {
|
|
|
+ return Err(Error::ParseFailed("[get_daos] Approval ratio quot parsing failed"))
|
|
|
+ };
|
|
|
+
|
|
|
+ let Value::Blob(ref gov_token_bytes) = row[6] else {
|
|
|
+ return Err(Error::ParseFailed("[get_daos] Gov token bytes parsing failed"))
|
|
|
+ };
|
|
|
+ let gov_token_id = deserialize(gov_token_bytes)?;
|
|
|
+
|
|
|
+ let Value::Blob(ref secret_bytes) = row[7] else {
|
|
|
+ return Err(Error::ParseFailed("[get_daos] Secret key bytes parsing failed"))
|
|
|
+ };
|
|
|
+ let secret_key = deserialize(secret_bytes)?;
|
|
|
+
|
|
|
+ let Value::Blob(ref bulla_blind_bytes) = row[8] else {
|
|
|
+ return Err(Error::ParseFailed("[get_daos] Bulla blind bytes parsing failed"))
|
|
|
+ };
|
|
|
+ let bulla_blind = deserialize(bulla_blind_bytes)?;
|
|
|
+
|
|
|
+ let Value::Blob(ref leaf_position_bytes) = row[9] else {
|
|
|
+ return Err(Error::ParseFailed("[get_daos] Leaf position bytes parsing failed"))
|
|
|
+ };
|
|
|
+ let leaf_position = if leaf_position_bytes.is_empty() {
|
|
|
+ None
|
|
|
+ } else {
|
|
|
+ Some(deserialize(leaf_position_bytes)?)
|
|
|
+ };
|
|
|
+
|
|
|
+ let Value::Blob(ref tx_hash_bytes) = row[10] else {
|
|
|
+ return Err(Error::ParseFailed("[get_daos] Transaction hash bytes parsing failed"))
|
|
|
+ };
|
|
|
+ let tx_hash =
|
|
|
+ if tx_hash_bytes.is_empty() { None } else { Some(deserialize(tx_hash_bytes)?) };
|
|
|
+
|
|
|
+ let Value::Integer(call_index) = row[11] else {
|
|
|
+ return Err(Error::ParseFailed("[get_daos] Call index parsing failed"))
|
|
|
+ };
|
|
|
+ let Ok(call_index) = u32::try_from(call_index) else {
|
|
|
+ return Err(Error::ParseFailed("[get_daos] Call index parsing failed"))
|
|
|
+ };
|
|
|
+ let call_index = Some(call_index);
|
|
|
+
|
|
|
+ let dao = Dao {
|
|
|
+ id,
|
|
|
+ name,
|
|
|
+ proposer_limit,
|
|
|
+ quorum,
|
|
|
+ approval_ratio_base,
|
|
|
+ approval_ratio_quot,
|
|
|
+ gov_token_id,
|
|
|
+ secret_key,
|
|
|
+ bulla_blind,
|
|
|
+ leaf_position,
|
|
|
+ tx_hash,
|
|
|
+ call_index,
|
|
|
+ };
|
|
|
+
|
|
|
+ daos.push(dao);
|
|
|
+ }
|
|
|
+
|
|
|
+ // Here we sort the vec by ID. The SQL SELECT statement does not guarantee
|
|
|
+ // this, so just do it here.
|
|
|
+ daos.sort_by(|a, b| a.id.cmp(&b.id));
|
|
|
+ Ok(daos)
|
|
|
+ }
|
|
|
+
|
|
|
+ /// Fetch all known DAO proposals from the wallet given a DAO ID
|
|
|
+ pub async fn get_dao_proposals(&self, dao_id: u64) -> Result<Vec<DaoProposal>> {
|
|
|
+ let daos = self.get_daos().await?;
|
|
|
+ let Some(dao) = daos.get(dao_id as usize - 1) else {
|
|
|
+ return Err(Error::RusqliteError(format!(
|
|
|
+ "[get_dao_proposals] DAO with ID {dao_id} not found in wallet"
|
|
|
+ )))
|
|
|
+ };
|
|
|
+
|
|
|
+ let rows = match self
|
|
|
+ .wallet
|
|
|
+ .query_multiple(
|
|
|
+ DAO_PROPOSALS_TABLE,
|
|
|
+ &[],
|
|
|
+ convert_named_params! {(DAO_PROPOSALS_COL_DAO_ID, dao_id)},
|
|
|
+ )
|
|
|
+ .await
|
|
|
+ {
|
|
|
+ Ok(r) => r,
|
|
|
+ Err(e) => {
|
|
|
+ return Err(Error::RusqliteError(format!(
|
|
|
+ "[get_dao_proposals] Proposals retrieval failed: {e:?}"
|
|
|
+ )))
|
|
|
+ }
|
|
|
+ };
|
|
|
+
|
|
|
+ let mut proposals = Vec::with_capacity(rows.len());
|
|
|
+ for row in rows {
|
|
|
+ let Value::Integer(id) = row[0] else {
|
|
|
+ return Err(Error::ParseFailed("[get_dao_proposals] ID parsing failed"))
|
|
|
+ };
|
|
|
+ let Ok(id) = u64::try_from(id) else {
|
|
|
+ return Err(Error::ParseFailed("[get_dao_proposals] ID parsing failed"))
|
|
|
+ };
|
|
|
+
|
|
|
+ let Value::Integer(dao_id) = row[1] else {
|
|
|
+ return Err(Error::ParseFailed("[get_dao_proposals] DAO ID parsing failed"))
|
|
|
+ };
|
|
|
+ let Ok(dao_id) = u64::try_from(dao_id) else {
|
|
|
+ return Err(Error::ParseFailed("[get_dao_proposals] DAO ID parsing failed"))
|
|
|
+ };
|
|
|
+ assert!(dao_id == dao.id);
|
|
|
+ let dao_bulla = dao.bulla();
|
|
|
+
|
|
|
+ let Value::Blob(ref recipient_bytes) = row[2] else {
|
|
|
+ return Err(Error::ParseFailed(
|
|
|
+ "[get_dao_proposals] Recipient bytes bytes parsing failed",
|
|
|
+ ))
|
|
|
+ };
|
|
|
+ let recipient = deserialize(recipient_bytes)?;
|
|
|
+
|
|
|
+ let Value::Blob(ref amount_bytes) = row[3] else {
|
|
|
+ return Err(Error::ParseFailed("[get_dao_proposals] Amount bytes parsing failed"))
|
|
|
+ };
|
|
|
+ let amount = deserialize(amount_bytes)?;
|
|
|
+
|
|
|
+ let Value::Blob(ref token_id_bytes) = row[4] else {
|
|
|
+ return Err(Error::ParseFailed("[get_dao_proposals] Token ID bytes parsing failed"))
|
|
|
+ };
|
|
|
+ let token_id = deserialize(token_id_bytes)?;
|
|
|
+
|
|
|
+ let Value::Blob(ref bulla_blind_bytes) = row[5] else {
|
|
|
+ return Err(Error::ParseFailed(
|
|
|
+ "[get_dao_proposals] Bulla blind bytes parsing failed",
|
|
|
+ ))
|
|
|
+ };
|
|
|
+ let bulla_blind = deserialize(bulla_blind_bytes)?;
|
|
|
+
|
|
|
+ let Value::Blob(ref leaf_position_bytes) = row[6] else {
|
|
|
+ return Err(Error::ParseFailed(
|
|
|
+ "[get_dao_proposals] Leaf position bytes parsing failed",
|
|
|
+ ))
|
|
|
+ };
|
|
|
+ let leaf_position = if leaf_position_bytes.is_empty() {
|
|
|
+ None
|
|
|
+ } else {
|
|
|
+ Some(deserialize(leaf_position_bytes)?)
|
|
|
+ };
|
|
|
+
|
|
|
+ let Value::Blob(ref money_snapshot_tree_bytes) = row[7] else {
|
|
|
+ return Err(Error::ParseFailed(
|
|
|
+ "[get_dao_proposals] Money snapshot tree bytes parsing failed",
|
|
|
+ ))
|
|
|
+ };
|
|
|
+ let money_snapshot_tree = if money_snapshot_tree_bytes.is_empty() {
|
|
|
+ None
|
|
|
+ } else {
|
|
|
+ Some(deserialize(money_snapshot_tree_bytes)?)
|
|
|
+ };
|
|
|
+
|
|
|
+ let Value::Blob(ref tx_hash_bytes) = row[8] else {
|
|
|
+ return Err(Error::ParseFailed(
|
|
|
+ "[get_dao_proposals] Transaction hash bytes parsing failed",
|
|
|
+ ))
|
|
|
+ };
|
|
|
+ let tx_hash =
|
|
|
+ if tx_hash_bytes.is_empty() { None } else { Some(deserialize(tx_hash_bytes)?) };
|
|
|
+
|
|
|
+ let Value::Integer(call_index) = row[9] else {
|
|
|
+ return Err(Error::ParseFailed("[get_dao_proposals] Call index parsing failed"))
|
|
|
+ };
|
|
|
+ let Ok(call_index) = u32::try_from(call_index) else {
|
|
|
+ return Err(Error::ParseFailed("[get_dao_proposals] Call index parsing failed"))
|
|
|
+ };
|
|
|
+ let call_index = Some(call_index);
|
|
|
+
|
|
|
+ let Value::Blob(ref vote_id_bytes) = row[10] else {
|
|
|
+ return Err(Error::ParseFailed("[get_dao_proposals] Vote ID bytes parsing failed"))
|
|
|
+ };
|
|
|
+ let vote_id =
|
|
|
+ if vote_id_bytes.is_empty() { None } else { Some(deserialize(vote_id_bytes)?) };
|
|
|
+
|
|
|
+ let proposal = DaoProposal {
|
|
|
+ id,
|
|
|
+ dao_bulla,
|
|
|
+ recipient,
|
|
|
+ amount,
|
|
|
+ token_id,
|
|
|
+ bulla_blind,
|
|
|
+ leaf_position,
|
|
|
+ money_snapshot_tree,
|
|
|
+ tx_hash,
|
|
|
+ call_index,
|
|
|
+ vote_id,
|
|
|
+ };
|
|
|
+
|
|
|
+ proposals.push(proposal);
|
|
|
+ }
|
|
|
+
|
|
|
+ // Here we sort the vec by ID. The SQL SELECT statement does not guarantee
|
|
|
+ // this, so just do it here.
|
|
|
+ proposals.sort_by(|a, b| a.id.cmp(&b.id));
|
|
|
+ Ok(proposals)
|
|
|
+ }
|
|
|
+
|
|
|
+ /// Append data related to DAO contract transactions into the wallet database.
|
|
|
+ /// Optionally, if `confirm` is true, also append the data in the Merkle trees, etc.
|
|
|
+ pub async fn apply_tx_dao_data(&self, tx: &Transaction, confirm: bool) -> Result<()> {
|
|
|
+ let cid = *DAO_CONTRACT_ID;
|
|
|
+ let mut daos = self.get_daos().await?;
|
|
|
+ let mut daos_to_confirm = vec![];
|
|
|
+ let (mut daos_tree, mut proposals_tree) = self.get_dao_trees().await?;
|
|
|
+
|
|
|
+ // DAOs that have been minted
|
|
|
+ let mut new_dao_bullas: Vec<(DaoBulla, Option<blake3::Hash>, u32)> = vec![];
|
|
|
+ // DAO proposals that have been minted
|
|
|
+ let mut new_dao_proposals: Vec<(
|
|
|
+ DaoProposeParams,
|
|
|
+ Option<MerkleTree>,
|
|
|
+ Option<blake3::Hash>,
|
|
|
+ u32,
|
|
|
+ )> = vec![];
|
|
|
+ let mut our_proposals: Vec<DaoProposal> = vec![];
|
|
|
+ // DAO votes that have been seen
|
|
|
+ let mut new_dao_votes: Vec<(DaoVoteParams, Option<blake3::Hash>, u32)> = vec![];
|
|
|
+ let mut dao_votes: Vec<DaoVote> = vec![];
|
|
|
+
|
|
|
+ // Run through the transaction and see what we got:
|
|
|
+ for (i, call) in tx.calls.iter().enumerate() {
|
|
|
+ if call.data.contract_id == cid && call.data.data[0] == DaoFunction::Mint as u8 {
|
|
|
+ eprintln!("Found Dao::Mint in call {i}");
|
|
|
+ let params: DaoMintParams = deserialize(&call.data.data[1..])?;
|
|
|
+ let tx_hash = if confirm { Some(blake3::hash(&serialize(tx))) } else { None };
|
|
|
+ new_dao_bullas.push((params.dao_bulla, tx_hash, i as u32));
|
|
|
+ continue
|
|
|
+ }
|
|
|
+
|
|
|
+ if call.data.contract_id == cid && call.data.data[0] == DaoFunction::Propose as u8 {
|
|
|
+ eprintln!("Found Dao::Propose in call {i}");
|
|
|
+ let params: DaoProposeParams = deserialize(&call.data.data[1..])?;
|
|
|
+ let tx_hash = if confirm { Some(blake3::hash(&serialize(tx))) } else { None };
|
|
|
+ // We need to clone the tree here for reproducing the snapshot Merkle root
|
|
|
+ let money_tree = if confirm { Some(self.get_money_tree().await?) } else { None };
|
|
|
+ new_dao_proposals.push((params, money_tree, tx_hash, i as u32));
|
|
|
+ continue
|
|
|
+ }
|
|
|
+
|
|
|
+ if call.data.contract_id == cid && call.data.data[0] == DaoFunction::Vote as u8 {
|
|
|
+ eprintln!("Found Dao::Vote in call {i}");
|
|
|
+ let params: DaoVoteParams = deserialize(&call.data.data[1..])?;
|
|
|
+ let tx_hash = if confirm { Some(blake3::hash(&serialize(tx))) } else { None };
|
|
|
+ new_dao_votes.push((params, tx_hash, i as u32));
|
|
|
+ continue
|
|
|
+ }
|
|
|
+
|
|
|
+ if call.data.contract_id == cid && call.data.data[0] == DaoFunction::Exec as u8 {
|
|
|
+ // This seems to not need any special action
|
|
|
+ eprintln!("Found Dao::Exec in call {i}");
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // This code should only be executed when finalized blocks are being scanned.
|
|
|
+ // Here we write the tx metadata, and actually do Merkle tree appends so we
|
|
|
+ // have to make sure it's the same for everyone.
|
|
|
+ if confirm {
|
|
|
+ for new_bulla in new_dao_bullas {
|
|
|
+ daos_tree.append(MerkleNode::from(new_bulla.0.inner()));
|
|
|
+ for dao in daos.iter_mut() {
|
|
|
+ if dao.bulla() == new_bulla.0 {
|
|
|
+ eprintln!(
|
|
|
+ "Found minted DAO {}, noting down for wallet update",
|
|
|
+ new_bulla.0
|
|
|
+ );
|
|
|
+ // We have this DAO imported in our wallet. Add the metadata:
|
|
|
+ dao.leaf_position = daos_tree.mark();
|
|
|
+ dao.tx_hash = new_bulla.1;
|
|
|
+ dao.call_index = Some(new_bulla.2);
|
|
|
+ daos_to_confirm.push(dao.clone());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ for proposal in new_dao_proposals {
|
|
|
+ proposals_tree.append(MerkleNode::from(proposal.0.proposal_bulla.inner()));
|
|
|
+
|
|
|
+ // If we're able to decrypt this note, that's the way to link it
|
|
|
+ // to a specific DAO.
|
|
|
+ for dao in &daos {
|
|
|
+ if let Ok(note) = proposal.0.note.decrypt::<DaoProposeNote>(&dao.secret_key) {
|
|
|
+ // We managed to decrypt it. Let's place this in a proper
|
|
|
+ // DaoProposal object. We assume we can just increment the
|
|
|
+ // ID by looking at how many proposals we already have.
|
|
|
+ // We also assume we don't mantain duplicate DAOs in the
|
|
|
+ // wallet.
|
|
|
+ eprintln!("Managed to decrypt DAO proposal note");
|
|
|
+ let daos_proposals = self.get_dao_proposals(dao.id).await?;
|
|
|
+ let our_prop = DaoProposal {
|
|
|
+ // This ID stuff is flaky.
|
|
|
+ id: daos_proposals.len() as u64 + our_proposals.len() as u64 + 1,
|
|
|
+ dao_bulla: dao.bulla(),
|
|
|
+ recipient: note.proposal.dest,
|
|
|
+ amount: note.proposal.amount,
|
|
|
+ token_id: note.proposal.token_id,
|
|
|
+ bulla_blind: note.proposal.blind,
|
|
|
+ leaf_position: proposals_tree.mark(),
|
|
|
+ money_snapshot_tree: proposal.1,
|
|
|
+ tx_hash: proposal.2,
|
|
|
+ call_index: Some(proposal.3),
|
|
|
+ vote_id: None,
|
|
|
+ };
|
|
|
+
|
|
|
+ our_proposals.push(our_prop);
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ for vote in new_dao_votes {
|
|
|
+ for dao in &daos {
|
|
|
+ if let Ok(note) = vote.0.note.decrypt::<DaoVoteNote>(&dao.secret_key) {
|
|
|
+ eprintln!("Managed to decrypt DAO proposal vote note");
|
|
|
+ let daos_proposals = self.get_dao_proposals(dao.id).await?;
|
|
|
+ let mut proposal_id = None;
|
|
|
+
|
|
|
+ for i in daos_proposals {
|
|
|
+ if i.bulla() == vote.0.proposal_bulla.inner() {
|
|
|
+ proposal_id = Some(i.id);
|
|
|
+ break
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if proposal_id.is_none() {
|
|
|
+ eprintln!("Warning: Decrypted DaoVoteNote but did not find proposal");
|
|
|
+ break
|
|
|
+ }
|
|
|
+
|
|
|
+ let v = DaoVote {
|
|
|
+ id: 0,
|
|
|
+ proposal_id: proposal_id.unwrap(),
|
|
|
+ vote_option: note.vote_option,
|
|
|
+ yes_vote_blind: note.yes_vote_blind,
|
|
|
+ all_vote_value: note.all_vote_value,
|
|
|
+ all_vote_blind: note.all_vote_blind,
|
|
|
+ tx_hash: vote.1,
|
|
|
+ call_index: Some(vote.2),
|
|
|
+ };
|
|
|
+
|
|
|
+ dao_votes.push(v);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if confirm {
|
|
|
+ if let Err(e) = self.put_dao_trees(&daos_tree, &proposals_tree).await {
|
|
|
+ return Err(Error::RusqliteError(format!(
|
|
|
+ "[apply_tx_dao_data] Put DAO tree failed: {e:?}"
|
|
|
+ )))
|
|
|
+ }
|
|
|
+ if let Err(e) = self.confirm_daos(&daos_to_confirm).await {
|
|
|
+ return Err(Error::RusqliteError(format!(
|
|
|
+ "[apply_tx_dao_data] Confirm DAOs failed: {e:?}"
|
|
|
+ )))
|
|
|
+ }
|
|
|
+ self.put_dao_proposals(&our_proposals).await?;
|
|
|
+ if let Err(e) = self.put_dao_votes(&dao_votes).await {
|
|
|
+ return Err(Error::RusqliteError(format!(
|
|
|
+ "[apply_tx_dao_data] Put DAO votes failed: {e:?}"
|
|
|
+ )))
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ Ok(())
|
|
|
+ }
|
|
|
+
|
|
|
+ /// Confirm already imported DAO metadata into the wallet.
|
|
|
+ /// Here we just write the leaf position, tx hash, and call index.
|
|
|
+ /// Panics if the fields are None.
|
|
|
+ pub async fn confirm_daos(&self, daos: &[Dao]) -> WalletDbResult<()> {
|
|
|
+ for dao in daos {
|
|
|
+ let query = format!(
|
|
|
+ "UPDATE {} SET {} = ?1, {} = ?2, {} = ?3 WHERE {} = {};",
|
|
|
+ DAO_DAOS_TABLE,
|
|
|
+ DAO_DAOS_COL_LEAF_POSITION,
|
|
|
+ DAO_DAOS_COL_TX_HASH,
|
|
|
+ DAO_DAOS_COL_CALL_INDEX,
|
|
|
+ DAO_DAOS_COL_DAO_ID,
|
|
|
+ dao.id,
|
|
|
+ );
|
|
|
+ self.wallet
|
|
|
+ .exec_sql(
|
|
|
+ &query,
|
|
|
+ rusqlite::params![
|
|
|
+ serialize(&dao.leaf_position.unwrap()),
|
|
|
+ serialize(&dao.tx_hash.unwrap()),
|
|
|
+ dao.call_index.unwrap()
|
|
|
+ ],
|
|
|
+ )
|
|
|
+ .await?;
|
|
|
+ }
|
|
|
+
|
|
|
+ Ok(())
|
|
|
+ }
|
|
|
+
|
|
|
+ /// Unconfirm imported DAOs by removing the leaf position, txid, and call index.
|
|
|
+ pub async fn unconfirm_daos(&self, daos: &[Dao]) -> WalletDbResult<()> {
|
|
|
+ for dao in daos {
|
|
|
+ let query = format!(
|
|
|
+ "UPDATE {} SET {} = ?1, {} = ?2, {} = ?3 WHERE {} = {};",
|
|
|
+ DAO_DAOS_TABLE,
|
|
|
+ DAO_DAOS_COL_LEAF_POSITION,
|
|
|
+ DAO_DAOS_COL_TX_HASH,
|
|
|
+ DAO_DAOS_COL_CALL_INDEX,
|
|
|
+ DAO_DAOS_COL_DAO_ID,
|
|
|
+ dao.id,
|
|
|
+ );
|
|
|
+ self.wallet
|
|
|
+ .exec_sql(&query, rusqlite::params![None::<Vec<u8>>, None::<Vec<u8>>, None::<u64>,])
|
|
|
+ .await?;
|
|
|
+ }
|
|
|
+
|
|
|
+ Ok(())
|
|
|
+ }
|
|
|
+
|
|
|
+ /// Import given DAO proposals into the wallet
|
|
|
+ pub async fn put_dao_proposals(&self, proposals: &[DaoProposal]) -> Result<()> {
|
|
|
+ let daos = self.get_daos().await?;
|
|
|
+
|
|
|
+ for proposal in proposals {
|
|
|
+ let Some(dao) = daos.iter().find(|x| x.bulla() == proposal.dao_bulla) else {
|
|
|
+ return Err(Error::RusqliteError(
|
|
|
+ "[put_dao_proposals] Couldn't find respective DAO".to_string(),
|
|
|
+ ))
|
|
|
+ };
|
|
|
+
|
|
|
+ let query = format!(
|
|
|
+ "INSERT INTO {} ({}, {}, {}, {}, {}, {}, {}, {}, {}) VALUES (?1, ?2, ?3, ?4, ?5, ?6, ?7, ?8, ?9);",
|
|
|
+ DAO_PROPOSALS_TABLE,
|
|
|
+ DAO_PROPOSALS_COL_DAO_ID,
|
|
|
+ DAO_PROPOSALS_COL_RECV_PUBLIC,
|
|
|
+ DAO_PROPOSALS_COL_AMOUNT,
|
|
|
+ DAO_PROPOSALS_COL_SENDCOIN_TOKEN_ID,
|
|
|
+ DAO_PROPOSALS_COL_BULLA_BLIND,
|
|
|
+ DAO_PROPOSALS_COL_LEAF_POSITION,
|
|
|
+ DAO_PROPOSALS_COL_MONEY_SNAPSHOT_TREE,
|
|
|
+ DAO_PROPOSALS_COL_TX_HASH,
|
|
|
+ DAO_PROPOSALS_COL_CALL_INDEX,
|
|
|
+ );
|
|
|
+
|
|
|
+ if let Err(e) = self
|
|
|
+ .wallet
|
|
|
+ .exec_sql(
|
|
|
+ &query,
|
|
|
+ rusqlite::params![
|
|
|
+ dao.id,
|
|
|
+ serialize(&proposal.recipient),
|
|
|
+ serialize(&proposal.amount),
|
|
|
+ serialize(&proposal.token_id),
|
|
|
+ serialize(&proposal.bulla_blind),
|
|
|
+ serialize(&proposal.leaf_position.unwrap()),
|
|
|
+ serialize(&proposal.money_snapshot_tree.clone().unwrap()),
|
|
|
+ serialize(&proposal.tx_hash.unwrap()),
|
|
|
+ proposal.call_index,
|
|
|
+ ],
|
|
|
+ )
|
|
|
+ .await
|
|
|
+ {
|
|
|
+ return Err(Error::RusqliteError(format!(
|
|
|
+ "[put_dao_proposals] Proposal insert failed: {e:?}"
|
|
|
+ )))
|
|
|
+ };
|
|
|
+ }
|
|
|
+
|
|
|
+ Ok(())
|
|
|
+ }
|
|
|
+
|
|
|
+ /// Import given DAO votes into the wallet
|
|
|
+ pub async fn put_dao_votes(&self, votes: &[DaoVote]) -> WalletDbResult<()> {
|
|
|
+ for vote in votes {
|
|
|
+ eprintln!("Importing DAO vote into wallet");
|
|
|
+
|
|
|
+ let query = format!(
|
|
|
+ "INSERT INTO {} ({}, {}, {}, {}, {}, {}, {}) VALUES (?1, ?2, ?3, ?4, ?5, ?6, ?7);",
|
|
|
+ DAO_VOTES_TABLE,
|
|
|
+ DAO_VOTES_COL_PROPOSAL_ID,
|
|
|
+ DAO_VOTES_COL_VOTE_OPTION,
|
|
|
+ DAO_VOTES_COL_YES_VOTE_BLIND,
|
|
|
+ DAO_VOTES_COL_ALL_VOTE_VALUE,
|
|
|
+ DAO_VOTES_COL_ALL_VOTE_BLIND,
|
|
|
+ DAO_VOTES_COL_TX_HASH,
|
|
|
+ DAO_VOTES_COL_CALL_INDEX,
|
|
|
+ );
|
|
|
+
|
|
|
+ self.wallet
|
|
|
+ .exec_sql(
|
|
|
+ &query,
|
|
|
+ rusqlite::params![
|
|
|
+ vote.proposal_id,
|
|
|
+ vote.vote_option as u64,
|
|
|
+ serialize(&vote.yes_vote_blind),
|
|
|
+ serialize(&vote.all_vote_value),
|
|
|
+ serialize(&vote.all_vote_blind),
|
|
|
+ serialize(&vote.tx_hash.unwrap()),
|
|
|
+ vote.call_index.unwrap(),
|
|
|
+ ],
|
|
|
+ )
|
|
|
+ .await?;
|
|
|
+
|
|
|
+ eprintln!("DAO vote added to wallet");
|
|
|
+ }
|
|
|
+
|
|
|
+ Ok(())
|
|
|
+ }
|
|
|
+
|
|
|
+ /// Reset the DAO Merkle trees in the wallet
|
|
|
+ pub async fn reset_dao_trees(&self) -> WalletDbResult<()> {
|
|
|
+ eprintln!("Resetting DAO Merkle trees");
|
|
|
+ let tree = MerkleTree::new(100);
|
|
|
+ self.put_dao_trees(&tree, &tree).await?;
|
|
|
+ eprintln!("Successfully reset DAO Merkle trees");
|
|
|
+
|
|
|
+ Ok(())
|
|
|
+ }
|
|
|
+
|
|
|
+ /// Reset confirmed DAOs in the wallet
|
|
|
+ pub async fn reset_daos(&self) -> WalletDbResult<()> {
|
|
|
+ eprintln!("Resetting DAO confirmations");
|
|
|
+ let daos = match self.get_daos().await {
|
|
|
+ Ok(d) => d,
|
|
|
+ Err(e) => {
|
|
|
+ eprintln!("[reset_daos] DAOs retrieval failed: {e:?}");
|
|
|
+ return Err(WalletDbError::GenericError);
|
|
|
+ }
|
|
|
+ };
|
|
|
+ self.unconfirm_daos(&daos).await?;
|
|
|
+ eprintln!("Successfully unconfirmed DAOs");
|
|
|
+
|
|
|
+ Ok(())
|
|
|
+ }
|
|
|
+
|
|
|
+ /// Reset all DAO proposals in the wallet
|
|
|
+ pub async fn reset_dao_proposals(&self) -> WalletDbResult<()> {
|
|
|
+ eprintln!("Resetting DAO proposals");
|
|
|
+ let query = format!("DELETE FROM {};", DAO_PROPOSALS_TABLE);
|
|
|
+ self.wallet.exec_sql(&query, &[]).await
|
|
|
+ }
|
|
|
+
|
|
|
+ /// Reset all DAO votes in the wallet
|
|
|
+ pub async fn reset_dao_votes(&self) -> WalletDbResult<()> {
|
|
|
+ eprintln!("Resetting DAO votes");
|
|
|
+ let query = format!("DELETE FROM {};", DAO_VOTES_TABLE);
|
|
|
+ self.wallet.exec_sql(&query, &[]).await
|
|
|
+ }
|
|
|
}
|