You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let seed = b"\xae\x6a\x40\x26\x1f\x0a\xcc\x16\x57\x04\x9c\xb2\x1a\xf5\xfb\xf7";
116
+
assert_eq!(
117
+
mnemonic_from_seed(seed).unwrap().as_str(),
118
+
"purpose faith another dignity proud arctic foster near rare stumble leave urge",
119
+
);
120
+
121
+
// 18 words
122
+
let seed = b"\x2a\x3e\x07\xa9\xe7\x5e\xd7\x3a\xa6\xb2\xe1\xaf\x90\x3d\x50\x17\xde\x80\x4f\xdf\x2b\x45\xc2\x4b";
123
+
assert_eq!(
124
+
mnemonic_from_seed(seed).unwrap().as_str(),
125
+
"clay usual tuna solid uniform outer onion found question limit favorite cook trend child lake hamster seat foot",
126
+
);
127
+
128
+
// 24 words
129
+
let seed = b"\x24\x1d\x5b\x78\x35\x90\xc2\x1f\x79\x69\x8e\x7c\xe8\x92\xdd\x03\xfb\x2c\x8f\xad\xc2\x44\x0e\xc2\x3a\xa5\xde\x9e\x2d\x23\x81\xb0";
130
+
assert_eq!(
131
+
mnemonic_from_seed(seed).unwrap().as_str(),
132
+
"catch turn task hen around autumn toss crack language duty resemble among ready elephant require embrace attract balcony practice rule tissue mushroom almost athlete",
0 commit comments