13 lines
134 B
Python
13 lines
134 B
Python
# standard imports
|
|
import os
|
|
import random
|
|
import uuid
|
|
|
|
|
|
|
|
|
|
|
|
def blockchain_address() -> str:
|
|
return os.urandom(20).hex().lower()
|
|
|