aboutsummaryrefslogtreecommitdiff
path: root/src/js
Commit message (Collapse)AuthorAgeFilesLines
* Add BCH - Bitcoin Cash networkIan Coleman2017-08-071-0/+8
|
* Default coin selection is BTC - BitcoinIan Coleman2017-08-071-0/+3
|
* placeholder scripthashalkley2017-08-061-0/+1
|
* Added myriad to selectboxalkley2017-08-061-0/+8
|
* Added myriad to extensionsalkley2017-08-061-0/+10
|
* Add BIP49 tabIan Coleman2017-08-022-26/+145
|
* Refactor clearKey to better named clearKeysIan Coleman2017-08-021-2/+12
|
* Change BIP44 purpose and coin fields to readonlyIan Coleman2017-08-021-2/+0
|
* Upgrade bitcoinjs from v1.5.7 to v3.1.1Ian Coleman2017-08-024-12733/+14949
|
* standardize dropdown naming schememikeyb2017-07-021-33/+33
|
* Add CRW - Crownmikeyb2017-07-012-0/+17
|
* Change entropy Strength to Time To CrackIan Coleman2017-06-201-30/+8
| | | | See issue 78
* add dash testnetKarol Rychlicki2017-06-162-0/+17
|
* Add hex prefix to ethereum keysIan Coleman2017-06-141-0/+2
|
* Merge pull request #71 from LedgerHQ/masteriancoleman2017-06-061-1/+1
|\ | | | | Deleting the remaining checksum from the Ripple private key
| * deleting the remaining checksum from the private keyamougel2017-06-051-1/+1
| |
| * deleting the remaining checksum from the private keyamougel2017-06-051-1/+1
| |
* | Merge pull request #70 from LedgerHQ/masteriancoleman2017-06-053-0/+2032
|\| | | | | Add support for Ripple
| * Added support for Rippleamougel2017-06-013-0/+2032
| | | | | | | | Signed-off-by: amougel <alix.mougel@gmail.com>
* | Add SlimcoinGraham Higgins2017-05-262-0/+34
|/
* Add GAME supportmikeyb2017-04-232-0/+17
|
* String normalization polyfillIan Coleman2017-03-031-0/+442
| | | | Unfortunately required for phantomjs to pass tests
* jsbip39 updated - fixes Japanese languageIan Coleman2017-03-031-2/+3
|
* Network order is alphabetical.Ian Coleman2017-02-211-33/+33
| | | | Closes #56
* Multibit on BIP32 tab has own sectionIan Coleman2017-02-191-1/+1
|
* Client select has 'custom derivation path' optionIan Coleman2017-02-191-12/+17
| | | | | * Specific clients cause derivation path input to be readonly * Rename ambiguous variable client-phrase to bip32-client
* Merge pull request #55 from galeksandrp/patch-1iancoleman2017-02-191-0/+49
|\ | | | | Add client select
| * Add client selectAlexander Georgievskiy2017-02-071-0/+49
| |
* | Ethereum addresses include checksumIan Coleman2017-02-151-1/+3
| |
* | Ethereum testsIan Coleman2017-02-111-0/+3793
| | | | | | | | | | | | | | | | | | | | | | | | Expected values come from https://www.myetherwallet.com/#view-wallet-info Polyfill for ArrayBuffer.isView is required for phantomjs-2.1.1 but seems not required in modern browsers. I'll keep it there because the tests need to pass. Also see https://github.com/kvhnuke/etherwallet/issues/337 Unusual capitalization of hex encoded ethereum address
* | Ethereum address table is populatedIan Coleman2017-02-101-0/+14
| |
* | Ethereum Util libraryIan Coleman2017-02-101-0/+18762
|/ | | | | | | Generated from source using steps below: $ git clone https://github.com/ethereumjs/ethereumjs-util.git $ cd ethereumjs-util $ browserify index.js -s ethUtil -o ethereumjs-util.js
* Entropy is left-padded to 256 bitsIan Coleman2017-01-121-1/+1
| | | | Closes #49
* Generation process stopped when table rows clearedIan Coleman2017-01-041-4/+31
| | | | Closes #44
* Test suggested word for first four letters of wordIan Coleman2017-01-041-2/+3
| | | | See https://github.com/iancoleman/bip39/pull/48
* When completing a mnemonic word, return immediately if one is found in the ↵Chris Rico2017-01-011-1/+3
| | | | wordlist that starts with the given word
* Card entropy uses secure hashing when > 256 bitsIan Coleman2016-12-221-5/+2
|
* Root key validity is checked before derivingIan Coleman2016-12-191-0/+8
|
* xpub key can be used as bip32 root keyIan Coleman2016-12-191-4/+22
|
* QR code is hidden by defaultIan Coleman2016-12-151-1/+1
|
* QR code warns for scanners that keep historyIan Coleman2016-12-151-2/+6
|
* Translation library can translate title attributesIan Coleman2016-12-151-3/+16
|
* BIP44 Account xprv and xpub keys are shownIan Coleman2016-12-121-0/+23
| | | | which are used for import / export in most BIP44 wallets.
* bip44TabSelected and bip32TabSelected functionsIan Coleman2016-12-121-2/+10
| | | | | This is more descriptive than a blob of jquery, and simplifies reuse in the near future.
* Extended Key calculation does not use global varIan Coleman2016-12-121-4/+5
|
* QR code shown on hover for certain bits of dataIan Coleman2016-12-012-0/+65
| | | | | | | | | | | | QR code shown for: * mnemonic * seed * root key * derived extended private key * derived extended public key * addresses * public keys * private keys
* Entropy with more than 4 decks can be calculatedIan Coleman2016-11-301-1/+6
|
* bitsPerEvent correct for multiple decks of cardsIan Coleman2016-11-302-7/+14
|
* Card bits per event is shown as the average valueIan Coleman2016-11-301-1/+1
|
* Card entropy has improved conversion to binaryIan Coleman2016-11-301-90/+79
| | | | | See http://crypto.stackexchange.com/q/41886 and https://github.com/iancoleman/bip39/issues/33#issuecomment-263021856