| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593 |
- /* This file is part of DarkFi (https://dark.fi)
- *
- * Copyright (C) 2020-2024 Dyne.org foundation
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- use std::{
- fs,
- io::{stdin, Read},
- process::exit,
- str::FromStr,
- sync::Arc,
- time::Instant,
- };
- use prettytable::{format, row, Table};
- use rand::rngs::OsRng;
- use smol::stream::StreamExt;
- use structopt_toml::{serde::Deserialize, structopt::StructOpt, StructOptToml};
- use url::Url;
- use darkfi::{
- async_daemonize, cli_desc,
- rpc::{client::RpcClient, jsonrpc::JsonRequest, util::JsonValue},
- tx::Transaction,
- util::{
- parse::{decode_base10, encode_base10},
- path::expand_path,
- },
- zk::halo2::Field,
- Result,
- };
- use darkfi_money_contract::model::{Coin, TokenId};
- use darkfi_sdk::{
- crypto::{FuncId, PublicKey, SecretKey},
- pasta::{group::ff::PrimeField, pallas},
- };
- use darkfi_serial::{deserialize, serialize};
- /// Error codes
- mod error;
- /// darkfid JSON-RPC related methods
- mod rpc;
- /// Payment methods
- mod transfer;
- /// Swap methods
- mod swap;
- use swap::PartialSwapData;
- /// Token methods
- mod token;
- /// CLI utility functions
- mod cli_util;
- use cli_util::{generate_completions, kaching, parse_token_pair, parse_value_pair};
- /// Wallet functionality related to Money
- mod money;
- use money::BALANCE_BASE10_DECIMALS;
- /// Wallet functionality related to Dao
- mod dao;
- use dao::DaoParams;
- /// Wallet functionality related to transactions history
- mod txs_history;
- /// Wallet database operations handler
- mod walletdb;
- use walletdb::{WalletDb, WalletPtr};
- const CONFIG_FILE: &str = "drk_config.toml";
- const CONFIG_FILE_CONTENTS: &str = include_str!("../drk_config.toml");
- // Dev Note: when adding/modifying args here,
- // don't forget to update cli_util::generate_completions()
- #[derive(Clone, Debug, Deserialize, StructOpt, StructOptToml)]
- #[serde(default)]
- #[structopt(name = "drk", about = cli_desc!())]
- struct Args {
- #[structopt(short, long)]
- /// Configuration file to use
- config: Option<String>,
- #[structopt(long, default_value = "~/.local/darkfi/drk/wallet.db")]
- /// Path to wallet database
- wallet_path: String,
- #[structopt(long, default_value = "changeme")]
- /// Password for the wallet database
- wallet_pass: String,
- #[structopt(short, long, default_value = "tcp://127.0.0.1:8340")]
- /// darkfid JSON-RPC endpoint
- endpoint: Url,
- #[structopt(subcommand)]
- /// Sub command to execute
- command: Subcmd,
- #[structopt(short, long)]
- /// Set log file to ouput into
- log: Option<String>,
- #[structopt(short, parse(from_occurrences))]
- /// Increase verbosity (-vvv supported)
- verbose: u8,
- }
- // Dev Note: when adding/modifying commands here,
- // don't forget to update cli_util::generate_completions()
- #[derive(Clone, Debug, Deserialize, StructOpt)]
- enum Subcmd {
- /// Fun
- Kaching,
- /// Send a ping request to the darkfid RPC endpoint
- Ping,
- /// Generate a SHELL completion script and print to stdout
- Completions {
- /// The Shell you want to generate script for
- shell: String,
- },
- /// Wallet operations
- Wallet {
- #[structopt(long)]
- /// Initialize wallet database
- initialize: bool,
- #[structopt(long)]
- /// Generate a new keypair in the wallet
- keygen: bool,
- #[structopt(long)]
- /// Query the wallet for known balances
- balance: bool,
- #[structopt(long)]
- /// Get the default address in the wallet
- address: bool,
- #[structopt(long)]
- /// Print all the addresses in the wallet
- addresses: bool,
- #[structopt(long)]
- /// Set the default address in the wallet
- default_address: Option<usize>,
- #[structopt(long)]
- /// Print all the secret keys from the wallet
- secrets: bool,
- #[structopt(long)]
- /// Import secret keys from stdin into the wallet, separated by newlines
- import_secrets: bool,
- #[structopt(long)]
- /// Print the Merkle tree in the wallet
- tree: bool,
- #[structopt(long)]
- /// Print all the coins in the wallet
- coins: bool,
- },
- /// Unspend a coin
- Unspend {
- /// base58-encoded coin to mark as unspent
- coin: String,
- },
- /// Create a payment transaction
- Transfer {
- /// Amount to send
- amount: String,
- /// Token ID to send
- token: String,
- /// Recipient address
- recipient: String,
- },
- /// OTC atomic swap
- Otc {
- #[structopt(subcommand)]
- /// Sub command to execute
- command: OtcSubcmd,
- },
- /// Inspect a transaction from stdin
- Inspect,
- /// Read a transaction from stdin and broadcast it
- Broadcast,
- /// This subscription will listen for incoming blocks from darkfid and look
- /// through their transactions to see if there's any that interest us.
- /// With `drk` we look at transactions calling the money contract so we can
- /// find coins sent to us and fill our wallet with the necessary metadata.
- Subscribe,
- /// DAO functionalities
- Dao {
- #[structopt(subcommand)]
- /// Sub command to execute
- command: DaoSubcmd,
- },
- /// Scan the blockchain and parse relevant transactions
- Scan {
- #[structopt(long)]
- /// Reset Merkle tree and start scanning from first block
- reset: bool,
- #[structopt(long)]
- /// List all available checkpoints
- list: bool,
- #[structopt(long)]
- /// Reset Merkle tree to checkpoint index and start scanning
- checkpoint: Option<u64>,
- },
- /// Explorer related subcommands
- Explorer {
- #[structopt(subcommand)]
- /// Sub command to execute
- command: ExplorerSubcmd,
- },
- /// Manage Token aliases
- Alias {
- #[structopt(subcommand)]
- /// Sub command to execute
- command: AliasSubcmd,
- },
- /// Token functionalities
- Token {
- #[structopt(subcommand)]
- /// Sub command to execute
- command: TokenSubcmd,
- },
- }
- #[derive(Clone, Debug, Deserialize, StructOpt)]
- enum OtcSubcmd {
- /// Initialize the first half of the atomic swap
- Init {
- /// Value pair to send:recv (11.55:99.42)
- #[structopt(short, long)]
- value_pair: String,
- /// Token pair to send:recv (f00:b4r)
- #[structopt(short, long)]
- token_pair: String,
- },
- /// Build entire swap tx given the first half from stdin
- Join,
- /// Inspect a swap half or the full swap tx from stdin
- Inspect,
- /// Sign a transaction given from stdin as the first-half
- Sign,
- }
- #[derive(Clone, Debug, Deserialize, StructOpt)]
- enum DaoSubcmd {
- /// Create DAO parameters
- Create {
- /// The minimum amount of governance tokens needed to open a proposal for this DAO
- proposer_limit: String,
- /// Minimal threshold of participating total tokens needed for a proposal to pass
- quorum: String,
- /// The ratio of winning votes/total votes needed for a proposal to pass (2 decimals)
- approval_ratio: f64,
- /// DAO's governance token ID
- gov_token_id: String,
- },
- /// View DAO data from stdin
- View,
- /// Import DAO data from stdin
- Import {
- /// Named identifier for the DAO
- dao_name: String,
- },
- /// List imported DAOs (or info about a specific one)
- List {
- /// Numeric identifier for the DAO (optional)
- dao_alias: Option<String>,
- },
- /// Show the balance of a DAO
- Balance {
- /// Name or numeric identifier for the DAO
- dao_alias: String,
- },
- /// Mint an imported DAO on-chain
- Mint {
- /// Name or numeric identifier for the DAO
- dao_alias: String,
- },
- /// Create a proposal for a DAO
- Propose {
- /// Name or numeric identifier for the DAO
- dao_alias: String,
- /// Pubkey to send tokens to with proposal success
- recipient: String,
- /// Amount to send from DAO with proposal success
- amount: String,
- /// Token ID to send from DAO with proposal success
- token: String,
- },
- /// List DAO proposals
- Proposals {
- /// Name or numeric identifier for the DAO
- dao_alias: String,
- },
- /// View a DAO proposal data
- Proposal {
- /// Name or numeric identifier for the DAO
- dao_alias: String,
- /// Numeric identifier for the proposal
- proposal_id: u64,
- },
- /// Vote on a given proposal
- Vote {
- /// Name or numeric identifier for the DAO
- dao_alias: String,
- /// Numeric identifier for the proposal
- proposal_id: u64,
- /// Vote (0 for NO, 1 for YES)
- vote: u8,
- /// Vote weight (amount of governance tokens)
- vote_weight: String,
- },
- /// Execute a DAO proposal
- Exec {
- /// Name or numeric identifier for the DAO
- dao_alias: String,
- /// Numeric identifier for the proposal
- proposal_id: u64,
- },
- }
- #[derive(Clone, Debug, Deserialize, StructOpt)]
- enum ExplorerSubcmd {
- /// Fetch a blockchain transaction by hash
- FetchTx {
- /// Transaction hash
- tx_hash: String,
- #[structopt(long)]
- /// Print the full transaction information
- full: bool,
- #[structopt(long)]
- /// Encode transaction to base58
- encode: bool,
- },
- /// Read a transaction from stdin and simulate it
- SimulateTx,
- /// Fetch broadcasted transactions history
- TxsHistory {
- /// Fetch specific history record (optional)
- tx_hash: Option<String>,
- #[structopt(long)]
- /// Encode specific history record transaction to base58
- encode: bool,
- },
- }
- #[derive(Clone, Debug, Deserialize, StructOpt)]
- enum AliasSubcmd {
- /// Create a Token alias
- Add {
- /// Token alias
- alias: String,
- /// Token to create alias for
- token: String,
- },
- /// Print alias info of optional arguments.
- /// If no argument is provided, list all the aliases in the wallet.
- Show {
- /// Token alias to search for
- #[structopt(short, long)]
- alias: Option<String>,
- /// Token to search alias for
- #[structopt(short, long)]
- token: Option<String>,
- },
- /// Remove a Token alias
- Remove {
- /// Token alias to remove
- alias: String,
- },
- }
- #[derive(Clone, Debug, Deserialize, StructOpt)]
- enum TokenSubcmd {
- /// Import a mint authority secret from stdin
- Import,
- /// Generate a new mint authority
- GenerateMint,
- /// List token IDs with available mint authorities
- List,
- /// Mint tokens
- Mint {
- /// Token ID to mint
- token: String,
- /// Amount to mint
- amount: String,
- /// Recipient of the minted tokens
- recipient: String,
- },
- /// Freeze a token mint
- Freeze {
- /// Token ID to freeze
- token: String,
- },
- }
- /// CLI-util structure
- pub struct Drk {
- /// Wallet database operations handler
- pub wallet: WalletPtr,
- /// JSON-RPC client to execute requests to darkfid daemon
- pub rpc_client: RpcClient,
- }
- impl Drk {
- async fn new(
- wallet_path: String,
- wallet_pass: String,
- endpoint: Url,
- ex: Arc<smol::Executor<'static>>,
- ) -> Result<Self> {
- // Script kiddies protection
- if wallet_pass == "changeme" {
- eprintln!("Please don't use default wallet password...");
- exit(2);
- }
- // Initialize wallet
- let wallet_path = expand_path(&wallet_path)?;
- if !wallet_path.exists() {
- if let Some(parent) = wallet_path.parent() {
- fs::create_dir_all(parent)?;
- }
- }
- let wallet = match WalletDb::new(Some(wallet_path), Some(&wallet_pass)) {
- Ok(w) => w,
- Err(e) => {
- eprintln!("Error initializing wallet: {e:?}");
- exit(2);
- }
- };
- // Initialize rpc client
- let rpc_client = RpcClient::new(endpoint, ex).await?;
- Ok(Self { wallet, rpc_client })
- }
- /// Initialize wallet with tables for drk
- async fn initialize_wallet(&self) -> Result<()> {
- let wallet_schema = include_str!("../wallet.sql");
- if let Err(e) = self.wallet.exec_batch_sql(wallet_schema).await {
- eprintln!("Error initializing wallet: {e:?}");
- exit(2);
- }
- Ok(())
- }
- /// Auxilliary function to ping configured darkfid daemon for liveness.
- async fn ping(&self) -> Result<()> {
- eprintln!("Executing ping request to darkfid...");
- let latency = Instant::now();
- let req = JsonRequest::new("ping", JsonValue::Array(vec![]));
- let rep = self.rpc_client.oneshot_request(req).await?;
- let latency = latency.elapsed();
- eprintln!("Got reply: {rep:?}");
- eprintln!("Latency: {latency:?}");
- Ok(())
- }
- }
- async_daemonize!(realmain);
- async fn realmain(args: Args, ex: Arc<smol::Executor<'static>>) -> Result<()> {
- match args.command {
- Subcmd::Kaching => {
- kaching().await;
- Ok(())
- }
- Subcmd::Ping => {
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- drk.ping().await
- }
- Subcmd::Completions { shell } => generate_completions(&shell),
- Subcmd::Wallet {
- initialize,
- keygen,
- balance,
- address,
- addresses,
- default_address,
- secrets,
- import_secrets,
- tree,
- coins,
- } => {
- if !initialize &&
- !keygen &&
- !balance &&
- !address &&
- !addresses &&
- default_address.is_none() &&
- !secrets &&
- !tree &&
- !coins &&
- !import_secrets
- {
- eprintln!("Error: You must use at least one flag for this subcommand");
- eprintln!("Run with \"wallet -h\" to see the subcommand usage.");
- exit(2);
- }
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- if initialize {
- drk.initialize_wallet().await?;
- if let Err(e) = drk.initialize_money().await {
- eprintln!("Failed to initialize Money: {e:?}");
- exit(2);
- }
- if let Err(e) = drk.initialize_dao().await {
- eprintln!("Failed to initialize DAO: {e:?}");
- exit(2);
- }
- return Ok(())
- }
- if keygen {
- if let Err(e) = drk.money_keygen().await {
- eprintln!("Failed to generate keypair: {e:?}");
- exit(2);
- }
- return Ok(())
- }
- if balance {
- let balmap = drk.money_balance().await?;
- let aliases_map = drk.get_aliases_mapped_by_token().await?;
- // Create a prettytable with the new data:
- let mut table = Table::new();
- table.set_format(*format::consts::FORMAT_NO_BORDER_LINE_SEPARATOR);
- table.set_titles(row!["Token ID", "Aliases", "Balance"]);
- for (token_id, balance) in balmap.iter() {
- let aliases = match aliases_map.get(token_id) {
- Some(a) => a,
- None => "-",
- };
- table.add_row(row![
- token_id,
- aliases,
- encode_base10(*balance, BALANCE_BASE10_DECIMALS)
- ]);
- }
- if table.is_empty() {
- eprintln!("No unspent balances found");
- } else {
- eprintln!("{table}");
- }
- return Ok(())
- }
- if address {
- let address = match drk.default_address().await {
- Ok(a) => a,
- Err(e) => {
- eprintln!("Failed to fetch default address: {e:?}");
- exit(2);
- }
- };
- eprintln!("{address}");
- return Ok(())
- }
- if addresses {
- let addresses = drk.addresses().await?;
- // Create a prettytable with the new data:
- let mut table = Table::new();
- table.set_format(*format::consts::FORMAT_NO_BORDER_LINE_SEPARATOR);
- table.set_titles(row!["Key ID", "Public Key", "Secret Key", "Is Default"]);
- for (key_id, public_key, secret_key, is_default) in addresses {
- let is_default = match is_default {
- 1 => "*",
- _ => "",
- };
- table.add_row(row![key_id, public_key, secret_key, is_default]);
- }
- if table.is_empty() {
- eprintln!("No addresses found");
- } else {
- eprintln!("{table}");
- }
- return Ok(())
- }
- if let Some(idx) = default_address {
- if let Err(e) = drk.set_default_address(idx).await {
- eprintln!("Failed to set default address: {e:?}");
- exit(2);
- }
- return Ok(())
- }
- if secrets {
- let v = drk.get_money_secrets().await?;
- for i in v {
- eprintln!("{i}");
- }
- return Ok(())
- }
- if import_secrets {
- let mut secrets = vec![];
- let lines = stdin().lines();
- for (i, line) in lines.enumerate() {
- if let Ok(line) = line {
- let bytes = bs58::decode(&line.trim()).into_vec()?;
- let Ok(secret) = deserialize(&bytes) else {
- eprintln!("Warning: Failed to deserialize secret on line {i}");
- continue
- };
- secrets.push(secret);
- }
- }
- let pubkeys = match drk.import_money_secrets(secrets).await {
- Ok(p) => p,
- Err(e) => {
- eprintln!("Failed to import secret keys into wallet: {e:?}");
- exit(2);
- }
- };
- for key in pubkeys {
- eprintln!("{key}");
- }
- return Ok(())
- }
- if tree {
- let tree = drk.get_money_tree().await?;
- eprintln!("{tree:#?}");
- return Ok(())
- }
- if coins {
- let coins = drk.get_coins(true).await?;
- let aliases_map = drk.get_aliases_mapped_by_token().await?;
- if coins.is_empty() {
- return Ok(())
- }
- let mut table = Table::new();
- table.set_format(*format::consts::FORMAT_NO_BORDER_LINE_SEPARATOR);
- table.set_titles(row![
- "Coin",
- "Spent",
- "Token ID",
- "Aliases",
- "Value",
- "Spend Hook",
- "User Data"
- ]);
- for coin in coins {
- let aliases = match aliases_map.get(&coin.0.note.token_id.to_string()) {
- Some(a) => a,
- None => "-",
- };
- let spend_hook = if coin.0.note.spend_hook != FuncId::none() {
- bs58::encode(&serialize(&coin.0.note.spend_hook.inner()))
- .into_string()
- .to_string()
- } else {
- String::from("-")
- };
- let user_data = if coin.0.note.user_data != pallas::Base::ZERO {
- bs58::encode(&serialize(&coin.0.note.user_data)).into_string().to_string()
- } else {
- String::from("-")
- };
- table.add_row(row![
- bs58::encode(&serialize(&coin.0.coin.inner())).into_string().to_string(),
- coin.1,
- coin.0.note.token_id,
- aliases,
- format!(
- "{} ({})",
- coin.0.note.value,
- encode_base10(coin.0.note.value, BALANCE_BASE10_DECIMALS)
- ),
- spend_hook,
- user_data
- ]);
- }
- eprintln!("{table}");
- return Ok(())
- }
- unreachable!()
- }
- Subcmd::Unspend { coin } => {
- let bytes: [u8; 32] = match bs58::decode(&coin).into_vec()?.try_into() {
- Ok(b) => b,
- Err(e) => {
- eprintln!("Invalid coin: {e:?}");
- exit(2);
- }
- };
- let elem: pallas::Base = match pallas::Base::from_repr(bytes).into() {
- Some(v) => v,
- None => {
- eprintln!("Invalid coin");
- exit(2);
- }
- };
- let coin = Coin::from(elem);
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- if let Err(e) = drk.unspend_coin(&coin).await {
- eprintln!("Failed to mark coin as unspent: {e:?}");
- exit(2);
- }
- Ok(())
- }
- Subcmd::Transfer { amount, token, recipient } => {
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- if let Err(e) = f64::from_str(&amount) {
- eprintln!("Invalid amount: {e:?}");
- exit(2);
- }
- let rcpt = match PublicKey::from_str(&recipient) {
- Ok(r) => r,
- Err(e) => {
- eprintln!("Invalid recipient: {e:?}");
- exit(2);
- }
- };
- let token_id = match drk.get_token(token).await {
- Ok(t) => t,
- Err(e) => {
- eprintln!("Invalid token alias: {e:?}");
- exit(2);
- }
- };
- let tx = match drk.transfer(&amount, token_id, rcpt).await {
- Ok(t) => t,
- Err(e) => {
- eprintln!("Failed to create payment transaction: {e:?}");
- exit(2);
- }
- };
- println!("{}", bs58::encode(&serialize(&tx)).into_string());
- Ok(())
- }
- Subcmd::Otc { command } => {
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- match command {
- OtcSubcmd::Init { value_pair, token_pair } => {
- let (vp_send, vp_recv) = parse_value_pair(&value_pair)?;
- let (tp_send, tp_recv) = parse_token_pair(&drk, &token_pair).await?;
- let half = match drk.init_swap(vp_send, tp_send, vp_recv, tp_recv).await {
- Ok(h) => h,
- Err(e) => {
- eprintln!("Failed to create swap transaction half: {e:?}");
- exit(2);
- }
- };
- println!("{}", bs58::encode(&serialize(&half)).into_string());
- Ok(())
- }
- OtcSubcmd::Join => {
- let mut buf = String::new();
- stdin().read_to_string(&mut buf)?;
- let bytes = bs58::decode(&buf.trim()).into_vec()?;
- let partial: PartialSwapData = deserialize(&bytes)?;
- let tx = match drk.join_swap(partial).await {
- Ok(tx) => tx,
- Err(e) => {
- eprintln!("Failed to create a join swap transaction: {e:?}");
- exit(2);
- }
- };
- println!("{}", bs58::encode(&serialize(&tx)).into_string());
- Ok(())
- }
- OtcSubcmd::Inspect => {
- let mut buf = String::new();
- stdin().read_to_string(&mut buf)?;
- let bytes = bs58::decode(&buf.trim()).into_vec()?;
- if let Err(e) = drk.inspect_swap(bytes).await {
- eprintln!("Failed to inspect swap: {e:?}");
- exit(2);
- };
- Ok(())
- }
- OtcSubcmd::Sign => {
- let mut buf = String::new();
- stdin().read_to_string(&mut buf)?;
- let bytes = bs58::decode(&buf.trim()).into_vec()?;
- let mut tx: Transaction = deserialize(&bytes)?;
- if let Err(e) = drk.sign_swap(&mut tx).await {
- eprintln!("Failed to sign joined swap transaction: {e:?}");
- exit(2);
- };
- println!("{}", bs58::encode(&serialize(&tx)).into_string());
- Ok(())
- }
- }
- }
- Subcmd::Dao { command } => match command {
- DaoSubcmd::Create { proposer_limit, quorum, approval_ratio, gov_token_id } => {
- if let Err(e) = f64::from_str(&proposer_limit) {
- eprintln!("Invalid proposer limit: {e:?}");
- exit(2);
- }
- if let Err(e) = f64::from_str(&quorum) {
- eprintln!("Invalid quorum: {e:?}");
- exit(2);
- }
- let proposer_limit = decode_base10(&proposer_limit, BALANCE_BASE10_DECIMALS, true)?;
- let quorum = decode_base10(&quorum, BALANCE_BASE10_DECIMALS, true)?;
- if approval_ratio > 1.0 {
- eprintln!("Error: Approval ratio cannot be >1.0");
- exit(2);
- }
- let approval_ratio_base = 100_u64;
- let approval_ratio_quot = (approval_ratio * approval_ratio_base as f64) as u64;
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- let gov_token_id = match drk.get_token(gov_token_id).await {
- Ok(g) => g,
- Err(e) => {
- eprintln!("Invalid Token ID: {e:?}");
- exit(2);
- }
- };
- let secret_key = SecretKey::random(&mut OsRng);
- let bulla_blind = pallas::Base::random(&mut OsRng);
- let dao_params = DaoParams {
- proposer_limit,
- quorum,
- approval_ratio_base,
- approval_ratio_quot,
- gov_token_id,
- secret_key,
- bulla_blind,
- };
- let encoded = bs58::encode(&serialize(&dao_params)).into_string();
- eprintln!("{encoded}");
- Ok(())
- }
- DaoSubcmd::View => {
- let mut buf = String::new();
- stdin().read_to_string(&mut buf)?;
- let bytes = bs58::decode(&buf.trim()).into_vec()?;
- let dao_params: DaoParams = deserialize(&bytes)?;
- eprintln!("{dao_params}");
- Ok(())
- }
- DaoSubcmd::Import { dao_name } => {
- let mut buf = String::new();
- stdin().read_to_string(&mut buf)?;
- let bytes = bs58::decode(&buf.trim()).into_vec()?;
- let dao_params: DaoParams = deserialize(&bytes)?;
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- if let Err(e) = drk.import_dao(dao_name, dao_params).await {
- eprintln!("Failed to import DAO: {e:?}");
- exit(2);
- }
- Ok(())
- }
- DaoSubcmd::List { dao_alias } => {
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- // We cannot use .map() since get_dao_id() uses ?
- let dao_id = match dao_alias {
- Some(alias) => Some(drk.get_dao_id(&alias).await?),
- None => None,
- };
- if let Err(e) = drk.dao_list(dao_id).await {
- eprintln!("Failed to list DAO: {e:?}");
- exit(2);
- }
- Ok(())
- }
- DaoSubcmd::Balance { dao_alias } => {
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- let dao_id = drk.get_dao_id(&dao_alias).await?;
- let balmap = match drk.dao_balance(dao_id).await {
- Ok(b) => b,
- Err(e) => {
- eprintln!("Failed to fetch DAO balance: {e:?}");
- exit(2);
- }
- };
- let aliases_map = match drk.get_aliases_mapped_by_token().await {
- Ok(a) => a,
- Err(e) => {
- eprintln!("Failed to fetch wallet aliases: {e:?}");
- exit(2);
- }
- };
- // Create a prettytable with the new data:
- let mut table = Table::new();
- table.set_format(*format::consts::FORMAT_NO_BORDER_LINE_SEPARATOR);
- table.set_titles(row!["Token ID", "Aliases", "Balance"]);
- for (token_id, balance) in balmap.iter() {
- let aliases = match aliases_map.get(token_id) {
- Some(a) => a,
- None => "-",
- };
- table.add_row(row![
- token_id,
- aliases,
- encode_base10(*balance, BALANCE_BASE10_DECIMALS)
- ]);
- }
- if table.is_empty() {
- eprintln!("No unspent balances found");
- } else {
- eprintln!("{table}");
- }
- Ok(())
- }
- DaoSubcmd::Mint { dao_alias } => {
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- let dao_id = drk.get_dao_id(&dao_alias).await?;
- let tx = match drk.dao_mint(dao_id).await {
- Ok(tx) => tx,
- Err(e) => {
- eprintln!("Failed to mint DAO: {e:?}");
- exit(2);
- }
- };
- eprintln!("{}", bs58::encode(&serialize(&tx)).into_string());
- Ok(())
- }
- DaoSubcmd::Propose { dao_alias, recipient, amount, token } => {
- if let Err(e) = f64::from_str(&amount) {
- eprintln!("Invalid amount: {e:?}");
- exit(2);
- }
- let amount = decode_base10(&amount, BALANCE_BASE10_DECIMALS, true)?;
- let rcpt = match PublicKey::from_str(&recipient) {
- Ok(r) => r,
- Err(e) => {
- eprintln!("Invalid recipient: {e:?}");
- exit(2);
- }
- };
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- let dao_id = drk.get_dao_id(&dao_alias).await?;
- let token_id = match drk.get_token(token).await {
- Ok(t) => t,
- Err(e) => {
- eprintln!("Invalid token alias: {e:?}");
- exit(2);
- }
- };
- let tx = match drk.dao_propose(dao_id, rcpt, amount, token_id).await {
- Ok(tx) => tx,
- Err(e) => {
- eprintln!("Failed to create DAO proposal: {e:?}");
- exit(2);
- }
- };
- eprintln!("{}", bs58::encode(&serialize(&tx)).into_string());
- Ok(())
- }
- DaoSubcmd::Proposals { dao_alias } => {
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- let dao_id = drk.get_dao_id(&dao_alias).await?;
- let proposals = drk.get_dao_proposals(dao_id).await?;
- for proposal in proposals {
- eprintln!("[{}] {:?}", proposal.id, proposal.bulla());
- }
- Ok(())
- }
- DaoSubcmd::Proposal { dao_alias, proposal_id } => {
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- let dao_id = drk.get_dao_id(&dao_alias).await?;
- let proposals = drk.get_dao_proposals(dao_id).await?;
- let Some(proposal) = proposals.iter().find(|x| x.id == proposal_id) else {
- eprintln!("No such DAO proposal found");
- exit(2);
- };
- eprintln!("{proposal}");
- let votes = drk.get_dao_proposal_votes(proposal_id).await?;
- eprintln!("votes:");
- for vote in votes {
- let option = if vote.vote_option { "yes" } else { "no " };
- eprintln!(" {option} {}", vote.all_vote_value);
- }
- Ok(())
- }
- DaoSubcmd::Vote { dao_alias, proposal_id, vote, vote_weight } => {
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- let dao_id = drk.get_dao_id(&dao_alias).await?;
- if let Err(e) = f64::from_str(&vote_weight) {
- eprintln!("Invalid vote weight: {e:?}");
- exit(2);
- }
- let weight = decode_base10(&vote_weight, BALANCE_BASE10_DECIMALS, true)?;
- if vote > 1 {
- eprintln!("Vote can be either 0 (NO) or 1 (YES)");
- exit(2);
- }
- let vote = vote != 0;
- let tx = match drk.dao_vote(dao_id, proposal_id, vote, weight).await {
- Ok(tx) => tx,
- Err(e) => {
- eprintln!("Failed to create DAO Vote transaction: {e:?}");
- exit(2);
- }
- };
- // TODO: Write our_vote in the proposal sql.
- eprintln!("{}", bs58::encode(&serialize(&tx)).into_string());
- Ok(())
- }
- DaoSubcmd::Exec { dao_alias, proposal_id } => {
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- let dao_id = drk.get_dao_id(&dao_alias).await?;
- let dao = drk.get_dao_by_id(dao_id).await?;
- let proposal = drk.get_dao_proposal_by_id(proposal_id).await?;
- assert!(proposal.dao_bulla == dao.bulla());
- let tx = match drk.dao_exec(dao, proposal).await {
- Ok(tx) => tx,
- Err(e) => {
- eprintln!("Failed to execute DAO proposal: {e:?}");
- exit(2);
- }
- };
- eprintln!("{}", bs58::encode(&serialize(&tx)).into_string());
- Ok(())
- }
- },
- Subcmd::Inspect => {
- let mut buf = String::new();
- stdin().read_to_string(&mut buf)?;
- let bytes = bs58::decode(&buf.trim()).into_vec()?;
- let tx: Transaction = deserialize(&bytes)?;
- eprintln!("{tx:#?}");
- Ok(())
- }
- Subcmd::Broadcast => {
- eprintln!("Reading transaction from stdin...");
- let mut buf = String::new();
- stdin().read_to_string(&mut buf)?;
- let bytes = bs58::decode(&buf.trim()).into_vec()?;
- let tx = deserialize(&bytes)?;
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- let txid = match drk.broadcast_tx(&tx).await {
- Ok(t) => t,
- Err(e) => {
- eprintln!("Failed to broadcast transaction: {e:?}");
- exit(2);
- }
- };
- eprintln!("Transaction ID: {txid}");
- Ok(())
- }
- Subcmd::Subscribe => {
- let drk =
- Drk::new(args.wallet_path, args.wallet_pass, args.endpoint.clone(), ex.clone())
- .await?;
- if let Err(e) = drk.subscribe_blocks(args.endpoint, ex).await {
- eprintln!("Block subscription failed: {e:?}");
- exit(2);
- }
- Ok(())
- }
- Subcmd::Scan { reset, list, checkpoint } => {
- let drk =
- Drk::new(args.wallet_path, args.wallet_pass, args.endpoint.clone(), ex.clone())
- .await?;
- if reset {
- eprintln!("Reset requested.");
- if let Err(e) = drk.scan_blocks(true).await {
- eprintln!("Failed during scanning: {e:?}");
- exit(2);
- }
- eprintln!("Finished scanning blockchain");
- return Ok(())
- }
- if list {
- eprintln!("List requested.");
- // TODO: implement
- unimplemented!()
- }
- if let Some(c) = checkpoint {
- eprintln!("Checkpoint requested: {c}");
- // TODO: implement
- unimplemented!()
- }
- if let Err(e) = drk.scan_blocks(false).await {
- eprintln!("Failed during scanning: {e:?}");
- exit(2);
- }
- eprintln!("Finished scanning blockchain");
- Ok(())
- }
- Subcmd::Explorer { command } => match command {
- ExplorerSubcmd::FetchTx { tx_hash, full, encode } => {
- let tx_hash = blake3::Hash::from_hex(&tx_hash)?;
- let drk =
- Drk::new(args.wallet_path, args.wallet_pass, args.endpoint.clone(), ex.clone())
- .await?;
- let tx = match drk.get_tx(&tx_hash).await {
- Ok(tx) => tx,
- Err(e) => {
- eprintln!("Failed to fetch transaction: {e:?}");
- exit(2);
- }
- };
- let Some(tx) = tx else {
- eprintln!("Transaction was not found");
- exit(1);
- };
- // Make sure the tx is correct
- assert_eq!(tx.hash()?, tx_hash);
- if encode {
- eprintln!("{}", bs58::encode(&serialize(&tx)).into_string());
- exit(1)
- }
- eprintln!("Transaction ID: {tx_hash}");
- if full {
- eprintln!("{tx:?}");
- }
- Ok(())
- }
- ExplorerSubcmd::SimulateTx => {
- eprintln!("Reading transaction from stdin...");
- let mut buf = String::new();
- stdin().read_to_string(&mut buf)?;
- let bytes = bs58::decode(&buf.trim()).into_vec()?;
- let tx = deserialize(&bytes)?;
- let drk =
- Drk::new(args.wallet_path, args.wallet_pass, args.endpoint.clone(), ex.clone())
- .await?;
- let is_valid = match drk.simulate_tx(&tx).await {
- Ok(b) => b,
- Err(e) => {
- eprintln!("Failed to simulate tx: {e:?}");
- exit(2);
- }
- };
- eprintln!("Transaction ID: {}", tx.hash()?);
- eprintln!("State: {}", if is_valid { "valid" } else { "invalid" });
- Ok(())
- }
- ExplorerSubcmd::TxsHistory { tx_hash, encode } => {
- let drk =
- Drk::new(args.wallet_path, args.wallet_pass, args.endpoint.clone(), ex.clone())
- .await?;
- if let Some(c) = tx_hash {
- let (tx_hash, status, tx) = drk.get_tx_history_record(&c).await?;
- if encode {
- println!("{}", bs58::encode(&serialize(&tx)).into_string());
- exit(1)
- }
- eprintln!("Transaction ID: {tx_hash}");
- eprintln!("Status: {status}");
- eprintln!("{tx:?}");
- return Ok(())
- }
- let map = match drk.get_txs_history().await {
- Ok(m) => m,
- Err(e) => {
- eprintln!("Failed to retrieve transactions history records: {e:?}");
- exit(2);
- }
- };
- // Create a prettytable with the new data:
- let mut table = Table::new();
- table.set_format(*format::consts::FORMAT_NO_BORDER_LINE_SEPARATOR);
- table.set_titles(row!["Transaction Hash", "Status"]);
- for (txs_hash, status) in map.iter() {
- table.add_row(row![txs_hash, status]);
- }
- if table.is_empty() {
- eprintln!("No transactions found");
- } else {
- eprintln!("{table}");
- }
- Ok(())
- }
- },
- Subcmd::Alias { command } => match command {
- AliasSubcmd::Add { alias, token } => {
- if alias.chars().count() > 5 {
- eprintln!("Error: Alias exceeds 5 characters");
- exit(2);
- }
- let token_id = match TokenId::from_str(token.as_str()) {
- Ok(t) => t,
- Err(e) => {
- eprintln!("Invalid Token ID: {e:?}");
- exit(2);
- }
- };
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- if let Err(e) = drk.add_alias(alias, token_id).await {
- eprintln!("Failed to add alias: {e:?}");
- exit(2);
- }
- Ok(())
- }
- AliasSubcmd::Show { alias, token } => {
- let token_id = match token {
- Some(t) => match TokenId::from_str(t.as_str()) {
- Ok(t) => Some(t),
- Err(e) => {
- eprintln!("Invalid Token ID: {e:?}");
- exit(2);
- }
- },
- None => None,
- };
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- let map = drk.get_aliases(alias, token_id).await?;
- // Create a prettytable with the new data:
- let mut table = Table::new();
- table.set_format(*format::consts::FORMAT_NO_BORDER_LINE_SEPARATOR);
- table.set_titles(row!["Alias", "Token ID"]);
- for (alias, token_id) in map.iter() {
- table.add_row(row![alias, token_id]);
- }
- if table.is_empty() {
- eprintln!("No aliases found");
- } else {
- eprintln!("{table}");
- }
- Ok(())
- }
- AliasSubcmd::Remove { alias } => {
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- if let Err(e) = drk.remove_alias(alias).await {
- eprintln!("Failed to remove alias: {e:?}");
- exit(2);
- }
- Ok(())
- }
- },
- Subcmd::Token { command } => match command {
- TokenSubcmd::Import => {
- let mut buf = String::new();
- stdin().read_to_string(&mut buf)?;
- let mint_authority = match SecretKey::from_str(buf.trim()) {
- Ok(ma) => ma,
- Err(e) => {
- eprintln!("Invalid secret key: {e:?}");
- exit(2);
- }
- };
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- if let Err(e) = drk.import_mint_authority(mint_authority).await {
- eprintln!("Importing mint authority failed: {e:?}");
- exit(2);
- };
- let token_id = TokenId::derive(mint_authority);
- eprintln!("Successfully imported mint authority for token ID: {token_id}");
- Ok(())
- }
- TokenSubcmd::GenerateMint => {
- let mint_authority = SecretKey::random(&mut OsRng);
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- if let Err(e) = drk.import_mint_authority(mint_authority).await {
- eprintln!("Importing mint authority failed: {e:?}");
- exit(2);
- };
- // TODO: see TokenAttributes struct. I'm not sure how to restructure this rn.
- let token_id = TokenId::derive(mint_authority);
- eprintln!("Successfully imported mint authority for token ID: {token_id}");
- Ok(())
- }
- TokenSubcmd::List => {
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- let tokens = drk.list_tokens().await?;
- let aliases_map = match drk.get_aliases_mapped_by_token().await {
- Ok(map) => map,
- Err(e) => {
- eprintln!("Failed to fetch wallet aliases: {e:?}");
- exit(2);
- }
- };
- let mut table = Table::new();
- table.set_format(*format::consts::FORMAT_NO_BORDER_LINE_SEPARATOR);
- table.set_titles(row!["Token ID", "Aliases", "Mint Authority", "Frozen"]);
- for (token_id, authority, frozen) in tokens {
- let aliases = match aliases_map.get(&token_id.to_string()) {
- Some(a) => a,
- None => "-",
- };
- table.add_row(row![token_id, aliases, authority, frozen]);
- }
- if table.is_empty() {
- eprintln!("No tokens found");
- } else {
- eprintln!("{table}");
- }
- Ok(())
- }
- // TODO: Mint directly into DAO treasury
- TokenSubcmd::Mint { token, amount, recipient } => {
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- if let Err(e) = f64::from_str(&amount) {
- eprintln!("Invalid amount: {e:?}");
- exit(2);
- }
- let _rcpt = match PublicKey::from_str(&recipient) {
- Ok(r) => r,
- Err(e) => {
- eprintln!("Invalid recipient: {e:?}");
- exit(2);
- }
- };
- let _token_id = match drk.get_token(token).await {
- Ok(t) => t,
- Err(e) => {
- eprintln!("Invalid Token ID: {e:?}");
- exit(2);
- }
- };
- panic!("temporarily disabled due to change of API for drk.mint_token() fn");
- //let tx = match drk.mint_token(&amount, rcpt, token_id).await {
- // Ok(tx) => tx,
- // Err(e) => {
- // eprintln!("Failed to create token mint transaction: {e:?}");
- // exit(2);
- // }
- //};
- //eprintln!("{}", bs58::encode(&serialize(&tx)).into_string());
- //Ok(())
- }
- TokenSubcmd::Freeze { token } => {
- let drk = Drk::new(args.wallet_path, args.wallet_pass, args.endpoint, ex).await?;
- let _token_id = match drk.get_token(token).await {
- Ok(t) => t,
- Err(e) => {
- eprintln!("Invalid Token ID: {e:?}");
- exit(2);
- }
- };
- panic!("temporarily disabled due to change of API for drk.mint_token() fn");
- //let tx = match drk.freeze_token(token_id).await {
- // Ok(tx) => tx,
- // Err(e) => {
- // eprintln!("Failed to create token freeze transaction: {e:?}");
- // exit(2);
- // }
- //};
- //eprintln!("{}", bs58::encode(&serialize(&tx)).into_string());
- //Ok(())
- }
- },
- }
- }
|