Skip to content

Commit

Permalink
Run small npm audit
Browse files Browse the repository at this point in the history
  • Loading branch information
shanejearley committed Dec 19, 2023
1 parent c660b21 commit 3eb8bd5
Show file tree
Hide file tree
Showing 9 changed files with 3,381 additions and 4,153 deletions.
2 changes: 1 addition & 1 deletion apps/docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default withMermaid({
items: [
{ text: 'What is Casimir?', link: '/introduction/what-is-casimir' },
{ text: 'Architecture', link: '/introduction/architecture' },
{ text: 'Staking Strategies', link: '/introduction/staking-strategies' },
{ text: 'Stake Configs', link: '/introduction/stake-configs' },
{ text: 'User Accounts', link: '/introduction/user-accounts' }
]
},
Expand Down
7 changes: 7 additions & 0 deletions apps/docs/src/introduction/stake-configs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
::: warning
This page is incomplete.
:::

# Stake Configs

The simple stake config provides secure and reliable native ETH rewards from an open registry of performant SSV operators. Casimir will deploy additonal stake configs with different registry requirements and opt-in features for stakers and operators. Our simple restake config will allow stakers and operators to participate in creating and managing native EigenLayer pods with less (or more) than 32 ETH.
7 changes: 0 additions & 7 deletions apps/docs/src/introduction/stake-configurations.md

This file was deleted.

2 changes: 1 addition & 1 deletion apps/mvp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"vue": "^3.3.13",
"vue-feather": "^2.0.0",
"vue-router": "^4.2.5",
"web3": "^1.8.1"
"web3": "^4.3.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
Expand Down
19 changes: 8 additions & 11 deletions apps/www/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,27 @@ import vue from "@vitejs/plugin-vue"
import { defineConfig } from "vite"
import { fileURLToPath } from "url"
import * as path from "path"
import Markdown from "vite-plugin-vue-markdown"

export default defineConfig({
server: { port: 3002 },
plugins: [
vue({
include: [/\.vue$/, /\.md$/],
}), Markdown(),
],
plugins: [vue()],
define: {
global: "globalThis",
global: "globalThis"
},
resolve: {
alias: {
"@": path.resolve(path.dirname(fileURLToPath(import.meta.url)), "src"),
"./runtimeConfig": "./runtimeConfig.browser",
"./runtimeConfig": "./runtimeConfig.browser"
},
extensions: [".js",
extensions: [
".js",
".json",
".jsx",
".mjs",
".ts",
".tsx",
".vue"],
".vue"
]
},
envPrefix: "PUBLIC_",
envPrefix: "PUBLIC_"
})
2 changes: 1 addition & 1 deletion common/wallets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"dependencies": {
"@ledgerhq/hw-app-btc": "^9.1.2",
"@ledgerhq/hw-app-eth": "6.30.4",
"@ledgerhq/hw-app-eth": "^6.35.1",
"@ledgerhq/hw-transport": "^6.27.10",
"@ledgerhq/hw-transport-webusb": "^6.27.10",
"@trezor/connect-web": "^9.0.3",
Expand Down
Loading

0 comments on commit 3eb8bd5

Please sign in to comment.