ваше сообщение коммита

This commit is contained in:
2025-09-30 17:28:13 +03:00
parent 1b387a6d5d
commit 738a615809
4 changed files with 61 additions and 14 deletions

View File

@@ -1,5 +1,5 @@
{ {
"deploymentId": "modules-deploy-1759239534343", "deploymentId": "modules-deploy-1759239712369",
"dleAddress": "0x7DB7E55eA9050105cDeeC892A1B8D4Ea335b0BFD", "dleAddress": "0x7DB7E55eA9050105cDeeC892A1B8D4Ea335b0BFD",
"dleName": "DLE-8", "dleName": "DLE-8",
"dleSymbol": "TOKEN", "dleSymbol": "TOKEN",
@@ -22,7 +22,7 @@
"totalNetworks": 4, "totalNetworks": 4,
"successfulNetworks": 4, "successfulNetworks": 4,
"modulesDeployed": [ "modulesDeployed": [
"reader" "hierarchicalVoting"
], ],
"networks": [ "networks": [
{ {
@@ -30,8 +30,8 @@
"rpcUrl": "https://1rpc.io/sepolia", "rpcUrl": "https://1rpc.io/sepolia",
"modules": [ "modules": [
{ {
"type": "reader", "type": "hierarchicalVoting",
"address": "0xE56984dD05E3389AE7EfB3e12A8084915B776ACc", "address": "0x47793D53daaf0907b819aE31E2478ef5680FC895",
"success": true, "success": true,
"verification": "verified" "verification": "verified"
} }
@@ -42,8 +42,8 @@
"rpcUrl": "https://sepolia.base.org", "rpcUrl": "https://sepolia.base.org",
"modules": [ "modules": [
{ {
"type": "reader", "type": "hierarchicalVoting",
"address": "0xE56984dD05E3389AE7EfB3e12A8084915B776ACc", "address": "0x47793D53daaf0907b819aE31E2478ef5680FC895",
"success": true, "success": true,
"verification": "verified" "verification": "verified"
} }
@@ -54,8 +54,8 @@
"rpcUrl": "https://ethereum-holesky.publicnode.com", "rpcUrl": "https://ethereum-holesky.publicnode.com",
"modules": [ "modules": [
{ {
"type": "reader", "type": "hierarchicalVoting",
"address": "0xE56984dD05E3389AE7EfB3e12A8084915B776ACc", "address": "0x47793D53daaf0907b819aE31E2478ef5680FC895",
"success": true, "success": true,
"verification": "verified" "verification": "verified"
} }
@@ -66,13 +66,13 @@
"rpcUrl": "https://sepolia-rollup.arbitrum.io/rpc", "rpcUrl": "https://sepolia-rollup.arbitrum.io/rpc",
"modules": [ "modules": [
{ {
"type": "reader", "type": "hierarchicalVoting",
"address": "0xE56984dD05E3389AE7EfB3e12A8084915B776ACc", "address": "0x47793D53daaf0907b819aE31E2478ef5680FC895",
"success": true, "success": true,
"verification": "verified" "verification": "verified"
} }
] ]
} }
], ],
"timestamp": "2025-09-30T13:38:54.344Z" "timestamp": "2025-09-30T13:41:52.370Z"
} }

View File

@@ -1,3 +0,0 @@
module.exports = [
"0x7DB7E55eA9050105cDeeC892A1B8D4Ea335b0BFD"
];

View File

@@ -564,6 +564,19 @@ onMounted(() => {
gap: 1.5rem; gap: 1.5rem;
} }
/* Мобильная адаптивность для сетки */
@media (max-width: 768px) {
.dles-grid {
grid-template-columns: 1fr;
gap: 1rem;
}
.dle-card {
padding: 1rem;
margin: 0;
}
}
.dle-card { .dle-card {
background: white; background: white;
border-radius: 8px; border-radius: 8px;
@@ -845,6 +858,23 @@ onMounted(() => {
height: 40px; height: 40px;
font-size: 12px; font-size: 12px;
} }
.dle-header h3 {
font-size: 1.1rem;
}
.detail-item {
font-size: 0.85rem;
}
.address {
font-size: 0.8rem;
word-break: break-all;
}
.networks-list {
font-size: 0.8rem;
}
} }

View File

@@ -409,6 +409,26 @@ onMounted(() => {
gap: 1.5rem; gap: 1.5rem;
} }
/* Мобильная адаптивность */
@media (max-width: 768px) {
.dles-grid {
grid-template-columns: 1fr;
gap: 1rem;
}
.dle-card {
padding: 1rem;
}
.dle-header h5 {
font-size: 1.1rem;
}
.detail-item {
font-size: 0.9rem;
}
}
.dle-card { .dle-card {
background: white; background: white;
border-radius: 8px; border-radius: 8px;