diff options
Diffstat (limited to 'src/index.html')
-rw-r--r-- | src/index.html | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/src/index.html b/src/index.html index 6a5e644..31e8a2e 100644 --- a/src/index.html +++ b/src/index.html | |||
@@ -282,6 +282,9 @@ | |||
282 | <li id="bip44-tab" class="active"> | 282 | <li id="bip44-tab" class="active"> |
283 | <a href="#bip44" role="tab" data-toggle="tab">BIP44</a> | 283 | <a href="#bip44" role="tab" data-toggle="tab">BIP44</a> |
284 | </li> | 284 | </li> |
285 | <li id="bip49-tab"> | ||
286 | <a href="#bip49" role="tab" data-toggle="tab">BIP49</a> | ||
287 | </li> | ||
285 | </ul> | 288 | </ul> |
286 | <div class="derivation-type tab-content"> | 289 | <div class="derivation-type tab-content"> |
287 | <div id="bip44" class="tab-pane active"> | 290 | <div id="bip44" class="tab-pane active"> |
@@ -435,6 +438,96 @@ | |||
435 | </div> | 438 | </div> |
436 | </form> | 439 | </form> |
437 | </div> | 440 | </div> |
441 | <div id="bip49" class="tab-pane"> | ||
442 | <form class="form-horizontal" role="form"> | ||
443 | <br> | ||
444 | <div class="unavailable hidden"> | ||
445 | <div class="form-group"> | ||
446 | <div class="col-sm-2"></div> | ||
447 | <div class="col-sm-10"> | ||
448 | <p data-translate>BIP49 is unavailable for this coin.</p> | ||
449 | </div> | ||
450 | </div> | ||
451 | </div> | ||
452 | <div class="available"> | ||
453 | <div class="col-sm-2"></div> | ||
454 | <div class="col-sm-10"> | ||
455 | <p data-translate-html> | ||
456 | For more info see the | ||
457 | <a href="https://github.com/bitcoin/bips/blob/master/bip-0049.mediawiki" target="_blank">BIP49 spec</a>. | ||
458 | </p> | ||
459 | </div> | ||
460 | <div class="form-group"> | ||
461 | <label for="purpose" class="col-sm-2 control-label"> | ||
462 | <a href="https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki#purpose" target="_blank" data-translate>Purpose</a> | ||
463 | </label> | ||
464 | <div class="col-sm-10"> | ||
465 | <input id="purpose" type="text" class="purpose form-control" value="49" readonly> | ||
466 | </div> | ||
467 | </div> | ||
468 | <div class="form-group"> | ||
469 | <label for="coin" class="col-sm-2 control-label"> | ||
470 | <a href="https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki#registered-coin-types" target="_blank" data-translate>Coin</a> | ||
471 | </label> | ||
472 | <div class="col-sm-10"> | ||
473 | <input id="coin" type="text" class="coin form-control" value="0" readonly> | ||
474 | </div> | ||
475 | </div> | ||
476 | <div class="form-group"> | ||
477 | <label for="account" class="col-sm-2 control-label"> | ||
478 | <a href="https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki#account" target="_blank" data-translate>Account</a> | ||
479 | </label> | ||
480 | <div class="col-sm-10"> | ||
481 | <input id="account" type="text" class="account form-control" value="0"> | ||
482 | </div> | ||
483 | </div> | ||
484 | <div class="form-group"> | ||
485 | <label for="change" class="col-sm-2 control-label"> | ||
486 | <a href="https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki#change" target="_blank" data-translate>External / Internal</a> | ||
487 | </label> | ||
488 | <div class="col-sm-10"> | ||
489 | <input id="change" type="text" class="change form-control" value="0"> | ||
490 | </div> | ||
491 | </div> | ||
492 | <div class="form-group"> | ||
493 | <label class="col-sm-2 control-label"> | ||
494 | </label> | ||
495 | <div class="col-sm-10"> | ||
496 | <p data-translate>The account extended keys can be used for importing to most BIP49 compatible wallets.</p> | ||
497 | </div> | ||
498 | </div> | ||
499 | <div class="form-group"> | ||
500 | <label for="account-xprv" class="col-sm-2 control-label"> | ||
501 | <span data-translate>Account Extended Private Key</span> | ||
502 | </label> | ||
503 | <div class="col-sm-10"> | ||
504 | <textarea id="account-xprv" type="text" class="account-xprv form-control" readonly data-show-qr></textarea> | ||
505 | </div> | ||
506 | </div> | ||
507 | <div class="form-group"> | ||
508 | <label for="account-xpub" class="col-sm-2 control-label"> | ||
509 | <span data-translate>Account Extended Public Key</span> | ||
510 | </label> | ||
511 | <div class="col-sm-10"> | ||
512 | <textarea id="account-xpub" type="text" class="account-xpub form-control" readonly data-show-qr></textarea> | ||
513 | </div> | ||
514 | </div> | ||
515 | <div class="form-group"> | ||
516 | <label class="col-sm-2 control-label"> | ||
517 | </label> | ||
518 | <div class="col-sm-10"> | ||
519 | <p data-translate>The BIP32 derivation path and extended keys are the basis for the derived addresses.</p> | ||
520 | </div> | ||
521 | </div> | ||
522 | <div class="form-group"> | ||
523 | <label for="bip49-path" class="col-sm-2 control-label" data-translate>BIP32 Derivation Path</label> | ||
524 | <div class="col-sm-10"> | ||
525 | <input id="bip49-path" type="text" class="path form-control" value="m/49'/0'/0'/0" readonly="readonly"> | ||
526 | </div> | ||
527 | </div> | ||
528 | </div> | ||
529 | </form> | ||
530 | </div> | ||
438 | </div> | 531 | </div> |
439 | <form class="form-horizontal" role="form"> | 532 | <form class="form-horizontal" role="form"> |
440 | <div class="form-group"> | 533 | <div class="form-group"> |