-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #283 from dappnode/mateu/integrate-smooth-fr-changes
Integrate Smooth Fee recipient changes
- Loading branch information
Showing
7 changed files
with
567 additions
and
89 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 |
---|---|---|
@@ -1,5 +1,15 @@ | ||
export const burnAddress = "0x0000000000000000000000000000000000000000"; | ||
export const BURN_ADDRESS = "0x0000000000000000000000000000000000000000"; | ||
|
||
//Rocket Pool Fee Recipient depends on the network (mainnet, goerli) | ||
// Rocket Pool Fee Recipient is the same for both networks (mainnet and prater) | ||
export const rocketPoolFeeRecipient = | ||
"0xd4E96eF8eee8678dBFf4d535E033Ed1a4F7605b7"; | ||
|
||
export const ROCKET_POOL_FEE_RECIPIENT = | ||
"0xd4E96eF8eee8678dBFf4d535E033Ed1a4F7605b7" as const; | ||
|
||
export const MEV_SP_ADDRESS_PRATER = | ||
"0xF21fbbA423f3a893A2402d68240B219308AbCA46" as const; | ||
|
||
// TODO: Put the mainnet address here | ||
export const MEV_SP_ADDRESS_MAINNET = | ||
"0xAdFb8D27671F14f297eE94135e266aAFf8752e35" as const; |
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.