Skip to content

Commit

Permalink
Merge develop
Browse files Browse the repository at this point in the history
  • Loading branch information
shanejearley committed Jul 26, 2023
2 parents d5281b5 + 980f33b commit 6d50453
Show file tree
Hide file tree
Showing 37 changed files with 3,695 additions and 5,186 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@

> Decentralized staking and asset management
- [About](#about)
- [💻 Development](#-development)
- [Prerequisites](#prerequisites)
- [Setup](#setup)
- [Install](#install)
- [Environment](#environment)
- [Supported Variables](#supported-variables)
- [Apps](#apps)
- [Contracts](#contracts)
- [Emulators](#emulators)
- [📊 Data](#-data)
- [Layout](#layout)
- [Editor](#editor)
- [License](#license)

## About

Casimir is a complete platform that allows users to monitor, move, and stake their assets while holding their own keys. With Casimir staking, users can easily and securely move funds in and out of decentralized staking pools that are operated by high-performing validators.
Expand Down
11 changes: 11 additions & 0 deletions apps/web/public/trustwallet.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 10 additions & 1 deletion apps/web/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
<script lang="ts" setup>
import { RouterView } from 'vue-router'
import DefaultLayout from '@/layouts/default-layout.vue'
import useTxData from '@/mockData/mock_transaction_data'
import { onMounted } from 'vue'
import useUsers from '@/composables/users'
const { mockData } = useTxData()
// Need this to fix initilizing bug between user.ts and ssv.ts
const { user } = useUsers()
onMounted(() => {
mockData()
})
</script>

<template>
Expand Down
Loading

0 comments on commit 6d50453

Please sign in to comment.