You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123 lines
4.0 KiB
123 lines
4.0 KiB
package services
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/coinbase/rosetta-sdk-go/types"
|
|
"github.com/pkg/errors"
|
|
|
|
hmyTypes "github.com/harmony-one/harmony/core/types"
|
|
"github.com/harmony-one/harmony/rosetta/common"
|
|
)
|
|
|
|
// ConstructionParse implements the /construction/parse endpoint.
|
|
func (s *ConstructAPI) ConstructionParse(
|
|
ctx context.Context, request *types.ConstructionParseRequest,
|
|
) (*types.ConstructionParseResponse, *types.Error) {
|
|
if err := assertValidNetworkIdentifier(request.NetworkIdentifier, s.hmy.ShardID); err != nil {
|
|
return nil, err
|
|
}
|
|
wrappedTransaction, tx, rosettaError := unpackWrappedTransactionFromString(request.Transaction)
|
|
if rosettaError != nil {
|
|
return nil, rosettaError
|
|
}
|
|
if tx.ShardID() != s.hmy.ShardID {
|
|
return nil, common.NewError(common.InvalidTransactionConstructionError, map[string]interface{}{
|
|
"message": fmt.Sprintf("transaction is for shard %v != shard %v", tx.ShardID(), s.hmy.ShardID),
|
|
})
|
|
}
|
|
if request.Signed {
|
|
return parseSignedTransaction(ctx, wrappedTransaction, tx)
|
|
}
|
|
return parseUnsignedTransaction(ctx, wrappedTransaction, tx)
|
|
}
|
|
|
|
// parseUnsignedTransaction ..
|
|
func parseUnsignedTransaction(
|
|
ctx context.Context, wrappedTransaction *WrappedTransaction, tx hmyTypes.PoolTransaction,
|
|
) (*types.ConstructionParseResponse, *types.Error) {
|
|
if wrappedTransaction == nil || tx == nil {
|
|
return nil, common.NewError(common.CatchAllError, map[string]interface{}{
|
|
"message": "nil wrapped transaction or unwrapped transaction",
|
|
})
|
|
}
|
|
|
|
if _, err := getAddress(wrappedTransaction.From); err != nil {
|
|
return nil, common.NewError(common.InvalidTransactionConstructionError, map[string]interface{}{
|
|
"message": err.Error(),
|
|
})
|
|
}
|
|
|
|
// TODO (dm): implement intended receipt for staking transactions
|
|
intendedReceipt := &hmyTypes.Receipt{
|
|
GasUsed: tx.Gas(),
|
|
}
|
|
formattedTx, rosettaError := FormatTransaction(tx, intendedReceipt, wrappedTransaction.ContractCode)
|
|
if rosettaError != nil {
|
|
return nil, rosettaError
|
|
}
|
|
tempAccID, rosettaError := newAccountIdentifier(FormatDefaultSenderAddress)
|
|
if rosettaError != nil {
|
|
return nil, rosettaError
|
|
}
|
|
foundSender := false
|
|
operations := formattedTx.Operations
|
|
for _, op := range operations {
|
|
if op.Account.Address == tempAccID.Address {
|
|
foundSender = true
|
|
op.Account = wrappedTransaction.From
|
|
}
|
|
op.Status = ""
|
|
}
|
|
if !foundSender {
|
|
return nil, common.NewError(common.CatchAllError, map[string]interface{}{
|
|
"message": "temp sender not found in transaction operations",
|
|
})
|
|
}
|
|
return &types.ConstructionParseResponse{
|
|
Operations: operations,
|
|
}, nil
|
|
}
|
|
|
|
// parseSignedTransaction ..
|
|
func parseSignedTransaction(
|
|
ctx context.Context, wrappedTransaction *WrappedTransaction, tx hmyTypes.PoolTransaction,
|
|
) (*types.ConstructionParseResponse, *types.Error) {
|
|
if wrappedTransaction == nil || tx == nil {
|
|
return nil, common.NewError(common.CatchAllError, map[string]interface{}{
|
|
"message": "nil wrapped transaction or unwrapped transaction",
|
|
})
|
|
}
|
|
|
|
// TODO (dm): implement intended receipt for staking transactions
|
|
intendedReceipt := &hmyTypes.Receipt{
|
|
GasUsed: tx.Gas(),
|
|
}
|
|
formattedTx, rosettaError := FormatTransaction(tx, intendedReceipt, wrappedTransaction.ContractCode)
|
|
if rosettaError != nil {
|
|
return nil, rosettaError
|
|
}
|
|
sender, err := tx.SenderAddress()
|
|
if err != nil {
|
|
return nil, common.NewError(common.InvalidTransactionConstructionError, map[string]interface{}{
|
|
"message": errors.WithMessage(err, "unable to get sender address for signed transaction").Error(),
|
|
})
|
|
}
|
|
senderID, rosettaError := newAccountIdentifier(sender)
|
|
if rosettaError != nil {
|
|
return nil, rosettaError
|
|
}
|
|
if senderID.Address != wrappedTransaction.From.Address {
|
|
return nil, common.NewError(common.InvalidTransactionConstructionError, map[string]interface{}{
|
|
"message": "wrapped transaction sender/from does not match transaction signer",
|
|
})
|
|
}
|
|
for _, op := range formattedTx.Operations {
|
|
op.Status = ""
|
|
}
|
|
return &types.ConstructionParseResponse{
|
|
Operations: formattedTx.Operations,
|
|
AccountIdentifierSigners: []*types.AccountIdentifier{senderID},
|
|
}, nil
|
|
}
|
|
|