add permissioned domain modular tutorial

This commit is contained in:
Oliver Eggert
2025-04-29 13:38:48 -07:00
parent 9befa993bf
commit cd539662c4
12 changed files with 757 additions and 0 deletions

View File

@@ -206,3 +206,14 @@ async function getTokenBalance() {
}
} // End of getTokenBalance()
// *******************************************************
// **************** Scroll Results ***********************
// *******************************************************
let results
async function updateResults() {
resultField.value += results;
resultField.scrollTop = resultField.scrollHeight;
}
// End of updateResults()