You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Each Ethereum address has a matchign private key. To create a new Ethereum
62
+
account you can just generate a random number that acts as a private key.
63
+
64
+
- A private key is just a random unguessable, or cryptograpgically safe, 256-bit integer number
65
+
66
+
- A valid private key is > 0 and < max private key value (a number above the elliptic curve order FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFE BAAEDCE6 AF48A03B BFD25E8C D0364141)
67
+
68
+
- Private keys do not have checksums or anything like that
69
+
70
+
To create a private key using Web3.py and command line you can do:
0 commit comments