Namebase Record Assistant
If you’re looking to create an app that lets others put content on their own Handshake domains (see: dword.johnxu/), you can use the Namebase Record Assistant for a smoother user experience
Overview
Step 1: Send users to Namebase with URL Parameters
Parameters
Description
const records_json = [{
type: "<type>",
host: "<@ or subdomain>",
value: "<value>",
ttl: 3600
},
{
type: "<type>",
host: "<subdomain>",
value: "<value>",
ttl: 60
}];
const RECORDS = btoa(JSON.stringify(records_json));Parameters
Description
Example: Skylink on bare TLD
Example: Skylink on subdomain
Step 2: User confirms record setting, and is sent back to your app

Conclusion
Last updated
Was this helpful?