Skip to content

Commit

Permalink
Merge branch 'master' into feat/consensys-proxyless-deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
0xvv authored Feb 19, 2024
2 parents c0cab5a + 20438fc commit 09ac9a4
Show file tree
Hide file tree
Showing 14 changed files with 5,614 additions and 0 deletions.
8 changes: 8 additions & 0 deletions deploy/2_deploy_staking_contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ const getMaxFeeBps = (network: string): number => {
switch (network) {
case "goerli_consensys":
return 5000;
case "goerli_consensys_dev":
return 5000;
case "goerli_vault":
return 5000;
case "goerli_live":
Expand All @@ -28,6 +30,8 @@ const getMaxOperatorFeeBps = (network: string): number => {
switch (network) {
case "goerli_consensys":
return 5000;
case "goerli_consensys_dev":
return 5000;
case "goerli_vault":
return 5000;
case "goerli_live":
Expand All @@ -49,6 +53,8 @@ const getFeeBps = (network: string): number => {
switch (network) {
case "goerli_consensys":
return 500;
case "goerli_consensys_dev":
return 500;
case "goerli_vault":
return 700;
case "goerli_live":
Expand All @@ -70,6 +76,8 @@ const getOperatorFeeBps = (network: string): number => {
switch (network) {
case "goerli_consensys":
return 500;
case "goerli_consensys_dev":
return 500;
case "goerli_vault":
return 0;
case "goerli_live":
Expand Down
1 change: 1 addition & 0 deletions deployments/goerli_consensys_dev/.chainId
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5
Loading

0 comments on commit 09ac9a4

Please sign in to comment.