If you make a mnemonic in TonSdk.NET, then it does not pass validation in tonweb-mnemonic and you cannot enter Tonkeeper with it
using TonSdk.Core.Crypto;
var mnemonic = new Mnemonic();
foreach(var word in mnemonic.Words)
{
Console.Write(word + " ");
}
import { validateMnemonic } from "tonweb-mnemonic";
var x = ("room raise steak endless leg weird involve lava cancel napkin stick garlic patrol ancient veteran fall arrive carry theme paper name hurt sample neglect").split(" ")
const main = async () => {
console.log(await validateMnemonic(x))
}
main()
If you make a mnemonic in TonSdk.NET, then it does not pass validation in tonweb-mnemonic and you cannot enter Tonkeeper with it