Зафиксировать накопленные изменения по deploy и devnet

This commit is contained in:
AidarKC
2026-07-10 11:57:33 +04:00
parent 2b23aa7b95
commit 0fb1147eb7
18 changed files with 564 additions and 33 deletions
+5
View File
@@ -1,6 +1,7 @@
import { readShineUserPdaByRef } from '../../js/services/shine-user-pda-service.js';
import { bytesToBase58 } from '../../js/services/crypto-utils.js';
import { $, clearStatus, formatBigInt, formatTimestamp, setStatus } from './server-ui-shared.js';
import { defaultSolanaEndpoint } from '../../js/deploy-config.js';
function hex(bytes) {
const data = bytes instanceof Uint8Array ? bytes : new Uint8Array(bytes || []);
@@ -12,6 +13,10 @@ function base58(bytes) {
return bytesToBase58(data);
}
if ($('endpoint')) {
$('endpoint').value = defaultSolanaEndpoint;
}
function renderRows(rows) {
const container = $('summaryRows');
container.innerHTML = '';