-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.go
38 lines (32 loc) · 1.11 KB
/
plugin.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package main
import (
"context"
"encoding/json"
"fmt"
sdk "github.com/cosmos/cosmos-sdk/types"
abci "github.com/tendermint/tendermint/abci/types"
)
type Handler struct {
lastBlockHeight int64
}
func (h *Handler) Handle(ctx sdk.Context, req *abci.RequestPrepareProposal) (*abci.ResponsePrepareProposal, error) {
ctx.Logger().Info(fmt.Sprintf("Handling MEV for block %d with %d transactions. Last height is %d", req.Height, len(req.Txs), h.lastBlockHeight))
h.lastBlockHeight = req.Height
txRecords := make([]*abci.TxRecord, 0, len(req.Txs))
for _, tx := range req.Txs {
txRecords = append(txRecords, &abci.TxRecord{Action: abci.TxRecord_UNMODIFIED, Tx: tx})
}
return &abci.ResponsePrepareProposal{
TxRecords: txRecords,
}, nil
}
func (h *Handler) RPCSubmission(ctx context.Context, req json.RawMessage) (res json.RawMessage, err error) {
mapReq := map[string]interface{}{}
if err := json.Unmarshal(req, &mapReq); err != nil {
return nil, err
}
fmt.Printf("MEV RPC submission received %s\n", mapReq)
mapRes := map[string]interface{}{"success": true}
return json.Marshal(mapRes)
}
var HandlerInstance = Handler{}