cf904b6b2f
* Export account RPC * Removing GethDirectory and ParityDirectory * js export accounts as json * js export accounts as json * api - then - catch * final touches * pass * oops * individual accounts * refactoring * refactor one * refactor one * refactor two * some grumble fixes * file name changes * constructor * constructor * git recognize file name change * spec and updates * specs * one tiny fix * one tiny fix * grumbles * more grumbles * sliders * ff * pointer default * grumbles * almost ready * lots of updates * accountList * stupid debuglog * bug fix * bug fix * some more good ol fashioned updates * filter accounts * clean * update spec * ff * ff-f * balances fix
44 lines
1.8 KiB
JavaScript
44 lines
1.8 KiB
JavaScript
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
// 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/>.
|
|
|
|
export AddAddress from './AddAddress';
|
|
export AddContract from './AddContract';
|
|
export CreateAccount from './CreateAccount';
|
|
export CreateWallet from './CreateWallet';
|
|
export DappPermissions from './DappPermissions';
|
|
export DappsVisible from './AddDapps';
|
|
export DeleteAccount from './DeleteAccount';
|
|
export DeployContract from './DeployContract';
|
|
export EditMeta from './EditMeta';
|
|
export ExecuteContract from './ExecuteContract';
|
|
export ExportAccount from './ExportAccount';
|
|
export Faucet from './Faucet';
|
|
export FirstRun from './FirstRun';
|
|
export LoadContract from './LoadContract';
|
|
export PasswordManager from './PasswordManager';
|
|
export SaveContract from './SaveContract';
|
|
export Shapeshift from './Shapeshift';
|
|
export Transfer from './Transfer';
|
|
export UpgradeParity from './UpgradeParity';
|
|
export VaultAccounts from './VaultAccounts';
|
|
export VaultCreate from './VaultCreate';
|
|
export VaultLock from './VaultLock';
|
|
export VaultMeta from './VaultMeta';
|
|
export VaultSelector from './VaultSelector';
|
|
export VaultUnlock from './VaultUnlock';
|
|
export Verification from './Verification';
|
|
export WalletSettings from './WalletSettings';
|