mirror of
https://github.com/aljazceru/nostrdvm.git
synced 2026-02-20 13:44:31 +01:00
add tutorials, get did of admin_id (same as wallet_id)
This commit is contained in:
5
tutorials/helper.py
Normal file
5
tutorials/helper.py
Normal file
@@ -0,0 +1,5 @@
|
||||
import random, string
|
||||
|
||||
def randomword(length):
|
||||
letters = string.ascii_lowercase
|
||||
return ''.join(random.choice(letters) for i in range(length))
|
||||
Reference in New Issue
Block a user