Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
09c3b59
Bump rust from 1.84-bookworm to 1.85-bookworm in /docker/backend
dependabot[bot] Mar 22, 2025
1bc859c
Bump @types/node from 18.15.11 to 18.19.81 in /backend
dependabot[bot] Mar 22, 2025
6bba426
Bump @fortawesome/angular-fontawesome from 0.14.1 to 0.15.0 in /frontend
dependabot[bot] Mar 22, 2025
e73d724
Bump zone.js from 0.14.4 to 0.15.0 in /frontend
dependabot[bot] Mar 22, 2025
940a89a
Bump zone.js from 0.14.4 to 0.15.0 /frontend (#6)
Jokacar10 Mar 22, 2025
0458cce
Bump rust from 1.84-bookworm to 1.85-bookworm /docker/backend (#1)
Jokacar10 Mar 22, 2025
3059ee8
from 0.14.1 to 0.15.0 /frontend (#5)
Jokacar10 Mar 22, 2025
db17496
Bump @types/node from 18.15.11 to 18.19.81 /backend (#2)
Jokacar10 Mar 22, 2025
37972ad
Merge branch 'mempool:master' into master
Jokacar10 Apr 20, 2025
5b5d2ad
Bump mysql2 from 3.13.0 to 3.14.1 in /backend
dependabot[bot] Apr 29, 2025
a801e64
Fix pickaxe disappearing on certain desktop viewports
hunicus Apr 16, 2025
3fc17dc
Switch mempool nav icons to svg
hunicus Apr 17, 2025
644f9b9
Switch liquid nav icons to svg
hunicus Apr 17, 2025
8657d71
Remove unused fa icons from shared module
hunicus Apr 18, 2025
6129a8f
Add back icon used in dot space repo
hunicus Apr 21, 2025
fcf941a
Make pickaxe bigger
hunicus Apr 21, 2025
a4ef7c7
Make pickaxe sizing consistent with other nav icons
hunicus Apr 23, 2025
c291964
ops: Add global /twidget path for twitter widget
wiz Apr 22, 2025
c6bcda5
Use new /twidget/username hack in frontend code
wiz Apr 22, 2025
09d1f38
ops: Fix regex in nginx /twidget location pattern
wiz Apr 22, 2025
49d980f
ops: Fix regex case matching in nginx /twidget location
wiz Apr 22, 2025
21d0823
Change frontend /twidget to /api/v1/services/x/:handle
wiz Apr 22, 2025
51761d2
Make pickaxe svg pure white
hunicus Apr 23, 2025
01d6691
Add metaplanet to enterprise sponsors
hunicus Apr 27, 2025
0885d8a
Make gemini logo great again
hunicus Apr 27, 2025
5aa1ec5
update custom dashboard configs
mononaut Apr 29, 2025
e9e8654
Bump esbuild from 0.24.0 to 0.25.5 in /frontend
dependabot[bot] May 27, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 33 additions & 15 deletions backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@
},
"dependencies": {
"@mempool/electrum-client": "1.1.9",
"@types/node": "^18.15.3",
"@types/node": "^18.19.81",
"axios": "1.8.1",
"bitcoinjs-lib": "~6.1.3",
"crypto-js": "~4.2.0",
"express": "~4.21.1",
"maxmind": "~4.3.11",
"mysql2": "~3.13.0",
"mysql2": "~3.14.1",
"rust-gbt": "file:./rust-gbt",
"redis": "^4.7.0",
"socks-proxy-agent": "~7.0.0",
Expand Down
4 changes: 2 additions & 2 deletions docker/backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.84-bookworm AS builder
FROM rust:1.85-bookworm AS builder

ARG commitHash
ENV MEMPOOL_COMMIT_HASH=${commitHash}
Expand All @@ -24,7 +24,7 @@ RUN npm install --omit=dev --omit=optional
WORKDIR /build
RUN npm run package

FROM rust:1.84-bookworm AS runtime
FROM rust:1.85-bookworm AS runtime

RUN apt-get update && \
apt-get install -y curl ca-certificates && \
Expand Down
42 changes: 42 additions & 0 deletions frontend/custom-strategy-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"theme": "wiz",
"enterprise": "strategy",
"branding": {
"name": "strategy",
"title": "strategy",
"site_id": 22,
"header_img": "/resources/strategylogo.svg",
"footer_img": "/resources/strategylogo.svg"
},
"dashboard": {
"widgets": [
{
"component": "fees",
"mobileOrder": 1
},
{
"component": "difficulty",
"mobileOrder": 4
},
{
"component": "twitter",
"mobileOrder": 2,
"props": {
"handle": "MicroStrategy"
}
},
{
"component": "goggles",
"mobileOrder": 3
},
{
"component": "blocks",
"mobileOrder": 5
},
{
"component": "transactions",
"mobileOrder": 6
}
]
}
}
Loading