Installation
- Wallet on the Goerli testnet funded with sufficient GoETH for transaction gas fees
- Execution layer node end-point
- Reliable internet connection
git clone https://github.com/bloxapp/ssv-liquidator.git
cd ssv-liquidator
yarn install
yarn cli --help
This installation requires NodeJS on your machine.
Parameter | Description |
---|---|
--node-url | Ethereum node end-point |
--private-key | Private key of the liquidator's wallet |
--ssv-token-address | |
--ssv-contract-address | |
--gas-price | Gas price heuristic according to the median gas price suggested by web3 gas price oracle:
|
The liquidator node could be initiated with arguments in the
yarn cli
command or by using the .env variables.CLI
.ENV variables
yarn cli --node-url <ETH1 NODE URL> --private-key <LIQUIDATOR WALLET ADDRESS PK> --ssv-token-address <SSV NETWORK CONTRACT> --ssv-contract-address <SSV CONTRACT ADDRESS> --gas-price <PREFFERED GAS PRICE>
NODE_URL=<ETH1 NODE URL>
SSV_NETWORK_ADDRESS=<SSV NETWORK CONTRACT>
SSV_TOKEN_ADDRESS=0x425890f2a5g84hw94
ACCOUNT_PRIVATE_KEY=<LIQUIDATOR WALLET ADDRESS PK>
GAS_PRICE=<PREFFERED GAS PRICE>
Last modified 7mo ago