Skip to content

Commit 393d396

Browse files
authored
feat: handle mint op for user deposit tx (#25)
* feat: handle mint op for user deposit tx Signed-off-by: Jingfu Wang <[email protected]> * fix: mint logic for deposit Signed-off-by: Jingfu Wang <[email protected]> * refactor: update short circuit evaluation Signed-off-by: Jingfu Wang <[email protected]> --------- Signed-off-by: Jingfu Wang <[email protected]>
1 parent fa0077f commit 393d396

File tree

6 files changed

+30
-32
lines changed

6 files changed

+30
-32
lines changed

Makefile

-1
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,3 @@ run:
5050
# Run tests
5151
test:
5252
go test -v ./...
53-

pkg/client/client_ops.go

+2-27
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
package client
22

33
import (
4-
"strings"
5-
64
evmClient "github.com/coinbase/rosetta-geth-sdk/client"
7-
sdkTypes "github.com/coinbase/rosetta-geth-sdk/types"
85
RosettaTypes "github.com/coinbase/rosetta-sdk-go/types"
96
"github.com/mdehoog/op-rosetta/pkg/handlers"
107
)
@@ -17,36 +14,14 @@ func (c *OpClient) ParseOps(
1714
) ([]*RosettaTypes.Operation, error) {
1815
var ops []*RosettaTypes.Operation
1916

20-
if tx.Receipt.Type == L1ToL2DepositType && len(tx.Trace) > 0 {
21-
call := tx.Trace[0]
22-
fromAddress := evmClient.MustChecksum(call.From.String())
23-
toAddress := evmClient.MustChecksum(call.To.String())
24-
25-
if fromAddress != toAddress {
26-
feeOps, err := handlers.FeeOps(tx)
27-
if err != nil {
28-
return nil, err
29-
}
30-
ops = append(ops, feeOps...)
31-
}
32-
33-
opIndex := int64(len(ops) + 0)
34-
opType := strings.ToUpper(call.Type)
35-
opStatus := sdkTypes.SuccessStatus
36-
toAmount := evmClient.Amount(call.Value, sdkTypes.Currency)
37-
38-
toOp := handlers.GenerateOp(opIndex, nil, opType, opStatus, toAddress, toAmount, nil)
39-
ops = append(ops, toOp)
40-
return ops, nil
41-
}
42-
4317
feeOps, err := handlers.FeeOps(tx)
4418
if err != nil {
4519
return nil, err
4620
}
4721
ops = append(ops, feeOps...)
4822

49-
// ops = append(ops, handlers.MintOps(tx, len(ops))...)
23+
ops = append(ops, handlers.MintOps(tx, len(ops))...)
24+
// TODO(Jingfu): handle burn operations
5025
// ops = append(ops, handlers.BurnOps(tx, len(ops))...)
5126
ops = append(ops, handlers.TraceOps(tx.Trace, len(ops))...)
5227

pkg/handlers/fee.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,13 @@ func FeeOps(tx *evmClient.LoadedTransaction) ([]*RosettaTypes.Operation, error)
2323
}
2424

2525
sequencerFeeAmount := new(big.Int).Set(tx.FeeAmount)
26+
L1Fee := big.NewInt(0)
2627
if tx.FeeBurned != nil {
2728
sequencerFeeAmount.Sub(sequencerFeeAmount, tx.FeeBurned)
2829
}
2930
if receipt.L1Fee != nil {
30-
sequencerFeeAmount.Sub(sequencerFeeAmount, receipt.L1Fee)
31+
L1Fee = receipt.L1Fee
32+
sequencerFeeAmount.Sub(sequencerFeeAmount, L1Fee)
3133
}
3234
if sequencerFeeAmount == nil {
3335
return nil, nil
@@ -62,7 +64,7 @@ func FeeOps(tx *evmClient.LoadedTransaction) ([]*RosettaTypes.Operation, error)
6264
},
6365
}
6466
L1FeeVaultAddress := common.L1FeeVault.Hex()
65-
L1FeeVaultAmount := evmClient.Amount(receipt.L1Fee, sdkTypes.Currency)
67+
L1FeeVaultAmount := evmClient.Amount(L1Fee, sdkTypes.Currency)
6668

6769
ops := []*RosettaTypes.Operation{
6870
GenerateOp(0, nil, opType, opStatus, fromAddress, fromAmount, nil),

pkg/handlers/mint.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ func MintOps(tx *evmClient.LoadedTransaction, startIndex int) []*RosettaTypes.Op
1616
opIndex := int64(startIndex)
1717
opType := common.MintOpType
1818
opStatus := sdkTypes.SuccessStatus
19-
toAddress := evmClient.MustChecksum(tx.Transaction.To().String())
19+
fromAddress := evmClient.MustChecksum(tx.From.String())
2020
amount := evmClient.Amount(tx.Transaction.Mint(), sdkTypes.Currency)
2121

2222
return []*RosettaTypes.Operation{
23-
GenerateOp(opIndex, nil, opType, opStatus, toAddress, amount, nil),
23+
GenerateOp(opIndex, nil, opType, opStatus, fromAddress, amount, nil),
2424
}
2525
}

pkg/handlers/trace.go

+3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ func TraceOps(
2424
opType := strings.ToUpper(call.Type)
2525
fromAddress := evmClient.MustChecksum(call.From.String())
2626
toAddress := evmClient.MustChecksum(call.To.String())
27+
if strings.Contains(fromAddress, proxyContractFilter) && isIdenticalContractAddress(fromAddress, toAddress) {
28+
toAddress = fromAddress
29+
}
2730
value := call.Value
2831
metadata := map[string]interface{}{}
2932

pkg/handlers/utils.go

+19
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
package handlers
22

33
import (
4+
"strings"
5+
46
"github.com/coinbase/rosetta-sdk-go/types"
57
)
68

9+
const (
10+
proxyContractFilter = "0x420000000000000000000000000000000000"
11+
implementationContractFilter = "0xc0d3c0d3c0d3c0d3c0d3c0d3c0d3c0d3c0d3"
12+
)
13+
714
func GenerateOp(opIndex int64, relatedOps []*types.OperationIdentifier, opType string, opStatus string, address string, amount *types.Amount, metadata map[string]interface{}) *types.Operation {
815
return &types.Operation{
916
OperationIdentifier: &types.OperationIdentifier{
@@ -19,3 +26,15 @@ func GenerateOp(opIndex int64, relatedOps []*types.OperationIdentifier, opType s
1926
Metadata: metadata,
2027
}
2128
}
29+
30+
func isIdenticalContractAddress(from string, to string) bool {
31+
from = strings.ToLower(from)
32+
to = strings.ToLower(to)
33+
proxyContractIndex := from[len(proxyContractFilter):]
34+
implementationContractIndex := to[len(implementationContractFilter):]
35+
if strings.Contains(from, proxyContractFilter) && strings.Contains(to, implementationContractFilter) && proxyContractIndex == implementationContractIndex {
36+
return true
37+
}
38+
39+
return false
40+
}

0 commit comments

Comments
 (0)