Skip to content

Commit fb64f96

Browse files
committed
Add VeChainStats to self hosted
1 parent 2e81a0b commit fb64f96

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

public/vestats.png

18.8 KB
Loading

src/data/selfHostedInstances.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,10 @@
1818
"name": "Parsec",
1919
"logo": "/parsec.jpg",
2020
"url": "https://sourcify.parsec.finance"
21+
},
22+
{
23+
"name": "VeChainStats",
24+
"logo": "/vestats.png",
25+
"url": "https://verify-api.vechainstats.com"
2126
}
2227
]

src/pages/LandingPage/Tooling.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,11 @@ $ npx hardhat verify --network mainnet 0x1F98431c8aD98523631AE4a59f267346ea31F98
300300
key={instance.name}
301301
className="w-16 flex flex-col items-center text-center"
302302
>
303-
<img src={instance.logo} alt={instance.name} className="w-10 h-10 md:w-14 md:h-14 rounded-full" />
303+
<img
304+
src={instance.logo}
305+
alt={instance.name}
306+
className="w-10 h-10 md:w-14 md:h-14 rounded-full object-contain"
307+
/>
304308
<div className="text-gray-700 text-xs md:text-sm mt-1 text-wrap">{instance.name}</div>
305309
</motion.a>
306310
))}

0 commit comments

Comments
 (0)