I understand that a smart contract for an account is created only when the “Account was deployed” through a transaction.
But is there any option to validate an account without first creating a wallet?
I can call the signMessage
method from starknet.js
by logging in via Braavos
or Argent X
— and I will receive a signature
But when I try to verify it on the backend, I always get the answer that the signature for the wallet address specified for verification is incorrect (only if it is not an “activated account”)
So, can I somehow verify the signature on my backend without having to write to the user “make a transaction to log in to my platform”?
Thanks guys!