There are two things I have to enter
- The password for my wallet and
- not able to understand / from where i can get it ??
There are two things I have to enter
I assume that you exported your accounts from a mobile wallet and imported them with the concordium-client
tool. In that case, the password will be the same password that you used on the file when you exported it from the mobile wallet.
Yes its true
What is signing key and how can i get it from my imported wallet…?
Thanks for responding
Account signatures use the Ed25519 signature scheme, so the signing key is a secret key in that scheme. An account can have multiple credentials associated with it, and each credential can have multiple keys, although typically accounts have a single credential with a single key. For concordium-client
, the imported account keys are stored under $HOME/.config/concordium/accounts
(Linux/MacOS) or %APPDATA%\concordium\accounts
(Windows) with each being stored at <account address>/<credential>/keypair<n>.json
. In the file, the secret key is AES-encrypted using the password determined when importing the account.
Hello. Hijacking this thread because I’m experiencing som issues with the password. I’m trying to run:
concordium-client module deploy dist/module.wasm.v1 --sender <ACCOUNT> --name <NAME> --grpc-port 20001
and I’m using my password (which is working when logging into the wallet in the browser), but I get the error:
Vconcordium-client: user error (cannot decrypt signing key with index 0: decryption failure: wrong password)
Do you have an idea why?
I guess it is the signing key I’m missing. How can I get that and what is the format for parsing the two passwords?