mirror of
https://github.com/believethehype/nostrdvm.git
synced 2025-11-20 02:26:27 +01:00
some more code cleanup
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
from nostr_sdk import Tag, Keys, EventBuilder, Kind
|
||||
from nostr_sdk import Keys, EventBuilder, Kind
|
||||
|
||||
from nostr_dvm.utils.nostr_utils import send_event
|
||||
from nostr_dvm.utils.print_utils import bcolors
|
||||
|
||||
|
||||
async def gallery_announce_list(tags, dvm_config, client):
|
||||
|
||||
|
||||
keys = Keys.parse(dvm_config.NIP89.PK)
|
||||
content = ""
|
||||
event = EventBuilder(Kind(10011), content, tags).to_event(keys)
|
||||
eventid = await send_event(event, client=client, dvm_config=dvm_config, blastr=True)
|
||||
|
||||
print(bcolors.BLUE + "[" + dvm_config.NIP89.NAME + "] Announced Gallery for " + dvm_config.NIP89.NAME +" (EventID: " + str(eventid.to_hex()) +")" + bcolors.ENDC)
|
||||
print(
|
||||
bcolors.BLUE + "[" + dvm_config.NIP89.NAME + "] Announced Gallery for " + dvm_config.NIP89.NAME + " (EventID: " + str(
|
||||
eventid.to_hex()) + ")" + bcolors.ENDC)
|
||||
|
||||
Reference in New Issue
Block a user