Sign and verify using ed25519 in near protocol
问题 I am trying to sign the message in javascript using signMessage and verify it with python for implementing jwt authentication. This is the code for signing message in javascript using near-api-js window.signer = await new nearlib.InMemorySigner(window.walletAccount._keyStore) const mysign = await window.signer.signMessage("Amiya", window.walletAccount._authData.accountId, window.walletAccount._networkId) let mypubdata = "" mysign.publicKey.data.forEach( function (item,index){ if(item < 16) {