Skip to content

Commit 69cbf6c

Browse files
authored
Merge branch 'master' into amiecorso/ba-2133-registration-flow-for-eoas-in-web
2 parents c67b502 + 933a399 commit 69cbf6c

File tree

9 files changed

+46
-1
lines changed

9 files changed

+46
-1
lines changed

apps/web/next.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,11 @@ module.exports = MillionLint.next({
378378
destination: '/build/:path',
379379
permanent: true,
380380
},
381+
{
382+
source: '/500',
383+
destination: '/',
384+
permanent: false,
385+
},
381386
];
382387
},
383388
},
52.5 KB
Loading
10.8 KB
Loading
9.63 KB
Loading
4.97 KB
Loading
2.3 KB
Loading
15.8 KB
Loading

apps/web/src/data/ecosystem.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1783,6 +1783,14 @@
17831783
"category": "ai",
17841784
"subcategory": "ai"
17851785
},
1786+
{
1787+
"name": "Glider",
1788+
"description": "Glider is a platform for creating auto-rebalancing DeFi and token portfolios. No gas. No signing. No bridging. Fully non-custodial.",
1789+
"url": "https://glider.fi",
1790+
"imageUrl": "/images/partners/glider.png",
1791+
"category": "defi",
1792+
"subcategory": "portfolio"
1793+
},
17861794
{
17871795
"name": "Goldsky",
17881796
"url": "https://goldsky.com/",
@@ -3151,6 +3159,14 @@
31513159
"category": "infra",
31523160
"subcategory": "node provider"
31533161
},
3162+
{
3163+
"name": "Quickswap",
3164+
"url": "https://dapp.quickswap.exchange/farm?chainId=8453",
3165+
"description": "Quickswap is an Ethereum Community DEX and home to the DragonFi ecosystem. A one-stop DeFi hub where users can swap, provide Liquidity, farm, trade perps, stake, and more",
3166+
"imageUrl": "/images/partners/quickswap.webp",
3167+
"category": "defi",
3168+
"subcategory": "dex"
3169+
},
31543170
{
31553171
"name": "QuillAudits",
31563172
"description": "Web3 security leader equipped with robust security solutions and infra, trusted by teams from ZetaChain, Taiko, Polygon and many more since 2018. ",
@@ -3223,6 +3239,14 @@
32233239
"category": "infra",
32243240
"subcategory": "data"
32253241
},
3242+
{
3243+
"name": "Rei Network",
3244+
"description": "Rei Network is an AI research organization that focuses on advancing artificial intelligence through science driven innovations.",
3245+
"url": "https://reisearch.box",
3246+
"imageUrl": "/images/partners/logo-rei.png",
3247+
"category": "ai",
3248+
"subcategory": "ai"
3249+
},
32263250
{
32273251
"name": "Reflect",
32283252
"category": "defi",
@@ -4454,5 +4478,21 @@
44544478
"imageUrl": "/images/partners/zora.webp",
44554479
"category": "consumer",
44564480
"subcategory": "creator"
4481+
},
4482+
{
4483+
"name": "WOWMAX",
4484+
"category": "defi",
4485+
"subcategory": "liquidity management",
4486+
"description": "WOWMAX is the first non-custodial DEX copy trading platform. Join the top 1 % of DEX traders by discovering and automatically copy-trading the most profitable wallets on BASE chain.",
4487+
"url": "https://wowmax.exchange/",
4488+
"imageUrl": "/images/partners/wowmax.png"
4489+
},
4490+
{
4491+
"name": "WLTH",
4492+
"url": "https://wlth.xyz//",
4493+
"description": "WLTH opens the door to tokenised pre-IPO opportunities like xAI and SpaceX, while AI-powered strategies help your assets grow on autopilot. One app. No barriers.",
4494+
"imageUrl": "/images/partners/wlth.webp",
4495+
"category": "Consumer",
4496+
"subcategory": "Real World"
44574497
}
44584498
]

apps/web/tracer/initialize.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const initTracer = () => {
2727
tracer.use('http', {
2828
enabled: true,
2929
service: process.env.CODEFLOW_PROJECT_NAME,
30-
blocklist: /_health/,
30+
blocklist: [/_health/, /500/],
3131
});
3232

3333
return tracer;

0 commit comments

Comments
 (0)