Skip to content

Commit 0eaef30

Browse files
Hook up with repay (#319)
1 parent 7dcd930 commit 0eaef30

30 files changed

+1156
-336
lines changed

package-lock.json

Lines changed: 300 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

routes/vault/src/VaultLayout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useAppKitBridge } from '@babylonlabs-io/wallet-connector';
2-
import { Activities } from './components/Activities';
2+
import { VaultDashboard } from './components/VaultDashboard';
33

44
// TODO: Uncomment this when we have a way to test the contract queries
55
// import { PegInTest } from './components/examples/PegInTest';
@@ -13,7 +13,7 @@ export default function VaultLayout() {
1313
<div className="container mx-auto flex max-w-[760px] flex-1 flex-col gap-12 px-4 py-8">
1414
{/* <ContractQueryExample /> */}
1515
{/* <PegInTest /> */}
16-
<Activities />
16+
<VaultDashboard />
1717
</div>
1818
);
1919
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './transaction';

0 commit comments

Comments
 (0)