Skip to content

Commit

Permalink
chore: Upgrade hyp packages and de-dupe tooltip (#142)
Browse files Browse the repository at this point in the history
Extension of #139
  • Loading branch information
jmrossy authored Nov 23, 2024
2 parents 134d1cb + 806aa77 commit 1fa67b5
Show file tree
Hide file tree
Showing 7 changed files with 5,872 additions and 348 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@hyperlane-xyz/explorer",
"description": "An interchain explorer for the Hyperlane protocol and network.",
"version": "5.4.0",
"version": "7.1.0",
"author": "J M Rossy",
"dependencies": {
"@headlessui/react": "^2.1.8",
"@hyperlane-xyz/registry": "5.1.0",
"@hyperlane-xyz/sdk": "6.0.0",
"@hyperlane-xyz/utils": "6.0.0",
"@hyperlane-xyz/widgets": "6.0.0",
"@headlessui/react": "^2.2.0",
"@hyperlane-xyz/registry": "6.1.0",
"@hyperlane-xyz/sdk": "7.1.0",
"@hyperlane-xyz/utils": "7.1.0",
"@hyperlane-xyz/widgets": "7.1.0",
"@tanstack/react-query": "^5.35.5",
"bignumber.js": "^9.1.2",
"buffer": "^6.0.3",
Expand Down
3 changes: 0 additions & 3 deletions src/features/messages/cards/ContentDetailsCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,6 @@ export function ContentDetailsCard({
<Tooltip
id="message-info"
content="Immutable information about the message itself such as its contents."
size={16}
className="hover:scale-105 hover:opacity-70"
data-tooltip-place="top-start"
/>
</div>
</div>
Expand Down
3 changes: 0 additions & 3 deletions src/features/messages/cards/GasDetailsCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,6 @@ export function GasDetailsCard({ message, blur, igpPayments = {} }: Props) {
<Tooltip
content="Amounts paid to the Interchain Gas Paymaster for message delivery."
id="gas-info"
size={16}
className="hover:scale-105 hover:opacity-70"
data-tooltip-place="top-start"
/>
</div>
</div>
Expand Down
3 changes: 0 additions & 3 deletions src/features/messages/cards/IcaDetailsCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ export function IcaDetailsCard({ message: { originDomainId, body }, blur }: Prop
<Tooltip
id="ica-info"
content="Extra information for messages from/to Interchain Accounts."
size={16}
className="hover:scale-105 hover:opacity-70"
data-tooltip-place="top-start"
/>
</div>
</div>
Expand Down
3 changes: 0 additions & 3 deletions src/features/messages/cards/IsmDetailsCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ export function IsmDetailsCard({ ismDetails, blur }: Props) {
<Tooltip
id="ism-info"
content="Details about the Interchain Security Modules (ISM) that must verify this message."
size={16}
className="hover:scale-105 hover:opacity-70"
data-tooltip-place="top-start"
/>
</div>
</div>
Expand Down
8 changes: 1 addition & 7 deletions src/features/messages/cards/TransactionCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,13 +179,7 @@ function TransactionCard({
</div>
<div className="flex items-center pb-1">
<h3 className="mr-2 text-md font-medium text-blue-500">{title}</h3>
<Tooltip
id="transaction-info"
content={helpText}
size={16}
className="hover:scale-105 hover:opacity-70"
data-tooltip-place="top-start"
/>
<Tooltip id="transaction-info" content={helpText} />
</div>
</div>
{children}
Expand Down
Loading

0 comments on commit 1fa67b5

Please sign in to comment.