Skip to content

Commit

Permalink
Merge branch 'main' into mohsen-feature-generate-shares-using-ssvkeys
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohsen-T authored Nov 8, 2023
2 parents f74b717 + 0ab954e commit 3137476
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 1 deletion.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,14 @@ We love to receive feedback and input from the community, so if you found a pote
### Suggest improvements

Do you think some things could be done better in the repo or have new ideas?
**Open an issue** in the repo and share it in the `#dev-support channel`.
**Open an issue** in the repo and share it in the `#dev-support channel`.

## Bug Bounty Program

SSV Network is committed to ensuring the security of our smart contracts. We've partnered with [Immunefi](https://immunefi.com/) to host a dedicated bug bounty program.

If you believe you've identified a vulnerability in our smart contracts, we encourage you to report it via our [Immunefi Bug Bounty page](https://immunefi.com/bounty/ssvnetwork/). All submissions and communications regarding vulnerabilities will be managed by the Immunefi team.

Visit our [bounty page](https://immunefi.com/bounty/ssvnetwork/) to get detailed information on the types of vulnerabilities we're interested in, potential reward amounts, and the guidelines for participation.

Please note: Failing to abide by the participation guidelines may result in disqualification from the program and forfeiture of potential rewards.
Binary file not shown.
Binary file added contracts/audits/2023-30-10_Quantstamp_v1.0.0.pdf
Binary file not shown.
21 changes: 21 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,27 @@ if (process.env.HOLESKY_ETH_NODE_URL) {
};
}

if (process.env.HOLESKY_ETH_NODE_URL) {
const sharedConfig = {
url: process.env.HOLESKY_ETH_NODE_URL,
accounts: [`0x${process.env.HOLESKY_OWNER_PRIVATE_KEY}`],
gasPrice: +(process.env.GAS_PRICE || ''),
gas: +(process.env.GAS || ''),
};
//@ts-ignore
config.networks = {
...config.networks,
holesky_development: {
...sharedConfig,
ssvToken: '0x68A8DDD7a59A900E0657e9f8bbE02B70c947f25F'
} as SSVNetworkConfig,
holesky_testnet: {
...sharedConfig,
ssvToken: '0xad45A78180961079BFaeEe349704F411dfF947C6'
} as SSVNetworkConfig,
}
}

if (process.env.MAINNET_ETH_NODE_URL) {
//@ts-ignore
config.networks = {
Expand Down

0 comments on commit 3137476

Please sign in to comment.