From cdc8213e934e2761c9266a0a65a3872f4f192a57 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Thu, 30 Jan 2025 16:28:32 +1100 Subject: [PATCH] Initial docs --- Home.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Home.md diff --git a/Home.md b/Home.md new file mode 100644 index 0000000..d3a92be --- /dev/null +++ b/Home.md @@ -0,0 +1,33 @@ +# FireSales + +Welcome to FireSales, a self custodial domain listing service + +## List domain +First send the domain to a valid sale address + +Send an API request to submit a domain +Request +``` +POST https://sales.firewallet.au/api/v1/list +{ +"domain": "domainname", +"price": 100.2, +"description": "Listing description", +"tx": "partially-signed-buy-tx" +} +``` + +## Cancel Listing +If you want to delete your listing (please do so if you transfer your domain back to your wallet), send this request +Sign this message and include the signature +``` +FS: {domain} +``` + +``` +POST https://sales.firewallet.au/api/v1/delete +{ +"domain":"domainname", +"signature":"signature to prove domain ownership" +} +```` \ No newline at end of file