| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /* This file is part of DarkFi (https://dark.fi)
- *
- * Copyright (C) 2020-2022 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::process::exit;
- use darkfi::{util::parse::decode_base10, Result};
- use darkfi_sdk::crypto::TokenId;
- pub fn parse_value_pair(s: &str) -> Result<(u64, u64)> {
- let v: Vec<&str> = s.split(':').collect();
- if v.len() != 2 {
- eprintln!("Invalid value pair. Use a pair such as '13.37:11.0'.");
- exit(1);
- }
- // TODO: We shouldn't be hardcoding everything to 8 decimals.
- let val0 = decode_base10(v[0], 8, true);
- let val1 = decode_base10(v[1], 8, true);
- if val0.is_err() || val1.is_err() {
- eprintln!("Invalid value pair. Use a pair such as '13.37:11.0'.");
- exit(1);
- }
- Ok((val0.unwrap(), val1.unwrap()))
- }
- pub fn parse_token_pair(s: &str) -> Result<(TokenId, TokenId)> {
- let v: Vec<&str> = s.split(':').collect();
- if v.len() != 2 {
- eprintln!("Invalid token pair. Use a pair such as:");
- eprintln!("A7f1RKsCUUHrSXA7a9ogmwg8p3bs6F47ggsW826HD4yd:FCuoMii64H5Ee4eVWBjP18WTFS8iLUJmGi16Qti1xFQ2");
- exit(1);
- }
- let tok0 = TokenId::try_from(v[0]);
- let tok1 = TokenId::try_from(v[1]);
- if tok0.is_err() || tok1.is_err() {
- eprintln!("Invalid token pair. Use a pair such as:");
- eprintln!("A7f1RKsCUUHrSXA7a9ogmwg8p3bs6F47ggsW826HD4yd:FCuoMii64H5Ee4eVWBjP18WTFS8iLUJmGi16Qti1xFQ2");
- exit(1);
- }
- Ok((tok0.unwrap(), tok1.unwrap()))
- }
|