2018-06-04 10:19:50 +02:00
|
|
|
// Copyright 2015-2018 Parity Technologies (UK) Ltd.
|
2016-11-06 12:51:53 +01:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity 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 General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
//! Parity Accounts-related rpc interface.
|
|
|
|
use std::collections::BTreeMap;
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
use jsonrpc_core::Result;
|
2018-06-22 15:09:15 +02:00
|
|
|
use ethkey::Password;
|
2017-03-23 13:23:03 +01:00
|
|
|
use ethstore::KeyFile;
|
2018-08-07 14:52:23 +02:00
|
|
|
use v1::types::{H160, H256, H520, DeriveHash, DeriveHierarchical, ExtAccountInfo};
|
2016-11-06 12:51:53 +01:00
|
|
|
|
|
|
|
build_rpc_trait! {
|
|
|
|
/// Personal Parity rpc interface.
|
|
|
|
pub trait ParityAccounts {
|
|
|
|
/// Returns accounts information.
|
2016-12-23 18:52:02 +01:00
|
|
|
#[rpc(name = "parity_allAccountsInfo")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn all_accounts_info(&self) -> Result<BTreeMap<H160, ExtAccountInfo>>;
|
2016-11-06 12:51:53 +01:00
|
|
|
|
|
|
|
/// Creates new account from the given phrase using standard brainwallet mechanism.
|
|
|
|
/// Second parameter is password for the new account.
|
|
|
|
#[rpc(name = "parity_newAccountFromPhrase")]
|
2018-06-22 15:09:15 +02:00
|
|
|
fn new_account_from_phrase(&self, String, Password) -> Result<H160>;
|
2016-11-06 12:51:53 +01:00
|
|
|
|
|
|
|
/// Creates new account from the given JSON wallet.
|
|
|
|
/// Second parameter is password for the wallet and the new account.
|
|
|
|
#[rpc(name = "parity_newAccountFromWallet")]
|
2018-06-22 15:09:15 +02:00
|
|
|
fn new_account_from_wallet(&self, String, Password) -> Result<H160>;
|
2016-11-06 12:51:53 +01:00
|
|
|
|
|
|
|
/// Creates new account from the given raw secret.
|
|
|
|
/// Second parameter is password for the new account.
|
|
|
|
#[rpc(name = "parity_newAccountFromSecret")]
|
2018-06-22 15:09:15 +02:00
|
|
|
fn new_account_from_secret(&self, H256, Password) -> Result<H160>;
|
2016-11-06 12:51:53 +01:00
|
|
|
|
|
|
|
/// Returns true if given `password` would unlock given `account`.
|
|
|
|
/// Arguments: `account`, `password`.
|
|
|
|
#[rpc(name = "parity_testPassword")]
|
2018-06-22 15:09:15 +02:00
|
|
|
fn test_password(&self, H160, Password) -> Result<bool>;
|
2016-11-06 12:51:53 +01:00
|
|
|
|
|
|
|
/// Changes an account's password.
|
|
|
|
/// Arguments: `account`, `password`, `new_password`.
|
|
|
|
#[rpc(name = "parity_changePassword")]
|
2018-06-22 15:09:15 +02:00
|
|
|
fn change_password(&self, H160, Password, Password) -> Result<bool>;
|
2016-11-06 12:51:53 +01:00
|
|
|
|
2016-11-20 16:17:57 +01:00
|
|
|
/// Permanently deletes an account.
|
|
|
|
/// Arguments: `account`, `password`.
|
|
|
|
#[rpc(name = "parity_killAccount")]
|
2018-06-22 15:09:15 +02:00
|
|
|
fn kill_account(&self, H160, Password) -> Result<bool>;
|
2016-11-20 16:17:57 +01:00
|
|
|
|
2016-12-07 16:53:46 +01:00
|
|
|
/// Permanently deletes an address from the addressbook
|
|
|
|
/// Arguments: `address`
|
|
|
|
#[rpc(name = "parity_removeAddress")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn remove_address(&self, H160) -> Result<bool>;
|
2016-12-07 16:53:46 +01:00
|
|
|
|
2016-11-06 12:51:53 +01:00
|
|
|
/// Set an account's name.
|
|
|
|
#[rpc(name = "parity_setAccountName")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn set_account_name(&self, H160, String) -> Result<bool>;
|
2016-11-06 12:51:53 +01:00
|
|
|
|
|
|
|
/// Set an account's metadata string.
|
|
|
|
#[rpc(name = "parity_setAccountMeta")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn set_account_meta(&self, H160, String) -> Result<bool>;
|
2016-11-06 12:51:53 +01:00
|
|
|
|
|
|
|
/// Imports a number of Geth accounts, with the list provided as the argument.
|
|
|
|
#[rpc(name = "parity_importGethAccounts")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn import_geth_accounts(&self, Vec<H160>) -> Result<Vec<H160>>;
|
2016-11-06 12:51:53 +01:00
|
|
|
|
|
|
|
/// Returns the accounts available for importing from Geth.
|
|
|
|
#[rpc(name = "parity_listGethAccounts")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn geth_accounts(&self) -> Result<Vec<H160>>;
|
2017-02-05 16:17:56 +01:00
|
|
|
|
|
|
|
/// Create new vault.
|
|
|
|
#[rpc(name = "parity_newVault")]
|
2018-06-22 15:09:15 +02:00
|
|
|
fn create_vault(&self, String, Password) -> Result<bool>;
|
2017-02-05 16:17:56 +01:00
|
|
|
|
|
|
|
/// Open existing vault.
|
|
|
|
#[rpc(name = "parity_openVault")]
|
2018-06-22 15:09:15 +02:00
|
|
|
fn open_vault(&self, String, Password) -> Result<bool>;
|
2017-02-05 16:17:56 +01:00
|
|
|
|
|
|
|
/// Close previously opened vault.
|
|
|
|
#[rpc(name = "parity_closeVault")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn close_vault(&self, String) -> Result<bool>;
|
2017-02-05 16:17:56 +01:00
|
|
|
|
|
|
|
/// List all vaults.
|
|
|
|
#[rpc(name = "parity_listVaults")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn list_vaults(&self) -> Result<Vec<String>>;
|
2017-02-05 16:17:56 +01:00
|
|
|
|
|
|
|
/// List all currently opened vaults.
|
|
|
|
#[rpc(name = "parity_listOpenedVaults")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn list_opened_vaults(&self) -> Result<Vec<String>>;
|
2017-02-05 16:17:56 +01:00
|
|
|
|
|
|
|
/// Change vault password.
|
|
|
|
#[rpc(name = "parity_changeVaultPassword")]
|
2018-06-22 15:09:15 +02:00
|
|
|
fn change_vault_password(&self, String, Password) -> Result<bool>;
|
2017-02-05 16:17:56 +01:00
|
|
|
|
|
|
|
/// Change vault of the given address.
|
|
|
|
#[rpc(name = "parity_changeVault")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn change_vault(&self, H160, String) -> Result<bool>;
|
2017-02-08 13:53:39 +01:00
|
|
|
|
|
|
|
/// Get vault metadata string.
|
|
|
|
#[rpc(name = "parity_getVaultMeta")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn get_vault_meta(&self, String) -> Result<String>;
|
2017-02-08 13:53:39 +01:00
|
|
|
|
|
|
|
/// Set vault metadata string.
|
|
|
|
#[rpc(name = "parity_setVaultMeta")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn set_vault_meta(&self, String, String) -> Result<bool>;
|
2017-02-15 16:56:15 +01:00
|
|
|
|
|
|
|
/// Derive new address from given account address using specific hash.
|
|
|
|
/// Resulting address can be either saved as a new account (with the same password).
|
|
|
|
#[rpc(name = "parity_deriveAddressHash")]
|
2018-06-22 15:09:15 +02:00
|
|
|
fn derive_key_hash(&self, H160, Password, DeriveHash, bool) -> Result<H160>;
|
2017-02-15 16:56:15 +01:00
|
|
|
|
|
|
|
/// Derive new address from given account address using
|
|
|
|
/// hierarchical derivation (sequence of 32-bit integer indices).
|
|
|
|
/// Resulting address can be either saved as a new account (with the same password).
|
|
|
|
#[rpc(name = "parity_deriveAddressIndex")]
|
2018-06-22 15:09:15 +02:00
|
|
|
fn derive_key_index(&self, H160, Password, DeriveHierarchical, bool) -> Result<H160>;
|
2017-03-23 13:23:03 +01:00
|
|
|
|
|
|
|
/// Exports an account with given address if provided password matches.
|
|
|
|
#[rpc(name = "parity_exportAccount")]
|
2018-06-22 15:09:15 +02:00
|
|
|
fn export_account(&self, H160, Password) -> Result<KeyFile>;
|
2017-04-12 12:15:13 +02:00
|
|
|
|
|
|
|
/// Sign raw hash with the key corresponding to address and password.
|
|
|
|
#[rpc(name = "parity_signMessage")]
|
2018-06-22 15:09:15 +02:00
|
|
|
fn sign_message(&self, H160, Password, H256) -> Result<H520>;
|
2017-09-14 19:28:43 +02:00
|
|
|
|
|
|
|
/// Send a PinMatrixAck to a hardware wallet, unlocking it
|
|
|
|
#[rpc(name = "parity_hardwarePinMatrixAck")]
|
2017-11-14 11:38:17 +01:00
|
|
|
fn hardware_pin_matrix_ack(&self, String, String) -> Result<bool>;
|
2016-11-06 12:51:53 +01:00
|
|
|
}
|
|
|
|
}
|