45 lines
1.2 KiB
Python
45 lines
1.2 KiB
Python
seed_phrase = 'west dwarf festival fabric pelican gallery jewel bind snack fiction awkward second'
|
|
password = 'password'
|
|
|
|
chats = {
|
|
'Group with history': {
|
|
'initial_sync': False,
|
|
'unread': '1',
|
|
'preview': 'Good bye'
|
|
},
|
|
'Cheerful Empty Rhino': {
|
|
'initial_sync': False,
|
|
'unread': '1',
|
|
},
|
|
'#public-with-history': {
|
|
'initial_sync': True,
|
|
'preview': 'fgsdjhfgdsjhf'
|
|
},
|
|
'#public-cleared-history': {
|
|
'initial_sync': True,
|
|
'unread': '1',
|
|
'preview': 'No messages'
|
|
},
|
|
'Test_community': {
|
|
'initial_sync': True,
|
|
}
|
|
}
|
|
contacts = ['@pavlo', 'Cheerful Empty Rhino']
|
|
user_nickname = {
|
|
'public_key': '0x043f30313e1b2a8b9df78f1c13c14180a75e689ba1687728a1e49f6e922121b7915803296c091c0051db033aff76bd63d9'
|
|
'882d3d19cb993c3e1bf3bea2bceb695e',
|
|
'nickname': 'test_nickname'
|
|
}
|
|
activity_centre = {'test group': 'No messages',
|
|
'Rowdy Slushy Harvestmen': 'Hi!'}
|
|
|
|
# Blocked users added or not to contacts
|
|
blocked = {
|
|
'Wiry Mistyrose Sidewinder': True,
|
|
'Huge Dental Hoiho': False
|
|
}
|
|
|
|
dapps = {
|
|
'Apple' : 'https://apple.com',
|
|
'BBC - homepage': 'https://bbc.com'
|
|
} |