generated from foundry-rs/forge-template
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* code style + bugfix * update snapshot * linter * rename function * reduce update interval for reserves to 12h * Update upgradeProtocol script * smoothing commitment fix * integrate pufETH * Validator Tickets (#159) * erc20 permit vt * add vt functionality and forge fmt * make mint function pausable * cleanup comments --------- Co-authored-by: shcyster <[email protected]> * add VT to the protocol * add burn * VT refactoring in progress * ci * submodule update * update branch * wip * more refactoring * remove 2 unused pools * refactor validator registration, deployment scripts * upscale the amounts for VT * PufferProtocol weight loss * PR comments * public access for some restricted functions * slither false positives * VT Accounting (#166) * vt accounting * update retrieveBond * add todo comments * VT Alternative (#167) * alternative code * penalize cancel and skip provisioning * Descriptions, todos * add stop validator virtual VTs * add virtual VT balance * rename variables, cleanup * rename variable, add assertion * PR changes * more comments * Guardian Sig to Include VT Burn Offset (#169) * add double deposit test * test double deposit alice for bob * update guardian signature to include vt burn offset * update function param comments --------- Co-authored-by: Cheyenne Atapour <[email protected]> * Proof of Rewards Interface Change (#164) * fix proof of rewards interface * fix signatures * update selectors --------- Co-authored-by: Benjamin <[email protected]> * update submodule * formatting, solhint * update submodule * change submodule to use https * Bugfix retreive bond (#170) * fix slither error * update setup access * refactor to use struct * update redemption logic * add comments, refactor burning * ci update * ci fix --------- Co-authored-by: Cheyenne Atapour <[email protected]> Co-authored-by: shcyster <[email protected]>
- Loading branch information
1 parent
f689a4e
commit fceda44
Showing
57 changed files
with
3,368 additions
and
2,985 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,10 @@ jobs: | |
tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: ${{ secrets.SSH_KEY_PUF }} | ||
|
||
- uses: actions/checkout@v4 | ||
|
||
- name: Install Foundry | ||
|
@@ -29,17 +33,19 @@ jobs: | |
slither: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: ${{ secrets.SSH_KEY_PUF }} | ||
|
||
- uses: actions/checkout@v4 | ||
|
||
- uses: crytic/[email protected] | ||
with: | ||
node-version: 16 | ||
|
||
solhint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v3 | ||
- uses: actions/setup-node@v4 | ||
- name: Install solhint | ||
run: npm i -g solhint | ||
- name: Run solhint | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
{ | ||
"": "", | ||
"enclaveVerifier": "0xd60DeE1b240f14A4bd22aeA4363D08FA6dA40F25", | ||
"guardianModule": "0xf55C5aa17a2a985316639882F3735Ee103737da5", | ||
"guardians": "0x76d1b66f91044A909C7A3BB834bd302840cd3E4a", | ||
"safeImplementation": "0xc54e6F16A1940d000C6ADEE341D11570490a86F6", | ||
"safeProxyFactory": "0xE25E53220Df33D41b0422FeDBD2D23A94045cFf3" | ||
"PufferDepositor": "0x4E166a233cEeb916B4539afC7922fd8622716552", | ||
"PufferDepositorImplementation": "0x82e01223d51Eb87e16A03E24687EDF0F294da6f1", | ||
"PufferProtocol": "0x9E545E3C0baAB3E08CdfD552C960A1050f373042", | ||
"PufferProtocolImplementation": "0xf5059a5D33d5853360D16C683c16e67980206f36", | ||
"PufferVault": "0x8411199Ce709DD578a946c09136b7e6b7Fe55824", | ||
"PufferVaultImplementation": "0xCD8a1C3ba11CF5ECfa6267617243239504a98d90", | ||
"accessManager": "0x0E801D84Fa97b50751Dbf25036d067dCf18858bF", | ||
"enclaveVerifier": "0xc351628EB244ec633d5f21fBD6621e1a683B1181", | ||
"guardianModule": "0xFD471836031dc5108809D173A067e8486B9047A3", | ||
"moduleBeacon": "0x1613beB3B2C4f22Ee086B2b38C1476A3cE7f78E8", | ||
"moduleFactory": "0x851356ae760d987E095750cCeb3bC6014560891C", | ||
"noRestakingModule": "0x998abeb3E57409262aE5b751f60747921B33613E" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
{ | ||
"": "", | ||
"PufferProtocol": "0x773559Ee80eDE685FBBd5F0Ebd60608DF51b777D", | ||
"PufferProtocolImplementation": "0xE6D876EA7c4B41a2c86DFAFb2E162c686CC95Fb5", | ||
"accessManager": "0x482CDc9277Ae7d4636c0EbA7342C8d440fE7E442", | ||
"enclaveVerifier": "0xB3fAb5f8FDce34FeEf691ccCE6ed20E6b3a0B6fB", | ||
"guardianModule": "0xd4c8730F555F9E9d969BC37280805104c1B039A1", | ||
"moduleBeacon": "0x1BB06aA4c8C8627adb352Dd8C01E38c0482C1c6A", | ||
"moduleFactory": "0x5cd853e676BC218Ec78e4CB904b7dF58db50b8e4", | ||
"noRestakingModule": "0x49CE199bbA75926ab5C6fc16fEDD11d418cB2EDf", | ||
"pauser": "0xeb1D5EE982DbEFf6E57e5Ca3CA45F35bBE229FFE", | ||
"pufferPool": "0xfE7e307d24cB0953b4b5A71E780d6f622525638c", | ||
"withdrawalPool": "0xDAb95f41709473d55EBF7c3b5873b96149A14353" | ||
"PufferDepositor": "0x4E166a233cEeb916B4539afC7922fd8622716552", | ||
"PufferDepositorImplementation": "0x82e01223d51Eb87e16A03E24687EDF0F294da6f1", | ||
"PufferProtocol": "0x8198f5d8F8CfFE8f9C413d98a0A55aEB8ab9FbB7", | ||
"PufferProtocolImplementation": "0x172076E0166D1F9Cc711C77Adf8488051744980C", | ||
"PufferVault": "0x8411199Ce709DD578a946c09136b7e6b7Fe55824", | ||
"PufferVaultImplementation": "0xCD8a1C3ba11CF5ECfa6267617243239504a98d90", | ||
"accessManager": "0x0E801D84Fa97b50751Dbf25036d067dCf18858bF", | ||
"enclaveVerifier": "0xc351628EB244ec633d5f21fBD6621e1a683B1181", | ||
"guardianModule": "0xFD471836031dc5108809D173A067e8486B9047A3", | ||
"moduleBeacon": "0x202CCe504e04bEd6fC0521238dDf04Bc9E8E15aB", | ||
"moduleFactory": "0xf4B146FbA71F41E0592668ffbF264F1D186b2Ca8", | ||
"noRestakingModule": "0xBEc49fA140aCaA83533fB00A2BB19bDdd0290f25" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.