mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-10 11:05:47 +00:00
c88e96d603
* add 'bip39' package * add mnemonic decrypt, wallet wrapper * add mnemonic path config * add mnemonic support to deterministic components * add mnemonic support * accomodate for ledger ETH path * remove comments * update comments regarding path length * rename modal open handler * make several props optional * add basic tests for mnemonic decrypt * make flow happy, add user error notifications * convert dpaths to js file, update references * add ledger path to test * Trezor DPath Fix (#196) * Match v3 more closely. * Require wallet index on deterministic wallets, update trezor to send index. * remove redundent stripAndLower function and rename existing stripHex to stripHexPrefixAndLower
135 lines
2.5 KiB
JavaScript
135 lines
2.5 KiB
JavaScript
// @flow
|
|
import type { IWallet } from 'libs/wallet/IWallet';
|
|
import Big from 'bignumber.js';
|
|
import { Wei } from 'libs/units';
|
|
|
|
/*** Unlock Private Key ***/
|
|
export type PrivateKeyUnlockParams = {
|
|
key: string,
|
|
password: string
|
|
};
|
|
|
|
export type UnlockPrivateKeyAction = {
|
|
type: 'WALLET_UNLOCK_PRIVATE_KEY',
|
|
payload: PrivateKeyUnlockParams
|
|
};
|
|
|
|
export function unlockPrivateKey(
|
|
value: PrivateKeyUnlockParams
|
|
): UnlockPrivateKeyAction {
|
|
return {
|
|
type: 'WALLET_UNLOCK_PRIVATE_KEY',
|
|
payload: value
|
|
};
|
|
}
|
|
|
|
/*** Unlock Keystore File ***/
|
|
export type KeystoreUnlockParams = {
|
|
file: string,
|
|
password: string
|
|
};
|
|
|
|
export type UnlockKeystoreAction = {
|
|
type: 'WALLET_UNLOCK_KEYSTORE',
|
|
payload: KeystoreUnlockParams
|
|
};
|
|
|
|
export function unlockKeystore(
|
|
value: KeystoreUnlockParams
|
|
): UnlockKeystoreAction {
|
|
return {
|
|
type: 'WALLET_UNLOCK_KEYSTORE',
|
|
payload: value
|
|
};
|
|
}
|
|
|
|
/*** Unlock Mnemonic ***/
|
|
export type MnemonicUnlockParams = {
|
|
phrase: string,
|
|
pass: string,
|
|
path: string,
|
|
address: string
|
|
};
|
|
|
|
export type UnlockMnemonicAction = {
|
|
type: 'WALLET_UNLOCK_MNEMONIC',
|
|
payload: MnemonicUnlockParams
|
|
};
|
|
|
|
export function unlockMnemonic(
|
|
value: MnemonicUnlockParams
|
|
): UnlockMnemonicAction {
|
|
return {
|
|
type: 'WALLET_UNLOCK_MNEMONIC',
|
|
payload: value
|
|
};
|
|
}
|
|
|
|
/*** Set Wallet ***/
|
|
export type SetWalletAction = {
|
|
type: 'WALLET_SET',
|
|
payload: IWallet
|
|
};
|
|
|
|
export function setWallet(value: IWallet): SetWalletAction {
|
|
return {
|
|
type: 'WALLET_SET',
|
|
payload: value
|
|
};
|
|
}
|
|
|
|
/*** Set Balance ***/
|
|
export type SetBalanceAction = {
|
|
type: 'WALLET_SET_BALANCE',
|
|
payload: Wei
|
|
};
|
|
|
|
export function setBalance(value: Wei): SetBalanceAction {
|
|
return {
|
|
type: 'WALLET_SET_BALANCE',
|
|
payload: value
|
|
};
|
|
}
|
|
|
|
/*** Set Token Balance ***/
|
|
export type SetTokenBalancesAction = {
|
|
type: 'WALLET_SET_TOKEN_BALANCES',
|
|
payload: {
|
|
[string]: Big
|
|
}
|
|
};
|
|
|
|
export function setTokenBalances(payload: {
|
|
[string]: Big
|
|
}): SetTokenBalancesAction {
|
|
return {
|
|
type: 'WALLET_SET_TOKEN_BALANCES',
|
|
payload
|
|
};
|
|
}
|
|
|
|
/*** Broadcast Tx ***/
|
|
export type BroadcastTxRequestedAction = {
|
|
type: 'WALLET_BROADCAST_TX_REQUESTED',
|
|
payload: {
|
|
signedTx: string
|
|
}
|
|
};
|
|
|
|
export function broadcastTx(signedTx: string): BroadcastTxRequestedAction {
|
|
return {
|
|
type: 'WALLET_BROADCAST_TX_REQUESTED',
|
|
payload: {
|
|
signedTx
|
|
}
|
|
};
|
|
}
|
|
|
|
/*** Union Type ***/
|
|
export type WalletAction =
|
|
| UnlockPrivateKeyAction
|
|
| SetWalletAction
|
|
| SetBalanceAction
|
|
| SetTokenBalancesAction
|
|
| BroadcastTxRequestedAction;
|