Merge pull request #22277 from is-a-dev/record-to-records

rename `record` key to `records`
This commit is contained in:
William Harrison
2025-04-23 16:41:48 +08:00
committed by GitHub
7744 changed files with 7798 additions and 7792 deletions
+6
View File
@@ -43,5 +43,11 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}
- name: Run DNSControl tests
if: github.event_name == 'pull_request' && contains(fromJson(env.CHANGED_FILES), 'dnsconfig.js')
uses: is-a-dev/dnscontrol-action@main
with:
args: check
- name: Run tests
run: npx ava tests/*.test.js --timeout=1m
+46 -45
View File
@@ -19,61 +19,62 @@ function getDomainsList(filesPath) {
}
var domains = getDomainsList("./domains");
var records = [];
var zone = [];
for (var subdomain in domains) {
var subdomainName = domains[subdomain].name;
var domainData = domains[subdomain].data;
var proxyState = domainData.proxied ? CF_PROXY_ON : CF_PROXY_OFF;
var data = domains[subdomain].data;
var records = data.records;
var proxyState = data.proxied ? CF_PROXY_ON : CF_PROXY_OFF;
// Handle A records
if (domainData.record.A) {
for (var a in domainData.record.A) {
records.push(A(subdomainName, IP(domainData.record.A[a]), proxyState));
if (records.A) {
for (var a in records.A) {
zone.push(A(subdomainName, IP(records.A[a]), proxyState));
}
}
// Handle AAAA records
if (domainData.record.AAAA) {
for (var aaaa in domainData.record.AAAA) {
records.push(AAAA(subdomainName, domainData.record.AAAA[aaaa], proxyState));
if (records.AAAA) {
for (var aaaa in records.AAAA) {
zone.push(AAAA(subdomainName, records.AAAA[aaaa], proxyState));
}
}
// Handle CAA records
if (domainData.record.CAA) {
for (var caa in domainData.record.CAA) {
var caaRecord = domainData.record.CAA[caa];
records.push(CAA(subdomainName, caaRecord.tag, caaRecord.value));
if (records.CAA) {
for (var caa in records.CAA) {
var caaRecord = records.CAA[caa];
zone.push(CAA(subdomainName, caaRecord.tag, caaRecord.value));
}
}
// Handle CNAME records
if (domainData.record.CNAME) {
records.push(ALIAS(subdomainName, domainData.record.CNAME + ".", proxyState));
if (records.CNAME) {
zone.push(ALIAS(subdomainName, records.CNAME + ".", proxyState));
}
// Handle DS records
if (domainData.record.DS) {
for (var ds in domainData.record.DS) {
var dsRecord = domainData.record.DS[ds];
records.push(
if (records.DS) {
for (var ds in records.DS) {
var dsRecord = records.DS[ds];
zone.push(
DS(subdomainName, dsRecord.key_tag, dsRecord.algorithm, dsRecord.digest_type, dsRecord.digest)
);
}
}
// Handle MX records
if (domainData.record.MX) {
for (var mx in domainData.record.MX) {
var mxRecord = domainData.record.MX[mx];
if (records.MX) {
for (var mx in records.MX) {
var mxRecord = records.MX[mx];
if (typeof mxRecord === "string") {
records.push(
MX(subdomainName, 10 + parseInt(mx), domainData.record.MX[mx] + ".")
zone.push(
MX(subdomainName, 10 + parseInt(mx), records.MX[mx] + ".")
);
} else {
records.push(
zone.push(
MX(
subdomainName,
parseInt(mxRecord.priority),
@@ -85,28 +86,28 @@ for (var subdomain in domains) {
}
// Handle NS records
if (domainData.record.NS) {
for (var ns in domainData.record.NS) {
records.push(NS(subdomainName, domainData.record.NS[ns] + "."));
if (records.NS) {
for (var ns in records.NS) {
zone.push(NS(subdomainName, records.NS[ns] + "."));
}
}
// Handle SRV records
if (domainData.record.SRV) {
for (var srv in domainData.record.SRV) {
var srvRecord = domainData.record.SRV[srv];
records.push(
if (records.SRV) {
for (var srv in records.SRV) {
var srvRecord = records.SRV[srv];
zone.push(
SRV(subdomainName, srvRecord.priority, srvRecord.weight, srvRecord.port, srvRecord.target + ".")
);
}
}
// Handle TLSA records
if (domainData.record.TLSA) {
for (var tlsa in domainData.record.TLSA) {
var tlsaRecord = domainData.record.TLSA[tlsa];
if (records.TLSA) {
for (var tlsa in records.TLSA) {
var tlsaRecord = records.TLSA[tlsa];
records.push(
zone.push(
TLSA(
subdomainName,
tlsaRecord.usage,
@@ -119,19 +120,19 @@ for (var subdomain in domains) {
}
// Handle TXT records
if (domainData.record.TXT) {
if (Array.isArray(domainData.record.TXT)) {
for (var txt in domainData.record.TXT) {
records.push(TXT(subdomainName, domainData.record.TXT[txt].length <= 255 ? "\"" + domainData.record.TXT[txt] + "\"" : domainData.record.TXT[txt]));
if (records.TXT) {
if (Array.isArray(records.TXT)) {
for (var txt in records.TXT) {
zone.push(TXT(subdomainName, records.TXT[txt].length <= 255 ? "\"" + records.TXT[txt] + "\"" : records.TXT[txt]));
}
} else {
records.push(TXT(subdomainName, domainData.record.TXT.length <= 255 ? "\"" + domainData.record.TXT + "\"" : domainData.record.TXT));
zone.push(TXT(subdomainName, records.TXT.length <= 255 ? "\"" + records.TXT + "\"" : records.TXT));
}
}
// Handle URL records
if (domainData.record.URL) {
records.push(A(subdomainName, IP("192.0.2.1"), CF_PROXY_ON));
if (records.URL) {
zone.push(A(subdomainName, IP("192.0.2.1"), CF_PROXY_ON));
}
}
@@ -149,7 +150,7 @@ for (var i = 0; i < reserved.length; i++) {
subdomainName !== "ns4" &&
subdomainName !== "www"
) {
records.push(A(subdomainName, IP("192.0.2.1"), CF_PROXY_ON));
zone.push(A(subdomainName, IP("192.0.2.1"), CF_PROXY_ON));
}
}
@@ -176,6 +177,6 @@ var ignored = [
];
// Push TXT record of when the zone was last updated
records.push(TXT("_zone-updated", "\"" + Date.now().toString() + "\""));
zone.push(TXT("_zone-updated", "\"" + Date.now().toString() + "\""));
D(domainName, registrar, dnsProvider, options, ignored, records);
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "S4IL21",
"email": "s4il.is.a.dev@gmail.com"
},
"record": {
"records": {
"CNAME": "s4il21.github.io"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "Rayrsn",
"email": "rayrsn@proton.me"
},
"record": {
"records": {
"URL": "https://rayrsn.me/"
}
}
+1 -1
View File
@@ -5,7 +5,7 @@
"username": "SatyamV7",
"email": "satyamverma46@outlook.com"
},
"record": {
"records": {
"CNAME": "satyamv7.github.io"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "Rayrsn",
"email": "rayrsn@proton.me"
},
"record": {
"records": {
"URL": "https://rayrsn.me/"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "iamxani",
"email": "xenpei11@gmail.com"
},
"record": {
"records": {
"CNAME": "iamxani.github.io"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "conaitus",
"discord": "772867638920609823"
},
"record": {
"records": {
"A": ["77.175.38.88"]
}
}
+1 -1
View File
@@ -5,7 +5,7 @@
"email": "broduer@aogamers.net",
"discord": "[AoG+] Broduer#0331"
},
"record": {
"records": {
"URL": "https://play0ad.com"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "chuckchicken100",
"discord": "815256243786350594"
},
"record": {
"records": {
"A": ["103.97.126.29"]
}
}
+1 -1
View File
@@ -5,7 +5,7 @@
"username": "0spol",
"email": "gaparicio368@gmail.com"
},
"record": {
"records": {
"CNAME": "0spol.github.io"
}
}
+1 -1
View File
@@ -5,7 +5,7 @@
"username": "0v90",
"discord": "651519394673065989"
},
"record": {
"records": {
"A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"]
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "SkyExploreWasTaken",
"discord": "1049263707177353247"
},
"record": {
"records": {
"CNAME": "edge.redirect.pizza"
}
}
+1 -1
View File
@@ -7,7 +7,7 @@
"note": "That email address is not my main email. It has email forwarding enabled, but the spam filter doesn't like the forwarding. It is probably faster to contact me on Discord or irc."
},
"description": "I'll probably put some project pages on 0x0.is-a.dev. ¯\\_(ツ)_/¯",
"record": {
"records": {
"CNAME": "insomnia247.nl"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "0x1026",
"email": "me@hugovidafe.dev"
},
"record": {
"records": {
"URL": "https://hugovidafe.dev"
}
}
+1 -1
View File
@@ -6,7 +6,7 @@
"email": "t.yamaishi@qq.com",
"twitter": "TenkutiYamaishi"
},
"record": {
"records": {
"CNAME": "0x3st.github.io"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "0xarchit",
"email": "0xarchit@proton.me"
},
"record": {
"records": {
"NS": ["brenna.ns.cloudflare.com", "cartman.ns.cloudflare.com"]
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "0xbitx",
"email": "0xbit25125@gmail.com"
},
"record": {
"records": {
"CNAME": "0xbitx.github.io"
}
}
+1 -1
View File
@@ -5,7 +5,7 @@
"username": "0xflotus",
"email": "0xflotus@gmail.com"
},
"record": {
"records": {
"CNAME": "0xflotus.github.io"
}
}
+1 -1
View File
@@ -5,7 +5,7 @@
"username": "marufms4",
"email": "marufsm4@gmail.com"
},
"record": {
"records": {
"A": ["75.2.60.5"]
},
"url": "https://marufcseuu.netlify.app/"
+1 -1
View File
@@ -6,7 +6,7 @@
"email": "contact@0xviel.my.id",
"discord": "445073800850046977"
},
"record": {
"records": {
"CNAME": "nobuyaki.github.io"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "0xzer0x",
"email": "youssefessamasu@gmail.com"
},
"record": {
"records": {
"MX": ["mx1.forwardemail.net", "mx2.forwardemail.net"],
"TXT": [
"forward-email=youssefessamasu@gmail.com",
+1 -1
View File
@@ -4,7 +4,7 @@
"username": "i-am-is-a-dev",
"email": "lx737456@gmail.com"
},
"record": {
"records": {
"A": ["89.106.200.1"]
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "leopku",
"discord": "1168846640464019570"
},
"record": {
"records": {
"URL": "https://www.himysql.com"
}
}
+1 -1
View File
@@ -4,7 +4,7 @@
"username": "QuinceTart10",
"discord": "862644161156218891"
},
"record": {
"records": {
"MX": [
"a8aacaa795f68ffd.mx1.emailprofi.seznam.cz",
"a8aacaa795f68ffd.mx2.emailprofi.seznam.cz"
+1 -1
View File
@@ -5,7 +5,7 @@
"username": "joaawd",
"email": "fmodeteam@gmail.com"
},
"record": {
"records": {
"CNAME": "jaycuh.github.io"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "PogMaster9001",
"discord": "1190052608346435597"
},
"record": {
"records": {
"CNAME": "projectdevs.net"
}
}
+1 -1
View File
@@ -5,7 +5,7 @@
"username": "navandarnidhi",
"email": "nidhi.navandar@mescoeorg.onmicrsoft.com"
},
"record": {
"records": {
"CNAME": "navandarnidhi.github.io"
}
}
+1 -1
View File
@@ -4,7 +4,7 @@
"username": "1995parham",
"email": "parham.alvani@gmail.com"
},
"record": {
"records": {
"CNAME": "1995parham.github.io"
}
}
+1 -1
View File
@@ -5,7 +5,7 @@
"username": "1ndrajeet",
"email": "omkar.kulkarni.3174@gmail.com"
},
"record": {
"records": {
"CNAME": "1ndrajeet.vercel.app"
}
}
+1 -1
View File
@@ -5,7 +5,7 @@
"username": "EndingPencil",
"email": "watsonsohil@gmail.com"
},
"record": {
"records": {
"CNAME": "endingpencil.github.io"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "gimmywashere",
"discord": "792467650038857748"
},
"record": {
"records": {
"CNAME": "ammo.lol"
}
}
+1 -1
View File
@@ -4,7 +4,7 @@
"username": "LIGMATV",
"email": "ligmatv.id@gmail.com"
},
"record": {
"records": {
"CNAME": "ligmatv-links.vercel.app"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "200anxy",
"email": "aadarshnair.p@gmail.com"
},
"record": {
"records": {
"CNAME": "200anxy.github.io"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "merakesh207",
"email": "merakesh207@gmail.com"
},
"record": {
"records": {
"URL": "https://behance.net/merakesh207"
}
}
+1 -1
View File
@@ -4,7 +4,7 @@
"email": "2096779623@qq.com",
"telegram": "utermux_blog"
},
"record": {
"records": {
"URL": "https://www.utermux.dev"
}
}
+1 -1
View File
@@ -5,7 +5,7 @@
"username": "20zzy19",
"email": "a620zzy@gmail.com"
},
"record": {
"records": {
"A": ["98.43.59.193"]
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "21Z",
"discord": "780356848737058857"
},
"record": {
"records": {
"MX": ["mx1.improvmx.com", "mx2.improvmx.com"],
"TXT": "v=spf1 include:spf.improvmx.com ~all"
}
+1 -1
View File
@@ -4,7 +4,7 @@
"username": "256javy",
"email": "256javiervillalba@gmail.com"
},
"record": {
"records": {
"CNAME": "256javy.github.io"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "2giosangmitom",
"email": "2giosangmitom@gmail.com"
},
"record": {
"records": {
"CNAME": "blog-o7t.pages.dev"
}
}
+1 -1
View File
@@ -5,7 +5,7 @@
"username": "37cut",
"email": "cutt37@outlook.com"
},
"record": {
"records": {
"URL": "https://cutt37.is-a.dev"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "3geETR",
"email": "egemacun@gmail.com"
},
"record": {
"records": {
"CNAME": "3geetr.github.io"
}
}
+1 -1
View File
@@ -4,7 +4,7 @@
"username": "3pls0de",
"email": "naji.aka58@gmail.com"
},
"record": {
"records": {
"URL": "https://lostpipel.blogspot.com"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "4-m4t",
"email": "e_serhat@hotmail.com"
},
"record": {
"records": {
"CNAME": "ambitious-flower-0b346cf0f.4.azurestaticapps.net"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "404Dev-404",
"email": "anthonyvaldes318+404@gmail.com"
},
"record": {
"records": {
"CNAME": "404dev-404.github.io"
}
}
+1 -1
View File
@@ -5,7 +5,7 @@
"username": "9xN",
"email": "0@fbi.ac"
},
"record": {
"records": {
"CNAME": "9xn.github.io"
}
}
+1 -1
View File
@@ -5,7 +5,7 @@
"username": "45i",
"email": "sayakpalit61@gmail.com"
},
"record": {
"records": {
"CNAME": "45i.github.io"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "ahmetunsal",
"email": "web.unsalahmet@gmail.com"
},
"record": {
"records": {
"A": ["76.76.21.21"]
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "Akshay-Arjun",
"email": "akshayvollala779@gmail.com"
},
"record": {
"records": {
"URL": "https://akshay-arjun.github.io/Akshay-Arjun"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "MullerIsabella",
"email": "AlpineDreamer92@protonmail.com"
},
"record": {
"records": {
"CNAME": "suisse.onrender.com"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "fiftys7vencode",
"email": "potatogamer34579@gmail.com"
},
"record": {
"records": {
"A": ["185.199.108.153", "185.199.109.153", "185.199.110.153", "185.199.111.153"],
"AAAA": [
"2606:50c0:8000::153",
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "5y8z",
"email": "dev.xcept@gmail.com"
},
"record": {
"records": {
"CNAME": "5y8z.vercel.app"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "shockbs",
"discord": "880084860327313459"
},
"record": {
"records": {
"URL": "https://shockbs.is-a.dev/"
}
}
+1 -1
View File
@@ -4,7 +4,7 @@
"username": "5rq",
"email": "600@fbi.ac"
},
"record": {
"records": {
"CNAME": "5rq.github.io"
}
}
+1 -1
View File
@@ -6,7 +6,7 @@
"email": "lrmn.dev@gmail.com",
"discord": "romanromannya#0"
},
"record": {
"records": {
"CNAME": "radio-indonesia.github.io"
}
}
+1 -1
View File
@@ -5,7 +5,7 @@
"username": "Nobody5050",
"email": "levibelland@gmail.com"
},
"record": {
"records": {
"CNAME": "nobody5050.github.io"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "realSunyz",
"discord": "800186537719365662"
},
"record": {
"records": {
"CNAME": "pub-seven-intro.pages.dev"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "XikiZxGS",
"discord": "1015654462334971925"
},
"record": {
"records": {
"CNAME": "xikizxgs.github.io"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "8-bittt",
"email": "8botted@gmail.com"
},
"record": {
"records": {
"URL": "https://replit.com/@8bittt?path="
}
}
@@ -4,7 +4,7 @@
"email": "support@juststudio.is-a.dev",
"discord": "1117482901353812088"
},
"record": {
"records": {
"CNAME": "78515120d374647d2302076e._acme.deno.dev"
}
}
+1 -1
View File
@@ -5,7 +5,7 @@
"email": "support@juststudio.is-a.dev",
"discord": "1117482901353812088"
},
"record": {
"records": {
"CNAME": "ec675496b91489e24d221965._acme.deno.dev"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "VaibhavSys",
"email": "vaibhavsys@protonmail.com"
},
"record": {
"records": {
"CNAME": "b00be066-ce45-455f-bb4a-de9f6dc14e0c.acmedns.infinityfree.net"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "EducatedSuddenBucket",
"discord": "1167825360151380032"
},
"record": {
"records": {
"CNAME": "51de1eeaf31ce67a1c3f69aa._acme.deno.dev"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "RaafeyRaza",
"email": "raafeyraza1@gmail.com"
},
"record": {
"records": {
"CNAME": "dc6fbbae-3aba-4a5d-9741-4b7a386b9151.acmedns.infinityfree.net"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "shadowjobs",
"email": "shadowjobs@qq.com"
},
"record": {
"records": {
"TXT": "GL77s4yYmKen3roum2OpMV6JmBoL9O_NdCTBVW9PkEE"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "EducatedSuddenBucket",
"discord": "1167825360151380032"
},
"record": {
"records": {
"CNAME": "e6797667cd820de372823eb4._acme.deno.dev"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "alvinsjoy",
"discord": "825382504353234954"
},
"record": {
"records": {
"TXT": "did=did:plc:jkk7sl4llede4zzj2ctgkwsc"
}
}
+1 -1
View File
@@ -4,7 +4,7 @@
"username": "catto24",
"email": "catto24@proton.me"
},
"record": {
"records": {
"TXT": "did=did:plc:whzff4s3db6taso3s43ylrou"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "theclyron",
"email": "onenonlyclyron@gmail.com"
},
"record": {
"records": {
"TXT": "did=did:plc:fqvzbqsjzjkl4o66rfp6cgk3"
}
}
+1 -1
View File
@@ -4,7 +4,7 @@
"email": "crischutu07owo@gmail.com",
"description": "Bluesky custom handle."
},
"record": {
"records": {
"TXT": "did=did:plc:tfpfqi3qewuc5ugaipb57waa"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "exyxz",
"discord": "exyxz"
},
"record": {
"records": {
"TXT": "did=did:plc:73r55srxmmlhhiof7fnllisy"
}
}
+1 -1
View File
@@ -4,7 +4,7 @@
"username": "TheHCJ",
"bluesky": "did:plc:5f2c6awh4ffekm7srmi4d6zg"
},
"record": {
"records": {
"TXT": "did:plc:5f2c6awh4ffekm7srmi4d6zg"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "horibyte",
"email": "thehoribyte@gmail.com"
},
"record": {
"records": {
"TXT": "did=did:plc:5ls3iv54vrppjxbs5ztocd75"
}
}
+1 -1
View File
@@ -4,7 +4,7 @@
"username": "heyjumanji",
"email": "madhuchutiya.unhinge50@silomails.com"
},
"record": {
"records": {
"TXT": "did=did:plc:nrjpabfv3zoxd6kiwr6fs4lq"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "notxlua",
"email": "notxlua@gmail.com"
},
"record": {
"records": {
"TXT": "did=did:plc:j7iap5lpvblnrr7lygisgjzp"
}
}
+1 -1
View File
@@ -4,7 +4,7 @@
"username": "luihh",
"email": "luihh@proton.me"
},
"record": {
"records": {
"TXT": "did=did:plc:nkzlgllahrw2v2y6p4inqx6t"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "itssfatlum",
"email": "fatlum@lumi.is-a.dev"
},
"record": {
"records": {
"TXT": "did=did:plc:c6m5rghb7tkmf5isd3pqjpbt"
}
}
+1 -1
View File
@@ -4,7 +4,7 @@
"email": "cs42059@gmail.com",
"discord": "gamingdoodle"
},
"record": {
"records": {
"TXT": "did=did:plc:u5uxl7mjlywolajtgso2ouoe"
}
}
+1 -1
View File
@@ -5,7 +5,7 @@
"discord": "notcoded",
"discordUserID": "620662953347121163"
},
"record": {
"records": {
"TXT": "did=did:plc:hvgfiqmdl5sqcba2453dfpxe"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "Priyansxu",
"email": "priyansxu@yahoo.com"
},
"record": {
"records": {
"TXT": "did=did:plc:psimj7hgshwoets2jvd6caib"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "nilsraccoon",
"discord": "1129507464589627512"
},
"record": {
"records": {
"TXT": "did=did:plc:25w7vwbzb2e3h7cnflqskp37"
}
}
+1 -1
View File
@@ -4,7 +4,7 @@
"email": "contact@0xviel.my.id",
"discord": "445073800850046977"
},
"record": {
"records": {
"TXT": "dh=3553e848300a672fa174b27085b19d419d95ef75"
}
}
+1 -1
View File
@@ -4,7 +4,7 @@
"discord": "realabeja",
"reddit": "crazyfuy"
},
"record": {
"records": {
"TXT": "dh=af03f42bbbaaca145280cdd080f105feb02a9145"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "octyn-yt",
"email": "simplelogin-newsletter.idealize471@simplelogin.com"
},
"record": {
"records": {
"TXT": "dh=492dbadf8b48232a357717e9d54511826184e352"
}
}
+1 -1
View File
@@ -4,7 +4,7 @@
"email": "acronicalbusiness@gmail.com",
"discord": "627045949998497792"
},
"record": {
"records": {
"TXT": "dh=b787b100fba1eaf9de455acb506e5f6fdcf1e829"
}
}
+1 -1
View File
@@ -4,7 +4,7 @@
"email": "adoqet@gmail.com",
"discord": "614408768733708288"
},
"record": {
"records": {
"TXT": "dh=3b5f69bbeb63aef097096698547869d0d47e36fb"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "relentiousdragon",
"email": "relentoor@gmail.com"
},
"record": {
"records": {
"TXT": "dh=a261e0bde9e7d78a88462fda3c35222a35a348de"
}
}
+1 -1
View File
@@ -2,7 +2,7 @@
"owner": {
"username": "ajtabjs"
},
"record": {
"records": {
"TXT": ["dh=44c33bd9561dd8d8079e707868adf359b0c5ff05"]
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "octyn-yt",
"email": "simplelogin-newsletter.idealize471@simplelogin.com"
},
"record": {
"records": {
"TXT": "dh=a55cf3b9bc75b12674dfdd8e1d89219da7607931"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "AKCord",
"email": "shrestha.aeniv@gmail.com"
},
"record": {
"records": {
"TXT": "dh=fc3eadcea1712e3159f516950cf20f2397647f63"
}
}
+1 -1
View File
@@ -4,7 +4,7 @@
"email": "akk1to.dev@gmail.com",
"discord": "727497287777124414"
},
"record": {
"records": {
"TXT": ["dh=1b549c9ba1012a210482879df31eaddc4dbf0c7e"]
}
}
+1 -1
View File
@@ -4,7 +4,7 @@
"email": "maillegendop@gmail.com",
"discord": "1056531806763102218"
},
"record": {
"records": {
"TXT": "dh=09032e888f853fbc8b540d4ff64dc7abd828f107"
}
}
+1 -1
View File
@@ -4,7 +4,7 @@
"email": "contact@alecks.dev",
"discord": "612522818294251522"
},
"record": {
"records": {
"TXT": "dh=0d543348d17f2be631fd3a25c3ae3e099741ff81"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "Alimadcorp",
"email": "alimad.co.ltd@gmail.com"
},
"record": {
"records": {
"TXT": "dh=d9f9cb8af5ab95e23dd4125a12020c785736192d"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "aloramiaa",
"email": "xaloramia@gmail.com"
},
"record": {
"records": {
"TXT": "dh=c5c6a95b0839d3a31d0ca2ae91236c9dbee84fd6"
}
}
+1 -1
View File
@@ -5,7 +5,7 @@
"gitlab": "YouFoundAlpha",
"mastodon": "@YouFoundAlpha@mastodon.social"
},
"record": {
"records": {
"TXT": "dh=0ed7bf0ab783536f57a14304a99956a116a1782e"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "alvinsjoy",
"discord": "825382504353234954"
},
"record": {
"records": {
"TXT": "dh=2e0d11ef77e37336649b42cd76be7681008ac30a"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "buddhhu",
"email": "amitsharma123234@gmail.com"
},
"record": {
"records": {
"TXT": "dh=5b4d2c16d6e0595278e1eb813028b9de2e442e4c"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "amol234545",
"email": "amolmilton@gmail.com"
},
"record": {
"records": {
"TXT": "dh=383b5b12e8a16256189d4e54677f7c217ddde07a"
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
"username": "true1ann",
"email": "true1ann@tutamail.com"
},
"record": {
"records": {
"TXT": "dh=6eb0f066bdc17804b776bb9cb7b351dfb831a22e"
}
}

Some files were not shown because too many files have changed in this diff Show More