Every hour FTX airdrops SRM staking rewards on people staking directly from their FTX account. However, there is no option to automatically compound these tokens.
This repository allows you to automatically stake your staking rewards every hour. The code is available in Go and Python.
Serum is the world's first completely decentralized derivatives exchange with trustless cross-chain trading brought to you by Project Serum, in collaboration with a consortium of crypto trading and DeFi experts.-
To find more information about Project Serum: https://projectserum.com
-
To find more information about SRM staking: https://projectserum.com/staking-voting
-
SRM can be staked directly on FTX: https://ftx.com/staking
If you are using Python enter your API credentials in settings.py
API = ''
SECRET = ''
SUBACCOUNT = None
Subaccount can stay None
if you are going to use your main account.
If you are using Go enter your API credentials in settings.go
package main
const API = ""
const SECRET = ""
const SUBACCOUNT = "" // Leave blank if using the main account
Subaccount can stay ""
if you are going to use your main account.
The app is available in Go and Python, both can be deployed with Docker
docker build -t user/stake_srm_go .
docker run -d --restart always user/stake_srm_go:latest
docker build -t user/stake_srm_python .
docker run -d --restart always user/stake_srm_python:latest