Compare commits

...

3 Commits

Author SHA1 Message Date
The Ben
055bf17280 Update participants.json (holgerhatgarkeinenode)
Alby account changed, so here is the node address change of holgerhatgarkeinenode
2025-11-23 12:41:10 +01:00
Dennis Reimann
e97f0db1f3 Fix portal API usage 2025-11-23 11:46:44 +01:00
Dennis Reimann
3ad153d9de Fix Mempool API call 2025-11-23 11:40:07 +01:00
4 changed files with 5 additions and 5 deletions

View File

@@ -341,9 +341,9 @@
"image": "/img/participants/holgerhatgarkeinenode.jpg",
"url": "https://portal.einundzwanzig.space",
"v4v": {
"address": "030a58b8653d32b99200a2334cfe913e51dc7d155aa0116c176657a4f1722677a3",
"address": "02133420bba28d1b0b76d84bf6460786d02eed313005407dd0f7b2dbe546a02bd0",
"customKey": "696969",
"customValue": "7xLiGzVqEBGYoBWvKeY7"
"customValue": "1"
}
},
"loddi": {

View File

@@ -34,6 +34,6 @@ block main
each m in upcomingMeetups
li
a(href=m.url data-meetup=JSON.stringify(m))
span= formatDate(`${m.event.start}Z`)
span= formatDate(m.event.start)
= " - "
span= m.name

View File

@@ -55,7 +55,7 @@ const toggleModal = modalId => {
const onMeetupMapMarkerClick = (m, modalId) => {
console.log(m)
const city = m.city ? m.city.trim() : ''
const date = m.event ? new Date(`${m.event.start}Z`) : null
const date = m.event ? new Date(m.event.start) : null
const webUrl = m.url != m.websiteUrl ? m.websiteUrl : null
const twitterUrl = m.twitter ? `https://x.com/${m.twitter}` : null
const title = m.name + (city && !m.name.includes(city) ? ` (${city})` : '')

View File

@@ -15,7 +15,7 @@ const writeJSON = (file, data) => writeFileSync(file, JSON.stringify(data, null,
let recentBlocks = []
try {
recentBlocks = loadJson('https://mempool.observer/api/recentBlocks')
recentBlocks = loadJson('https://mempool.space/api/blocks/')
} catch (err) {
console.error('Could not load recent blocks:', err)
}