Skip to content

Commit 42fe024

Browse files
committed
Merge branch 'develop' into feat/consolidation
2 parents 56e8aa7 + 3de48d3 commit 42fe024

File tree

91 files changed

+5430
-3849
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+5430
-3849
lines changed

.env.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Contract addresses
2-
DEPLOYED=deployed-hoodi-vaults-testnet-2.json
2+
DEPLOYED=deployed-hoodi-vaults.json
33

44
# Private key for account
55
PRIVATE_KEY=0x

.github/workflows/publish-alpha.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99

1010
jobs:
1111
pre-publish:
12-
if: github.ref == 'refs/heads/develop'
12+
if: github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/testnet-2' || github.ref == 'refs/heads/testnet-3'
1313
uses: ./.github/workflows/publish-dry-run.yml
1414
secrets:
1515
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
environment: development
2020
# restricts job to develop branch
21-
if: github.ref == 'refs/heads/develop'
21+
if: github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/testnet-2' || github.ref == 'refs/heads/testnet-3'
2222
steps:
2323
- name: Checkout repo
2424
uses: actions/checkout@v5
@@ -30,7 +30,7 @@ jobs:
3030
uses: actions/setup-node@v4
3131
with:
3232
node-version: 20
33-
cache: "yarn"
33+
cache: 'yarn'
3434

3535
- name: Install dependencies
3636
run: yarn --immutable

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 Lido
3+
Copyright (c) 2025 Lido
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ CL_URL=url
4747
EL_URL=url
4848
4949
# Contract addresses
50-
DEPLOYED=deployed-hoodi-vaults-testnet-2.json // required
50+
DEPLOYED=deployed-hoodi-vaults.json // required
5151
5252
# Wallet
5353
PRIVATE_KEY=0x

abi/AccessControlConfirmable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ export const AccessControlConfirmableAbi = [
122122
{
123123
indexed: true,
124124
internalType: 'bytes32',
125-
name: 'role',
125+
name: 'roleOrAddress',
126126
type: 'bytes32',
127127
},
128128
{

0 commit comments

Comments
 (0)