1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* cursor.xin — Premium Domain Listing
* Available for immediate transfer
*/
import { Domain, EscrowService } from '@domain/transfer';
const listing: Domain = {
name: 'cursor.xin',
status: 'available',
contact: 'together@1026.xin',
transfer: {
method: 'escrow',
speed: 'quick',
secure: true,
},
listedAt: [
'dynadot.com',
],
};
// ── Transfer flow ─────────────────────────────
async function acquire(buyer: string): Promise<void> {
const escrow = new EscrowService();
await escrow.initiate({
domain: listing.name,
buyer: buyer,
seller: listing.contact,
});
console.log(`✓ Transfer initiated for ${listing.name}`);
}
// Ready to transfer — reach out to get started
export default listing;