RootSoft / algorand-dart

Unofficial community SDK to interact with the Algorand network, for Dart & Flutter
MIT License
36 stars 16 forks source link

At least one signature didn't pass verification #44

Open Djihanegh opened 6 months ago

Djihanegh commented 6 months ago

Im getting this error

{"message":"At least one signature didn't pass verification"}

getting seed from mnemonic : final seed = bip39.mnemonicToSeed(mnemonic);

getting SimpleKeyPair from seed : final keyPair = await Ed25519().newKeyPairFromSeed(seed);

signing the transaction : final signature = await Ed25519().sign( encodedTransaction, keyPair: keyPair ); any solution for this ?