Other events published by Mostro
Each Mostro instance periodically publishes events with relevant information about its status, such as the code version it is using, the latest commit, the fees it charges, allowed exchange limits, the relays it publishes to, and much more. Below, we provide details on these events.
Mostro Instance Status
This event contains specific data about a Mostro instance. The instance is identified by the label mostro_pubkey
.
[
"EVENT",
"RAND",
{
"id": "<Event id>",
"pubkey": "<Mostro's pubkey>",
"kind": 38383
"tags": [
[
"d",
"info-<Mostro's pubkey>"
],
[
"mostro_pubkey",
"<Mostro's pubkey>"
],
["mostro_version", "0.12.8"],
["mostro_commit_id", "69052b2adba6c006e6929afda27f041a427f58f8"],
["max_order_amount", "20000"],
["min_order_amount", "100"],
["expiration_hours", "24"],
["expiration_seconds", "900"],
["fee", "0.006"],
["pow", "0"],
["hold_invoice_expiration_window", "900"],
["hold_invoice_cltv_delta", "298"],
["invoice_expiration_window", "900"],
["y", "mostrop2p"],
["z", "info"]
],
"content": "",
"sig": "<Mostro's signature>",
"created_at": 1731701441,
}
]
Below is an explanation of the meaning of some of the labels in this event, all of which can be modified by anyone running a Mostro instance.
mostro_version
: The version of the Mostro daemon running on the instance.mostro_commit_id
: The ID of the last commit used by the instance.max_order_amount
: The maximum amount of Satoshis allowed for exchange.min_order_amount
: The minimum amount of Satoshis allowed for exchange.expiration_hours
: The maximum time, in hours, that an order can remain inpending
status before it expires.expiration_seconds
: The maximum time, in seconds, that an order can remain inwaiting-payment
orwaiting-buyer-invoice
status before being canceled or reverted topending
status.fee
: The fee percentage charged by the instance. For example, "0.006" means a 0.6% fee.pow
: The Proof of Work required of incoming events.hold_invoice_expiration_window
: The maximum time, in seconds, for the hold invoice issued by Mostro to be paid by the seller.hold_invoice_cltv_delta
: The number of blocks in which the Mostro hold invoice will expire.invoice_expiration_window
: The maximum time, in seconds, for a buyer to submit an invoice to Mostro.
Information about the Relays Where Events Are Published
The operator of a Mostro instance decides which relays the events from that instance are published to. This information can be accessed in events kind 10002, which are published by the Mostro instances.
[
"EVENT",
"RAND",
{
"tags": [
["r", "wss://relay.mostro.network/"],
["r", "wss://nostr.bilthon.dev/"]
],
"content": "",
"sig": "<Mostro's signature>",
"id": "7a31879cbb4f32b86ca535912ba568722c52845e1517468249b66f9af6eff05c",
"pubkey": "<Mostro's pubkey>",
"created_at": 1731680102,
"kind": 10002
}
]
The r
label indicates the relays through which the Mostro instance is publishing its events.