add tutorials, get did of admin_id (same as wallet_id)

This commit is contained in:
Believethehype
2024-09-17 15:40:31 +02:00
parent a66aaa8daa
commit 9f4e7c5d40
16 changed files with 510 additions and 19 deletions

5
tutorials/helper.py Normal file
View 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))