Access to the wallet through a private key

I have a private key from the Atomic wallet. How can I access my account through a private key? (No mnemonic phrase). There are no wallets where you can import a private key?

Can you generate new EMPTY algorand account in atomic wallet, and share with us the private key and public algorand addres of this account?

It will show us the form of the private key you want to be able to convert to standard mnemnoic that you can import to any wallet.

1 Like

I concur with @scholtz.
But I insist on NEW and EMPTY wallet.
Once generated remove the wallet to not be tempted to use it.

1 Like

I do not have access to the atomic vallet on which the algorand address was created. I only have a private key. How can you send a transaction with only a private key?
Most cryptocurrencies have an option in the wallet to import both a memo and a private key. why does not Algorand have?

The official Algorand Wallet does not support importing a private key.

Command line tools do.
See algokey and How to recover my wallet with 24 word mnemonic - #6 by fabrice

Disclaimer : Typing passphrases and private keys on a computer may open you to attacks that are not possible on the Coinomi hardware. Algorand makes no representations regarding the functioning or security of third party wallets, exchanges, or tools mentioned in the answer above, and disclaims any liability therefor. You are fully responsible for the security and the availability of your keys.

I tried it and got the message “Cannot read key seed from”.

I have generated a new account at Atomic wallet.
Phrase: wife smart defy distance polar rail original brain fruit letter furnace region.
Public Key 4XRMECLII7PO24LCHIQBNX5O5XGOY5D2R6ZZGGHTQJIW53HSDNG2NEXSPY
Private Key 37058964e07078cfb758d392b52be782e96db1bbfd14720f105f25ef29ac8adbe5e2c2096847deed71623a2016dfaeedccec747a8fb39318f382516eecf21b4d

Just follow How to recover my wallet with 24 word mnemonic - #6 by fabrice using only the first 64 characters of the key:

$ echo -n 37058964e07078cfb758d392b52be782e96db1bbfd14720f105f25ef29ac8adb | xxd -r -p > key
$ algokey export -f key
Private key mnemonic: plunge catch crane asthma valley video shield spy rather put inform oblige swift unable universe belt unusual dizzy question venture fatigue prison sword absorb patch
Public key: 4XRMECLII7PO24LCHIQBNX5O5XGOY5D2R6ZZGGHTQJIW53HSDNG2NEXSPY

The resulting private key 25-word mnemonic can be imported in most Algorand wallets.

Disclaimer : Typing passphrases and private keys on a computer may open you to attacks that are not possible on the Coinomi hardware. Algorand makes no representations regarding the functioning or security of third party wallets, exchanges, or tools mentioned in the answer above, and disclaims any liability therefor. You are fully responsible for the security and the availability of your keys.

In Algorand Node Windows, this command works(algokey export -f key) and this one($ echo -n 37058964e07078cfb758d392b52be782e96db1bbfd14720f105f25ef29ac8adb | xxd -r -p > key) does not.

The above commands are for a Linux-based command line.
One solution is to install Ubuntu via WSL 2:

Another is to install the Algorand software on Windows and find the equivalent commands.