-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Revert "Merge pull request #164 from lidofinance/feat/deposit…
…or-rework"" This reverts commit 0e52d3f.
- Loading branch information
Showing
87 changed files
with
6,773 additions
and
1,993 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
WEB3_RPC_ENDPOINTS=https://goerli.infura.io/v3/<key> | ||
|
||
# Account private key | ||
# Publicity known private key. Generated with `test test ... test` mnemonic. | ||
WALLET_PRIVATE_KEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 | ||
|
||
# App specific | ||
# LIDO_LOCATOR ADDRESS | ||
# Mainnet: 0xC1d0b3DE6792Bf6b4b37EccdcC24e45978Cfd2Eb | ||
# Görli: 0x1eDf09b5023DC86737b59dE68a8130De878984f5 | ||
LIDO_LOCATOR=0x1eDf09b5023DC86737b59dE68a8130De878984f5 | ||
|
||
# DEPOSIT_CONTRACT ADDRESS | ||
# Mainnet: 0x00000000219ab540356cBB839Cbe05303d7705Fa | ||
# Görli: 0xff50ed3d0ec03aC01D4C79aAd74928BFF48a7b2b | ||
DEPOSIT_CONTRACT=0xff50ed3d0ec03aC01D4C79aAd74928BFF48a7b2b | ||
|
||
# rabbit / kafka / rabbit,kafka | ||
MESSAGE_TRANSPORTS=rabbit | ||
|
||
# rabbit secrets | ||
RABBIT_MQ_URL=ws://127.0.0.1:15674/ws | ||
RABBIT_MQ_USERNAME=guest | ||
RABBIT_MQ_PASSWORD=guest | ||
|
||
# Transactions settings | ||
CREATE_TRANSACTIONS=true | ||
|
||
# FLASHBOTS_RPC URL | ||
# Mainnet: "https://relay.flashbots.net", | ||
# Görli: "https://relay-goerli.flashbots.net", | ||
FLASHBOTS_RPC=https://relay-goerli.flashbots.net | ||
FLASHBOT_SIGNATURE=0xbb0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ffaa |
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 |
---|---|---|
|
@@ -137,3 +137,5 @@ debug.log | |
|
||
#cache | ||
deposit_contract_cache/ | ||
|
||
node_modules/ |
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 @@ | ||
/** @type import('hardhat/config').HardhatUserConfig */ | ||
module.exports = { | ||
solidity: "0.8.19", | ||
networks: { | ||
hardhat: { | ||
mining: { | ||
auto: true, | ||
interval: 12000 | ||
} | ||
} | ||
}, | ||
localhost: { | ||
timeout: 100_000 | ||
}, | ||
}; |
Oops, something went wrong.