Skip to content

Commit

Permalink
review updates
Browse files Browse the repository at this point in the history
  • Loading branch information
grod220 committed Dec 12, 2024
1 parent eeb16c9 commit 6d59eac
Show file tree
Hide file tree
Showing 6 changed files with 294 additions and 573 deletions.
5 changes: 5 additions & 0 deletions .changeset/calm-plums-carry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@penumbra-zone/ui-deprecated': patch
---

Fixed tab width grow setting
5 changes: 5 additions & 0 deletions .changeset/rich-ghosts-shake.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'minifront': minor
---

Integrate skip widget for shielding
3 changes: 3 additions & 0 deletions apps/minifront/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"cosmos-kit": "^2.21.1",
"date-fns": "^3.6.0",
"framer-motion": "^11.2.4",
"graz": "^0.1.31",
"immer": "^10.1.1",
"lodash": "^4.17.21",
"lucide-react": "^0.378.0",
Expand All @@ -59,6 +60,8 @@
"react-router-dom": "^6.23.1",
"sonner": "1.4.3",
"tailwindcss": "^3.4.3",
"viem": "^2.21.54",
"wagmi": "^2.14.0",
"zustand": "^4.5.2"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion apps/minifront/src/components/ibc/deposit-skip/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Widget } from '@skip-go/widget';

const defaultRoute = {
srcChainId: 'osmosis-1',
srcAssetDenom: 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4', // $USDC on osmosis
srcAssetDenom: 'ibc/23104D411A6EB6031FA92FB75F227422B84989969E91DCAD56A535DD7FF0A373', // $USDY on osmosis
destChainId: 'penumbra-1',
destAssetDenom: 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349', // $UM on penumbra
};
Expand Down
4 changes: 2 additions & 2 deletions apps/minifront/src/components/ibc/tabs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { PagePath } from '../metadata/paths.ts';
export type ShieldTab = PagePath.DEPOSIT_SKIP | PagePath.DEPOSIT_MANUAL | PagePath.WITHDRAW;

export const shieldTabs = [
{ title: 'Deposit (skip)', href: PagePath.DEPOSIT_SKIP, enabled: true },
{ title: 'Deposit (manual)', href: PagePath.DEPOSIT_MANUAL, enabled: true },
{ title: 'Deposit (Skip)', href: PagePath.DEPOSIT_SKIP, enabled: true },
{ title: 'Deposit (Manual)', href: PagePath.DEPOSIT_MANUAL, enabled: true },
{ title: 'Withdraw', href: PagePath.WITHDRAW, enabled: true },
];
Loading

0 comments on commit 6d59eac

Please sign in to comment.