Skip to content

Commit f4eeed3

Browse files
authored
Merge branch 'main' into 11-10-update_tsdoc_references
2 parents 6c16c78 + 6b853df commit f4eeed3

File tree

28 files changed

+689
-102
lines changed

28 files changed

+689
-102
lines changed

.changeset/eleven-chicken-smile.md

Lines changed: 0 additions & 47 deletions
This file was deleted.

.changeset/fifty-foxes-rescue.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/eight-poems-end.md renamed to .changeset/green-bottles-approve.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"@thirdweb-dev/service-utils": patch
33
---
44

5-
Added nebula service scope
5+
remove nebula scope

.changeset/hot-bees-turn.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/nice-gifts-argue.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/serious-plants-play.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/slimy-pots-camp.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

apps/dashboard/src/app/(dashboard)/(chain)/chainlist/components/server/chainlist-row.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,9 @@ function pidToHref(pid: (typeof products)[number]["id"]) {
122122
case "rpc-edge": {
123123
return "https://portal.thirdweb.com/infrastructure/rpc-edge/overview";
124124
}
125+
case "insight": {
126+
return "https://portal.thirdweb.com/insight";
127+
}
125128
}
126129
}
127130

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
export function InsightIcon(props: { className?: string }) {
2+
return (
3+
<svg
4+
width="24"
5+
height="24"
6+
viewBox="0 0 24 24"
7+
fill="none"
8+
xmlns="http://www.w3.org/2000/svg"
9+
className={props.className}
10+
>
11+
<title>Insight</title>
12+
<circle
13+
cx="8.11963"
14+
cy="12.9889"
15+
r="4.505"
16+
fill="url(#paint0_linear_1095_479)"
17+
/>
18+
<path
19+
fillRule="evenodd"
20+
clipRule="evenodd"
21+
d="M21.2163 7.97235C21.2163 7.96914 21.2164 7.96592 21.2164 7.96271C21.2164 5.60751 18.4863 3.69824 15.1186 3.69824C11.7509 3.69824 9.02089 5.60751 9.02089 7.96271C9.02089 7.96324 9.02089 7.96378 9.02089 7.96431H9.02087V17.0369C9.02087 17.0372 9.02087 17.0374 9.02087 17.0376C9.02137 19.3925 11.7512 21.3014 15.1186 21.3014C18.486 21.3014 21.2158 19.3925 21.2163 17.0376C21.2163 17.0374 21.2163 17.0372 21.2163 17.0369V7.97235Z"
22+
fill="#06B6D4"
23+
/>
24+
<path
25+
d="M11.1232 10.3516V10.3516C13.5336 11.9944 16.704 11.9944 19.1145 10.3515V10.3515"
26+
stroke="white"
27+
strokeWidth="1.5"
28+
strokeLinecap="round"
29+
strokeLinejoin="round"
30+
/>
31+
<path
32+
d="M11.1232 15.0107V15.0107C13.5336 16.6536 16.704 16.6535 19.1145 15.0107V15.0107"
33+
stroke="white"
34+
strokeWidth="1.5"
35+
strokeLinecap="round"
36+
strokeLinejoin="round"
37+
/>
38+
<defs>
39+
<linearGradient
40+
id="paint0_linear_1095_479"
41+
x1="8.11963"
42+
y1="16.3861"
43+
x2="-1.14166"
44+
y2="3.67577"
45+
gradientUnits="userSpaceOnUse"
46+
>
47+
<stop stopColor="#155E75" />
48+
<stop offset="1" stopColor="#27B0DB" />
49+
</linearGradient>
50+
</defs>
51+
</svg>
52+
);
53+
}

apps/dashboard/src/app/(dashboard)/(chain)/components/server/products.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import type { ChainSupportedService } from "../../types/chain";
22
import { ConnectSDKIcon } from "./icons/ConnectSDKIcon";
33
import { ContractIcon } from "./icons/ContractIcon";
44
import { EngineIcon } from "./icons/EngineIcon";
5+
import { InsightIcon } from "./icons/InsightIcon";
56
import { PayIcon } from "./icons/PayIcon";
67
import { RPCIcon } from "./icons/RPCIcon";
78
import { SmartAccountIcon } from "./icons/SmartAccountIcon";
@@ -49,6 +50,13 @@ export const products = [
4950
description: "Point of sale solution for bridging, onramping & swapping",
5051
link: "https://portal.thirdweb.com/connect/pay/overview",
5152
},
53+
{
54+
name: "Insight",
55+
id: "insight",
56+
icon: InsightIcon,
57+
description: "Query, transform and analyze blockchain data",
58+
link: "https://portal.thirdweb.com/insight",
59+
},
5260
] satisfies Array<{
5361
name: string;
5462
id: ChainSupportedService;

0 commit comments

Comments
 (0)