diff --git a/src/nip33.rs b/src/nip33.rs index 514115de..343cad9c 100644 --- a/src/nip33.rs +++ b/src/nip33.rs @@ -100,17 +100,25 @@ pub fn order_to_tags(order: &Order, reputation: Option) -> Vec { vec![create_rating_string(reputation)], ), Tag::custom( - TagKind::Custom(std::borrow::Cow::Borrowed("y")), - vec!["mostrop2p".to_string()], + TagKind::Custom(std::borrow::Cow::Borrowed("network")), + vec!["mainnet".to_string()], ), Tag::custom( - TagKind::Custom(std::borrow::Cow::Borrowed("z")), - vec!["order".to_string()], + TagKind::Custom(std::borrow::Cow::Borrowed("layer")), + vec!["lightning".to_string()], ), Tag::custom( TagKind::Custom(std::borrow::Cow::Borrowed("expiration")), vec![(order.expires_at + Duration::hours(12).num_seconds()).to_string()], ), + Tag::custom( + TagKind::Custom(std::borrow::Cow::Borrowed("y")), + vec!["mostro".to_string()], + ), + Tag::custom( + TagKind::Custom(std::borrow::Cow::Borrowed("z")), + vec!["order".to_string()], + ), ]; tags