From 828783b6953723f879447d68c8cbc70b4aa47020 Mon Sep 17 00:00:00 2001 From: benthecarman Date: Thu, 28 Dec 2023 00:12:41 -0600 Subject: [PATCH] wip --- mutiny-core/src/nostr/dlc.rs | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/mutiny-core/src/nostr/dlc.rs b/mutiny-core/src/nostr/dlc.rs index 32fe5e1a7..1a7e99d9d 100644 --- a/mutiny-core/src/nostr/dlc.rs +++ b/mutiny-core/src/nostr/dlc.rs @@ -2,10 +2,12 @@ use crate::dlc::DlcHandler; use crate::error::MutinyError; use crate::logging::MutinyLogger; use crate::storage::MutinyStorage; +use crate::utils::{now, oracle_announcement_from_hex}; use bitcoin::hashes::hex::ToHex; use dlc::secp256k1_zkp::PublicKey; use dlc_manager::Storage; use dlc_messages::message_handler::read_dlc_message; +use dlc_messages::oracle_msgs::OracleAnnouncement; use dlc_messages::{Message, WireMessage}; use lightning::ln::wire::Type; use lightning::util::logger::Logger; @@ -15,10 +17,13 @@ use nostr::key::{Keys, XOnlyPublicKey}; use nostr::prelude::{decrypt, encrypt, Parity}; use nostr::Url; use nostr::{Event, EventBuilder, EventId, Filter, Kind, Tag}; +use nostr_sdk::Client; use std::io::Read; use std::sync::Arc; pub const DLC_WIRE_MESSAGE_KIND: Kind = Kind::Ephemeral(28_888); +pub const DLC_OFFER_MESSAGE_KIND: Kind = Kind::ParameterizedReplaceable(30_088); +pub const ORACLE_ANNOUNCEMENT_KIND: Kind = Kind::Custom(88); /// A wrapper around a DLC message that indicates if it is an error pub(crate) enum DlcMessageType { @@ -56,6 +61,33 @@ impl NostrDlcHandler { .pubkey(self.key.public_key()) } + /// Gets oracle announcements from the relay + pub async fn get_oracle_announcements(&self) -> Result, MutinyError> { + let client = Client::new(&Keys::generate()); + client.add_relay("wss://relay.damus.io").await?; + client.connect().await; + + let filter = Filter::new().kind(ORACLE_ANNOUNCEMENT_KIND); + let events = client.get_events_of(vec![filter], None).await?; + client.disconnect().await?; + + let ann = events + .into_iter() + .flat_map(|e| match oracle_announcement_from_hex(&e.content) { + Ok(ann) => { + if (ann.oracle_event.event_maturity_epoch as u64) < now().as_secs() { + Some(ann) + } else { + None + } + } + Err(_) => None, + }) + .collect(); + + Ok(ann) + } + /// Turns an DLC message into a Nostr event pub(crate) fn create_wire_msg_event( &self,