From 40ceab408ab2ae93a47c903d7ed466aff53f4829 Mon Sep 17 00:00:00 2001
From: wileyj <2847772+wileyj@users.noreply.github.com>
Date: Tue, 16 Jan 2024 19:03:13 +0000
Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20stacks-n?=
=?UTF-8?q?etwork/subdomain-registrar@0b2f8fa57db977762dc457178cf6cb2c905d?=
=?UTF-8?q?90f0=20=F0=9F=9A=80?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
config.js.html | 2 +-
db.js.html | 34 +++++++++++++++++-----------------
developmode.js.html | 2 +-
http.js.html | 2 +-
index.html | 20 ++++++++++----------
index.js.html | 2 +-
lookups.js.html | 4 ++--
operations.js.html | 6 +++---
server.js.html | 2 +-
9 files changed, 37 insertions(+), 37 deletions(-)
diff --git a/config.js.html b/config.js.html
index 8de693b..5ef2ba0 100644
--- a/config.js.html
+++ b/config.js.html
@@ -391,7 +391,7 @@
diff --git a/db.js.html b/db.js.html
index c2f467d..3ae8268 100644
--- a/db.js.html
+++ b/db.js.html
@@ -20,9 +20,9 @@
- 87.12%
+ 87.88%
Statements
- 115/132
+ 116/132
55.88%
@@ -35,9 +35,9 @@
46/49
- 88.28%
+ 89.06%
Lines
- 113/128
+ 114/128
@@ -587,15 +587,15 @@
-83x
+84x
48x
-83x
-83x
-83x
+84x
+84x
+84x
-83x
+84x
@@ -756,11 +756,11 @@
1x
1x
-1x
-
-
+1x
+1x
+
@@ -1217,11 +1217,11 @@
'INSERT INTO ip_info (ip_address, owner, queue_ix) VALUES (?, ?, ?)'
return dbAll(this.db, lookup, [subdomainName, ownerAddress]).then(
(results) => {
- Eif (results.length != 1) {
- throw new Error('No queued entry found.')
+ Iif (results.length != 1) {
+ throw new Error('No queued entry found.')
}
- const queueIndex = results[0].queue_ix
- return dbRun(this.db, insert, [ipAddress, ownerAddress, queueIndex])
+ const queueIndex = results[0].queue_ix
+ return dbRun(this.db, insert, [ipAddress, ownerAddress, queueIndex])
}
)
}
@@ -1438,7 +1438,7 @@
diff --git a/developmode.js.html b/developmode.js.html
index 3227534..499ff5e 100644
--- a/developmode.js.html
+++ b/developmode.js.html
@@ -295,7 +295,7 @@
diff --git a/http.js.html b/http.js.html
index 6795c44..fc23401 100644
--- a/http.js.html
+++ b/http.js.html
@@ -1153,7 +1153,7 @@
diff --git a/index.html b/index.html
index 93ea216..210ed7b 100644
--- a/index.html
+++ b/index.html
@@ -20,9 +20,9 @@
- 57.42%
+ 57.55%
Statements
- 445/775
+ 446/775
48.14%
@@ -35,9 +35,9 @@
88/148
- 57.29%
+ 57.42%
Lines
- 436/761
+ 437/761
@@ -76,15 +76,15 @@
db.js |
- |
- 87.12% |
- 115/132 |
+ |
+ 87.88% |
+ 116/132 |
55.88% |
19/34 |
93.88% |
46/49 |
- 88.28% |
- 113/128 |
+ 89.06% |
+ 114/128 |
@@ -171,7 +171,7 @@
diff --git a/index.js.html b/index.js.html
index 01c3775..d2f634b 100644
--- a/index.js.html
+++ b/index.js.html
@@ -202,7 +202,7 @@
diff --git a/lookups.js.html b/lookups.js.html
index 67e55cb..794401b 100644
--- a/lookups.js.html
+++ b/lookups.js.html
@@ -207,7 +207,7 @@
export async function isSubdomainRegistered(fullyQualifiedAddress: String) {
try {
- const nameInfoUrl = bskConfig.network.coreApiUrl + '/v1/names/' + fullyQualifiedAddress
+ const nameInfoUrl = bskConfig.network.blockstackAPIUrl + '/v1/names/' + fullyQualifiedAddress
const nameInfoRequest = await fetch(nameInfoUrl)
const { status } = nameInfoRequest
if (status == 200) {
@@ -280,7 +280,7 @@
diff --git a/operations.js.html b/operations.js.html
index 139d5ba..3873df3 100644
--- a/operations.js.html
+++ b/operations.js.html
@@ -1035,7 +1035,7 @@
throw new Error('Invalid domain name')
}
- const nameInfoUrl = bskConfig.network.coreApiUrl + '/v1/names/' + domainName
+ const nameInfoUrl = bskConfig.network.blockstackAPIUrl + '/v1/names/' + domainName
const nameInfoRequest = await fetch(nameInfoUrl)
const nameInfo = await nameInfoRequest.json()
@@ -1131,7 +1131,7 @@
if (!tx.blockHeight || tx.blockHeight <= 0) {
// const txInfo = await bskConfig.network.getTransactionInfo(tx.txHash)
const url = new URL(
- bskConfig.network.coreApiUrl + `/extended/v1/tx/0x${tx.txHash}`
+ bskConfig.network.blockstackAPIUrl + `/extended/v1/tx/0x${tx.txHash}`
);
const httpRequest = await fetch(url);
const reqText = await httpRequest.text();
@@ -1276,7 +1276,7 @@
diff --git a/server.js.html b/server.js.html
index c5e0d8c..267217f 100644
--- a/server.js.html
+++ b/server.js.html
@@ -2236,7 +2236,7 @@