diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e2ac661 --- /dev/null +++ b/.nojekyll @@ -0,0 +1 @@ +TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false. \ No newline at end of file diff --git a/assets/highlight.css b/assets/highlight.css new file mode 100644 index 0000000..873c9cf --- /dev/null +++ b/assets/highlight.css @@ -0,0 +1,85 @@ +:root { + --light-hl-0: #000000; + --dark-hl-0: #D4D4D4; + --light-hl-1: #AF00DB; + --dark-hl-1: #C586C0; + --light-hl-2: #001080; + --dark-hl-2: #9CDCFE; + --light-hl-3: #A31515; + --dark-hl-3: #CE9178; + --light-hl-4: #008000; + --dark-hl-4: #6A9955; + --light-hl-5: #795E26; + --dark-hl-5: #DCDCAA; + --light-hl-6: #0000FF; + --dark-hl-6: #569CD6; + --light-hl-7: #267F99; + --dark-hl-7: #4EC9B0; + --light-hl-8: #0070C1; + --dark-hl-8: #4FC1FF; + --light-code-background: #F5F5F5; + --dark-code-background: #1E1E1E; +} + +@media (prefers-color-scheme: light) { :root { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --hl-8: var(--light-hl-8); + --code-background: var(--light-code-background); +} } + +@media (prefers-color-scheme: dark) { :root { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --hl-8: var(--dark-hl-8); + --code-background: var(--dark-code-background); +} } + +body.light { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --hl-8: var(--light-hl-8); + --code-background: var(--light-code-background); +} + +body.dark { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --hl-8: var(--dark-hl-8); + --code-background: var(--dark-code-background); +} + +.hl-0 { color: var(--hl-0); } +.hl-1 { color: var(--hl-1); } +.hl-2 { color: var(--hl-2); } +.hl-3 { color: var(--hl-3); } +.hl-4 { color: var(--hl-4); } +.hl-5 { color: var(--hl-5); } +.hl-6 { color: var(--hl-6); } +.hl-7 { color: var(--hl-7); } +.hl-8 { color: var(--hl-8); } +pre, code { background: var(--code-background); } diff --git a/assets/icons.css b/assets/icons.css new file mode 100644 index 0000000..776a356 --- /dev/null +++ b/assets/icons.css @@ -0,0 +1,1043 @@ +.tsd-kind-icon { + display: block; + position: relative; + padding-left: 20px; + text-indent: -20px; +} +.tsd-kind-icon:before { + content: ""; + display: inline-block; + vertical-align: middle; + width: 17px; + height: 17px; + margin: 0 3px 2px 0; + background-image: url(./icons.png); +} +@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) { + .tsd-kind-icon:before { + background-image: url(./icons@2x.png); + background-size: 238px 204px; + } +} + +.tsd-signature.tsd-kind-icon:before { + background-position: 0 -153px; +} + +.tsd-kind-object-literal > .tsd-kind-icon:before { + background-position: 0px -17px; +} +.tsd-kind-object-literal.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -17px; +} +.tsd-kind-object-literal.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -17px; +} + +.tsd-kind-class > .tsd-kind-icon:before { + background-position: 0px -34px; +} +.tsd-kind-class.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -34px; +} +.tsd-kind-class.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -34px; +} + +.tsd-kind-class.tsd-has-type-parameter > .tsd-kind-icon:before { + background-position: 0px -51px; +} +.tsd-kind-class.tsd-has-type-parameter.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -17px -51px; +} +.tsd-kind-class.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -51px; +} + +.tsd-kind-interface > .tsd-kind-icon:before { + background-position: 0px -68px; +} +.tsd-kind-interface.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -68px; +} +.tsd-kind-interface.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -68px; +} + +.tsd-kind-interface.tsd-has-type-parameter > .tsd-kind-icon:before { + background-position: 0px -85px; +} +.tsd-kind-interface.tsd-has-type-parameter.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -17px -85px; +} +.tsd-kind-interface.tsd-has-type-parameter.tsd-is-private + > .tsd-kind-icon:before { + background-position: -34px -85px; +} + +.tsd-kind-namespace > .tsd-kind-icon:before { + background-position: 0px -102px; +} +.tsd-kind-namespace.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -102px; +} +.tsd-kind-namespace.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -102px; +} + +.tsd-kind-module > .tsd-kind-icon:before { + background-position: 0px -102px; +} +.tsd-kind-module.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -102px; +} +.tsd-kind-module.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -102px; +} + +.tsd-kind-enum > .tsd-kind-icon:before { + background-position: 0px -119px; +} +.tsd-kind-enum.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -119px; +} +.tsd-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -119px; +} + +.tsd-kind-enum-member > .tsd-kind-icon:before { + background-position: 0px -136px; +} +.tsd-kind-enum-member.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -136px; +} +.tsd-kind-enum-member.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -136px; +} + +.tsd-kind-signature > .tsd-kind-icon:before { + background-position: 0px -153px; +} +.tsd-kind-signature.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -153px; +} +.tsd-kind-signature.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -153px; +} + +.tsd-kind-type-alias > .tsd-kind-icon:before { + background-position: 0px -170px; +} +.tsd-kind-type-alias.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -170px; +} +.tsd-kind-type-alias.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -170px; +} + +.tsd-kind-type-alias.tsd-has-type-parameter > .tsd-kind-icon:before { + background-position: 0px -187px; +} +.tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -17px -187px; +} +.tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-private + > .tsd-kind-icon:before { + background-position: -34px -187px; +} + +.tsd-kind-variable > .tsd-kind-icon:before { + background-position: -136px -0px; +} +.tsd-kind-variable.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -0px; +} +.tsd-kind-variable.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -0px; +} +.tsd-kind-variable.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -0px; +} +.tsd-kind-variable.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -0px; +} +.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -0px; +} +.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -0px; +} +.tsd-kind-variable.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -0px; +} +.tsd-kind-variable.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -0px; +} +.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -0px; +} +.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -0px; +} +.tsd-kind-variable.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -0px; +} +.tsd-kind-variable.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -0px; +} + +.tsd-kind-property > .tsd-kind-icon:before { + background-position: -136px -0px; +} +.tsd-kind-property.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -0px; +} +.tsd-kind-property.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -0px; +} +.tsd-kind-property.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -0px; +} +.tsd-kind-property.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -0px; +} +.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -0px; +} +.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -0px; +} +.tsd-kind-property.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -0px; +} +.tsd-kind-property.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -0px; +} +.tsd-kind-property.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -0px; +} +.tsd-kind-property.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -0px; +} +.tsd-kind-property.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -0px; +} +.tsd-kind-property.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -0px; +} + +.tsd-kind-get-signature > .tsd-kind-icon:before { + background-position: -136px -17px; +} +.tsd-kind-get-signature.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -17px; +} +.tsd-kind-get-signature.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -17px; +} + +.tsd-kind-set-signature > .tsd-kind-icon:before { + background-position: -136px -34px; +} +.tsd-kind-set-signature.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -34px; +} +.tsd-kind-set-signature.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -34px; +} + +.tsd-kind-accessor > .tsd-kind-icon:before { + background-position: -136px -51px; +} +.tsd-kind-accessor.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -51px; +} +.tsd-kind-accessor.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -51px; +} + +.tsd-kind-function > .tsd-kind-icon:before { + background-position: -136px -68px; +} +.tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -68px; +} +.tsd-kind-function.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -68px; +} +.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -68px; +} +.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -68px; +} +.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -68px; +} +.tsd-kind-function.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -68px; +} +.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -68px; +} +.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-function.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -68px; +} +.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -68px; +} + +.tsd-kind-method > .tsd-kind-icon:before { + background-position: -136px -68px; +} +.tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -68px; +} +.tsd-kind-method.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -68px; +} +.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -68px; +} +.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -68px; +} +.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -68px; +} +.tsd-kind-method.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -68px; +} +.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { + background-position: -187px -68px; +} +.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-method.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -68px; +} +.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -68px; +} + +.tsd-kind-call-signature > .tsd-kind-icon:before { + background-position: -136px -68px; +} +.tsd-kind-call-signature.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -68px; +} +.tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -68px; +} + +.tsd-kind-function.tsd-has-type-parameter > .tsd-kind-icon:before { + background-position: -136px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -153px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class + > .tsd-kind-icon:before { + background-position: -51px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum + > .tsd-kind-icon:before { + background-position: -170px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface + > .tsd-kind-icon:before { + background-position: -204px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -85px; +} + +.tsd-kind-method.tsd-has-type-parameter > .tsd-kind-icon:before { + background-position: -136px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -153px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class + > .tsd-kind-icon:before { + background-position: -51px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum + > .tsd-kind-icon:before { + background-position: -170px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface + > .tsd-kind-icon:before { + background-position: -204px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -85px; +} + +.tsd-kind-constructor > .tsd-kind-icon:before { + background-position: -136px -102px; +} +.tsd-kind-constructor.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -102px; +} +.tsd-kind-constructor.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -102px; +} + +.tsd-kind-constructor-signature > .tsd-kind-icon:before { + background-position: -136px -102px; +} +.tsd-kind-constructor-signature.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -102px; +} +.tsd-kind-constructor-signature.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-interface + > .tsd-kind-icon:before { + background-position: -204px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -102px; +} + +.tsd-kind-index-signature > .tsd-kind-icon:before { + background-position: -136px -119px; +} +.tsd-kind-index-signature.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -119px; +} +.tsd-kind-index-signature.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -119px; +} + +.tsd-kind-event > .tsd-kind-icon:before { + background-position: -136px -136px; +} +.tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -136px; +} +.tsd-kind-event.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -136px; +} +.tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -136px; +} +.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { + background-position: -68px -136px; +} +.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { + background-position: -85px -136px; +} +.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -136px; +} +.tsd-kind-event.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -136px; +} +.tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -136px; +} +.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { + background-position: -187px -136px; +} +.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -136px; +} +.tsd-kind-event.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -136px; +} +.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -136px; +} + +.tsd-is-static > .tsd-kind-icon:before { + background-position: -136px -153px; +} +.tsd-is-static.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -153px; +} +.tsd-is-static.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -153px; +} +.tsd-is-static.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -153px; +} +.tsd-is-static.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { + background-position: -68px -153px; +} +.tsd-is-static.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { + background-position: -85px -153px; +} +.tsd-is-static.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -153px; +} +.tsd-is-static.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -153px; +} +.tsd-is-static.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -153px; +} +.tsd-is-static.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { + background-position: -187px -153px; +} +.tsd-is-static.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -153px; +} +.tsd-is-static.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -153px; +} +.tsd-is-static.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -153px; +} + +.tsd-is-static.tsd-kind-function > .tsd-kind-icon:before { + background-position: -136px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface + > .tsd-kind-icon:before { + background-position: -204px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -170px; +} + +.tsd-is-static.tsd-kind-method > .tsd-kind-icon:before { + background-position: -136px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface + > .tsd-kind-icon:before { + background-position: -204px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -170px; +} + +.tsd-is-static.tsd-kind-call-signature > .tsd-kind-icon:before { + background-position: -136px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -153px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class + > .tsd-kind-icon:before { + background-position: -51px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum + > .tsd-kind-icon:before { + background-position: -170px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface + > .tsd-kind-icon:before { + background-position: -204px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -170px; +} + +.tsd-is-static.tsd-kind-event > .tsd-kind-icon:before { + background-position: -136px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface + > .tsd-kind-icon:before { + background-position: -204px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -187px; +} diff --git a/assets/icons.png b/assets/icons.png new file mode 100644 index 0000000..3836d5f Binary files /dev/null and b/assets/icons.png differ diff --git a/assets/icons@2x.png b/assets/icons@2x.png new file mode 100644 index 0000000..5a209e2 Binary files /dev/null and b/assets/icons@2x.png differ diff --git a/assets/main.js b/assets/main.js new file mode 100644 index 0000000..bd45452 --- /dev/null +++ b/assets/main.js @@ -0,0 +1,52 @@ +(()=>{var Ce=Object.create;var ue=Object.defineProperty;var Pe=Object.getOwnPropertyDescriptor;var Oe=Object.getOwnPropertyNames;var Re=Object.getPrototypeOf,_e=Object.prototype.hasOwnProperty;var Me=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var De=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Oe(e))!_e.call(t,i)&&i!==r&&ue(t,i,{get:()=>e[i],enumerable:!(n=Pe(e,i))||n.enumerable});return t};var Fe=(t,e,r)=>(r=t!=null?Ce(Re(t)):{},De(e||!t||!t.__esModule?ue(r,"default",{value:t,enumerable:!0}):r,t));var pe=Me((de,fe)=>{(function(){var t=function(e){var r=new t.Builder;return r.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),r.searchPipeline.add(t.stemmer),e.call(r,r),r.build()};t.version="2.3.9";t.utils={},t.utils.warn=function(e){return function(r){e.console&&console.warn&&console.warn(r)}}(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var r=Object.create(null),n=Object.keys(e),i=0;i0){var h=t.utils.clone(r)||{};h.position=[a,u],h.index=s.length,s.push(new t.Token(n.slice(a,o),h))}a=o+1}}return s},t.tokenizer.separator=/[\s\-]+/;t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions=Object.create(null),t.Pipeline.registerFunction=function(e,r){r in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+r),e.label=r,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var r=e.label&&e.label in this.registeredFunctions;r||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index. +`,e)},t.Pipeline.load=function(e){var r=new t.Pipeline;return e.forEach(function(n){var i=t.Pipeline.registeredFunctions[n];if(i)r.add(i);else throw new Error("Cannot load unregistered function: "+n)}),r},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(r){t.Pipeline.warnIfFunctionNotRegistered(r),this._stack.push(r)},this)},t.Pipeline.prototype.after=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");n=n+1,this._stack.splice(n,0,r)},t.Pipeline.prototype.before=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");this._stack.splice(n,0,r)},t.Pipeline.prototype.remove=function(e){var r=this._stack.indexOf(e);r!=-1&&this._stack.splice(r,1)},t.Pipeline.prototype.run=function(e){for(var r=this._stack.length,n=0;n1&&(oe&&(n=s),o!=e);)i=n-r,s=r+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(ol?h+=2:a==l&&(r+=n[u+1]*i[h+1],u+=2,h+=2);return r},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),r=1,n=0;r0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}if(s.str.length==0&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}s.str.length==1&&(u.final=!0),i.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var h=s.str.charAt(0),f=s.str.charAt(1),p;f in s.node.edges?p=s.node.edges[f]:(p=new t.TokenSet,s.node.edges[f]=p),s.str.length==1&&(p.final=!0),i.push({node:p,editsRemaining:s.editsRemaining-1,str:h+s.str.slice(2)})}}}return n},t.TokenSet.fromString=function(e){for(var r=new t.TokenSet,n=r,i=0,s=e.length;i=e;r--){var n=this.uncheckedNodes[r],i=n.child.toString();i in this.minimizedNodes?n.parent.edges[n.char]=this.minimizedNodes[i]:(n.child._str=i,this.minimizedNodes[i]=n.child),this.uncheckedNodes.pop()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(r){var n=new t.QueryParser(e,r);n.parse()})},t.Index.prototype.query=function(e){for(var r=new t.Query(this.fields),n=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),l=0;l1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,r){var n=e[this._ref],i=Object.keys(this._fields);this._documents[n]=r||{},this.documentCount+=1;for(var s=0;s=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,r;do e=this.next(),r=e.charCodeAt(0);while(r>47&&r<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var r=e.next();if(r==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(r.charCodeAt(0)==92){e.escapeCharacter();continue}if(r==":")return t.QueryLexer.lexField;if(r=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(r=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(r=="+"&&e.width()===1||r=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(r.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,r){this.lexer=new t.QueryLexer(e),this.query=r,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var r=e.peekLexeme();if(r!=null)switch(r.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expected either a field or a term, found "+r.type;throw r.str.length>=1&&(n+=" with value '"+r.str+"'"),new t.QueryParseError(n,r.start,r.end)}},t.QueryParser.parsePresence=function(e){var r=e.consumeLexeme();if(r!=null){switch(r.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var n="unrecognised presence operator'"+r.str+"'";throw new t.QueryParseError(n,r.start,r.end)}var i=e.peekLexeme();if(i==null){var n="expecting term or field, found nothing";throw new t.QueryParseError(n,r.start,r.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(n,i.start,i.end)}}},t.QueryParser.parseField=function(e){var r=e.consumeLexeme();if(r!=null){if(e.query.allFields.indexOf(r.str)==-1){var n=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+r.str+"', possible fields: "+n;throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.fields=[r.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,r.start,r.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var r=e.consumeLexeme();if(r!=null){e.currentClause.term=r.str.toLowerCase(),r.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var n=e.peekLexeme();if(n==null){e.nextClause();return}switch(n.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+n.type+"'";throw new t.QueryParseError(i,n.start,n.end)}}},t.QueryParser.parseEditDistance=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="edit distance must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.editDistance=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="boost must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.boost=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},function(e,r){typeof define=="function"&&define.amd?define(r):typeof de=="object"?fe.exports=r():e.lunr=r()}(this,function(){return t})})()});var ce=[];function N(t,e){ce.push({selector:e,constructor:t})}var Y=class{constructor(){this.createComponents(document.body)}createComponents(e){ce.forEach(r=>{e.querySelectorAll(r.selector).forEach(n=>{n.dataset.hasInstance||(new r.constructor({el:n}),n.dataset.hasInstance=String(!0))})})}};var k=class{constructor(e){this.el=e.el}};var J=class{constructor(){this.listeners={}}addEventListener(e,r){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push(r)}removeEventListener(e,r){if(!(e in this.listeners))return;let n=this.listeners[e];for(let i=0,s=n.length;i{let r=Date.now();return(...n)=>{r+e-Date.now()<0&&(t(...n),r=Date.now())}};var ie=class extends J{constructor(){super();this.scrollTop=0;this.lastY=0;this.width=0;this.height=0;this.showToolbar=!0;this.toolbar=document.querySelector(".tsd-page-toolbar"),this.secondaryNav=document.querySelector(".tsd-navigation.secondary"),window.addEventListener("scroll",ne(()=>this.onScroll(),10)),window.addEventListener("resize",ne(()=>this.onResize(),10)),this.onResize(),this.onScroll()}triggerResize(){let r=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(r)}onResize(){this.width=window.innerWidth||0,this.height=window.innerHeight||0;let r=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(r)}onScroll(){this.scrollTop=window.scrollY||0;let r=new CustomEvent("scroll",{detail:{scrollTop:this.scrollTop}});this.dispatchEvent(r),this.hideShowToolbar()}hideShowToolbar(){var n;let r=this.showToolbar;this.showToolbar=this.lastY>=this.scrollTop||this.scrollTop<=0,r!==this.showToolbar&&(this.toolbar.classList.toggle("tsd-page-toolbar--hide"),(n=this.secondaryNav)==null||n.classList.toggle("tsd-navigation--toolbar-hide")),this.lastY=this.scrollTop}},Q=ie;Q.instance=new ie;var X=class extends k{constructor(r){super(r);this.anchors=[];this.index=-1;Q.instance.addEventListener("resize",()=>this.onResize()),Q.instance.addEventListener("scroll",n=>this.onScroll(n)),this.createAnchors()}createAnchors(){let r=window.location.href;r.indexOf("#")!=-1&&(r=r.substr(0,r.indexOf("#"))),this.el.querySelectorAll("a").forEach(n=>{let i=n.href;if(i.indexOf("#")==-1||i.substr(0,r.length)!=r)return;let s=i.substr(i.indexOf("#")+1),o=document.querySelector("a.tsd-anchor[name="+s+"]"),a=n.parentNode;!o||!a||this.anchors.push({link:a,anchor:o,position:0})}),this.onResize()}onResize(){let r;for(let i=0,s=this.anchors.length;ii.position-s.position);let n=new CustomEvent("scroll",{detail:{scrollTop:Q.instance.scrollTop}});this.onScroll(n)}onScroll(r){let n=r.detail.scrollTop+5,i=this.anchors,s=i.length-1,o=this.index;for(;o>-1&&i[o].position>n;)o-=1;for(;o-1&&this.anchors[this.index].link.classList.remove("focus"),this.index=o,this.index>-1&&this.anchors[this.index].link.classList.add("focus"))}};var he=(t,e=100)=>{let r;return(...n)=>{clearTimeout(r),r=setTimeout(()=>t(n),e)}};var ge=Fe(pe());function ye(){let t=document.getElementById("tsd-search");if(!t)return;let e=document.getElementById("search-script");t.classList.add("loading"),e&&(e.addEventListener("error",()=>{t.classList.remove("loading"),t.classList.add("failure")}),e.addEventListener("load",()=>{t.classList.remove("loading"),t.classList.add("ready")}),window.searchData&&t.classList.remove("loading"));let r=document.querySelector("#tsd-search input"),n=document.querySelector("#tsd-search .results");if(!r||!n)throw new Error("The input field or the result list wrapper was not found");let i=!1;n.addEventListener("mousedown",()=>i=!0),n.addEventListener("mouseup",()=>{i=!1,t.classList.remove("has-focus")}),r.addEventListener("focus",()=>t.classList.add("has-focus")),r.addEventListener("blur",()=>{i||(i=!1,t.classList.remove("has-focus"))});let s={base:t.dataset.base+"/"};Ae(t,n,r,s)}function Ae(t,e,r,n){r.addEventListener("input",he(()=>{He(t,e,r,n)},200));let i=!1;r.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?ze(e,r):s.key=="Escape"?r.blur():s.key=="ArrowUp"?me(e,-1):s.key==="ArrowDown"?me(e,1):i=!1}),r.addEventListener("keypress",s=>{i&&s.preventDefault()}),document.body.addEventListener("keydown",s=>{s.altKey||s.ctrlKey||s.metaKey||!r.matches(":focus")&&s.key==="/"&&(r.focus(),s.preventDefault())})}function Ve(t,e){t.index||window.searchData&&(e.classList.remove("loading"),e.classList.add("ready"),t.data=window.searchData,t.index=ge.Index.load(window.searchData.index))}function He(t,e,r,n){var o,a;if(Ve(n,t),!n.index||!n.data)return;e.textContent="";let i=r.value.trim(),s=i?n.index.search(`*${i}*`):[];for(let l=0;lu.score-l.score);for(let l=0,u=Math.min(10,s.length);l${ve(h.parent,i)}.${f}`);let p=document.createElement("li");p.classList.value=(a=h.classes)!=null?a:"";let E=document.createElement("a");E.href=n.base+h.url,E.classList.add("tsd-kind-icon"),E.innerHTML=f,p.append(E),e.appendChild(p)}}function me(t,e){var n,i;let r=t.querySelector(".current");if(!r)r=t.querySelector(e==1?"li:first-child":"li:last-child"),r&&r.classList.add("current");else{let s=r;if(e===1)do s=(n=s.nextElementSibling)!=null?n:void 0;while(s instanceof HTMLElement&&s.offsetParent==null);else do s=(i=s.previousElementSibling)!=null?i:void 0;while(s instanceof HTMLElement&&s.offsetParent==null);s&&(r.classList.remove("current"),s.classList.add("current"))}}function ze(t,e){let r=t.querySelector(".current");if(r||(r=t.querySelector("li:first-child")),r){let n=r.querySelector("a");n&&(window.location.href=n.href),e.blur()}}function ve(t,e){if(e==="")return t;let r=t.toLocaleLowerCase(),n=e.toLocaleLowerCase(),i=[],s=0,o=r.indexOf(n);for(;o!=-1;)i.push(se(t.substring(s,o)),`${se(t.substring(o,o+n.length))}`),s=o+n.length,o=r.indexOf(n,s);return i.push(se(t.substring(s))),i.join("")}var Ne={"&":"&","<":"<",">":">","'":"'",'"':"""};function se(t){return t.replace(/[&<>"'"]/g,e=>Ne[e])}var oe=class{constructor(e,r){this.signature=e,this.description=r}addClass(e){return this.signature.classList.add(e),this.description.classList.add(e),this}removeClass(e){return this.signature.classList.remove(e),this.description.classList.remove(e),this}},Z=class extends k{constructor(r){super(r);this.groups=[];this.index=-1;this.createGroups(),this.container&&(this.el.classList.add("active"),Array.from(this.el.children).forEach(n=>{n.addEventListener("touchstart",i=>this.onClick(i)),n.addEventListener("click",i=>this.onClick(i))}),this.container.classList.add("active"),this.setIndex(0))}setIndex(r){if(r<0&&(r=0),r>this.groups.length-1&&(r=this.groups.length-1),this.index==r)return;let n=this.groups[r];if(this.index>-1){let i=this.groups[this.index];i.removeClass("current").addClass("fade-out"),n.addClass("current"),n.addClass("fade-in"),Q.instance.triggerResize(),setTimeout(()=>{i.removeClass("fade-out"),n.removeClass("fade-in")},300)}else n.addClass("current"),Q.instance.triggerResize();this.index=r}createGroups(){let r=this.el.children;if(r.length<2)return;this.container=this.el.nextElementSibling;let n=this.container.children;this.groups=[];for(let i=0;i{n.signature===r.currentTarget&&this.setIndex(i)})}};var C="mousedown",Le="mousemove",_="mouseup",K={x:0,y:0},xe=!1,ae=!1,je=!1,A=!1,Ee=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(Ee?"is-mobile":"not-mobile");Ee&&"ontouchstart"in document.documentElement&&(je=!0,C="touchstart",Le="touchmove",_="touchend");document.addEventListener(C,t=>{ae=!0,A=!1;let e=C=="touchstart"?t.targetTouches[0]:t;K.y=e.pageY||0,K.x=e.pageX||0});document.addEventListener(Le,t=>{if(!!ae&&!A){let e=C=="touchstart"?t.targetTouches[0]:t,r=K.x-(e.pageX||0),n=K.y-(e.pageY||0);A=Math.sqrt(r*r+n*n)>10}});document.addEventListener(_,()=>{ae=!1});document.addEventListener("click",t=>{xe&&(t.preventDefault(),t.stopImmediatePropagation(),xe=!1)});var ee=class extends k{constructor(r){super(r);this.className=this.el.dataset.toggle||"",this.el.addEventListener(_,n=>this.onPointerUp(n)),this.el.addEventListener("click",n=>n.preventDefault()),document.addEventListener(C,n=>this.onDocumentPointerDown(n)),document.addEventListener(_,n=>this.onDocumentPointerUp(n))}setActive(r){if(this.active==r)return;this.active=r,document.documentElement.classList.toggle("has-"+this.className,r),this.el.classList.toggle("active",r);let n=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(n),setTimeout(()=>document.documentElement.classList.remove(n),500)}onPointerUp(r){A||(this.setActive(!0),r.preventDefault())}onDocumentPointerDown(r){if(this.active){if(r.target.closest(".col-menu, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(r){if(!A&&this.active&&r.target.closest(".col-menu")){let n=r.target.closest("a");if(n){let i=window.location.href;i.indexOf("#")!=-1&&(i=i.substr(0,i.indexOf("#"))),n.href.substr(0,i.length)==i&&setTimeout(()=>this.setActive(!1),250)}}}};var te=class{constructor(e,r){this.key=e,this.value=r,this.defaultValue=r,this.initialize(),window.localStorage[this.key]&&this.setValue(this.fromLocalStorage(window.localStorage[this.key]))}initialize(){}setValue(e){if(this.value==e)return;let r=this.value;this.value=e,window.localStorage[this.key]=this.toLocalStorage(e),this.handleValueChange(r,e)}},re=class extends te{initialize(){let r=document.querySelector("#tsd-filter-"+this.key);!r||(this.checkbox=r,this.checkbox.addEventListener("change",()=>{this.setValue(this.checkbox.checked)}))}handleValueChange(r,n){!this.checkbox||(this.checkbox.checked=this.value,document.documentElement.classList.toggle("toggle-"+this.key,this.value!=this.defaultValue))}fromLocalStorage(r){return r=="true"}toLocalStorage(r){return r?"true":"false"}},le=class extends te{initialize(){document.documentElement.classList.add("toggle-"+this.key+this.value);let r=document.querySelector("#tsd-filter-"+this.key);if(!r)return;this.select=r;let n=()=>{this.select.classList.add("active")},i=()=>{this.select.classList.remove("active")};this.select.addEventListener(C,n),this.select.addEventListener("mouseover",n),this.select.addEventListener("mouseleave",i),this.select.querySelectorAll("li").forEach(s=>{s.addEventListener(_,o=>{r.classList.remove("active"),this.setValue(o.target.dataset.value||"")})}),document.addEventListener(C,s=>{this.select.contains(s.target)||this.select.classList.remove("active")})}handleValueChange(r,n){this.select.querySelectorAll("li.selected").forEach(o=>{o.classList.remove("selected")});let i=this.select.querySelector('li[data-value="'+n+'"]'),s=this.select.querySelector(".tsd-select-label");i&&s&&(i.classList.add("selected"),s.textContent=i.textContent),document.documentElement.classList.remove("toggle-"+r),document.documentElement.classList.add("toggle-"+n)}fromLocalStorage(r){return r}toLocalStorage(r){return r}},j=class extends k{constructor(r){super(r);this.optionVisibility=new le("visibility","private"),this.optionInherited=new re("inherited",!0),this.optionExternals=new re("externals",!0)}static isSupported(){try{return typeof window.localStorage!="undefined"}catch{return!1}}};function we(t){let e=localStorage.getItem("tsd-theme")||"os";t.value=e,be(e),t.addEventListener("change",()=>{localStorage.setItem("tsd-theme",t.value),be(t.value)})}function be(t){switch(t){case"os":document.body.classList.remove("light","dark");break;case"light":document.body.classList.remove("dark"),document.body.classList.add("light");break;case"dark":document.body.classList.remove("light"),document.body.classList.add("dark");break}}ye();N(X,".menu-highlight");N(Z,".tsd-signatures");N(ee,"a[data-toggle]");j.isSupported()?N(j,"#tsd-filter"):document.documentElement.classList.add("no-filter");var Te=document.getElementById("theme");Te&&we(Te);var Be=new Y;Object.defineProperty(window,"app",{value:Be});})(); +/*! + * lunr.Builder + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.Index + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.Pipeline + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.Set + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.TokenSet + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.Vector + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.stemmer + * Copyright (C) 2020 Oliver Nightingale + * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt + */ +/*! + * lunr.stopWordFilter + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.tokenizer + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.trimmer + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.utils + * Copyright (C) 2020 Oliver Nightingale + */ +/** + * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9 + * Copyright (C) 2020 Oliver Nightingale + * @license MIT + */ diff --git a/assets/search.js b/assets/search.js new file mode 100644 index 0000000..9502c58 --- /dev/null +++ b/assets/search.js @@ -0,0 +1 @@ +window.searchData = JSON.parse("{\"kinds\":{\"2\":\"Module\",\"4\":\"Namespace\",\"8\":\"Enumeration\",\"16\":\"Enumeration Member\",\"32\":\"Variable\",\"64\":\"Function\",\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"4194304\":\"Type alias\"},\"rows\":[{\"id\":0,\"kind\":64,\"name\":\"initStorage\",\"url\":\"modules.html#initStorage\",\"classes\":\"tsd-kind-function\"},{\"id\":1,\"kind\":64,\"name\":\"pubkeyToAddress\",\"url\":\"modules.html#pubkeyToAddress\",\"classes\":\"tsd-kind-function\"},{\"id\":2,\"kind\":128,\"name\":\"Wallet\",\"url\":\"classes/Wallet.html\",\"classes\":\"tsd-kind-class\"},{\"id\":3,\"kind\":2048,\"name\":\"generateWallet\",\"url\":\"classes/Wallet.html#generateWallet\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"Wallet\"},{\"id\":4,\"kind\":2048,\"name\":\"signAmino\",\"url\":\"classes/Wallet.html#signAmino\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Wallet\"},{\"id\":5,\"kind\":2048,\"name\":\"signDirect\",\"url\":\"classes/Wallet.html#signDirect\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Wallet\"},{\"id\":6,\"kind\":2048,\"name\":\"getAccounts\",\"url\":\"classes/Wallet.html#getAccounts\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Wallet\"},{\"id\":7,\"kind\":2048,\"name\":\"getAccountsWithPrivKey\",\"url\":\"classes/Wallet.html#getAccountsWithPrivKey\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"Wallet\"},{\"id\":8,\"kind\":128,\"name\":\"PvtKeyWallet\",\"url\":\"classes/PvtKeyWallet.html\",\"classes\":\"tsd-kind-class\"},{\"id\":9,\"kind\":2048,\"name\":\"generateWallet\",\"url\":\"classes/PvtKeyWallet.html#generateWallet\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"PvtKeyWallet\"},{\"id\":10,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/PvtKeyWallet.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"PvtKeyWallet\"},{\"id\":11,\"kind\":2048,\"name\":\"getAccounts\",\"url\":\"classes/PvtKeyWallet.html#getAccounts\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PvtKeyWallet\"},{\"id\":12,\"kind\":2048,\"name\":\"signAmino\",\"url\":\"classes/PvtKeyWallet.html#signAmino\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PvtKeyWallet\"},{\"id\":13,\"kind\":2048,\"name\":\"signDirect\",\"url\":\"classes/PvtKeyWallet.html#signDirect\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"PvtKeyWallet\"},{\"id\":14,\"kind\":128,\"name\":\"EthWallet\",\"url\":\"classes/EthWallet.html\",\"classes\":\"tsd-kind-class\"},{\"id\":15,\"kind\":2048,\"name\":\"generateWalletFromMnemonic\",\"url\":\"classes/EthWallet.html#generateWalletFromMnemonic\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"EthWallet\"},{\"id\":16,\"kind\":2048,\"name\":\"generateWalletFromPvtKey\",\"url\":\"classes/EthWallet.html#generateWalletFromPvtKey\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"EthWallet\"},{\"id\":17,\"kind\":2048,\"name\":\"setProvider\",\"url\":\"classes/EthWallet.html#setProvider\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EthWallet\"},{\"id\":18,\"kind\":2048,\"name\":\"getAccounts\",\"url\":\"classes/EthWallet.html#getAccounts\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EthWallet\"},{\"id\":19,\"kind\":2048,\"name\":\"getAccountWithHexAddress\",\"url\":\"classes/EthWallet.html#getAccountWithHexAddress\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EthWallet\"},{\"id\":20,\"kind\":2048,\"name\":\"sign\",\"url\":\"classes/EthWallet.html#sign\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EthWallet\"},{\"id\":21,\"kind\":2048,\"name\":\"sendTransaction\",\"url\":\"classes/EthWallet.html#sendTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EthWallet\"},{\"id\":22,\"kind\":2048,\"name\":\"signMessage\",\"url\":\"classes/EthWallet.html#signMessage\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EthWallet\"},{\"id\":23,\"kind\":2048,\"name\":\"signTransaction\",\"url\":\"classes/EthWallet.html#signTransaction\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EthWallet\"},{\"id\":24,\"kind\":2048,\"name\":\"signAmino\",\"url\":\"classes/EthWallet.html#signAmino\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EthWallet\"},{\"id\":25,\"kind\":2048,\"name\":\"signDirect\",\"url\":\"classes/EthWallet.html#signDirect\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"EthWallet\"},{\"id\":26,\"kind\":4194304,\"name\":\"BTCWalletOptions\",\"url\":\"modules.html#BTCWalletOptions\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":27,\"kind\":128,\"name\":\"BtcWallet\",\"url\":\"classes/BtcWallet.html\",\"classes\":\"tsd-kind-class\"},{\"id\":28,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/BtcWallet.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"BtcWallet\"},{\"id\":29,\"kind\":2048,\"name\":\"getAccountsWithPrivKey\",\"url\":\"classes/BtcWallet.html#getAccountsWithPrivKey\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BtcWallet\"},{\"id\":30,\"kind\":2048,\"name\":\"getAccounts\",\"url\":\"classes/BtcWallet.html#getAccounts\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BtcWallet\"},{\"id\":31,\"kind\":2048,\"name\":\"signPsbt\",\"url\":\"classes/BtcWallet.html#signPsbt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BtcWallet\"},{\"id\":32,\"kind\":2048,\"name\":\"signIdx\",\"url\":\"classes/BtcWallet.html#signIdx\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BtcWallet\"},{\"id\":33,\"kind\":2048,\"name\":\"signECDSA\",\"url\":\"classes/BtcWallet.html#signECDSA\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"BtcWallet\"},{\"id\":34,\"kind\":128,\"name\":\"BtcWalletHD\",\"url\":\"classes/BtcWalletHD.html\",\"classes\":\"tsd-kind-class\"},{\"id\":35,\"kind\":2048,\"name\":\"generateWalletFromMnemonic\",\"url\":\"classes/BtcWalletHD.html#generateWalletFromMnemonic\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"BtcWalletHD\"},{\"id\":36,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/BtcWalletHD.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"BtcWalletHD\"},{\"id\":37,\"kind\":2048,\"name\":\"getAccountsWithPrivKey\",\"url\":\"classes/BtcWalletHD.html#getAccountsWithPrivKey\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"BtcWalletHD\"},{\"id\":38,\"kind\":2048,\"name\":\"getAccounts\",\"url\":\"classes/BtcWalletHD.html#getAccounts\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"BtcWalletHD\"},{\"id\":39,\"kind\":2048,\"name\":\"signPsbt\",\"url\":\"classes/BtcWalletHD.html#signPsbt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"BtcWalletHD\"},{\"id\":40,\"kind\":2048,\"name\":\"signIdx\",\"url\":\"classes/BtcWalletHD.html#signIdx\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"BtcWalletHD\"},{\"id\":41,\"kind\":2048,\"name\":\"signECDSA\",\"url\":\"classes/BtcWalletHD.html#signECDSA\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"BtcWalletHD\"},{\"id\":42,\"kind\":128,\"name\":\"BtcWalletPk\",\"url\":\"classes/BtcWalletPk.html\",\"classes\":\"tsd-kind-class\"},{\"id\":43,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/BtcWalletPk.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"BtcWalletPk\"},{\"id\":44,\"kind\":2048,\"name\":\"getAccountsWithPrivKey\",\"url\":\"classes/BtcWalletPk.html#getAccountsWithPrivKey\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"BtcWalletPk\"},{\"id\":45,\"kind\":2048,\"name\":\"getAccounts\",\"url\":\"classes/BtcWalletPk.html#getAccounts\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"BtcWalletPk\"},{\"id\":46,\"kind\":2048,\"name\":\"signPsbt\",\"url\":\"classes/BtcWalletPk.html#signPsbt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"BtcWalletPk\"},{\"id\":47,\"kind\":2048,\"name\":\"signIdx\",\"url\":\"classes/BtcWalletPk.html#signIdx\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"BtcWalletPk\"},{\"id\":48,\"kind\":2048,\"name\":\"signECDSA\",\"url\":\"classes/BtcWalletPk.html#signECDSA\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"BtcWalletPk\"},{\"id\":49,\"kind\":64,\"name\":\"encodeSecp256k1Signature\",\"url\":\"modules.html#encodeSecp256k1Signature\",\"classes\":\"tsd-kind-function\"},{\"id\":50,\"kind\":64,\"name\":\"encodeSecp256k1Pubkey\",\"url\":\"modules.html#encodeSecp256k1Pubkey\",\"classes\":\"tsd-kind-function\"},{\"id\":51,\"kind\":64,\"name\":\"compressSignature\",\"url\":\"modules.html#compressSignature\",\"classes\":\"tsd-kind-function\"},{\"id\":52,\"kind\":64,\"name\":\"fromHex\",\"url\":\"modules.html#fromHex\",\"classes\":\"tsd-kind-function\"},{\"id\":53,\"kind\":64,\"name\":\"sortObject\",\"url\":\"modules.html#sortObject\",\"classes\":\"tsd-kind-function\"},{\"id\":54,\"kind\":64,\"name\":\"serializeStdSignDoc\",\"url\":\"modules.html#serializeStdSignDoc\",\"classes\":\"tsd-kind-function\"},{\"id\":55,\"kind\":64,\"name\":\"serializeSignDoc\",\"url\":\"modules.html#serializeSignDoc\",\"classes\":\"tsd-kind-function\"},{\"id\":56,\"kind\":4194304,\"name\":\"Pubkey\",\"url\":\"modules.html#Pubkey\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":57,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#Pubkey.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"Pubkey\"},{\"id\":58,\"kind\":1024,\"name\":\"type\",\"url\":\"modules.html#Pubkey.__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Pubkey.__type\"},{\"id\":59,\"kind\":1024,\"name\":\"value\",\"url\":\"modules.html#Pubkey.__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Pubkey.__type\"},{\"id\":60,\"kind\":4194304,\"name\":\"StdSignature\",\"url\":\"modules.html#StdSignature\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":61,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#StdSignature.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"StdSignature\"},{\"id\":62,\"kind\":1024,\"name\":\"pub_key\",\"url\":\"modules.html#StdSignature.__type.pub_key\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StdSignature.__type\"},{\"id\":63,\"kind\":1024,\"name\":\"signature\",\"url\":\"modules.html#StdSignature.__type.signature\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StdSignature.__type\"},{\"id\":64,\"kind\":4194304,\"name\":\"AminoMsg\",\"url\":\"modules.html#AminoMsg\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":65,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#AminoMsg.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"AminoMsg\"},{\"id\":66,\"kind\":1024,\"name\":\"type\",\"url\":\"modules.html#AminoMsg.__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"AminoMsg.__type\"},{\"id\":67,\"kind\":1024,\"name\":\"value\",\"url\":\"modules.html#AminoMsg.__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"AminoMsg.__type\"},{\"id\":68,\"kind\":4194304,\"name\":\"Coin\",\"url\":\"modules.html#Coin\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":69,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#Coin.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"Coin\"},{\"id\":70,\"kind\":1024,\"name\":\"denom\",\"url\":\"modules.html#Coin.__type.denom\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Coin.__type\"},{\"id\":71,\"kind\":1024,\"name\":\"amount\",\"url\":\"modules.html#Coin.__type.amount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Coin.__type\"},{\"id\":72,\"kind\":4194304,\"name\":\"StdFee\",\"url\":\"modules.html#StdFee\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":73,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#StdFee.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"StdFee\"},{\"id\":74,\"kind\":1024,\"name\":\"amount\",\"url\":\"modules.html#StdFee.__type.amount\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StdFee.__type\"},{\"id\":75,\"kind\":1024,\"name\":\"gas\",\"url\":\"modules.html#StdFee.__type.gas\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StdFee.__type\"},{\"id\":76,\"kind\":1024,\"name\":\"granter\",\"url\":\"modules.html#StdFee.__type.granter\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StdFee.__type\"},{\"id\":77,\"kind\":4194304,\"name\":\"StdSignDoc\",\"url\":\"modules.html#StdSignDoc\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":78,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#StdSignDoc.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"StdSignDoc\"},{\"id\":79,\"kind\":1024,\"name\":\"chain_id\",\"url\":\"modules.html#StdSignDoc.__type.chain_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StdSignDoc.__type\"},{\"id\":80,\"kind\":1024,\"name\":\"account_number\",\"url\":\"modules.html#StdSignDoc.__type.account_number\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StdSignDoc.__type\"},{\"id\":81,\"kind\":1024,\"name\":\"sequence\",\"url\":\"modules.html#StdSignDoc.__type.sequence\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StdSignDoc.__type\"},{\"id\":82,\"kind\":1024,\"name\":\"fee\",\"url\":\"modules.html#StdSignDoc.__type.fee\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StdSignDoc.__type\"},{\"id\":83,\"kind\":1024,\"name\":\"msgs\",\"url\":\"modules.html#StdSignDoc.__type.msgs\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StdSignDoc.__type\"},{\"id\":84,\"kind\":1024,\"name\":\"memo\",\"url\":\"modules.html#StdSignDoc.__type.memo\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"StdSignDoc.__type\"},{\"id\":85,\"kind\":4194304,\"name\":\"SignDoc\",\"url\":\"modules.html#SignDoc\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":86,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#SignDoc.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"SignDoc\"},{\"id\":87,\"kind\":1024,\"name\":\"bodyBytes\",\"url\":\"modules.html#SignDoc.__type.bodyBytes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"SignDoc.__type\"},{\"id\":88,\"kind\":1024,\"name\":\"authInfoBytes\",\"url\":\"modules.html#SignDoc.__type.authInfoBytes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"SignDoc.__type\"},{\"id\":89,\"kind\":1024,\"name\":\"chainId\",\"url\":\"modules.html#SignDoc.__type.chainId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"SignDoc.__type\"},{\"id\":90,\"kind\":1024,\"name\":\"accountNumber\",\"url\":\"modules.html#SignDoc.__type.accountNumber\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"SignDoc.__type\"},{\"id\":91,\"kind\":4194304,\"name\":\"WalletOptions\",\"url\":\"modules.html#WalletOptions\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":92,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#WalletOptions.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"WalletOptions\"},{\"id\":93,\"kind\":1024,\"name\":\"paths\",\"url\":\"modules.html#WalletOptions.__type.paths\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"WalletOptions.__type\"},{\"id\":94,\"kind\":1024,\"name\":\"addressPrefix\",\"url\":\"modules.html#WalletOptions.__type.addressPrefix\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"WalletOptions.__type\"},{\"id\":95,\"kind\":1024,\"name\":\"pubKeyBech32Address\",\"url\":\"modules.html#WalletOptions.__type.pubKeyBech32Address\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"WalletOptions.__type\"},{\"id\":96,\"kind\":4194304,\"name\":\"LeapSigner\",\"url\":\"modules.html#LeapSigner\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":97,\"kind\":8,\"name\":\"WALLETTYPE\",\"url\":\"enums/WALLETTYPE.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":98,\"kind\":16,\"name\":\"SEED_PHRASE\",\"url\":\"enums/WALLETTYPE.html#SEED_PHRASE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WALLETTYPE\"},{\"id\":99,\"kind\":16,\"name\":\"PRIVATE_KEY\",\"url\":\"enums/WALLETTYPE.html#PRIVATE_KEY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WALLETTYPE\"},{\"id\":100,\"kind\":16,\"name\":\"SEED_PHRASE_IMPORTED\",\"url\":\"enums/WALLETTYPE.html#SEED_PHRASE_IMPORTED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WALLETTYPE\"},{\"id\":101,\"kind\":16,\"name\":\"LEDGER\",\"url\":\"enums/WALLETTYPE.html#LEDGER\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"WALLETTYPE\"},{\"id\":102,\"kind\":4194304,\"name\":\"Key\",\"url\":\"modules.html#Key\",\"classes\":\"tsd-kind-type-alias tsd-has-type-parameter\"},{\"id\":103,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#Key.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"Key\"},{\"id\":104,\"kind\":1024,\"name\":\"addressIndex\",\"url\":\"modules.html#Key.__type.addressIndex\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Key.__type\"},{\"id\":105,\"kind\":1024,\"name\":\"name\",\"url\":\"modules.html#Key.__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Key.__type\"},{\"id\":106,\"kind\":1024,\"name\":\"cipher\",\"url\":\"modules.html#Key.__type.cipher\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Key.__type\"},{\"id\":107,\"kind\":1024,\"name\":\"addresses\",\"url\":\"modules.html#Key.__type.addresses\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Key.__type\"},{\"id\":108,\"kind\":1024,\"name\":\"pubKeys\",\"url\":\"modules.html#Key.__type.pubKeys\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Key.__type\"},{\"id\":109,\"kind\":1024,\"name\":\"walletType\",\"url\":\"modules.html#Key.__type.walletType\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Key.__type\"},{\"id\":110,\"kind\":1024,\"name\":\"id\",\"url\":\"modules.html#Key.__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Key.__type\"},{\"id\":111,\"kind\":1024,\"name\":\"colorIndex\",\"url\":\"modules.html#Key.__type.colorIndex\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Key.__type\"},{\"id\":112,\"kind\":4194304,\"name\":\"Keystore\",\"url\":\"modules.html#Keystore\",\"classes\":\"tsd-kind-type-alias tsd-has-type-parameter\"},{\"id\":113,\"kind\":4194304,\"name\":\"CreateWalletParams\",\"url\":\"modules.html#CreateWalletParams\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":114,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#CreateWalletParams.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"CreateWalletParams\"},{\"id\":115,\"kind\":1024,\"name\":\"name\",\"url\":\"modules.html#CreateWalletParams.__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"CreateWalletParams.__type\"},{\"id\":116,\"kind\":1024,\"name\":\"mnemonic\",\"url\":\"modules.html#CreateWalletParams.__type.mnemonic\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"CreateWalletParams.__type\"},{\"id\":117,\"kind\":1024,\"name\":\"password\",\"url\":\"modules.html#CreateWalletParams.__type.password\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"CreateWalletParams.__type\"},{\"id\":118,\"kind\":1024,\"name\":\"addressIndex\",\"url\":\"modules.html#CreateWalletParams.__type.addressIndex\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"CreateWalletParams.__type\"},{\"id\":119,\"kind\":1024,\"name\":\"colorIndex\",\"url\":\"modules.html#CreateWalletParams.__type.colorIndex\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"CreateWalletParams.__type\"},{\"id\":120,\"kind\":1024,\"name\":\"chainInfos\",\"url\":\"modules.html#CreateWalletParams.__type.chainInfos\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"CreateWalletParams.__type\"},{\"id\":121,\"kind\":1024,\"name\":\"type\",\"url\":\"modules.html#CreateWalletParams.__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"CreateWalletParams.__type\"},{\"id\":122,\"kind\":4194304,\"name\":\"ChainInfo\",\"url\":\"modules.html#ChainInfo\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":123,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#ChainInfo.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"ChainInfo\"},{\"id\":124,\"kind\":1024,\"name\":\"key\",\"url\":\"modules.html#ChainInfo.__type.key\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ChainInfo.__type\"},{\"id\":125,\"kind\":1024,\"name\":\"addressPrefix\",\"url\":\"modules.html#ChainInfo.__type.addressPrefix\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ChainInfo.__type\"},{\"id\":126,\"kind\":1024,\"name\":\"coinType\",\"url\":\"modules.html#ChainInfo.__type.coinType\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ChainInfo.__type\"},{\"id\":127,\"kind\":1024,\"name\":\"useBip84\",\"url\":\"modules.html#ChainInfo.__type.useBip84\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ChainInfo.__type\"},{\"id\":128,\"kind\":1024,\"name\":\"btcNetwork\",\"url\":\"modules.html#ChainInfo.__type.btcNetwork\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ChainInfo.__type\"},{\"id\":129,\"kind\":2048,\"name\":\"customKeygenfn\",\"url\":\"modules.html#ChainInfo.__type.customKeygenfn\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"ChainInfo.__type\"},{\"id\":130,\"kind\":4194304,\"name\":\"GetSignerParams\",\"url\":\"modules.html#GetSignerParams\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":131,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#GetSignerParams.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"GetSignerParams\"},{\"id\":132,\"kind\":1024,\"name\":\"addressPrefix\",\"url\":\"modules.html#GetSignerParams.__type.addressPrefix\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"GetSignerParams.__type\"},{\"id\":133,\"kind\":1024,\"name\":\"coinType\",\"url\":\"modules.html#GetSignerParams.__type.coinType\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"GetSignerParams.__type\"},{\"id\":134,\"kind\":1024,\"name\":\"ethWallet\",\"url\":\"modules.html#GetSignerParams.__type.ethWallet\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"GetSignerParams.__type\"},{\"id\":135,\"kind\":1024,\"name\":\"pubKeyBech32Address\",\"url\":\"modules.html#GetSignerParams.__type.pubKeyBech32Address\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"GetSignerParams.__type\"},{\"id\":136,\"kind\":1024,\"name\":\"btcNetwork\",\"url\":\"modules.html#GetSignerParams.__type.btcNetwork\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"GetSignerParams.__type\"},{\"id\":137,\"kind\":32,\"name\":\"KEYCHAIN\",\"url\":\"modules.html#KEYCHAIN\",\"classes\":\"tsd-kind-variable\"},{\"id\":138,\"kind\":32,\"name\":\"ENCRYPTED_KEYCHAIN\",\"url\":\"modules.html#ENCRYPTED_KEYCHAIN\",\"classes\":\"tsd-kind-variable\"},{\"id\":139,\"kind\":32,\"name\":\"ACTIVE_WALLET\",\"url\":\"modules.html#ACTIVE_WALLET\",\"classes\":\"tsd-kind-variable\"},{\"id\":140,\"kind\":32,\"name\":\"ENCRYPTED_ACTIVE_WALLET\",\"url\":\"modules.html#ENCRYPTED_ACTIVE_WALLET\",\"classes\":\"tsd-kind-variable\"},{\"id\":141,\"kind\":128,\"name\":\"KeyChain\",\"url\":\"classes/KeyChain.html\",\"classes\":\"tsd-kind-class\"},{\"id\":142,\"kind\":2048,\"name\":\"createWalletUsingMnemonic\",\"url\":\"classes/KeyChain.html#createWalletUsingMnemonic\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static\",\"parent\":\"KeyChain\"},{\"id\":143,\"kind\":2048,\"name\":\"createNewWalletAccount\",\"url\":\"classes/KeyChain.html#createNewWalletAccount\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static\",\"parent\":\"KeyChain\"},{\"id\":144,\"kind\":2048,\"name\":\"importNewWallet\",\"url\":\"classes/KeyChain.html#importNewWallet\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static\",\"parent\":\"KeyChain\"},{\"id\":145,\"kind\":2048,\"name\":\"EditWallet\",\"url\":\"classes/KeyChain.html#EditWallet\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static\",\"parent\":\"KeyChain\"},{\"id\":146,\"kind\":2048,\"name\":\"getWalletsFromMnemonic\",\"url\":\"classes/KeyChain.html#getWalletsFromMnemonic\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"KeyChain\"},{\"id\":147,\"kind\":2048,\"name\":\"getAllWallets\",\"url\":\"classes/KeyChain.html#getAllWallets\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static\",\"parent\":\"KeyChain\"},{\"id\":148,\"kind\":2048,\"name\":\"getSigner\",\"url\":\"classes/KeyChain.html#getSigner\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static\",\"parent\":\"KeyChain\"},{\"id\":149,\"kind\":2048,\"name\":\"removeWallets\",\"url\":\"classes/KeyChain.html#removeWallets\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static\",\"parent\":\"KeyChain\"},{\"id\":150,\"kind\":2048,\"name\":\"encrypt\",\"url\":\"classes/KeyChain.html#encrypt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static\",\"parent\":\"KeyChain\"},{\"id\":151,\"kind\":2048,\"name\":\"decrypt\",\"url\":\"classes/KeyChain.html#decrypt\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-static\",\"parent\":\"KeyChain\"},{\"id\":152,\"kind\":2048,\"name\":\"AddEntry\",\"url\":\"classes/KeyChain.html#AddEntry\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter tsd-is-static\",\"parent\":\"KeyChain\"},{\"id\":153,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/KeyChain.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"KeyChain\"},{\"id\":154,\"kind\":64,\"name\":\"getFullHDPath\",\"url\":\"modules.html#getFullHDPath\",\"classes\":\"tsd-kind-function\"},{\"id\":155,\"kind\":64,\"name\":\"isBtcCoinType\",\"url\":\"modules.html#isBtcCoinType\",\"classes\":\"tsd-kind-function\"},{\"id\":156,\"kind\":64,\"name\":\"getHardenedPath\",\"url\":\"modules.html#getHardenedPath\",\"classes\":\"tsd-kind-function\"},{\"id\":157,\"kind\":64,\"name\":\"encrypt\",\"url\":\"modules.html#encrypt\",\"classes\":\"tsd-kind-function\"},{\"id\":158,\"kind\":64,\"name\":\"decrypt\",\"url\":\"modules.html#decrypt\",\"classes\":\"tsd-kind-function\"},{\"id\":159,\"kind\":64,\"name\":\"setBip39\",\"url\":\"modules.html#setBip39\",\"classes\":\"tsd-kind-function\"},{\"id\":160,\"kind\":64,\"name\":\"getBip39\",\"url\":\"modules.html#getBip39\",\"classes\":\"tsd-kind-function\"},{\"id\":161,\"kind\":256,\"name\":\"IBip39\",\"url\":\"interfaces/IBip39.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":162,\"kind\":2048,\"name\":\"generateMnemonic\",\"url\":\"interfaces/IBip39.html#generateMnemonic\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IBip39\"},{\"id\":163,\"kind\":2048,\"name\":\"mnemonicToSeed\",\"url\":\"interfaces/IBip39.html#mnemonicToSeed\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IBip39\"},{\"id\":164,\"kind\":2048,\"name\":\"validateMnemonic\",\"url\":\"interfaces/IBip39.html#validateMnemonic\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IBip39\"},{\"id\":165,\"kind\":2048,\"name\":\"mnemonicToSeedSync\",\"url\":\"interfaces/IBip39.html#mnemonicToSeedSync\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IBip39\"},{\"id\":166,\"kind\":2048,\"name\":\"mnemonicToEntropy\",\"url\":\"interfaces/IBip39.html#mnemonicToEntropy\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IBip39\"},{\"id\":167,\"kind\":32,\"name\":\"bip39Token\",\"url\":\"modules.html#bip39Token\",\"classes\":\"tsd-kind-variable\"},{\"id\":168,\"kind\":64,\"name\":\"setBip32\",\"url\":\"modules.html#setBip32\",\"classes\":\"tsd-kind-function\"},{\"id\":169,\"kind\":64,\"name\":\"getBip32\",\"url\":\"modules.html#getBip32\",\"classes\":\"tsd-kind-function\"},{\"id\":170,\"kind\":4194304,\"name\":\"IHDKey\",\"url\":\"modules.html#IHDKey\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":171,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#IHDKey.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"IHDKey\"},{\"id\":172,\"kind\":2048,\"name\":\"derive\",\"url\":\"modules.html#IHDKey.__type.derive\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"IHDKey.__type\"},{\"id\":173,\"kind\":1024,\"name\":\"publicKey\",\"url\":\"modules.html#IHDKey.__type.publicKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"IHDKey.__type\"},{\"id\":174,\"kind\":1024,\"name\":\"privateKey\",\"url\":\"modules.html#IHDKey.__type.privateKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"IHDKey.__type\"},{\"id\":175,\"kind\":4194304,\"name\":\"IChildKey\",\"url\":\"modules.html#IChildKey\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":176,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#IChildKey.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"IChildKey\"},{\"id\":177,\"kind\":1024,\"name\":\"publicKey\",\"url\":\"modules.html#IChildKey.__type.publicKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"IChildKey.__type\"},{\"id\":178,\"kind\":1024,\"name\":\"privateKey\",\"url\":\"modules.html#IChildKey.__type.privateKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"IChildKey.__type\"},{\"id\":179,\"kind\":2048,\"name\":\"sign\",\"url\":\"modules.html#IChildKey.__type.sign\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"IChildKey.__type\"},{\"id\":180,\"kind\":256,\"name\":\"IBip32\",\"url\":\"interfaces/IBip32.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":181,\"kind\":2048,\"name\":\"derivePath\",\"url\":\"interfaces/IBip32.html#derivePath\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IBip32\"},{\"id\":182,\"kind\":2048,\"name\":\"fromSeed\",\"url\":\"interfaces/IBip32.html#fromSeed\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IBip32\"},{\"id\":183,\"kind\":2048,\"name\":\"sign\",\"url\":\"interfaces/IBip32.html#sign\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"IBip32\"},{\"id\":184,\"kind\":32,\"name\":\"bip32Token\",\"url\":\"modules.html#bip32Token\",\"classes\":\"tsd-kind-variable\"},{\"id\":185,\"kind\":4,\"name\":\"Secp256k1\",\"url\":\"modules/Secp256k1.html\",\"classes\":\"tsd-kind-namespace\"},{\"id\":186,\"kind\":64,\"name\":\"getPublicKey\",\"url\":\"modules/Secp256k1.html#getPublicKey\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Secp256k1\"},{\"id\":187,\"kind\":64,\"name\":\"sign\",\"url\":\"modules/Secp256k1.html#sign\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Secp256k1\"},{\"id\":188,\"kind\":64,\"name\":\"publicKeyConvert\",\"url\":\"modules/Secp256k1.html#publicKeyConvert\",\"classes\":\"tsd-kind-function tsd-parent-kind-namespace\",\"parent\":\"Secp256k1\"},{\"id\":189,\"kind\":32,\"name\":\"secp256k1Token\",\"url\":\"modules.html#secp256k1Token\",\"classes\":\"tsd-kind-variable\"},{\"id\":190,\"kind\":64,\"name\":\"setSecp256k1\",\"url\":\"modules.html#setSecp256k1\",\"classes\":\"tsd-kind-function\"},{\"id\":191,\"kind\":32,\"name\":\"ripemd160Token\",\"url\":\"modules.html#ripemd160Token\",\"classes\":\"tsd-kind-variable\"},{\"id\":192,\"kind\":32,\"name\":\"sha256Token\",\"url\":\"modules.html#sha256Token\",\"classes\":\"tsd-kind-variable\"},{\"id\":193,\"kind\":64,\"name\":\"setripemd160\",\"url\":\"modules.html#setripemd160\",\"classes\":\"tsd-kind-function\"},{\"id\":194,\"kind\":64,\"name\":\"setsha256\",\"url\":\"modules.html#setsha256\",\"classes\":\"tsd-kind-function\"},{\"id\":195,\"kind\":64,\"name\":\"initCrypto\",\"url\":\"modules.html#initCrypto\",\"classes\":\"tsd-kind-function\"},{\"id\":196,\"kind\":64,\"name\":\"generateWalletFromMnemonic\",\"url\":\"modules.html#generateWalletFromMnemonic\",\"classes\":\"tsd-kind-function\"},{\"id\":197,\"kind\":64,\"name\":\"generateWalletsFromMnemonic\",\"url\":\"modules.html#generateWalletsFromMnemonic\",\"classes\":\"tsd-kind-function\"},{\"id\":198,\"kind\":64,\"name\":\"compressedPublicKey\",\"url\":\"modules.html#compressedPublicKey\",\"classes\":\"tsd-kind-function\"},{\"id\":199,\"kind\":64,\"name\":\"generateWalletFromPrivateKey\",\"url\":\"modules.html#generateWalletFromPrivateKey\",\"classes\":\"tsd-kind-function\"},{\"id\":200,\"kind\":2,\"name\":\"\",\"url\":\"modules/_internal_.html\",\"classes\":\"tsd-kind-module\"},{\"id\":201,\"kind\":4194304,\"name\":\"ripemd160\",\"url\":\"modules/_internal_.html#ripemd160\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"\"},{\"id\":202,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/_internal_.html#ripemd160.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\".ripemd160\"},{\"id\":203,\"kind\":4194304,\"name\":\"sha256\",\"url\":\"modules/_internal_.html#sha256\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"\"},{\"id\":204,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/_internal_.html#sha256.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\".sha256\"},{\"id\":205,\"kind\":4194304,\"name\":\"StorageLayer\",\"url\":\"modules/_internal_.html#StorageLayer\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"\"},{\"id\":206,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules/_internal_.html#StorageLayer.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\".StorageLayer\"},{\"id\":207,\"kind\":2048,\"name\":\"get\",\"url\":\"modules/_internal_.html#StorageLayer.__type.get\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal tsd-has-type-parameter\",\"parent\":\".StorageLayer.__type\"},{\"id\":208,\"kind\":2048,\"name\":\"set\",\"url\":\"modules/_internal_.html#StorageLayer.__type.set\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal tsd-has-type-parameter\",\"parent\":\".StorageLayer.__type\"},{\"id\":209,\"kind\":2048,\"name\":\"remove\",\"url\":\"modules/_internal_.html#StorageLayer.__type.remove\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\".StorageLayer.__type\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,49.464]],[\"parent/0\",[]],[\"name/1\",[1,49.464]],[\"parent/1\",[]],[\"name/2\",[2,34.801]],[\"parent/2\",[]],[\"name/3\",[3,44.356]],[\"parent/3\",[2,2.951]],[\"name/4\",[4,40.991]],[\"parent/4\",[2,2.951]],[\"name/5\",[5,40.991]],[\"parent/5\",[2,2.951]],[\"name/6\",[6,34.801]],[\"parent/6\",[2,2.951]],[\"name/7\",[7,38.478]],[\"parent/7\",[2,2.951]],[\"name/8\",[8,34.801]],[\"parent/8\",[]],[\"name/9\",[3,44.356]],[\"parent/9\",[8,2.951]],[\"name/10\",[9,36.471]],[\"parent/10\",[8,2.951]],[\"name/11\",[6,34.801]],[\"parent/11\",[8,2.951]],[\"name/12\",[4,40.991]],[\"parent/12\",[8,2.951]],[\"name/13\",[5,40.991]],[\"parent/13\",[8,2.951]],[\"name/14\",[10,27.492]],[\"parent/14\",[]],[\"name/15\",[11,40.991]],[\"parent/15\",[10,2.331]],[\"name/16\",[12,49.464]],[\"parent/16\",[10,2.331]],[\"name/17\",[13,49.464]],[\"parent/17\",[10,2.331]],[\"name/18\",[6,34.801]],[\"parent/18\",[10,2.331]],[\"name/19\",[14,49.464]],[\"parent/19\",[10,2.331]],[\"name/20\",[15,38.478]],[\"parent/20\",[10,2.331]],[\"name/21\",[16,49.464]],[\"parent/21\",[10,2.331]],[\"name/22\",[17,49.464]],[\"parent/22\",[10,2.331]],[\"name/23\",[18,49.464]],[\"parent/23\",[10,2.331]],[\"name/24\",[4,40.991]],[\"parent/24\",[10,2.331]],[\"name/25\",[5,40.991]],[\"parent/25\",[10,2.331]],[\"name/26\",[19,49.464]],[\"parent/26\",[]],[\"name/27\",[20,33.37]],[\"parent/27\",[]],[\"name/28\",[9,36.471]],[\"parent/28\",[20,2.83]],[\"name/29\",[7,38.478]],[\"parent/29\",[20,2.83]],[\"name/30\",[6,34.801]],[\"parent/30\",[20,2.83]],[\"name/31\",[21,40.991]],[\"parent/31\",[20,2.83]],[\"name/32\",[22,40.991]],[\"parent/32\",[20,2.83]],[\"name/33\",[23,40.991]],[\"parent/33\",[20,2.83]],[\"name/34\",[24,32.118]],[\"parent/34\",[]],[\"name/35\",[11,40.991]],[\"parent/35\",[24,2.723]],[\"name/36\",[9,36.471]],[\"parent/36\",[24,2.723]],[\"name/37\",[7,38.478]],[\"parent/37\",[24,2.723]],[\"name/38\",[6,34.801]],[\"parent/38\",[24,2.723]],[\"name/39\",[21,40.991]],[\"parent/39\",[24,2.723]],[\"name/40\",[22,40.991]],[\"parent/40\",[24,2.723]],[\"name/41\",[23,40.991]],[\"parent/41\",[24,2.723]],[\"name/42\",[25,33.37]],[\"parent/42\",[]],[\"name/43\",[9,36.471]],[\"parent/43\",[25,2.83]],[\"name/44\",[7,38.478]],[\"parent/44\",[25,2.83]],[\"name/45\",[6,34.801]],[\"parent/45\",[25,2.83]],[\"name/46\",[21,40.991]],[\"parent/46\",[25,2.83]],[\"name/47\",[22,40.991]],[\"parent/47\",[25,2.83]],[\"name/48\",[23,40.991]],[\"parent/48\",[25,2.83]],[\"name/49\",[26,49.464]],[\"parent/49\",[]],[\"name/50\",[27,49.464]],[\"parent/50\",[]],[\"name/51\",[28,49.464]],[\"parent/51\",[]],[\"name/52\",[29,49.464]],[\"parent/52\",[]],[\"name/53\",[30,49.464]],[\"parent/53\",[]],[\"name/54\",[31,49.464]],[\"parent/54\",[]],[\"name/55\",[32,49.464]],[\"parent/55\",[]],[\"name/56\",[33,44.356]],[\"parent/56\",[]],[\"name/57\",[34,24.897]],[\"parent/57\",[33,3.761]],[\"name/58\",[35,40.991]],[\"parent/58\",[36,3.761]],[\"name/59\",[37,44.356]],[\"parent/59\",[36,3.761]],[\"name/60\",[38,44.356]],[\"parent/60\",[]],[\"name/61\",[34,24.897]],[\"parent/61\",[38,3.761]],[\"name/62\",[39,49.464]],[\"parent/62\",[40,3.761]],[\"name/63\",[41,49.464]],[\"parent/63\",[40,3.761]],[\"name/64\",[42,44.356]],[\"parent/64\",[]],[\"name/65\",[34,24.897]],[\"parent/65\",[42,3.761]],[\"name/66\",[35,40.991]],[\"parent/66\",[43,3.761]],[\"name/67\",[37,44.356]],[\"parent/67\",[43,3.761]],[\"name/68\",[44,44.356]],[\"parent/68\",[]],[\"name/69\",[34,24.897]],[\"parent/69\",[44,3.761]],[\"name/70\",[45,49.464]],[\"parent/70\",[46,3.761]],[\"name/71\",[47,44.356]],[\"parent/71\",[46,3.761]],[\"name/72\",[48,44.356]],[\"parent/72\",[]],[\"name/73\",[34,24.897]],[\"parent/73\",[48,3.761]],[\"name/74\",[47,44.356]],[\"parent/74\",[49,3.476]],[\"name/75\",[50,49.464]],[\"parent/75\",[49,3.476]],[\"name/76\",[51,49.464]],[\"parent/76\",[49,3.476]],[\"name/77\",[52,44.356]],[\"parent/77\",[]],[\"name/78\",[34,24.897]],[\"parent/78\",[52,3.761]],[\"name/79\",[53,49.464]],[\"parent/79\",[54,2.951]],[\"name/80\",[55,49.464]],[\"parent/80\",[54,2.951]],[\"name/81\",[56,49.464]],[\"parent/81\",[54,2.951]],[\"name/82\",[57,49.464]],[\"parent/82\",[54,2.951]],[\"name/83\",[58,49.464]],[\"parent/83\",[54,2.951]],[\"name/84\",[59,49.464]],[\"parent/84\",[54,2.951]],[\"name/85\",[60,44.356]],[\"parent/85\",[]],[\"name/86\",[34,24.897]],[\"parent/86\",[60,3.761]],[\"name/87\",[61,49.464]],[\"parent/87\",[62,3.263]],[\"name/88\",[63,49.464]],[\"parent/88\",[62,3.263]],[\"name/89\",[64,49.464]],[\"parent/89\",[62,3.263]],[\"name/90\",[65,49.464]],[\"parent/90\",[62,3.263]],[\"name/91\",[66,44.356]],[\"parent/91\",[]],[\"name/92\",[34,24.897]],[\"parent/92\",[66,3.761]],[\"name/93\",[67,49.464]],[\"parent/93\",[68,3.476]],[\"name/94\",[69,40.991]],[\"parent/94\",[68,3.476]],[\"name/95\",[70,44.356]],[\"parent/95\",[68,3.476]],[\"name/96\",[71,49.464]],[\"parent/96\",[]],[\"name/97\",[72,34.801]],[\"parent/97\",[]],[\"name/98\",[73,49.464]],[\"parent/98\",[72,2.951]],[\"name/99\",[74,49.464]],[\"parent/99\",[72,2.951]],[\"name/100\",[75,49.464]],[\"parent/100\",[72,2.951]],[\"name/101\",[76,49.464]],[\"parent/101\",[72,2.951]],[\"name/102\",[77,40.991]],[\"parent/102\",[]],[\"name/103\",[34,24.897]],[\"parent/103\",[77,3.476]],[\"name/104\",[78,44.356]],[\"parent/104\",[79,2.723]],[\"name/105\",[80,44.356]],[\"parent/105\",[79,2.723]],[\"name/106\",[81,49.464]],[\"parent/106\",[79,2.723]],[\"name/107\",[82,49.464]],[\"parent/107\",[79,2.723]],[\"name/108\",[83,49.464]],[\"parent/108\",[79,2.723]],[\"name/109\",[72,34.801]],[\"parent/109\",[79,2.723]],[\"name/110\",[84,49.464]],[\"parent/110\",[79,2.723]],[\"name/111\",[85,44.356]],[\"parent/111\",[79,2.723]],[\"name/112\",[86,49.464]],[\"parent/112\",[]],[\"name/113\",[87,44.356]],[\"parent/113\",[]],[\"name/114\",[34,24.897]],[\"parent/114\",[87,3.761]],[\"name/115\",[80,44.356]],[\"parent/115\",[88,2.83]],[\"name/116\",[89,49.464]],[\"parent/116\",[88,2.83]],[\"name/117\",[90,49.464]],[\"parent/117\",[88,2.83]],[\"name/118\",[78,44.356]],[\"parent/118\",[88,2.83]],[\"name/119\",[85,44.356]],[\"parent/119\",[88,2.83]],[\"name/120\",[91,49.464]],[\"parent/120\",[88,2.83]],[\"name/121\",[35,40.991]],[\"parent/121\",[88,2.83]],[\"name/122\",[92,44.356]],[\"parent/122\",[]],[\"name/123\",[34,24.897]],[\"parent/123\",[92,3.761]],[\"name/124\",[77,40.991]],[\"parent/124\",[93,2.951]],[\"name/125\",[69,40.991]],[\"parent/125\",[93,2.951]],[\"name/126\",[94,44.356]],[\"parent/126\",[93,2.951]],[\"name/127\",[95,49.464]],[\"parent/127\",[93,2.951]],[\"name/128\",[96,44.356]],[\"parent/128\",[93,2.951]],[\"name/129\",[97,49.464]],[\"parent/129\",[93,2.951]],[\"name/130\",[98,44.356]],[\"parent/130\",[]],[\"name/131\",[34,24.897]],[\"parent/131\",[98,3.761]],[\"name/132\",[69,40.991]],[\"parent/132\",[99,3.093]],[\"name/133\",[94,44.356]],[\"parent/133\",[99,3.093]],[\"name/134\",[10,27.492]],[\"parent/134\",[99,3.093]],[\"name/135\",[70,44.356]],[\"parent/135\",[99,3.093]],[\"name/136\",[96,44.356]],[\"parent/136\",[99,3.093]],[\"name/137\",[100,26.777]],[\"parent/137\",[]],[\"name/138\",[101,49.464]],[\"parent/138\",[]],[\"name/139\",[102,49.464]],[\"parent/139\",[]],[\"name/140\",[103,49.464]],[\"parent/140\",[]],[\"name/141\",[100,26.777]],[\"parent/141\",[]],[\"name/142\",[104,49.464]],[\"parent/142\",[100,2.271]],[\"name/143\",[105,49.464]],[\"parent/143\",[100,2.271]],[\"name/144\",[106,49.464]],[\"parent/144\",[100,2.271]],[\"name/145\",[107,49.464]],[\"parent/145\",[100,2.271]],[\"name/146\",[108,49.464]],[\"parent/146\",[100,2.271]],[\"name/147\",[109,49.464]],[\"parent/147\",[100,2.271]],[\"name/148\",[110,49.464]],[\"parent/148\",[100,2.271]],[\"name/149\",[111,49.464]],[\"parent/149\",[100,2.271]],[\"name/150\",[112,44.356]],[\"parent/150\",[100,2.271]],[\"name/151\",[113,44.356]],[\"parent/151\",[100,2.271]],[\"name/152\",[114,49.464]],[\"parent/152\",[100,2.271]],[\"name/153\",[9,36.471]],[\"parent/153\",[100,2.271]],[\"name/154\",[115,49.464]],[\"parent/154\",[]],[\"name/155\",[116,49.464]],[\"parent/155\",[]],[\"name/156\",[117,49.464]],[\"parent/156\",[]],[\"name/157\",[112,44.356]],[\"parent/157\",[]],[\"name/158\",[113,44.356]],[\"parent/158\",[]],[\"name/159\",[118,49.464]],[\"parent/159\",[]],[\"name/160\",[119,49.464]],[\"parent/160\",[]],[\"name/161\",[120,34.801]],[\"parent/161\",[]],[\"name/162\",[121,49.464]],[\"parent/162\",[120,2.951]],[\"name/163\",[122,49.464]],[\"parent/163\",[120,2.951]],[\"name/164\",[123,49.464]],[\"parent/164\",[120,2.951]],[\"name/165\",[124,49.464]],[\"parent/165\",[120,2.951]],[\"name/166\",[125,49.464]],[\"parent/166\",[120,2.951]],[\"name/167\",[126,49.464]],[\"parent/167\",[]],[\"name/168\",[127,49.464]],[\"parent/168\",[]],[\"name/169\",[128,49.464]],[\"parent/169\",[]],[\"name/170\",[129,44.356]],[\"parent/170\",[]],[\"name/171\",[34,24.897]],[\"parent/171\",[129,3.761]],[\"name/172\",[130,49.464]],[\"parent/172\",[131,3.476]],[\"name/173\",[132,44.356]],[\"parent/173\",[131,3.476]],[\"name/174\",[133,44.356]],[\"parent/174\",[131,3.476]],[\"name/175\",[134,44.356]],[\"parent/175\",[]],[\"name/176\",[34,24.897]],[\"parent/176\",[134,3.761]],[\"name/177\",[132,44.356]],[\"parent/177\",[135,3.476]],[\"name/178\",[133,44.356]],[\"parent/178\",[135,3.476]],[\"name/179\",[15,38.478]],[\"parent/179\",[135,3.476]],[\"name/180\",[136,38.478]],[\"parent/180\",[]],[\"name/181\",[137,49.464]],[\"parent/181\",[136,3.263]],[\"name/182\",[138,49.464]],[\"parent/182\",[136,3.263]],[\"name/183\",[15,38.478]],[\"parent/183\",[136,3.263]],[\"name/184\",[139,49.464]],[\"parent/184\",[]],[\"name/185\",[140,38.478]],[\"parent/185\",[]],[\"name/186\",[141,49.464]],[\"parent/186\",[140,3.263]],[\"name/187\",[15,38.478]],[\"parent/187\",[140,3.263]],[\"name/188\",[142,49.464]],[\"parent/188\",[140,3.263]],[\"name/189\",[143,49.464]],[\"parent/189\",[]],[\"name/190\",[144,49.464]],[\"parent/190\",[]],[\"name/191\",[145,49.464]],[\"parent/191\",[]],[\"name/192\",[146,49.464]],[\"parent/192\",[]],[\"name/193\",[147,49.464]],[\"parent/193\",[]],[\"name/194\",[148,49.464]],[\"parent/194\",[]],[\"name/195\",[149,49.464]],[\"parent/195\",[]],[\"name/196\",[11,40.991]],[\"parent/196\",[]],[\"name/197\",[150,49.464]],[\"parent/197\",[]],[\"name/198\",[151,49.464]],[\"parent/198\",[]],[\"name/199\",[152,49.464]],[\"parent/199\",[]],[\"name/200\",[153,38.478]],[\"parent/200\",[]],[\"name/201\",[154,49.464]],[\"parent/201\",[153,3.263]],[\"name/202\",[34,24.897]],[\"parent/202\",[155,4.194]],[\"name/203\",[156,49.464]],[\"parent/203\",[153,3.263]],[\"name/204\",[34,24.897]],[\"parent/204\",[157,4.194]],[\"name/205\",[158,49.464]],[\"parent/205\",[153,3.263]],[\"name/206\",[34,24.897]],[\"parent/206\",[159,4.194]],[\"name/207\",[160,49.464]],[\"parent/207\",[161,3.476]],[\"name/208\",[162,49.464]],[\"parent/208\",[161,3.476]],[\"name/209\",[163,49.464]],[\"parent/209\",[161,3.476]]],\"invertedIndex\":[[\"__type\",{\"_index\":34,\"name\":{\"57\":{},\"61\":{},\"65\":{},\"69\":{},\"73\":{},\"78\":{},\"86\":{},\"92\":{},\"103\":{},\"114\":{},\"123\":{},\"131\":{},\"171\":{},\"176\":{},\"202\":{},\"204\":{},\"206\":{}},\"parent\":{}}],[\"account_number\",{\"_index\":55,\"name\":{\"80\":{}},\"parent\":{}}],[\"accountnumber\",{\"_index\":65,\"name\":{\"90\":{}},\"parent\":{}}],[\"active_wallet\",{\"_index\":102,\"name\":{\"139\":{}},\"parent\":{}}],[\"addentry\",{\"_index\":114,\"name\":{\"152\":{}},\"parent\":{}}],[\"addresses\",{\"_index\":82,\"name\":{\"107\":{}},\"parent\":{}}],[\"addressindex\",{\"_index\":78,\"name\":{\"104\":{},\"118\":{}},\"parent\":{}}],[\"addressprefix\",{\"_index\":69,\"name\":{\"94\":{},\"125\":{},\"132\":{}},\"parent\":{}}],[\"aminomsg\",{\"_index\":42,\"name\":{\"64\":{}},\"parent\":{\"65\":{}}}],[\"aminomsg.__type\",{\"_index\":43,\"name\":{},\"parent\":{\"66\":{},\"67\":{}}}],[\"amount\",{\"_index\":47,\"name\":{\"71\":{},\"74\":{}},\"parent\":{}}],[\"authinfobytes\",{\"_index\":63,\"name\":{\"88\":{}},\"parent\":{}}],[\"bip32token\",{\"_index\":139,\"name\":{\"184\":{}},\"parent\":{}}],[\"bip39token\",{\"_index\":126,\"name\":{\"167\":{}},\"parent\":{}}],[\"bodybytes\",{\"_index\":61,\"name\":{\"87\":{}},\"parent\":{}}],[\"btcnetwork\",{\"_index\":96,\"name\":{\"128\":{},\"136\":{}},\"parent\":{}}],[\"btcwallet\",{\"_index\":20,\"name\":{\"27\":{}},\"parent\":{\"28\":{},\"29\":{},\"30\":{},\"31\":{},\"32\":{},\"33\":{}}}],[\"btcwallethd\",{\"_index\":24,\"name\":{\"34\":{}},\"parent\":{\"35\":{},\"36\":{},\"37\":{},\"38\":{},\"39\":{},\"40\":{},\"41\":{}}}],[\"btcwalletoptions\",{\"_index\":19,\"name\":{\"26\":{}},\"parent\":{}}],[\"btcwalletpk\",{\"_index\":25,\"name\":{\"42\":{}},\"parent\":{\"43\":{},\"44\":{},\"45\":{},\"46\":{},\"47\":{},\"48\":{}}}],[\"chain_id\",{\"_index\":53,\"name\":{\"79\":{}},\"parent\":{}}],[\"chainid\",{\"_index\":64,\"name\":{\"89\":{}},\"parent\":{}}],[\"chaininfo\",{\"_index\":92,\"name\":{\"122\":{}},\"parent\":{\"123\":{}}}],[\"chaininfo.__type\",{\"_index\":93,\"name\":{},\"parent\":{\"124\":{},\"125\":{},\"126\":{},\"127\":{},\"128\":{},\"129\":{}}}],[\"chaininfos\",{\"_index\":91,\"name\":{\"120\":{}},\"parent\":{}}],[\"cipher\",{\"_index\":81,\"name\":{\"106\":{}},\"parent\":{}}],[\"coin\",{\"_index\":44,\"name\":{\"68\":{}},\"parent\":{\"69\":{}}}],[\"coin.__type\",{\"_index\":46,\"name\":{},\"parent\":{\"70\":{},\"71\":{}}}],[\"cointype\",{\"_index\":94,\"name\":{\"126\":{},\"133\":{}},\"parent\":{}}],[\"colorindex\",{\"_index\":85,\"name\":{\"111\":{},\"119\":{}},\"parent\":{}}],[\"compressedpublickey\",{\"_index\":151,\"name\":{\"198\":{}},\"parent\":{}}],[\"compresssignature\",{\"_index\":28,\"name\":{\"51\":{}},\"parent\":{}}],[\"constructor\",{\"_index\":9,\"name\":{\"10\":{},\"28\":{},\"36\":{},\"43\":{},\"153\":{}},\"parent\":{}}],[\"createnewwalletaccount\",{\"_index\":105,\"name\":{\"143\":{}},\"parent\":{}}],[\"createwalletparams\",{\"_index\":87,\"name\":{\"113\":{}},\"parent\":{\"114\":{}}}],[\"createwalletparams.__type\",{\"_index\":88,\"name\":{},\"parent\":{\"115\":{},\"116\":{},\"117\":{},\"118\":{},\"119\":{},\"120\":{},\"121\":{}}}],[\"createwalletusingmnemonic\",{\"_index\":104,\"name\":{\"142\":{}},\"parent\":{}}],[\"customkeygenfn\",{\"_index\":97,\"name\":{\"129\":{}},\"parent\":{}}],[\"decrypt\",{\"_index\":113,\"name\":{\"151\":{},\"158\":{}},\"parent\":{}}],[\"denom\",{\"_index\":45,\"name\":{\"70\":{}},\"parent\":{}}],[\"derive\",{\"_index\":130,\"name\":{\"172\":{}},\"parent\":{}}],[\"derivepath\",{\"_index\":137,\"name\":{\"181\":{}},\"parent\":{}}],[\"editwallet\",{\"_index\":107,\"name\":{\"145\":{}},\"parent\":{}}],[\"encodesecp256k1pubkey\",{\"_index\":27,\"name\":{\"50\":{}},\"parent\":{}}],[\"encodesecp256k1signature\",{\"_index\":26,\"name\":{\"49\":{}},\"parent\":{}}],[\"encrypt\",{\"_index\":112,\"name\":{\"150\":{},\"157\":{}},\"parent\":{}}],[\"encrypted_active_wallet\",{\"_index\":103,\"name\":{\"140\":{}},\"parent\":{}}],[\"encrypted_keychain\",{\"_index\":101,\"name\":{\"138\":{}},\"parent\":{}}],[\"ethwallet\",{\"_index\":10,\"name\":{\"14\":{},\"134\":{}},\"parent\":{\"15\":{},\"16\":{},\"17\":{},\"18\":{},\"19\":{},\"20\":{},\"21\":{},\"22\":{},\"23\":{},\"24\":{},\"25\":{}}}],[\"fee\",{\"_index\":57,\"name\":{\"82\":{}},\"parent\":{}}],[\"fromhex\",{\"_index\":29,\"name\":{\"52\":{}},\"parent\":{}}],[\"fromseed\",{\"_index\":138,\"name\":{\"182\":{}},\"parent\":{}}],[\"gas\",{\"_index\":50,\"name\":{\"75\":{}},\"parent\":{}}],[\"generatemnemonic\",{\"_index\":121,\"name\":{\"162\":{}},\"parent\":{}}],[\"generatewallet\",{\"_index\":3,\"name\":{\"3\":{},\"9\":{}},\"parent\":{}}],[\"generatewalletfrommnemonic\",{\"_index\":11,\"name\":{\"15\":{},\"35\":{},\"196\":{}},\"parent\":{}}],[\"generatewalletfromprivatekey\",{\"_index\":152,\"name\":{\"199\":{}},\"parent\":{}}],[\"generatewalletfrompvtkey\",{\"_index\":12,\"name\":{\"16\":{}},\"parent\":{}}],[\"generatewalletsfrommnemonic\",{\"_index\":150,\"name\":{\"197\":{}},\"parent\":{}}],[\"get\",{\"_index\":160,\"name\":{\"207\":{}},\"parent\":{}}],[\"getaccounts\",{\"_index\":6,\"name\":{\"6\":{},\"11\":{},\"18\":{},\"30\":{},\"38\":{},\"45\":{}},\"parent\":{}}],[\"getaccountswithprivkey\",{\"_index\":7,\"name\":{\"7\":{},\"29\":{},\"37\":{},\"44\":{}},\"parent\":{}}],[\"getaccountwithhexaddress\",{\"_index\":14,\"name\":{\"19\":{}},\"parent\":{}}],[\"getallwallets\",{\"_index\":109,\"name\":{\"147\":{}},\"parent\":{}}],[\"getbip32\",{\"_index\":128,\"name\":{\"169\":{}},\"parent\":{}}],[\"getbip39\",{\"_index\":119,\"name\":{\"160\":{}},\"parent\":{}}],[\"getfullhdpath\",{\"_index\":115,\"name\":{\"154\":{}},\"parent\":{}}],[\"gethardenedpath\",{\"_index\":117,\"name\":{\"156\":{}},\"parent\":{}}],[\"getpublickey\",{\"_index\":141,\"name\":{\"186\":{}},\"parent\":{}}],[\"getsigner\",{\"_index\":110,\"name\":{\"148\":{}},\"parent\":{}}],[\"getsignerparams\",{\"_index\":98,\"name\":{\"130\":{}},\"parent\":{\"131\":{}}}],[\"getsignerparams.__type\",{\"_index\":99,\"name\":{},\"parent\":{\"132\":{},\"133\":{},\"134\":{},\"135\":{},\"136\":{}}}],[\"getwalletsfrommnemonic\",{\"_index\":108,\"name\":{\"146\":{}},\"parent\":{}}],[\"granter\",{\"_index\":51,\"name\":{\"76\":{}},\"parent\":{}}],[\"ibip32\",{\"_index\":136,\"name\":{\"180\":{}},\"parent\":{\"181\":{},\"182\":{},\"183\":{}}}],[\"ibip39\",{\"_index\":120,\"name\":{\"161\":{}},\"parent\":{\"162\":{},\"163\":{},\"164\":{},\"165\":{},\"166\":{}}}],[\"ichildkey\",{\"_index\":134,\"name\":{\"175\":{}},\"parent\":{\"176\":{}}}],[\"ichildkey.__type\",{\"_index\":135,\"name\":{},\"parent\":{\"177\":{},\"178\":{},\"179\":{}}}],[\"id\",{\"_index\":84,\"name\":{\"110\":{}},\"parent\":{}}],[\"ihdkey\",{\"_index\":129,\"name\":{\"170\":{}},\"parent\":{\"171\":{}}}],[\"ihdkey.__type\",{\"_index\":131,\"name\":{},\"parent\":{\"172\":{},\"173\":{},\"174\":{}}}],[\"importnewwallet\",{\"_index\":106,\"name\":{\"144\":{}},\"parent\":{}}],[\"initcrypto\",{\"_index\":149,\"name\":{\"195\":{}},\"parent\":{}}],[\"initstorage\",{\"_index\":0,\"name\":{\"0\":{}},\"parent\":{}}],[\"internal\",{\"_index\":153,\"name\":{\"200\":{}},\"parent\":{\"201\":{},\"203\":{},\"205\":{}}}],[\"internal>.ripemd160\",{\"_index\":155,\"name\":{},\"parent\":{\"202\":{}}}],[\"internal>.sha256\",{\"_index\":157,\"name\":{},\"parent\":{\"204\":{}}}],[\"internal>.storagelayer\",{\"_index\":159,\"name\":{},\"parent\":{\"206\":{}}}],[\"internal>.storagelayer.__type\",{\"_index\":161,\"name\":{},\"parent\":{\"207\":{},\"208\":{},\"209\":{}}}],[\"isbtccointype\",{\"_index\":116,\"name\":{\"155\":{}},\"parent\":{}}],[\"key\",{\"_index\":77,\"name\":{\"102\":{},\"124\":{}},\"parent\":{\"103\":{}}}],[\"key.__type\",{\"_index\":79,\"name\":{},\"parent\":{\"104\":{},\"105\":{},\"106\":{},\"107\":{},\"108\":{},\"109\":{},\"110\":{},\"111\":{}}}],[\"keychain\",{\"_index\":100,\"name\":{\"137\":{},\"141\":{}},\"parent\":{\"142\":{},\"143\":{},\"144\":{},\"145\":{},\"146\":{},\"147\":{},\"148\":{},\"149\":{},\"150\":{},\"151\":{},\"152\":{},\"153\":{}}}],[\"keystore\",{\"_index\":86,\"name\":{\"112\":{}},\"parent\":{}}],[\"leapsigner\",{\"_index\":71,\"name\":{\"96\":{}},\"parent\":{}}],[\"ledger\",{\"_index\":76,\"name\":{\"101\":{}},\"parent\":{}}],[\"memo\",{\"_index\":59,\"name\":{\"84\":{}},\"parent\":{}}],[\"mnemonic\",{\"_index\":89,\"name\":{\"116\":{}},\"parent\":{}}],[\"mnemonictoentropy\",{\"_index\":125,\"name\":{\"166\":{}},\"parent\":{}}],[\"mnemonictoseed\",{\"_index\":122,\"name\":{\"163\":{}},\"parent\":{}}],[\"mnemonictoseedsync\",{\"_index\":124,\"name\":{\"165\":{}},\"parent\":{}}],[\"msgs\",{\"_index\":58,\"name\":{\"83\":{}},\"parent\":{}}],[\"name\",{\"_index\":80,\"name\":{\"105\":{},\"115\":{}},\"parent\":{}}],[\"password\",{\"_index\":90,\"name\":{\"117\":{}},\"parent\":{}}],[\"paths\",{\"_index\":67,\"name\":{\"93\":{}},\"parent\":{}}],[\"private_key\",{\"_index\":74,\"name\":{\"99\":{}},\"parent\":{}}],[\"privatekey\",{\"_index\":133,\"name\":{\"174\":{},\"178\":{}},\"parent\":{}}],[\"pub_key\",{\"_index\":39,\"name\":{\"62\":{}},\"parent\":{}}],[\"pubkey\",{\"_index\":33,\"name\":{\"56\":{}},\"parent\":{\"57\":{}}}],[\"pubkey.__type\",{\"_index\":36,\"name\":{},\"parent\":{\"58\":{},\"59\":{}}}],[\"pubkeybech32address\",{\"_index\":70,\"name\":{\"95\":{},\"135\":{}},\"parent\":{}}],[\"pubkeys\",{\"_index\":83,\"name\":{\"108\":{}},\"parent\":{}}],[\"pubkeytoaddress\",{\"_index\":1,\"name\":{\"1\":{}},\"parent\":{}}],[\"publickey\",{\"_index\":132,\"name\":{\"173\":{},\"177\":{}},\"parent\":{}}],[\"publickeyconvert\",{\"_index\":142,\"name\":{\"188\":{}},\"parent\":{}}],[\"pvtkeywallet\",{\"_index\":8,\"name\":{\"8\":{}},\"parent\":{\"9\":{},\"10\":{},\"11\":{},\"12\":{},\"13\":{}}}],[\"remove\",{\"_index\":163,\"name\":{\"209\":{}},\"parent\":{}}],[\"removewallets\",{\"_index\":111,\"name\":{\"149\":{}},\"parent\":{}}],[\"ripemd160\",{\"_index\":154,\"name\":{\"201\":{}},\"parent\":{}}],[\"ripemd160token\",{\"_index\":145,\"name\":{\"191\":{}},\"parent\":{}}],[\"secp256k1\",{\"_index\":140,\"name\":{\"185\":{}},\"parent\":{\"186\":{},\"187\":{},\"188\":{}}}],[\"secp256k1token\",{\"_index\":143,\"name\":{\"189\":{}},\"parent\":{}}],[\"seed_phrase\",{\"_index\":73,\"name\":{\"98\":{}},\"parent\":{}}],[\"seed_phrase_imported\",{\"_index\":75,\"name\":{\"100\":{}},\"parent\":{}}],[\"sendtransaction\",{\"_index\":16,\"name\":{\"21\":{}},\"parent\":{}}],[\"sequence\",{\"_index\":56,\"name\":{\"81\":{}},\"parent\":{}}],[\"serializesigndoc\",{\"_index\":32,\"name\":{\"55\":{}},\"parent\":{}}],[\"serializestdsigndoc\",{\"_index\":31,\"name\":{\"54\":{}},\"parent\":{}}],[\"set\",{\"_index\":162,\"name\":{\"208\":{}},\"parent\":{}}],[\"setbip32\",{\"_index\":127,\"name\":{\"168\":{}},\"parent\":{}}],[\"setbip39\",{\"_index\":118,\"name\":{\"159\":{}},\"parent\":{}}],[\"setprovider\",{\"_index\":13,\"name\":{\"17\":{}},\"parent\":{}}],[\"setripemd160\",{\"_index\":147,\"name\":{\"193\":{}},\"parent\":{}}],[\"setsecp256k1\",{\"_index\":144,\"name\":{\"190\":{}},\"parent\":{}}],[\"setsha256\",{\"_index\":148,\"name\":{\"194\":{}},\"parent\":{}}],[\"sha256\",{\"_index\":156,\"name\":{\"203\":{}},\"parent\":{}}],[\"sha256token\",{\"_index\":146,\"name\":{\"192\":{}},\"parent\":{}}],[\"sign\",{\"_index\":15,\"name\":{\"20\":{},\"179\":{},\"183\":{},\"187\":{}},\"parent\":{}}],[\"signamino\",{\"_index\":4,\"name\":{\"4\":{},\"12\":{},\"24\":{}},\"parent\":{}}],[\"signature\",{\"_index\":41,\"name\":{\"63\":{}},\"parent\":{}}],[\"signdirect\",{\"_index\":5,\"name\":{\"5\":{},\"13\":{},\"25\":{}},\"parent\":{}}],[\"signdoc\",{\"_index\":60,\"name\":{\"85\":{}},\"parent\":{\"86\":{}}}],[\"signdoc.__type\",{\"_index\":62,\"name\":{},\"parent\":{\"87\":{},\"88\":{},\"89\":{},\"90\":{}}}],[\"signecdsa\",{\"_index\":23,\"name\":{\"33\":{},\"41\":{},\"48\":{}},\"parent\":{}}],[\"signidx\",{\"_index\":22,\"name\":{\"32\":{},\"40\":{},\"47\":{}},\"parent\":{}}],[\"signmessage\",{\"_index\":17,\"name\":{\"22\":{}},\"parent\":{}}],[\"signpsbt\",{\"_index\":21,\"name\":{\"31\":{},\"39\":{},\"46\":{}},\"parent\":{}}],[\"signtransaction\",{\"_index\":18,\"name\":{\"23\":{}},\"parent\":{}}],[\"sortobject\",{\"_index\":30,\"name\":{\"53\":{}},\"parent\":{}}],[\"stdfee\",{\"_index\":48,\"name\":{\"72\":{}},\"parent\":{\"73\":{}}}],[\"stdfee.__type\",{\"_index\":49,\"name\":{},\"parent\":{\"74\":{},\"75\":{},\"76\":{}}}],[\"stdsignature\",{\"_index\":38,\"name\":{\"60\":{}},\"parent\":{\"61\":{}}}],[\"stdsignature.__type\",{\"_index\":40,\"name\":{},\"parent\":{\"62\":{},\"63\":{}}}],[\"stdsigndoc\",{\"_index\":52,\"name\":{\"77\":{}},\"parent\":{\"78\":{}}}],[\"stdsigndoc.__type\",{\"_index\":54,\"name\":{},\"parent\":{\"79\":{},\"80\":{},\"81\":{},\"82\":{},\"83\":{},\"84\":{}}}],[\"storagelayer\",{\"_index\":158,\"name\":{\"205\":{}},\"parent\":{}}],[\"type\",{\"_index\":35,\"name\":{\"58\":{},\"66\":{},\"121\":{}},\"parent\":{}}],[\"usebip84\",{\"_index\":95,\"name\":{\"127\":{}},\"parent\":{}}],[\"validatemnemonic\",{\"_index\":123,\"name\":{\"164\":{}},\"parent\":{}}],[\"value\",{\"_index\":37,\"name\":{\"59\":{},\"67\":{}},\"parent\":{}}],[\"wallet\",{\"_index\":2,\"name\":{\"2\":{}},\"parent\":{\"3\":{},\"4\":{},\"5\":{},\"6\":{},\"7\":{}}}],[\"walletoptions\",{\"_index\":66,\"name\":{\"91\":{}},\"parent\":{\"92\":{}}}],[\"walletoptions.__type\",{\"_index\":68,\"name\":{},\"parent\":{\"93\":{},\"94\":{},\"95\":{}}}],[\"wallettype\",{\"_index\":72,\"name\":{\"97\":{},\"109\":{}},\"parent\":{\"98\":{},\"99\":{},\"100\":{},\"101\":{}}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/assets/style.css b/assets/style.css new file mode 100644 index 0000000..6127b27 --- /dev/null +++ b/assets/style.css @@ -0,0 +1,1414 @@ +@import url("./icons.css"); + +:root { + /* Light */ + --light-color-background: #fcfcfc; + --light-color-secondary-background: #fff; + --light-color-text: #222; + --light-color-text-aside: #707070; + --light-color-link: #4da6ff; + --light-color-menu-divider: #eee; + --light-color-menu-divider-focus: #000; + --light-color-menu-label: #707070; + --light-color-panel: var(--light-color-secondary-background); + --light-color-panel-divider: #eee; + --light-color-comment-tag: #707070; + --light-color-comment-tag-text: #fff; + --light-color-ts: #9600ff; + --light-color-ts-interface: #647f1b; + --light-color-ts-enum: #937210; + --light-color-ts-class: #0672de; + --light-color-ts-private: #707070; + --light-color-toolbar: #fff; + --light-color-toolbar-text: #333; + --light-icon-filter: invert(0); + --light-external-icon: url("data:image/svg+xml;utf8,"); + + /* Dark */ + --dark-color-background: #36393f; + --dark-color-secondary-background: #2f3136; + --dark-color-text: #ffffff; + --dark-color-text-aside: #e6e4e4; + --dark-color-link: #00aff4; + --dark-color-menu-divider: #eee; + --dark-color-menu-divider-focus: #000; + --dark-color-menu-label: #707070; + --dark-color-panel: var(--dark-color-secondary-background); + --dark-color-panel-divider: #818181; + --dark-color-comment-tag: #dcddde; + --dark-color-comment-tag-text: #2f3136; + --dark-color-ts: #c97dff; + --dark-color-ts-interface: #9cbe3c; + --dark-color-ts-enum: #d6ab29; + --dark-color-ts-class: #3695f3; + --dark-color-ts-private: #e2e2e2; + --dark-color-toolbar: #34373c; + --dark-color-toolbar-text: #ffffff; + --dark-icon-filter: invert(1); + --dark-external-icon: url("data:image/svg+xml;utf8,"); +} + +@media (prefers-color-scheme: light) { + :root { + --color-background: var(--light-color-background); + --color-secondary-background: var(--light-color-secondary-background); + --color-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + --color-menu-divider: var(--light-color-menu-divider); + --color-menu-divider-focus: var(--light-color-menu-divider-focus); + --color-menu-label: var(--light-color-menu-label); + --color-panel: var(--light-color-panel); + --color-panel-divider: var(--light-color-panel-divider); + --color-comment-tag: var(--light-color-comment-tag); + --color-comment-tag-text: var(--light-color-comment-tag-text); + --color-ts: var(--light-color-ts); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-class: var(--light-color-ts-class); + --color-ts-private: var(--light-color-ts-private); + --color-toolbar: var(--light-color-toolbar); + --color-toolbar-text: var(--light-color-toolbar-text); + --icon-filter: var(--light-icon-filter); + --external-icon: var(--light-external-icon); + } +} + +@media (prefers-color-scheme: dark) { + :root { + --color-background: var(--dark-color-background); + --color-secondary-background: var(--dark-color-secondary-background); + --color-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + --color-menu-divider: var(--dark-color-menu-divider); + --color-menu-divider-focus: var(--dark-color-menu-divider-focus); + --color-menu-label: var(--dark-color-menu-label); + --color-panel: var(--dark-color-panel); + --color-panel-divider: var(--dark-color-panel-divider); + --color-comment-tag: var(--dark-color-comment-tag); + --color-comment-tag-text: var(--dark-color-comment-tag-text); + --color-ts: var(--dark-color-ts); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-private: var(--dark-color-ts-private); + --color-toolbar: var(--dark-color-toolbar); + --color-toolbar-text: var(--dark-color-toolbar-text); + --icon-filter: var(--dark-icon-filter); + --external-icon: var(--dark-external-icon); + } +} + +body { + margin: 0; +} + +body.light { + --color-background: var(--light-color-background); + --color-secondary-background: var(--light-color-secondary-background); + --color-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + --color-menu-divider: var(--light-color-menu-divider); + --color-menu-divider-focus: var(--light-color-menu-divider-focus); + --color-menu-label: var(--light-color-menu-label); + --color-panel: var(--light-color-panel); + --color-panel-divider: var(--light-color-panel-divider); + --color-comment-tag: var(--light-color-comment-tag); + --color-comment-tag-text: var(--light-color-comment-tag-text); + --color-ts: var(--light-color-ts); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-class: var(--light-color-ts-class); + --color-ts-private: var(--light-color-ts-private); + --color-toolbar: var(--light-color-toolbar); + --color-toolbar-text: var(--light-color-toolbar-text); + --icon-filter: var(--light-icon-filter); + --external-icon: var(--light-external-icon); +} + +body.dark { + --color-background: var(--dark-color-background); + --color-secondary-background: var(--dark-color-secondary-background); + --color-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + --color-menu-divider: var(--dark-color-menu-divider); + --color-menu-divider-focus: var(--dark-color-menu-divider-focus); + --color-menu-label: var(--dark-color-menu-label); + --color-panel: var(--dark-color-panel); + --color-panel-divider: var(--dark-color-panel-divider); + --color-comment-tag: var(--dark-color-comment-tag); + --color-comment-tag-text: var(--dark-color-comment-tag-text); + --color-ts: var(--dark-color-ts); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-private: var(--dark-color-ts-private); + --color-toolbar: var(--dark-color-toolbar); + --color-toolbar-text: var(--dark-color-toolbar-text); + --icon-filter: var(--dark-icon-filter); + --external-icon: var(--dark-external-icon); +} + +h1, +h2, +h3, +h4, +h5, +h6 { + line-height: 1.2; +} + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +h2 { + font-size: 1.5em; + margin: 0.83em 0; +} + +h3 { + font-size: 1.17em; + margin: 1em 0; +} + +h4, +.tsd-index-panel h3 { + font-size: 1em; + margin: 1.33em 0; +} + +h5 { + font-size: 0.83em; + margin: 1.67em 0; +} + +h6 { + font-size: 0.67em; + margin: 2.33em 0; +} + +pre { + white-space: pre; + white-space: pre-wrap; + word-wrap: break-word; +} + +dl, +menu, +ol, +ul { + margin: 1em 0; +} + +dd { + margin: 0 0 0 40px; +} + +.container { + max-width: 1200px; + margin: 0 auto; + padding: 0 40px; +} +@media (max-width: 640px) { + .container { + padding: 0 20px; + } +} + +.container-main { + padding-bottom: 200px; +} + +.row { + display: flex; + position: relative; + margin: 0 -10px; +} +.row:after { + visibility: hidden; + display: block; + content: ""; + clear: both; + height: 0; +} + +.col-4, +.col-8 { + box-sizing: border-box; + float: left; + padding: 0 10px; +} + +.col-4 { + width: 33.3333333333%; +} +.col-8 { + width: 66.6666666667%; +} + +ul.tsd-descriptions > li > :first-child, +.tsd-panel > :first-child, +.col-8 > :first-child, +.col-4 > :first-child, +ul.tsd-descriptions > li > :first-child > :first-child, +.tsd-panel > :first-child > :first-child, +.col-8 > :first-child > :first-child, +.col-4 > :first-child > :first-child, +ul.tsd-descriptions > li > :first-child > :first-child > :first-child, +.tsd-panel > :first-child > :first-child > :first-child, +.col-8 > :first-child > :first-child > :first-child, +.col-4 > :first-child > :first-child > :first-child { + margin-top: 0; +} +ul.tsd-descriptions > li > :last-child, +.tsd-panel > :last-child, +.col-8 > :last-child, +.col-4 > :last-child, +ul.tsd-descriptions > li > :last-child > :last-child, +.tsd-panel > :last-child > :last-child, +.col-8 > :last-child > :last-child, +.col-4 > :last-child > :last-child, +ul.tsd-descriptions > li > :last-child > :last-child > :last-child, +.tsd-panel > :last-child > :last-child > :last-child, +.col-8 > :last-child > :last-child > :last-child, +.col-4 > :last-child > :last-child > :last-child { + margin-bottom: 0; +} + +@keyframes fade-in { + from { + opacity: 0; + } + to { + opacity: 1; + } +} +@keyframes fade-out { + from { + opacity: 1; + visibility: visible; + } + to { + opacity: 0; + } +} +@keyframes fade-in-delayed { + 0% { + opacity: 0; + } + 33% { + opacity: 0; + } + 100% { + opacity: 1; + } +} +@keyframes fade-out-delayed { + 0% { + opacity: 1; + visibility: visible; + } + 66% { + opacity: 0; + } + 100% { + opacity: 0; + } +} +@keyframes shift-to-left { + from { + transform: translate(0, 0); + } + to { + transform: translate(-25%, 0); + } +} +@keyframes unshift-to-left { + from { + transform: translate(-25%, 0); + } + to { + transform: translate(0, 0); + } +} +@keyframes pop-in-from-right { + from { + transform: translate(100%, 0); + } + to { + transform: translate(0, 0); + } +} +@keyframes pop-out-to-right { + from { + transform: translate(0, 0); + visibility: visible; + } + to { + transform: translate(100%, 0); + } +} +body { + background: var(--color-background); + font-family: "Segoe UI", sans-serif; + font-size: 16px; + color: var(--color-text); +} + +a { + color: var(--color-link); + text-decoration: none; +} +a:hover { + text-decoration: underline; +} +a.external[target="_blank"] { + background-image: var(--external-icon); + background-position: top 3px right; + background-repeat: no-repeat; + padding-right: 13px; +} + +code, +pre { + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + padding: 0.2em; + margin: 0; + font-size: 14px; +} + +pre { + padding: 10px; +} +pre code { + padding: 0; + font-size: 100%; +} + +blockquote { + margin: 1em 0; + padding-left: 1em; + border-left: 4px solid gray; +} + +.tsd-typography { + line-height: 1.333em; +} +.tsd-typography ul { + list-style: square; + padding: 0 0 0 20px; + margin: 0; +} +.tsd-typography h4, +.tsd-typography .tsd-index-panel h3, +.tsd-index-panel .tsd-typography h3, +.tsd-typography h5, +.tsd-typography h6 { + font-size: 1em; + margin: 0; +} +.tsd-typography h5, +.tsd-typography h6 { + font-weight: normal; +} +.tsd-typography p, +.tsd-typography ul, +.tsd-typography ol { + margin: 1em 0; +} + +@media (min-width: 901px) and (max-width: 1024px) { + html .col-content { + width: 72%; + } + html .col-menu { + width: 28%; + } + html .tsd-navigation { + padding-left: 10px; + } +} +@media (max-width: 900px) { + html .col-content { + float: none; + width: 100%; + } + html .col-menu { + position: fixed !important; + overflow: auto; + -webkit-overflow-scrolling: touch; + z-index: 1024; + top: 0 !important; + bottom: 0 !important; + left: auto !important; + right: 0 !important; + width: 100%; + padding: 20px 20px 0 0; + max-width: 450px; + visibility: hidden; + background-color: var(--color-panel); + transform: translate(100%, 0); + } + html .col-menu > *:last-child { + padding-bottom: 20px; + } + html .overlay { + content: ""; + display: block; + position: fixed; + z-index: 1023; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: rgba(0, 0, 0, 0.75); + visibility: hidden; + } + + .to-has-menu .overlay { + animation: fade-in 0.4s; + } + + .to-has-menu :is(header, footer, .col-content) { + animation: shift-to-left 0.4s; + } + + .to-has-menu .col-menu { + animation: pop-in-from-right 0.4s; + } + + .from-has-menu .overlay { + animation: fade-out 0.4s; + } + + .from-has-menu :is(header, footer, .col-content) { + animation: unshift-to-left 0.4s; + } + + .from-has-menu .col-menu { + animation: pop-out-to-right 0.4s; + } + + .has-menu body { + overflow: hidden; + } + .has-menu .overlay { + visibility: visible; + } + .has-menu :is(header, footer, .col-content) { + transform: translate(-25%, 0); + } + .has-menu .col-menu { + visibility: visible; + transform: translate(0, 0); + display: grid; + grid-template-rows: auto 1fr; + max-height: 100vh; + } + .has-menu .tsd-navigation { + max-height: 100%; + } +} + +.tsd-page-title { + padding: 70px 0 20px 0; + margin: 0 0 40px 0; + background: var(--color-panel); + box-shadow: 0 0 5px rgba(0, 0, 0, 0.35); +} +.tsd-page-title h1 { + margin: 0; +} + +.tsd-breadcrumb { + margin: 0; + padding: 0; + color: var(--color-text-aside); +} +.tsd-breadcrumb a { + color: var(--color-text-aside); + text-decoration: none; +} +.tsd-breadcrumb a:hover { + text-decoration: underline; +} +.tsd-breadcrumb li { + display: inline; +} +.tsd-breadcrumb li:after { + content: " / "; +} + +dl.tsd-comment-tags { + overflow: hidden; +} +dl.tsd-comment-tags dt { + float: left; + padding: 1px 5px; + margin: 0 10px 0 0; + border-radius: 4px; + border: 1px solid var(--color-comment-tag); + color: var(--color-comment-tag); + font-size: 0.8em; + font-weight: normal; +} +dl.tsd-comment-tags dd { + margin: 0 0 10px 0; +} +dl.tsd-comment-tags dd:before, +dl.tsd-comment-tags dd:after { + display: table; + content: " "; +} +dl.tsd-comment-tags dd pre, +dl.tsd-comment-tags dd:after { + clear: both; +} +dl.tsd-comment-tags p { + margin: 0; +} + +.tsd-panel.tsd-comment .lead { + font-size: 1.1em; + line-height: 1.333em; + margin-bottom: 2em; +} +.tsd-panel.tsd-comment .lead:last-child { + margin-bottom: 0; +} + +.toggle-protected .tsd-is-private { + display: none; +} + +.toggle-public .tsd-is-private, +.toggle-public .tsd-is-protected, +.toggle-public .tsd-is-private-protected { + display: none; +} + +.toggle-inherited .tsd-is-inherited { + display: none; +} + +.toggle-externals .tsd-is-external { + display: none; +} + +#tsd-filter { + position: relative; + display: inline-block; + height: 40px; + vertical-align: bottom; +} +.no-filter #tsd-filter { + display: none; +} +#tsd-filter .tsd-filter-group { + display: inline-block; + height: 40px; + vertical-align: bottom; + white-space: nowrap; +} +#tsd-filter input { + display: none; +} +@media (max-width: 900px) { + #tsd-filter .tsd-filter-group { + display: block; + position: absolute; + top: 40px; + right: 20px; + height: auto; + background-color: var(--color-panel); + visibility: hidden; + transform: translate(50%, 0); + box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); + } + .has-options #tsd-filter .tsd-filter-group { + visibility: visible; + } + .to-has-options #tsd-filter .tsd-filter-group { + animation: fade-in 0.2s; + } + .from-has-options #tsd-filter .tsd-filter-group { + animation: fade-out 0.2s; + } + #tsd-filter label, + #tsd-filter .tsd-select { + display: block; + padding-right: 20px; + } +} + +footer { + border-top: 1px solid var(--color-panel-divider); + background-color: var(--color-panel); +} +footer:after { + content: ""; + display: table; +} +footer.with-border-bottom { + border-bottom: 1px solid var(--color-panel-divider); +} +footer .tsd-legend-group { + font-size: 0; +} +footer .tsd-legend { + display: inline-block; + width: 25%; + padding: 0; + font-size: 16px; + list-style: none; + line-height: 1.333em; + vertical-align: top; +} +@media (max-width: 900px) { + footer .tsd-legend { + width: 50%; + } +} + +.tsd-hierarchy { + list-style: square; + padding: 0 0 0 20px; + margin: 0; +} +.tsd-hierarchy .target { + font-weight: bold; +} + +.tsd-index-panel .tsd-index-content { + margin-bottom: -30px !important; +} +.tsd-index-panel .tsd-index-section { + margin-bottom: 30px !important; +} +.tsd-index-panel h3 { + margin: 0 -20px 10px -20px; + padding: 0 20px 10px 20px; + border-bottom: 1px solid var(--color-panel-divider); +} +.tsd-index-panel ul.tsd-index-list { + -webkit-column-count: 3; + -moz-column-count: 3; + -ms-column-count: 3; + -o-column-count: 3; + column-count: 3; + -webkit-column-gap: 20px; + -moz-column-gap: 20px; + -ms-column-gap: 20px; + -o-column-gap: 20px; + column-gap: 20px; + padding: 0; + list-style: none; + line-height: 1.333em; +} +@media (max-width: 900px) { + .tsd-index-panel ul.tsd-index-list { + -webkit-column-count: 1; + -moz-column-count: 1; + -ms-column-count: 1; + -o-column-count: 1; + column-count: 1; + } +} +@media (min-width: 901px) and (max-width: 1024px) { + .tsd-index-panel ul.tsd-index-list { + -webkit-column-count: 2; + -moz-column-count: 2; + -ms-column-count: 2; + -o-column-count: 2; + column-count: 2; + } +} +.tsd-index-panel ul.tsd-index-list li { + -webkit-page-break-inside: avoid; + -moz-page-break-inside: avoid; + -ms-page-break-inside: avoid; + -o-page-break-inside: avoid; + page-break-inside: avoid; +} +.tsd-index-panel a, +.tsd-index-panel .tsd-parent-kind-module a { + color: var(--color-ts); +} +.tsd-index-panel .tsd-parent-kind-interface a { + color: var(--color-ts-interface); +} +.tsd-index-panel .tsd-parent-kind-enum a { + color: var(--color-ts-enum); +} +.tsd-index-panel .tsd-parent-kind-class a { + color: var(--color-ts-class); +} +.tsd-index-panel .tsd-kind-module a { + color: var(--color-ts); +} +.tsd-index-panel .tsd-kind-interface a { + color: var(--color-ts-interface); +} +.tsd-index-panel .tsd-kind-enum a { + color: var(--color-ts-enum); +} +.tsd-index-panel .tsd-kind-class a { + color: var(--color-ts-class); +} +.tsd-index-panel .tsd-is-private a { + color: var(--color-ts-private); +} + +.tsd-flag { + display: inline-block; + padding: 0.25em 0.4em; + border-radius: 4px; + color: var(--color-comment-tag-text); + background-color: var(--color-comment-tag); + text-indent: 0; + font-size: 75%; + line-height: 1; + font-weight: normal; +} + +.tsd-anchor { + position: absolute; + top: -100px; +} + +.tsd-member { + position: relative; +} +.tsd-member .tsd-anchor + h3 { + margin-top: 0; + margin-bottom: 0; + border-bottom: none; +} +.tsd-member [data-tsd-kind] { + color: var(--color-ts); +} +.tsd-member [data-tsd-kind="Interface"] { + color: var(--color-ts-interface); +} +.tsd-member [data-tsd-kind="Enum"] { + color: var(--color-ts-enum); +} +.tsd-member [data-tsd-kind="Class"] { + color: var(--color-ts-class); +} +.tsd-member [data-tsd-kind="Private"] { + color: var(--color-ts-private); +} + +.tsd-navigation { + margin: 0 0 0 40px; +} +.tsd-navigation a { + display: block; + padding-top: 2px; + padding-bottom: 2px; + border-left: 2px solid transparent; + color: var(--color-text); + text-decoration: none; + transition: border-left-color 0.1s; +} +.tsd-navigation a:hover { + text-decoration: underline; +} +.tsd-navigation ul { + margin: 0; + padding: 0; + list-style: none; +} +.tsd-navigation li { + padding: 0; +} + +.tsd-navigation.primary { + padding-bottom: 40px; +} +.tsd-navigation.primary a { + display: block; + padding-top: 6px; + padding-bottom: 6px; +} +.tsd-navigation.primary ul li a { + padding-left: 5px; +} +.tsd-navigation.primary ul li li a { + padding-left: 25px; +} +.tsd-navigation.primary ul li li li a { + padding-left: 45px; +} +.tsd-navigation.primary ul li li li li a { + padding-left: 65px; +} +.tsd-navigation.primary ul li li li li li a { + padding-left: 85px; +} +.tsd-navigation.primary ul li li li li li li a { + padding-left: 105px; +} +.tsd-navigation.primary > ul { + border-bottom: 1px solid var(--color-panel-divider); +} +.tsd-navigation.primary li { + border-top: 1px solid var(--color-panel-divider); +} +.tsd-navigation.primary li.current > a { + font-weight: bold; +} +.tsd-navigation.primary li.label span { + display: block; + padding: 20px 0 6px 5px; + color: var(--color-menu-label); +} +.tsd-navigation.primary li.globals + li > span, +.tsd-navigation.primary li.globals + li > a { + padding-top: 20px; +} + +.tsd-navigation.secondary { + max-height: calc(100vh - 1rem - 40px); + overflow: auto; + position: sticky; + top: calc(0.5rem + 40px); + transition: 0.3s; +} +.tsd-navigation.secondary.tsd-navigation--toolbar-hide { + max-height: calc(100vh - 1rem); + top: 0.5rem; +} +.tsd-navigation.secondary ul { + transition: opacity 0.2s; +} +.tsd-navigation.secondary ul li a { + padding-left: 25px; +} +.tsd-navigation.secondary ul li li a { + padding-left: 45px; +} +.tsd-navigation.secondary ul li li li a { + padding-left: 65px; +} +.tsd-navigation.secondary ul li li li li a { + padding-left: 85px; +} +.tsd-navigation.secondary ul li li li li li a { + padding-left: 105px; +} +.tsd-navigation.secondary ul li li li li li li a { + padding-left: 125px; +} +.tsd-navigation.secondary ul.current a { + border-left-color: var(--color-panel-divider); +} +.tsd-navigation.secondary li.focus > a, +.tsd-navigation.secondary ul.current li.focus > a { + border-left-color: var(--color-menu-divider-focus); +} +.tsd-navigation.secondary li.current { + margin-top: 20px; + margin-bottom: 20px; + border-left-color: var(--color-panel-divider); +} +.tsd-navigation.secondary li.current > a { + font-weight: bold; +} + +@media (min-width: 901px) { + .menu-sticky-wrap { + position: static; + } +} + +.tsd-panel { + margin: 20px 0; + padding: 20px; + background-color: var(--color-panel); + box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); +} +.tsd-panel:empty { + display: none; +} +.tsd-panel > h1, +.tsd-panel > h2, +.tsd-panel > h3 { + margin: 1.5em -20px 10px -20px; + padding: 0 20px 10px 20px; + border-bottom: 1px solid var(--color-panel-divider); +} +.tsd-panel > h1.tsd-before-signature, +.tsd-panel > h2.tsd-before-signature, +.tsd-panel > h3.tsd-before-signature { + margin-bottom: 0; + border-bottom: 0; +} +.tsd-panel table { + display: block; + width: 100%; + overflow: auto; + margin-top: 10px; + word-break: normal; + word-break: keep-all; + border-collapse: collapse; +} +.tsd-panel table th { + font-weight: bold; +} +.tsd-panel table th, +.tsd-panel table td { + padding: 6px 13px; + border: 1px solid var(--color-panel-divider); +} +.tsd-panel table tr { + background: var(--color-background); +} +.tsd-panel table tr:nth-child(even) { + background: var(--color-secondary-background); +} + +.tsd-panel-group { + margin: 60px 0; +} +.tsd-panel-group > h1, +.tsd-panel-group > h2, +.tsd-panel-group > h3 { + padding-left: 20px; + padding-right: 20px; +} + +#tsd-search { + transition: background-color 0.2s; +} +#tsd-search .title { + position: relative; + z-index: 2; +} +#tsd-search .field { + position: absolute; + left: 0; + top: 0; + right: 40px; + height: 40px; +} +#tsd-search .field input { + box-sizing: border-box; + position: relative; + top: -50px; + z-index: 1; + width: 100%; + padding: 0 10px; + opacity: 0; + outline: 0; + border: 0; + background: transparent; + color: var(--color-text); +} +#tsd-search .field label { + position: absolute; + overflow: hidden; + right: -40px; +} +#tsd-search .field input, +#tsd-search .title { + transition: opacity 0.2s; +} +#tsd-search .results { + position: absolute; + visibility: hidden; + top: 40px; + width: 100%; + margin: 0; + padding: 0; + list-style: none; + box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); +} +#tsd-search .results li { + padding: 0 10px; + background-color: var(--color-background); +} +#tsd-search .results li:nth-child(even) { + background-color: var(--color-panel); +} +#tsd-search .results li.state { + display: none; +} +#tsd-search .results li.current, +#tsd-search .results li:hover { + background-color: var(--color-panel-divider); +} +#tsd-search .results a { + display: block; +} +#tsd-search .results a:before { + top: 10px; +} +#tsd-search .results span.parent { + color: var(--color-text-aside); + font-weight: normal; +} +#tsd-search.has-focus { + background-color: var(--color-panel-divider); +} +#tsd-search.has-focus .field input { + top: 0; + opacity: 1; +} +#tsd-search.has-focus .title { + z-index: 0; + opacity: 0; +} +#tsd-search.has-focus .results { + visibility: visible; +} +#tsd-search.loading .results li.state.loading { + display: block; +} +#tsd-search.failure .results li.state.failure { + display: block; +} + +.tsd-signature { + margin: 0 0 1em 0; + padding: 10px; + border: 1px solid var(--color-panel-divider); + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + font-size: 14px; + overflow-x: auto; +} +.tsd-signature.tsd-kind-icon { + padding-left: 30px; +} +.tsd-signature.tsd-kind-icon:before { + top: 10px; + left: 10px; +} +.tsd-panel > .tsd-signature { + margin-left: -20px; + margin-right: -20px; + border-width: 1px 0; +} +.tsd-panel > .tsd-signature.tsd-kind-icon { + padding-left: 40px; +} +.tsd-panel > .tsd-signature.tsd-kind-icon:before { + left: 20px; +} + +.tsd-signature-symbol { + color: var(--color-text-aside); + font-weight: normal; +} + +.tsd-signature-type { + font-style: italic; + font-weight: normal; +} + +.tsd-signatures { + padding: 0; + margin: 0 0 1em 0; + border: 1px solid var(--color-panel-divider); +} +.tsd-signatures .tsd-signature { + margin: 0; + border-width: 1px 0 0 0; + transition: background-color 0.1s; +} +.tsd-signatures .tsd-signature:first-child { + border-top-width: 0; +} +.tsd-signatures .tsd-signature.current { + background-color: var(--color-panel-divider); +} +.tsd-signatures.active > .tsd-signature { + cursor: pointer; +} +.tsd-panel > .tsd-signatures { + margin-left: -20px; + margin-right: -20px; + border-width: 1px 0; +} +.tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon { + padding-left: 40px; +} +.tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon:before { + left: 20px; +} +.tsd-panel > a.anchor + .tsd-signatures { + border-top-width: 0; + margin-top: -20px; +} + +ul.tsd-descriptions { + position: relative; + overflow: hidden; + padding: 0; + list-style: none; +} +ul.tsd-descriptions.active > .tsd-description { + display: none; +} +ul.tsd-descriptions.active > .tsd-description.current { + display: block; +} +ul.tsd-descriptions.active > .tsd-description.fade-in { + animation: fade-in-delayed 0.3s; +} +ul.tsd-descriptions.active > .tsd-description.fade-out { + animation: fade-out-delayed 0.3s; + position: absolute; + display: block; + top: 0; + left: 0; + right: 0; + opacity: 0; + visibility: hidden; +} +ul.tsd-descriptions h4, +ul.tsd-descriptions .tsd-index-panel h3, +.tsd-index-panel ul.tsd-descriptions h3 { + font-size: 16px; + margin: 1em 0 0.5em 0; +} + +ul.tsd-parameters, +ul.tsd-type-parameters { + list-style: square; + margin: 0; + padding-left: 20px; +} +ul.tsd-parameters > li.tsd-parameter-signature, +ul.tsd-type-parameters > li.tsd-parameter-signature { + list-style: none; + margin-left: -20px; +} +ul.tsd-parameters h5, +ul.tsd-type-parameters h5 { + font-size: 16px; + margin: 1em 0 0.5em 0; +} +ul.tsd-parameters .tsd-comment, +ul.tsd-type-parameters .tsd-comment { + margin-top: -0.5em; +} + +.tsd-sources { + font-size: 14px; + color: var(--color-text-aside); + margin: 0 0 1em 0; +} +.tsd-sources a { + color: var(--color-text-aside); + text-decoration: underline; +} +.tsd-sources ul, +.tsd-sources p { + margin: 0 !important; +} +.tsd-sources ul { + list-style: none; + padding: 0; +} + +.tsd-page-toolbar { + position: fixed; + z-index: 1; + top: 0; + left: 0; + width: 100%; + height: 40px; + color: var(--color-toolbar-text); + background: var(--color-toolbar); + border-bottom: 1px solid var(--color-panel-divider); + transition: transform 0.3s linear; +} +.tsd-page-toolbar a { + color: var(--color-toolbar-text); + text-decoration: none; +} +.tsd-page-toolbar a.title { + font-weight: bold; +} +.tsd-page-toolbar a.title:hover { + text-decoration: underline; +} +.tsd-page-toolbar .table-wrap { + display: table; + width: 100%; + height: 40px; +} +.tsd-page-toolbar .table-cell { + display: table-cell; + position: relative; + white-space: nowrap; + line-height: 40px; +} +.tsd-page-toolbar .table-cell:first-child { + width: 100%; +} + +.tsd-page-toolbar--hide { + transform: translateY(-100%); +} + +.tsd-select .tsd-select-list li:before, +.tsd-select .tsd-select-label:before, +.tsd-widget:before { + content: ""; + display: inline-block; + width: 40px; + height: 40px; + margin: 0 -8px 0 0; + background-image: url(./widgets.png); + background-repeat: no-repeat; + text-indent: -1024px; + vertical-align: bottom; + filter: var(--icon-filter); +} +@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) { + .tsd-select .tsd-select-list li:before, + .tsd-select .tsd-select-label:before, + .tsd-widget:before { + background-image: url(./widgets@2x.png); + background-size: 320px 40px; + } +} + +.tsd-widget { + display: inline-block; + overflow: hidden; + opacity: 0.8; + height: 40px; + transition: opacity 0.1s, background-color 0.2s; + vertical-align: bottom; + cursor: pointer; +} +.tsd-widget:hover { + opacity: 0.9; +} +.tsd-widget.active { + opacity: 1; + background-color: var(--color-panel-divider); +} +.tsd-widget.no-caption { + width: 40px; +} +.tsd-widget.no-caption:before { + margin: 0; +} +.tsd-widget.search:before { + background-position: 0 0; +} +.tsd-widget.menu:before { + background-position: -40px 0; +} +.tsd-widget.options:before { + background-position: -80px 0; +} +.tsd-widget.options, +.tsd-widget.menu { + display: none; +} +@media (max-width: 900px) { + .tsd-widget.options, + .tsd-widget.menu { + display: inline-block; + } +} +input[type="checkbox"] + .tsd-widget:before { + background-position: -120px 0; +} +input[type="checkbox"]:checked + .tsd-widget:before { + background-position: -160px 0; +} + +.tsd-select { + position: relative; + display: inline-block; + height: 40px; + transition: opacity 0.1s, background-color 0.2s; + vertical-align: bottom; + cursor: pointer; +} +.tsd-select .tsd-select-label { + opacity: 0.6; + transition: opacity 0.2s; +} +.tsd-select .tsd-select-label:before { + background-position: -240px 0; +} +.tsd-select.active .tsd-select-label { + opacity: 0.8; +} +.tsd-select.active .tsd-select-list { + visibility: visible; + opacity: 1; + transition-delay: 0s; +} +.tsd-select .tsd-select-list { + position: absolute; + visibility: hidden; + top: 40px; + left: 0; + margin: 0; + padding: 0; + opacity: 0; + list-style: none; + box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); + transition: visibility 0s 0.2s, opacity 0.2s; +} +.tsd-select .tsd-select-list li { + padding: 0 20px 0 0; + background-color: var(--color-background); +} +.tsd-select .tsd-select-list li:before { + background-position: 40px 0; +} +.tsd-select .tsd-select-list li:nth-child(even) { + background-color: var(--color-panel); +} +.tsd-select .tsd-select-list li:hover { + background-color: var(--color-panel-divider); +} +.tsd-select .tsd-select-list li.selected:before { + background-position: -200px 0; +} +@media (max-width: 900px) { + .tsd-select .tsd-select-list { + top: 0; + left: auto; + right: 100%; + margin-right: -5px; + } + .tsd-select .tsd-select-label:before { + background-position: -280px 0; + } +} + +img { + max-width: 100%; +} + +.tsd-anchor-icon { + margin-left: 10px; + vertical-align: middle; + color: var(--color-text); +} + +.tsd-anchor-icon svg { + width: 1em; + height: 1em; + visibility: hidden; +} + +.tsd-anchor-link:hover > .tsd-anchor-icon svg { + visibility: visible; +} diff --git a/assets/widgets.png b/assets/widgets.png new file mode 100644 index 0000000..c738053 Binary files /dev/null and b/assets/widgets.png differ diff --git a/assets/widgets@2x.png b/assets/widgets@2x.png new file mode 100644 index 0000000..4bbbd57 Binary files /dev/null and b/assets/widgets@2x.png differ diff --git a/classes/BtcWallet.html b/classes/BtcWallet.html new file mode 100644 index 0000000..5db1e6f --- /dev/null +++ b/classes/BtcWallet.html @@ -0,0 +1 @@ +BtcWallet | Leap Keychain
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BtcWallet Abstract

Hierarchy

Index

Constructors

Methods

  • getAccounts(): { address: string; algo: string; pubkey: Uint8Array }[]
  • getAccountsWithPrivKey(): { address: string; addressInfo: P2Ret; algo: string; privateKey: Uint8Array; pubkey: Uint8Array }[]
  • Returns { address: string; addressInfo: P2Ret; algo: string; privateKey: Uint8Array; pubkey: Uint8Array }[]

  • signECDSA(address: string, hash: Uint8Array): Promise<{ recoveryParam: number; signature: Uint8Array }>
  • Parameters

    • address: string
    • hash: Uint8Array

    Returns Promise<{ recoveryParam: number; signature: Uint8Array }>

  • signIdx(address: string, tx: Transaction, idx: number): void
  • signPsbt(address: string, psbt: string): { signTx: (() => void); tx: Transaction }
  • Parameters

    • address: string
    • psbt: string

    Returns { signTx: (() => void); tx: Transaction }

    • signTx: (() => void)
        • (): void
        • Returns void

    • tx: Transaction

Legend

  • Constructor
  • Method
  • Type alias
  • Method
  • Inherited method
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/classes/BtcWalletHD.html b/classes/BtcWalletHD.html new file mode 100644 index 0000000..35b1d18 --- /dev/null +++ b/classes/BtcWalletHD.html @@ -0,0 +1 @@ +BtcWalletHD | Leap Keychain
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BtcWalletHD

Hierarchy

Index

Constructors

Methods

  • getAccounts(): { address: string; algo: string; pubkey: Uint8Array }[]
  • getAccountsWithPrivKey(): { address: string; addressInfo: P2Ret; algo: string; privateKey: Uint8Array; pubkey: Uint8Array }[]
  • signECDSA(address: string, hash: Uint8Array): Promise<{ recoveryParam: number; signature: Uint8Array }>
  • signIdx(address: string, tx: Transaction, idx: number): void
  • signPsbt(address: string, psbt: string): { signTx: (() => void); tx: Transaction }
  • Parameters

    • address: string
    • psbt: string

    Returns { signTx: (() => void); tx: Transaction }

    • signTx: (() => void)
        • (): void
        • Returns void

    • tx: Transaction

Legend

  • Constructor
  • Method
  • Type alias
  • Method
  • Inherited method
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/classes/BtcWalletPk.html b/classes/BtcWalletPk.html new file mode 100644 index 0000000..34fbb6d --- /dev/null +++ b/classes/BtcWalletPk.html @@ -0,0 +1 @@ +BtcWalletPk | Leap Keychain
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class BtcWalletPk

Hierarchy

Index

Constructors

Methods

  • getAccounts(): { address: string; algo: string; pubkey: Uint8Array }[]
  • getAccountsWithPrivKey(): { address: string; addressInfo: P2Ret; algo: string; privateKey: Uint8Array; pubkey: Uint8Array }[]
  • signECDSA(address: string, hash: Uint8Array): Promise<{ recoveryParam: number; signature: Uint8Array }>
  • signIdx(address: string, tx: Transaction, idx: number): void
  • signPsbt(address: string, psbt: string): { signTx: (() => void); tx: Transaction }
  • Parameters

    • address: string
    • psbt: string

    Returns { signTx: (() => void); tx: Transaction }

    • signTx: (() => void)
        • (): void
        • Returns void

    • tx: Transaction

Legend

  • Constructor
  • Method
  • Type alias
  • Method
  • Inherited method
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/classes/EthWallet.html b/classes/EthWallet.html new file mode 100644 index 0000000..8ed76b5 --- /dev/null +++ b/classes/EthWallet.html @@ -0,0 +1,14 @@ +EthWallet | Leap Keychain
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class EthWallet

Hierarchy

  • EthWallet

Index

Methods

  • getAccountWithHexAddress(): { address: string; algo: string; bech32Address: string; pubkey: Uint8Array }[]
  • Returns { address: string; algo: string; bech32Address: string; pubkey: Uint8Array }[]

  • getAccounts(): { address: string; algo: string; pubkey: Uint8Array }[]
  • sendTransaction(transaction: TransactionRequest): Promise<TransactionResponse>
  • Parameters

    • transaction: TransactionRequest

    Returns Promise<TransactionResponse>

  • setProvider(provider: Provider): void
  • sign(signerAddress: string, signBytes: string | Uint8Array): Signature
  • Parameters

    • signerAddress: string
    • signBytes: string | Uint8Array

    Returns Signature

  • signDirect(signerAddress: string, signDoc: SignDoc): Promise<{ signature: StdSignature; signed: SignDoc }>
  • signMessage(signerAddress: string, message: Uint8Array): Promise<string>
  • Parameters

    • signerAddress: string
    • message: Uint8Array

    Returns Promise<string>

  • signTransaction(signerAddress: string, transaction: any): Promise<string>
  • +

    Generates a wallet from a mnemonic. Returns an EthWallet object.

    +

    Parameters

    • mnemonic: string
      +

      The mnemonic to generate a wallet from

      +
    • options: WalletOptions
      +

      WalletOptions object

      +

    Returns EthWallet

  • +

    Generates a wallet from a private key.

    +

    Parameters

    • pvtKey: string
      +

      The private key to generate the wallet from.

      +
    • options: WalletOptions
      +

      The options for the wallet.

      +

    Returns EthWallet

    A wallet object.

    +

Legend

  • Constructor
  • Method
  • Type alias
  • Method
  • Inherited method
  • Static method

Settings

Theme

\ No newline at end of file diff --git a/classes/KeyChain.html b/classes/KeyChain.html new file mode 100644 index 0000000..67013fe --- /dev/null +++ b/classes/KeyChain.html @@ -0,0 +1 @@ +KeyChain | Leap Keychain
Options
All
  • Public
  • Public/Protected
  • All
Menu

Class KeyChain

Hierarchy

  • KeyChain

Index

Constructors

Methods

  • AddEntry<T>(walletId: string, entry: { address: string; key: T; pubkey: string }): Promise<void>
  • Type Parameters

    • T extends string

    Parameters

    • walletId: string
    • entry: { address: string; key: T; pubkey: string }
      • address: string
      • key: T
      • pubkey: string

    Returns Promise<void>

  • EditWallet<T>(__namedParameters: { colorIndex: number; name: string; walletId: string }): Promise<void>
  • Type Parameters

    • T extends string

    Parameters

    • __namedParameters: { colorIndex: number; name: string; walletId: string }
      • colorIndex: number
      • name: string
      • walletId: string

    Returns Promise<void>

  • createNewWalletAccount<T>(name: string, password: Input, colorIndex: number, chainInfos: ChainInfo[]): Promise<Key<T>>
  • decrypt(password: Input): Promise<void>
  • encrypt<T>(password: Input): Promise<void>
  • getAllWallets<T>(): Promise<Keystore<T>>
  • getSigner<T>(walletId: string, password: Input, __namedParameters: { addressPrefix: string; btcNetwork?: {}; coinType: string; ethWallet?: boolean; pubKeyBech32Address?: boolean }): Promise<EthWallet | Wallet | PvtKeyWallet | BtcWalletHD | BtcWalletPk>
  • Type Parameters

    • T extends string

    Parameters

    • walletId: string
    • password: Input
    • __namedParameters: { addressPrefix: string; btcNetwork?: {}; coinType: string; ethWallet?: boolean; pubKeyBech32Address?: boolean }
      • addressPrefix: string
      • Optional btcNetwork?: {}
        • coinType: string
        • Optional ethWallet?: boolean
        • Optional pubKeyBech32Address?: boolean

      Returns Promise<EthWallet | Wallet | PvtKeyWallet | BtcWalletHD | BtcWalletPk>

    • getWalletsFromMnemonic(mnemonic: string, count: number, coinType: string, addressPrefix: string): Promise<{ address: string; index: number; pubkey: null | Uint8Array }[]>
    • Parameters

      • mnemonic: string
      • count: number
      • coinType: string
      • addressPrefix: string

      Returns Promise<{ address: string; index: number; pubkey: null | Uint8Array }[]>

    • importNewWallet<T>(privateKey: string, password: Input, chainInfos: ChainInfo[], addressIndex?: number, name?: string): Promise<Key<T>>
    • Type Parameters

      • T extends string

      Parameters

      • privateKey: string
      • password: Input
      • chainInfos: ChainInfo[]
      • Optional addressIndex: number
      • Optional name: string

      Returns Promise<Key<T>>

    • removeWallets<T>(keyIds: string[]): Promise<void>

    Legend

    • Constructor
    • Method
    • Type alias
    • Method
    • Inherited method
    • Static method

    Settings

    Theme

    \ No newline at end of file diff --git a/classes/PvtKeyWallet.html b/classes/PvtKeyWallet.html new file mode 100644 index 0000000..116f816 --- /dev/null +++ b/classes/PvtKeyWallet.html @@ -0,0 +1 @@ +PvtKeyWallet | Leap Keychain
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Class PvtKeyWallet

    Hierarchy

    • PvtKeyWallet

    Index

    Constructors

    • new PvtKeyWallet(privateKey: Uint8Array, publicKey: Uint8Array, address: string): PvtKeyWallet

    Methods

    • getAccounts(): { address: string; algo: string; pubkey: Uint8Array }[]
    • Returns { address: string; algo: string; pubkey: Uint8Array }[]

    • signDirect(signerAddress: string, signDoc: SignDoc, signOptions?: { extraEntropy?: boolean }): Promise<{ signature: StdSignature; signed: SignDoc }>
    • Parameters

      • signerAddress: string
      • signDoc: SignDoc
      • Optional signOptions: { extraEntropy?: boolean }
        • Optional extraEntropy?: boolean

      Returns Promise<{ signature: StdSignature; signed: SignDoc }>

    • generateWallet(privateKey: string, addressPrefix: string): PvtKeyWallet

    Legend

    • Constructor
    • Method
    • Type alias
    • Method
    • Inherited method
    • Static method

    Settings

    Theme

    \ No newline at end of file diff --git a/classes/Wallet.html b/classes/Wallet.html new file mode 100644 index 0000000..9d95c03 --- /dev/null +++ b/classes/Wallet.html @@ -0,0 +1 @@ +Wallet | Leap Keychain
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Class Wallet

    Hierarchy

    • Wallet

    Index

    Methods

    • getAccounts(): { address: string; algo: string; pubkey: null | Uint8Array }[]
    • Returns { address: string; algo: string; pubkey: null | Uint8Array }[]

    • getAccountsWithPrivKey(): { address: string; algo: string; childKey: IChildKey; pubkey: null | Uint8Array }[]
    • signDirect(signerAddress: string, signDoc: SignDoc, signOptions?: { extraEntropy?: boolean }): Promise<{ signature: StdSignature; signed: SignDoc }>
    • Parameters

      • signerAddress: string
      • signDoc: SignDoc
      • Optional signOptions: { extraEntropy?: boolean }
        • Optional extraEntropy?: boolean

      Returns Promise<{ signature: StdSignature; signed: SignDoc }>

    Legend

    • Constructor
    • Method
    • Type alias
    • Method
    • Inherited method
    • Static method

    Settings

    Theme

    \ No newline at end of file diff --git a/enums/WALLETTYPE.html b/enums/WALLETTYPE.html new file mode 100644 index 0000000..f3e7f54 --- /dev/null +++ b/enums/WALLETTYPE.html @@ -0,0 +1 @@ +WALLETTYPE | Leap Keychain
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Enumeration WALLETTYPE

    Index

    Enumeration Members

    LEDGER: 3
    PRIVATE_KEY: 1
    SEED_PHRASE: 0
    SEED_PHRASE_IMPORTED: 2

    Legend

    • Constructor
    • Method
    • Type alias
    • Method
    • Inherited method
    • Static method

    Settings

    Theme

    \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..c6b79be --- /dev/null +++ b/index.html @@ -0,0 +1,43 @@ +Leap Keychain
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Leap Keychain

    + +

    Leap Keychain

    +
    +

    leap-keychain library includes modules for key management, account creation, and transaction signing for cosmos blockchains.

    +
      +
    • Platforms: Browsers supporting ES6 or higher
    • +
    • Module systems: ECMAScript Modules
    • +
    • Programming languages: ES6 (JavaScript, TypeScript, etc. which target ES6 or higher)
    • +
    • Static types: TypeScript definitions bundled
    • +
    + + +

    Installation

    +
    +

    Use one of the following methods:

    +
      +
    • npm:
      npm i @leapwallet/leap-keychain
      +
      +
    • +
    • Yarn:
      yarn add @leapwallet/leap-keychain
      +
      +
    • +
    + + +

    Usage

    +
    +

    Initialize storage and crypto modules in the top level file index.js or app.js

    +
    import { initStorage, initCrypto } from '@leapwallet/leap-keychain';
    // create a storage object
    initStorage({
    set: (key, value) => {
    localStorage.setItem(key, value);
    return Promise.resolve();
    },
    get: (key) => {
    const value = localStorage.getItem(key);
    return Promise.resolve(storageObj[key]);
    },
    remove: (key) => {
    localStorage.removeItem(key);
    return Promise.resolve();
    },
    });

    // initialize crypto modules
    initCrypto(); +
    +

    To use the keychain

    +

    import { KeyChain } from '@leapwallet/leap-keychain'

    // create wallet using mnemonic

    KeyChain.createWalletUsingMnemonic({
    mnemonic: "12/24 word mnemonic",
    name: "wallet name";
    password: "encryption password";
    addressIndex: "address index";
    colorIndex: "0";
    chainInfos: {
    //The 'chain infos' object includes the address prefix and coin type for the chains for which wallet creation is required.
    cosmos: {
    addressPrefix: 'cosmos',
    coinType: '118',
    key: 'cosmos'
    }
    };
    })

    +
    + + +

    Security

    + + + +

    Contributing

    + +

    Legend

    • Constructor
    • Method
    • Type alias
    • Method
    • Inherited method
    • Static method

    Settings

    Theme

    \ No newline at end of file diff --git a/interfaces/IBip32.html b/interfaces/IBip32.html new file mode 100644 index 0000000..d1948be --- /dev/null +++ b/interfaces/IBip32.html @@ -0,0 +1 @@ +IBip32 | Leap Keychain
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Interface IBip32

    Hierarchy

    • IBip32

    Index

    Methods

    • fromSeed(seed: Uint8Array): IHDKey
    • sign(key: IChildKey, hash: Uint8Array): Uint8Array

    Legend

    • Constructor
    • Method
    • Type alias
    • Method
    • Inherited method
    • Static method

    Settings

    Theme

    \ No newline at end of file diff --git a/interfaces/IBip39.html b/interfaces/IBip39.html new file mode 100644 index 0000000..3c2c90b --- /dev/null +++ b/interfaces/IBip39.html @@ -0,0 +1 @@ +IBip39 | Leap Keychain
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Interface IBip39

    Hierarchy

    • IBip39

    Index

    Methods

    • generateMnemonic(strength: number): string
    • mnemonicToEntropy(mnemonic: string): string
    • mnemonicToSeed(mnemonic: string): Promise<Uint8Array>
    • mnemonicToSeedSync(mnemonic: string): Uint8Array
    • validateMnemonic(mnemonic: string): boolean

    Legend

    • Constructor
    • Method
    • Type alias
    • Method
    • Inherited method
    • Static method

    Settings

    Theme

    \ No newline at end of file diff --git a/modules.html b/modules.html new file mode 100644 index 0000000..fa7c9cd --- /dev/null +++ b/modules.html @@ -0,0 +1,13 @@ +Leap Keychain
    Options
    All
    • Public
    • Public/Protected
    • All
    Menu

    Leap Keychain

    Index

    Type Aliases

    AminoMsg: { type: string; value: any }

    Type declaration

    • type: string
    • value: any
    BTCWalletOptions: WalletOptions & { network: typeof NETWORK }
    ChainInfo: { addressPrefix: string; btcNetwork?: typeof NETWORK; coinType: string; key: string; useBip84?: boolean; customKeygenfn?: any }

    Type declaration

    • addressPrefix: string
    • Optional btcNetwork?: typeof NETWORK
    • coinType: string
    • key: string
    • Optional useBip84?: boolean
    • customKeygenfn?:function
      • customKeygenfn(key: string, path: string, keyType: "privateKey" | "seedPhrase"): Promise<{ address: string; pubkey: string }>
      • Parameters

        • key: string
        • path: string
        • keyType: "privateKey" | "seedPhrase"

        Returns Promise<{ address: string; pubkey: string }>

    Coin: { amount: string; denom: string }

    Type declaration

    • amount: string
    • denom: string
    CreateWalletParams: { addressIndex: number; chainInfos: ChainInfo[]; colorIndex: number; mnemonic: string; name: string; password: string | Uint8Array; type: "create" | "import" }

    Type declaration

    • addressIndex: number
    • chainInfos: ChainInfo[]
    • colorIndex: number
    • mnemonic: string
    • name: string
    • password: string | Uint8Array
    • type: "create" | "import"
    GetSignerParams: { addressPrefix: string; btcNetwork?: typeof NETWORK; coinType: string; ethWallet?: boolean; pubKeyBech32Address?: boolean }

    Type declaration

    • addressPrefix: string
    • Optional btcNetwork?: typeof NETWORK
    • coinType: string
    • Optional ethWallet?: boolean
    • Optional pubKeyBech32Address?: boolean
    IChildKey: { privateKey: Uint8Array | null; publicKey: Uint8Array | null; sign: any }

    Type declaration

    • privateKey: Uint8Array | null
    • publicKey: Uint8Array | null
    • sign:function
      • sign(hash: Uint8Array): Uint8Array
    IHDKey: { privateKey: Uint8Array | null; publicKey: Uint8Array | null; derive: any }

    Type declaration

    Key<T>: { addressIndex: number; addresses: Record<T, string>; cipher: string; colorIndex: number; id: string; name: string; pubKeys?: Record<T, string>; walletType: WALLETTYPE }

    Type Parameters

    • T extends string

    Type declaration

    • addressIndex: number
    • addresses: Record<T, string>
    • cipher: string
    • colorIndex: number
    • id: string
    • name: string
    • Optional pubKeys?: Record<T, string>
    • walletType: WALLETTYPE
    Keystore<T>: Record<string, Key<T>>

    Type Parameters

    • T extends string

    LeapSigner: EthWallet | Wallet | PvtKeyWallet
    Pubkey: { type: string; value: any }

    Type declaration

    • Readonly type: string
    • Readonly value: any
    SignDoc: { accountNumber: Long; authInfoBytes: Uint8Array; bodyBytes: Uint8Array; chainId: string }

    Type declaration

    • accountNumber: Long
    • authInfoBytes: Uint8Array
    • bodyBytes: Uint8Array
    • chainId: string
    StdFee: { amount: readonly Coin[]; gas: string; granter?: string }

    Type declaration

    • Readonly amount: readonly Coin[]
    • Readonly gas: string
    • Optional Readonly granter?: string
    StdSignDoc: { account_number: string; chain_id: string; fee: StdFee; memo: string; msgs: readonly AminoMsg[]; sequence: string }

    Type declaration

    • Readonly account_number: string
    • Readonly chain_id: string
    • Readonly fee: StdFee
    • Readonly memo: string
    • Readonly msgs: readonly AminoMsg[]
    • Readonly sequence: string
    StdSignature: { pub_key: Pubkey; signature: string }

    Type declaration

    • Readonly pub_key: Pubkey
    • Readonly signature: string
    WalletOptions: { addressPrefix: string; paths: string[]; pubKeyBech32Address?: boolean }

    Type declaration

    • addressPrefix: string
    • paths: string[]
    • Optional pubKeyBech32Address?: boolean

    Variables

    ACTIVE_WALLET: "active-wallet" = 'active-wallet'
    ENCRYPTED_ACTIVE_WALLET: "encrypted-active-wallet" = 'encrypted-active-wallet'
    ENCRYPTED_KEYCHAIN: "encrypted-keystore" = 'encrypted-keystore'
    KEYCHAIN: "keystore" = 'keystore'
    bip32Token: Token<IBip32> = ...
    bip39Token: Token<IBip39> = ...
    ripemd160Token: Token<ripemd160> = ...
    secp256k1Token: Token<typeof Secp256k1> = ...
    sha256Token: Token<sha256> = ...

    Functions

    • compressSignature(recoveryParam: number, signature: Uint8Array): string
    • compressedPublicKey(publicKey: Uint8Array): string
    • decrypt(transitmessage: string, pass: Input, iterations?: number): string
    • encodeSecp256k1Pubkey(pubkey: Uint8Array): Pubkey
    • encodeSecp256k1Signature(pubkey: Uint8Array, signature: Uint8Array): StdSignature
    • encrypt(msg: string, pass: Input, iterations?: number): string
    • fromHex(hexstring: string): Uint8Array
    • generateWalletFromMnemonic(mnemonic: string, options: { addressPrefix: string; btcNetwork?: {}; ethWallet: boolean; hdPath: string; pubKeyBech32Address?: boolean }): EthWallet | Wallet | BtcWalletHD
    • +

      Generate a wallet from a mnemonic

      +

      Parameters

      • mnemonic: string
      • options: { addressPrefix: string; btcNetwork?: {}; ethWallet: boolean; hdPath: string; pubKeyBech32Address?: boolean }
        +

        { + hdPath: string, + addressPrefix: string, + ethWallet: boolean, - if true, it generates an ethereum wallet regardless of cointype + pubKeyBech32Address: boolean - if true, it generates a bech32 address from public key instead of ethereum address. +}

        +
        • addressPrefix: string
        • Optional btcNetwork?: {}
          • ethWallet: boolean
          • hdPath: string
          • Optional pubKeyBech32Address?: boolean

        Returns EthWallet | Wallet | BtcWalletHD

      • generateWalletFromPrivateKey(privateKey: string, hdPath: string, prefix: string, btcNetwork?: {}, ethWallet?: boolean, pubKeyBech32Address?: boolean): EthWallet | PvtKeyWallet | BtcWalletPk
      • getFullHDPath(purpose?: string, coinType?: string, index?: string, account?: string, chain?: string): string
      • Parameters

        • purpose: string = '44'
        • coinType: string = '0'
        • index: string = '0'
        • account: string = '0'
        • chain: string = '0'

        Returns string

      • getHardenedPath(path: string): string
      • initCrypto(): void
      • isBtcCoinType(coinType: string): boolean
      • pubkeyToAddress(prefix: string, publicKey: Uint8Array): string
      • Parameters

        • prefix: string
        • publicKey: Uint8Array

        Returns string

      • serializeSignDoc(signDoc: SignDoc): Uint8Array
      • serializeStdSignDoc(signDoc: StdSignDoc): Uint8Array
      • setSecp256k1(secp256k1: typeof Secp256k1): void
      • setsha256(sha256: sha256): void
      • sortObject(obj: any): any

      Legend

      • Constructor
      • Method
      • Type alias
      • Method
      • Inherited method
      • Static method

      Settings

      Theme

      \ No newline at end of file diff --git a/modules/Secp256k1.html b/modules/Secp256k1.html new file mode 100644 index 0000000..b68f9f5 --- /dev/null +++ b/modules/Secp256k1.html @@ -0,0 +1 @@ +Secp256k1 | Leap Keychain
      Options
      All
      • Public
      • Public/Protected
      • All
      Menu

      Namespace Secp256k1

      Index

      Functions

      • getPublicKey(privateKey: Uint8Array, compressed: boolean): Uint8Array
      • publicKeyConvert(publicKey: Uint8Array, compressed: boolean): Uint8Array
      • sign(message: Uint8Array, privateKey: Uint8Array, options?: { canonical: boolean; extraEntropy?: true }): Promise<Uint8Array>
      • Parameters

        • message: Uint8Array
        • privateKey: Uint8Array
        • Optional options: { canonical: boolean; extraEntropy?: true }
          • canonical: boolean
          • Optional extraEntropy?: true

        Returns Promise<Uint8Array>

      Legend

      • Constructor
      • Method
      • Type alias
      • Method
      • Inherited method
      • Static method

      Settings

      Theme

      \ No newline at end of file diff --git a/modules/_internal_.html b/modules/_internal_.html new file mode 100644 index 0000000..66e9ebe --- /dev/null +++ b/modules/_internal_.html @@ -0,0 +1,7 @@ +<internal> | Leap Keychain
      Options
      All
      • Public
      • Public/Protected
      • All
      Menu

      Module <internal>

      Index

      Type Aliases

      StorageLayer: { get: any; remove: any; set: any }

      Type declaration

      • get:function
        • get<T>(key: string): Promise<T>
        • description

          Get the keystore from the storage

          +

          Type Parameters

          • T = string

          Parameters

          • key: string
            +

          Returns Promise<T>

      • remove:function
        • remove(key: string): Promise<void>
      • set:function
        • set<T>(key: string, value: T): Promise<void>
        • description

          Set the keystore to the storage

          +

          Type Parameters

          • T = string

          Parameters

          • key: string
          • value: T
            +

          Returns Promise<void>

      ripemd160: ((message: Uint8Array | string) => Uint8Array)

      Type declaration

        • (message: Uint8Array | string): Uint8Array
        • Parameters

          • message: Uint8Array | string

          Returns Uint8Array

      sha256: ((message: Uint8Array | string) => Uint8Array)

      Type declaration

        • (message: Uint8Array | string): Uint8Array
        • Parameters

          • message: Uint8Array | string

          Returns Uint8Array

      Legend

      • Constructor
      • Method
      • Type alias
      • Method
      • Inherited method
      • Static method

      Settings

      Theme

      \ No newline at end of file