2024-06-06 20:08:25 +00:00
|
|
|
package pathprocessor
|
2024-02-06 11:36:25 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"math/big"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum"
|
|
|
|
"github.com/ethereum/go-ethereum/accounts/abi"
|
|
|
|
"github.com/ethereum/go-ethereum/accounts/abi/bind"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
|
|
|
ethTypes "github.com/ethereum/go-ethereum/core/types"
|
|
|
|
"github.com/status-im/status-go/account"
|
|
|
|
"github.com/status-im/status-go/contracts/ierc1155"
|
2024-06-18 10:31:23 +00:00
|
|
|
statusErrors "github.com/status-im/status-go/errors"
|
2024-02-06 11:36:25 +00:00
|
|
|
"github.com/status-im/status-go/eth-node/types"
|
|
|
|
"github.com/status-im/status-go/rpc"
|
|
|
|
"github.com/status-im/status-go/transactions"
|
|
|
|
)
|
|
|
|
|
2024-06-06 20:08:25 +00:00
|
|
|
type ERC1155TxArgs struct {
|
2024-02-06 11:36:25 +00:00
|
|
|
transactions.SendTxArgs
|
|
|
|
TokenID *hexutil.Big `json:"tokenId"`
|
|
|
|
Recipient common.Address `json:"recipient"`
|
|
|
|
Amount *hexutil.Big `json:"amount"`
|
|
|
|
}
|
|
|
|
|
2024-06-06 20:08:25 +00:00
|
|
|
type ERC1155Processor struct {
|
2024-02-06 11:36:25 +00:00
|
|
|
rpcClient *rpc.Client
|
2024-05-26 08:31:13 +00:00
|
|
|
transactor transactions.TransactorIface
|
2024-02-06 11:36:25 +00:00
|
|
|
}
|
|
|
|
|
2024-06-06 20:08:25 +00:00
|
|
|
func NewERC1155Processor(rpcClient *rpc.Client, transactor transactions.TransactorIface) *ERC1155Processor {
|
|
|
|
return &ERC1155Processor{rpcClient: rpcClient, transactor: transactor}
|
2024-02-06 11:36:25 +00:00
|
|
|
}
|
|
|
|
|
2024-06-06 20:08:25 +00:00
|
|
|
func (s *ERC1155Processor) Name() string {
|
|
|
|
return ProcessorERC1155Name
|
2024-02-06 11:36:25 +00:00
|
|
|
}
|
|
|
|
|
2024-06-06 20:08:25 +00:00
|
|
|
func (s *ERC1155Processor) AvailableFor(params ProcessorInputParams) (bool, error) {
|
2024-06-05 07:56:02 +00:00
|
|
|
return params.FromChain.ChainID == params.ToChain.ChainID && params.ToToken == nil, nil
|
2024-02-06 11:36:25 +00:00
|
|
|
}
|
|
|
|
|
2024-06-06 20:08:25 +00:00
|
|
|
func (s *ERC1155Processor) CalculateFees(params ProcessorInputParams) (*big.Int, *big.Int, error) {
|
|
|
|
return ZeroBigIntValue, ZeroBigIntValue, nil
|
2024-02-06 11:36:25 +00:00
|
|
|
}
|
|
|
|
|
2024-06-10 12:52:47 +00:00
|
|
|
func (s *ERC1155Processor) PackTxInputData(params ProcessorInputParams) ([]byte, error) {
|
2024-03-06 10:16:20 +00:00
|
|
|
abi, err := abi.JSON(strings.NewReader(ierc1155.Ierc1155ABI))
|
2024-02-06 11:36:25 +00:00
|
|
|
if err != nil {
|
2024-06-18 10:31:23 +00:00
|
|
|
return []byte{}, statusErrors.CreateErrorResponseFromError(err)
|
2024-02-06 11:36:25 +00:00
|
|
|
}
|
2024-05-21 14:33:36 +00:00
|
|
|
|
2024-06-05 07:56:02 +00:00
|
|
|
id, success := big.NewInt(0).SetString(params.FromToken.Symbol, 0)
|
2024-02-06 11:36:25 +00:00
|
|
|
if !success {
|
2024-06-18 10:31:23 +00:00
|
|
|
return []byte{}, statusErrors.CreateErrorResponseFromError(fmt.Errorf("failed to convert %s to big.Int", params.FromToken.Symbol))
|
2024-02-06 11:36:25 +00:00
|
|
|
}
|
2024-05-21 14:33:36 +00:00
|
|
|
|
|
|
|
return abi.Pack("safeTransferFrom",
|
2024-06-05 07:56:02 +00:00
|
|
|
params.FromAddr,
|
|
|
|
params.ToAddr,
|
2024-02-06 11:36:25 +00:00
|
|
|
id,
|
2024-06-05 07:56:02 +00:00
|
|
|
params.AmountIn,
|
2024-02-06 11:36:25 +00:00
|
|
|
[]byte{},
|
|
|
|
)
|
2024-05-21 14:33:36 +00:00
|
|
|
}
|
|
|
|
|
2024-06-06 20:08:25 +00:00
|
|
|
func (s *ERC1155Processor) EstimateGas(params ProcessorInputParams) (uint64, error) {
|
2024-06-18 10:31:23 +00:00
|
|
|
if params.TestsMode {
|
|
|
|
if params.TestEstimationMap != nil {
|
|
|
|
if val, ok := params.TestEstimationMap[s.Name()]; ok {
|
|
|
|
return val, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0, ErrNoEstimationFound
|
|
|
|
}
|
|
|
|
|
2024-06-05 07:56:02 +00:00
|
|
|
ethClient, err := s.rpcClient.EthClient(params.FromChain.ChainID)
|
2024-05-21 14:33:36 +00:00
|
|
|
if err != nil {
|
2024-06-18 10:31:23 +00:00
|
|
|
return 0, statusErrors.CreateErrorResponseFromError(err)
|
2024-05-21 14:33:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
value := new(big.Int)
|
2024-02-06 11:36:25 +00:00
|
|
|
|
2024-06-10 12:52:47 +00:00
|
|
|
input, err := s.PackTxInputData(params)
|
2024-02-06 11:36:25 +00:00
|
|
|
if err != nil {
|
2024-06-18 10:31:23 +00:00
|
|
|
return 0, statusErrors.CreateErrorResponseFromError(err)
|
2024-02-06 11:36:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
msg := ethereum.CallMsg{
|
2024-06-05 07:56:02 +00:00
|
|
|
From: params.FromAddr,
|
|
|
|
To: ¶ms.FromToken.Address,
|
2024-02-06 11:36:25 +00:00
|
|
|
Value: value,
|
|
|
|
Data: input,
|
|
|
|
}
|
|
|
|
|
2024-05-30 13:03:28 +00:00
|
|
|
estimation, err := ethClient.EstimateGas(context.Background(), msg)
|
2024-02-06 11:36:25 +00:00
|
|
|
if err != nil {
|
2024-06-18 10:31:23 +00:00
|
|
|
return 0, statusErrors.CreateErrorResponseFromError(err)
|
2024-02-06 11:36:25 +00:00
|
|
|
}
|
|
|
|
increasedEstimation := float64(estimation) * IncreaseEstimatedGasFactor
|
|
|
|
return uint64(increasedEstimation), nil
|
|
|
|
}
|
|
|
|
|
2024-06-06 20:08:25 +00:00
|
|
|
func (s *ERC1155Processor) BuildTx(params ProcessorInputParams) (*ethTypes.Transaction, error) {
|
2024-06-05 07:56:02 +00:00
|
|
|
contractAddress := types.Address(params.FromToken.Address)
|
2024-04-01 12:33:35 +00:00
|
|
|
|
|
|
|
// We store ERC1155 Token ID using big.Int.String() in token.Symbol
|
2024-06-05 07:56:02 +00:00
|
|
|
tokenID, success := new(big.Int).SetString(params.FromToken.Symbol, 10)
|
2024-04-01 12:33:35 +00:00
|
|
|
if !success {
|
2024-06-18 10:31:23 +00:00
|
|
|
return nil, statusErrors.CreateErrorResponseFromError(fmt.Errorf("failed to convert ERC1155's Symbol %s to big.Int", params.FromToken.Symbol))
|
2024-04-01 12:33:35 +00:00
|
|
|
}
|
|
|
|
|
2024-06-06 20:08:25 +00:00
|
|
|
sendArgs := &MultipathProcessorTxArgs{
|
|
|
|
ERC1155TransferTx: &ERC1155TxArgs{
|
2024-03-25 12:40:00 +00:00
|
|
|
SendTxArgs: transactions.SendTxArgs{
|
2024-06-05 07:56:02 +00:00
|
|
|
From: types.Address(params.FromAddr),
|
2024-04-01 12:33:35 +00:00
|
|
|
To: &contractAddress,
|
2024-06-05 07:56:02 +00:00
|
|
|
Value: (*hexutil.Big)(params.AmountIn),
|
2024-03-25 12:40:00 +00:00
|
|
|
Data: types.HexBytes("0x0"),
|
|
|
|
},
|
2024-04-01 12:33:35 +00:00
|
|
|
TokenID: (*hexutil.Big)(tokenID),
|
2024-06-05 07:56:02 +00:00
|
|
|
Recipient: params.ToAddr,
|
|
|
|
Amount: (*hexutil.Big)(params.AmountIn),
|
2024-03-25 12:40:00 +00:00
|
|
|
},
|
2024-06-05 07:56:02 +00:00
|
|
|
ChainID: params.FromChain.ChainID,
|
2024-03-25 12:40:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return s.BuildTransaction(sendArgs)
|
|
|
|
}
|
|
|
|
|
2024-06-06 20:08:25 +00:00
|
|
|
func (s *ERC1155Processor) sendOrBuild(sendArgs *MultipathProcessorTxArgs, signerFn bind.SignerFn) (tx *ethTypes.Transaction, err error) {
|
2024-02-06 11:36:25 +00:00
|
|
|
ethClient, err := s.rpcClient.EthClient(sendArgs.ChainID)
|
|
|
|
if err != nil {
|
2024-06-18 10:31:23 +00:00
|
|
|
return tx, statusErrors.CreateErrorResponseFromError(err)
|
2024-02-06 11:36:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
contract, err := ierc1155.NewIerc1155(common.Address(*sendArgs.ERC1155TransferTx.To), ethClient)
|
|
|
|
if err != nil {
|
2024-06-18 10:31:23 +00:00
|
|
|
return tx, statusErrors.CreateErrorResponseFromError(err)
|
2024-02-06 11:36:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nonce, err := s.transactor.NextNonce(s.rpcClient, sendArgs.ChainID, sendArgs.ERC1155TransferTx.From)
|
|
|
|
if err != nil {
|
2024-06-18 10:31:23 +00:00
|
|
|
return tx, statusErrors.CreateErrorResponseFromError(err)
|
2024-02-06 11:36:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
argNonce := hexutil.Uint64(nonce)
|
|
|
|
sendArgs.ERC1155TransferTx.Nonce = &argNonce
|
|
|
|
txOpts := sendArgs.ERC1155TransferTx.ToTransactOpts(signerFn)
|
|
|
|
tx, err = contract.SafeTransferFrom(
|
|
|
|
txOpts, common.Address(sendArgs.ERC1155TransferTx.From),
|
|
|
|
sendArgs.ERC1155TransferTx.Recipient,
|
|
|
|
sendArgs.ERC1155TransferTx.TokenID.ToInt(),
|
|
|
|
sendArgs.ERC1155TransferTx.Amount.ToInt(),
|
|
|
|
[]byte{},
|
|
|
|
)
|
2024-06-18 10:31:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return tx, statusErrors.CreateErrorResponseFromError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return tx, nil
|
2024-02-06 11:36:25 +00:00
|
|
|
}
|
|
|
|
|
2024-06-06 20:08:25 +00:00
|
|
|
func (s *ERC1155Processor) Send(sendArgs *MultipathProcessorTxArgs, verifiedAccount *account.SelectedExtKey) (hash types.Hash, err error) {
|
2024-02-06 11:36:25 +00:00
|
|
|
tx, err := s.sendOrBuild(sendArgs, getSigner(sendArgs.ChainID, sendArgs.ERC1155TransferTx.From, verifiedAccount))
|
|
|
|
if err != nil {
|
2024-06-18 10:31:23 +00:00
|
|
|
return hash, statusErrors.CreateErrorResponseFromError(err)
|
2024-02-06 11:36:25 +00:00
|
|
|
}
|
|
|
|
return types.Hash(tx.Hash()), nil
|
|
|
|
}
|
|
|
|
|
2024-06-06 20:08:25 +00:00
|
|
|
func (s *ERC1155Processor) BuildTransaction(sendArgs *MultipathProcessorTxArgs) (*ethTypes.Transaction, error) {
|
2024-02-06 11:36:25 +00:00
|
|
|
return s.sendOrBuild(sendArgs, nil)
|
|
|
|
}
|
|
|
|
|
2024-06-06 20:08:25 +00:00
|
|
|
func (s *ERC1155Processor) CalculateAmountOut(params ProcessorInputParams) (*big.Int, error) {
|
2024-06-05 07:56:02 +00:00
|
|
|
return params.AmountIn, nil
|
2024-02-06 11:36:25 +00:00
|
|
|
}
|
|
|
|
|
2024-06-06 20:08:25 +00:00
|
|
|
func (s *ERC1155Processor) GetContractAddress(params ProcessorInputParams) (common.Address, error) {
|
2024-06-05 07:56:02 +00:00
|
|
|
return params.FromToken.Address, nil
|
2024-02-06 11:36:25 +00:00
|
|
|
}
|