UNPKG
atomicals-js
Version:
latest (0.1.85)
0.1.85
0.1.84
0.1.83
0.1.82
Atomicals JavaScript SDK and CLI
github.com/atomicals-community
atomicals-community/atomicals-js
atomicals-js
/
dist
/
utils
/
decode-mnemonic-phrase.d.ts
10 lines
(9 loc)
•
269 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
declare
const
decodeMnemonicPhrase
:
(
phrase
:
string
,
path
:
string
,
passphrase
?:
string
) =>
Promise
<{
phrase
:
string
;
address
:
any
;
publicKey
:
string
;
publicKeyXOnly
:
any
;
path
:
string
;
WIF
:
string
;
privateKey
:
string
|
undefined
; }>;