-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/PartyDAO/party-protocol int…
…o chore/validate-deploy-addresses
- Loading branch information
Showing
15 changed files
with
1,463 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -151,14 +151,14 @@ The following are known and are _not_ eligible for a bug bounty: | |
|
||
The rubric we use to determine bug bounties is as follows: | ||
|
||
| **Level** | **Example** | **Maximum Bug Bounty** | | ||
| ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ---------------------- | | ||
| 6. Critical | - Draining or freezing of holdings protocol-wide (e.g. draining token distributor, economic attacks, reentrancy, MEV, logic errors) | Let's talk | | ||
| 5. Severe | - Contracts with balances can be exploited to steal holdings under specific conditions (e.g. bypass guardrails to transfer precious NFT from parties, user can steal their party's distribution) | Up to 25 ETH | | ||
| 4. High | - Contracts temporarily unable to transfer holdings<br>- Users spoof each other | Up to 10 ETH | | ||
| 3. Medium | - Contract consumes unbounded gas<br>- Griefing, denial of service (i.e. attacker spends as much in gas as damage to the contract) | Up to 5 ETH | | ||
| 2. Low | - Contract fails to behave as expected, but doesn't lose value | Up to 1 ETH | | ||
| 1. None | - Best practices | | | ||
| **Level** | **Example** | **Maximum Bug Bounty** | | ||
| ----------- | --------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- | | ||
| 6. Critical | - Draining or freezing of holdings protocol-wide (e.g. draining token distributor, economic attacks, reentrancy, MEV, logic errors) | Let's talk | | ||
| 5. Severe | - Contracts with balances can be exploited to steal holdings under specific conditions (e.g. user can steal their party's distribution) | Up to 25 ETH | | ||
| 4. High | - Contracts temporarily unable to transfer holdings<br>- Users spoof each other | Up to 10 ETH | | ||
| 3. Medium | - Contract consumes unbounded gas<br>- Griefing, denial of service (i.e. attacker spends as much in gas as damage to the contract) | Up to 5 ETH | | ||
| 2. Low | - Contract fails to behave as expected, but doesn't lose value | Up to 1 ETH | | ||
| 1. None | - Best practices | | | ||
|
||
Any vulnerability or bug discovered must be reported only to the following email: [[email protected]](mailto:[email protected]). | ||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
pragma solidity ^0.8; | ||
|
||
import "./Deploy.s.sol"; | ||
import "./LibDeployConstants.sol"; | ||
|
||
contract ZoraDeploy is DeployScript { | ||
function _run() internal override { | ||
console.log("Starting zora deploy script."); | ||
|
||
deploy(LibDeployConstants.zora()); | ||
|
||
console.log("Ending zora deploy script."); | ||
} | ||
} |
Submodule party-addresses
updated
61 files
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.